apiVersion: v1 kind: ConfigMap metadata: name: argocd-image-updater-ssh-config data: config: |- Host * PubkeyAcceptedAlgorithms +ssh-rsa HostkeyAlgorithms +ssh-rsa --- apiVersion: apps/v1 kind: Deployment metadata: name: argocd-image-updater spec: selector: matchLabels: app.kubernetes.io/name: argocd-image-updater template: spec: containers: - name: argocd-image-updater volumeMounts: - mountPath: /app/config name: image-updater-conf - mountPath: /app/config/ssh name: ssh-known-hosts - mountPath: /app/.ssh name: ssh-config - mountPath: /tmp name: tmp - mountPath: /app/ssh-keys/id_rsa name: ssh-signing-key readOnly: true subPath: sshPrivateKey