Skip to content

Commit 177c50d

Browse files
authored
fix: fixed path for ssh signing key, error mounting in another volume (#753)
Signed-off-by: Dustin Lactin <[email protected]>
1 parent f75d7dd commit 177c50d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/basics/update-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Set `git.commit-signing-key` `argocd-image-updater-config` ConfigMap to the path
275275
```yaml
276276
data:
277277
git.commit-sign-off: "true"
278-
git.commit-signing-key: /app/.ssh/id_rsa
278+
git.commit-signing-key: /app/ssh-keys/id_rsa
279279
git.commit-signing-method: "ssh"
280280
```
281281

manifests/base/deployment/argocd-image-updater-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ spec:
135135
- mountPath: /tmp
136136
name: tmp
137137
- name: ssh-signing-key
138-
mountPath: /app/.ssh/id_rsa
138+
mountPath: /app/ssh-keys/id_rsa
139139
readOnly: true
140140
subPath: sshPrivateKey
141141
serviceAccountName: argocd-image-updater

manifests/install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ spec:
217217
name: ssh-config
218218
- mountPath: /tmp
219219
name: tmp
220-
- mountPath: /app/.ssh/id_rsa
220+
- mountPath: /app/ssh-keys/id_rsa
221221
name: ssh-signing-key
222222
readOnly: true
223223
subPath: sshPrivateKey

0 commit comments

Comments
 (0)