Skip to content

Commit

Permalink
fix: fixed path for ssh signing key, error mounting in another volume (
Browse files Browse the repository at this point in the history
…#753)

Signed-off-by: Dustin Lactin <dustin.lactin@gmail.com>
  • Loading branch information
dlactin committed Jun 21, 2024
1 parent f75d7dd commit 177c50d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/basics/update-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ Set `git.commit-signing-key` `argocd-image-updater-config` ConfigMap to the path
```yaml
data:
git.commit-sign-off: "true"
git.commit-signing-key: /app/.ssh/id_rsa
git.commit-signing-key: /app/ssh-keys/id_rsa
git.commit-signing-method: "ssh"
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ spec:
- mountPath: /tmp
name: tmp
- name: ssh-signing-key
mountPath: /app/.ssh/id_rsa
mountPath: /app/ssh-keys/id_rsa
readOnly: true
subPath: sshPrivateKey
serviceAccountName: argocd-image-updater
Expand Down
2 changes: 1 addition & 1 deletion manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ spec:
name: ssh-config
- mountPath: /tmp
name: tmp
- mountPath: /app/.ssh/id_rsa
- mountPath: /app/ssh-keys/id_rsa
name: ssh-signing-key
readOnly: true
subPath: sshPrivateKey
Expand Down

0 comments on commit 177c50d

Please sign in to comment.