diff options
| author | Marcio <marcio@zimbres.com> | 2022-03-12 06:49:29 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-12 10:49:29 +0100 |
| commit | 295d5c3fd17cedeba3afffb2339bcb61bf0d3570 (patch) | |
| tree | 6bbf90a0998b73415692ed9b4d6b95046159b84d /manifests/install.yaml | |
| parent | 664b105366f253643d55855caec5e3ad151cc73c (diff) | |
feat: Add configMap to allow define parameters for SSH client (#373)
Diffstat (limited to 'manifests/install.yaml')
| -rw-r--r-- | manifests/install.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/install.yaml b/manifests/install.yaml index 0812511..775ae24 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -66,6 +66,14 @@ metadata: name: argocd-image-updater-config --- apiVersion: v1 +kind: ConfigMap +metadata: + labels: + app.kubernetes.io/name: argocd-image-updater-ssh-config + app.kubernetes.io/part-of: argocd-image-updater + name: argocd-image-updater-ssh-config +--- +apiVersion: v1 kind: Secret metadata: labels: @@ -179,6 +187,8 @@ spec: name: image-updater-conf - mountPath: /app/config/ssh name: ssh-known-hosts + - mountPath: /app/.ssh + name: ssh-config serviceAccountName: argocd-image-updater volumes: - configMap: @@ -194,3 +204,7 @@ spec: name: argocd-ssh-known-hosts-cm optional: true name: ssh-known-hosts + - configMap: + name: argocd-image-updater-ssh-config + optional: true + name: ssh-config |
