diff options
| author | kanata <skitazawa1121@gmail.com> | 2021-05-03 15:38:06 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-03 08:38:06 +0200 |
| commit | 50c45276f2f5b90604e8f218cd6d463c4229d516 (patch) | |
| tree | 8cea6dcd193a2c5eb467e4b31f8e56fc1b379d5d /docs | |
| parent | 0ac4343dc429dce7fba67f0bfe9dccf8895562fb (diff) | |
docs: fix document (#201)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/configuration/applications.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/applications.md b/docs/configuration/applications.md index 7e587b1..a53cfb8 100644 --- a/docs/configuration/applications.md +++ b/docs/configuration/applications.md @@ -184,7 +184,7 @@ password or a private access token (PAT) with write access to the repository. You can generate such a secret using `kubectl`, e.g.: ```bash -kubectl -n argocd-image-updater secret create generic git-creds \ +kubectl -n argocd-image-updater create secret generic git-creds \ --from-literal=username=someuser \ --from-literal=password=somepassword ``` @@ -195,7 +195,7 @@ format. To create such a secret from an existing private key, you can use `kubectl`, for example: ```bash -kubectl -n argocd-image-updater secret create generic git-creds \ +kubectl -n argocd-image-updater create secret generic git-creds \ --from-file=sshPrivateKey=~/.ssh/id_rsa ``` |
