Skip to content

docs: fix typos #1169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ supported yet (and maybe never will).
Read
[the documentation](https://argocd-image-updater.readthedocs.io/en/stable/)
for more information on how to setup and run Argo CD Image Updater and to get
known to it's features and limitations.
known to its features and limitations.

Above URL points to the documentation for the current release. If you are
interested in documentation of upcoming features, check out the
Expand Down
2 changes: 1 addition & 1 deletion docs/basics/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The workflow of Argo CD Image Updater can be described as follows:
whose name match a given pattern, or match a given label.

* It then goes through the list of `Applications` found and inspects each
for the the annotation `argocd-image-updater.argoproj.io/image-list`. This
for the annotation `argocd-image-updater.argoproj.io/image-list`. This
annotation holds a list of image names that should be updated, and is a
mandatory annotation for Argo CD Image Updater to indicate it should
process this `Application`. Read more about the syntax expected in this
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ following:
argocd-image-updater.argoproj.io/image-list: nginx
```

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

Expand Down
4 changes: 2 additions & 2 deletions docs/install/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ kubectl -n argocd-image-updater rollout restart deployment argocd-image-updater

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

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

```shell
Expand Down
2 changes: 1 addition & 1 deletion pkg/argocd/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func commitChangesGit(app *v1alpha1.Application, wbc *WriteBackConfig, changeLis
if wbc.GitCommitMessage != "" {
cm, err := os.CreateTemp("", "image-updater-commit-msg")
if err != nil {
return fmt.Errorf("cold not create temp file: %v", err)
return fmt.Errorf("could not create temp file: %v", err)
}
logCtx.Debugf("Writing commit message to %s", cm.Name())
err = os.WriteFile(cm.Name(), []byte(wbc.GitCommitMessage), 0600)
Expand Down