diff options
| author | jannfis <jann@mistrust.net> | 2020-09-22 12:48:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-22 12:48:19 +0200 |
| commit | ff5b6377c275d44e5686eb5c592c2896bf2ce5bc (patch) | |
| tree | c5d2ebbf254ae39ef002ebd888b2ab54ef25c213 /docs/configuration | |
| parent | 8cb8e5b44fb7607b8c20a7157c805f6a4a437abc (diff) | |
feat: Allow insecure TLS connections to registries (#87)
Diffstat (limited to 'docs/configuration')
| -rw-r--r-- | docs/configuration/images.md | 2 | ||||
| -rw-r--r-- | docs/configuration/registries.md | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/docs/configuration/images.md b/docs/configuration/images.md index a3e1a36..6284d53 100644 --- a/docs/configuration/images.md +++ b/docs/configuration/images.md @@ -275,7 +275,7 @@ Annotations might look like follows: ```yaml argocd-image-updater.argoproj.io/image-list: yourtool=yourorg/yourimage argocd-image-updater.argoproj.io/yourtool.update-strategy: latest -argocd-image-updater.argoproj.io/yourtool.tag-match: regexp:^v1.0.0-[0-0a-zA-Z]+$ +argocd-image-updater.argoproj.io/yourtool.tag-match: regexp:^v1.0.0-[0-9a-zA-Z]+$ ``` ### Multiple images in the same Helm chart diff --git a/docs/configuration/registries.md b/docs/configuration/registries.md index 2f7b793..ce6a7b0 100644 --- a/docs/configuration/registries.md +++ b/docs/configuration/registries.md @@ -33,6 +33,7 @@ registries: api_url: https://quay.io ping: no prefix: quay.io + insecure: yes credentials: env:REGISTRY_SECRET - name: GitHub Container Registry api_url: https://docker.pkg.github.com @@ -56,7 +57,11 @@ following semantics: mandatory, except for one of the registries in the configuration. * `credentials` (optional) is a reference to the credentials to use for - accessing the registry API (see below) + accessing the registry API (see below). Credentials can also be specified + [per image](../images/#specifying-pull-secrets) + +* `insecure` (optional) if set to true, does not validate the TLS certificate + for the connection to the registry. Use with care. * `tagsortmode` (optional) defines whether and how the list of tags is sorted chronologically by the registry. Valid values are `latest_first` (the last |
