Skip to content

Commit c6167ec

Browse files
authored
docs: fix typos (#1169)
Signed-off-by: chansuke <moonset20@gmail.com>
1 parent 6b42617 commit c6167ec

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ supported yet (and maybe never will).
2222
Read
2323
[the documentation](https://argocd-image-updater.readthedocs.io/en/stable/)
2424
for more information on how to setup and run Argo CD Image Updater and to get
25-
known to it's features and limitations.
25+
known to its features and limitations.
2626

2727
Above URL points to the documentation for the current release. If you are
2828
interested in documentation of upcoming features, check out the

docs/basics/update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The workflow of Argo CD Image Updater can be described as follows:
1414
whose name match a given pattern, or match a given label.
1515

1616
* It then goes through the list of `Applications` found and inspects each
17-
for the the annotation `argocd-image-updater.argoproj.io/image-list`. This
17+
for the annotation `argocd-image-updater.argoproj.io/image-list`. This
1818
annotation holds a list of image names that should be updated, and is a
1919
mandatory annotation for Argo CD Image Updater to indicate it should
2020
process this `Application`. Read more about the syntax expected in this

docs/configuration/images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ following:
3232
argocd-image-updater.argoproj.io/image-list: nginx
3333
```
3434

35-
The above example would specify to update the image `nginx` to it's most recent
35+
The above example would specify to update the image `nginx` to its most recent
3636
version found in the container registry, without taking any version constraints
3737
into consideration.
3838

docs/install/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ kubectl -n argocd-image-updater rollout restart deployment argocd-image-updater
165165

166166
When installed from the manifests into a Kubernetes cluster, the Argo CD Image
167167
Updater reads the token required for accessing Argo CD API from an environment
168-
variable named `ARGOCD_TOKEN`, which is set from a a field named
168+
variable named `ARGOCD_TOKEN`, which is set from a field named
169169
`argocd.token` in a secret named `argocd-image-updater-secret`.
170170

171171
The value for `argocd.token` should be set to the *base64 encoded* value of the
172-
access token you have generated above. As a short-cut, you can use generate the
172+
access token you have generated above. As a short-cut, you can use generate
173173
secret with `kubectl` and apply it over the existing resource:
174174

175175
```shell

pkg/argocd/git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ func commitChangesGit(app *v1alpha1.Application, wbc *WriteBackConfig, changeLis
258258
if wbc.GitCommitMessage != "" {
259259
cm, err := os.CreateTemp("", "image-updater-commit-msg")
260260
if err != nil {
261-
return fmt.Errorf("cold not create temp file: %v", err)
261+
return fmt.Errorf("could not create temp file: %v", err)
262262
}
263263
logCtx.Debugf("Writing commit message to %s", cm.Name())
264264
err = os.WriteFile(cm.Name(), []byte(wbc.GitCommitMessage), 0600)

0 commit comments

Comments
 (0)