summaryrefslogtreecommitdiff
path: root/manifests/base
diff options
context:
space:
mode:
authorspoukke <32708678+spoukke@users.noreply.github.com>2021-06-11 09:47:15 +0200
committerGitHub <noreply@github.com>2021-06-11 09:47:15 +0200
commit77081181815015cb863e643103746f03d88f46cf (patch)
tree2e89f3600f3417e181c136c79b60d71716b7aef7 /manifests/base
parentadd387ecfa5c59b34119eabd8b81c1daddcdc06e (diff)
feat(manifests): add ssh volume mounts and volume (#212)
* feat(manifests): add ssh volume mounts and volume * feat(ssh-volume): add optionnal mount
Diffstat (limited to 'manifests/base')
-rw-r--r--manifests/base/deployment/argocd-image-updater-deployment.yaml20
1 files changed, 13 insertions, 7 deletions
diff --git a/manifests/base/deployment/argocd-image-updater-deployment.yaml b/manifests/base/deployment/argocd-image-updater-deployment.yaml
index b71adef..2be5b3b 100644
--- a/manifests/base/deployment/argocd-image-updater-deployment.yaml
+++ b/manifests/base/deployment/argocd-image-updater-deployment.yaml
@@ -98,16 +98,22 @@ spec:
initialDelaySeconds: 3
periodSeconds: 30
volumeMounts:
- - name: image-updater-conf
- mountPath: /app/config
+ - mountPath: /app/config
+ name: image-updater-conf
+ - mountPath: /app/config/ssh
+ name: ssh-known-hosts
serviceAccountName: argocd-image-updater
volumes:
- - name: image-updater-conf
- configMap:
- name: argocd-image-updater-config
- optional: true
+ - configMap:
items:
- key: registries.conf
path: registries.conf
- key: git.commit-message-template
- path: commit.template \ No newline at end of file
+ path: commit.template
+ name: argocd-image-updater-config
+ optional: true
+ name: image-updater-conf
+ - configMap:
+ name: argocd-ssh-known-hosts-cm
+ optional: true
+ name: ssh-known-hosts