ci: Mount ssh_known_hosts in rsync container
All checks were successful
dustin/dustin.web/pipeline/head This commit looks good

The problem with having stages that only run in some situations is that
they don't get tested.

Need to mount the SSH host key database file in the _rsync_ container so
the host key of the web server can be verified when publishing.
This commit is contained in:
2025-08-26 08:02:15 -05:00
parent 914ce34521
commit bf0374ec70

View File

@@ -16,3 +16,8 @@ spec:
signal.pause()
- name: rsync
image: git.pyrocufflink.net/containerimages/rsync
volumeMounts:
- mountPath: /etc/ssh/ssh_known_hosts
name: volume-0
subPath: ssh_known_hosts
readOnly: true