[bitnami/contour-operator] Add support for image digest apart from tag (#11875)

* [bitnami/contour-operator] Add support for image digest apart from tag

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Carlos Rodríguez Hernández
2022-08-22 15:12:55 +02:00
committed by GitHub
parent 31abd3a9b8
commit bfb6436bc6
4 changed files with 17 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.16.1
digest: sha256:bcc717c6a14262fac51e6434020ee5dd6148b864fe6cff6266c1d481df4a0c91
generated: "2022-08-03T08:57:46.73628683Z"
version: 2.0.0
digest: sha256:c66468d294c878acfb7cc6c082bc08d7105d139098bd42f88e6fe26903506c8f
generated: "2022-08-20T10:56:50.856571796Z"

View File

@@ -7,7 +7,7 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
version: 2.x.x
description: The Contour Operator extends the Kubernetes API to create, configure and manage instances of Contour on behalf of users.
engine: gotpl
home: https://github.com/projectcontour/contour-operator
@@ -25,4 +25,4 @@ name: contour-operator
sources:
- https://github.com/projectcontour/contour-operator
- https://github.com/bitnami/containers/tree/main/bitnami/contour-operator
version: 2.0.2
version: 2.1.0

View File

@@ -155,16 +155,19 @@ This solution allows to easily deploy multiple Contour instances compared to the
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
| `image.registry` | Contour Operator image registry | `docker.io` |
| `image.repository` | Contour Operator image repository | `bitnami/contour-operator` |
| `image.tag` | Contour Operator image tag (immutable tags are recommended) | `1.20.1-scratch-r5` |
| `image.tag` | Contour Operator image tag (immutable tags are recommended) | `1.22.0-scratch-r2` |
| `image.digest` | Contour Operator image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
| `image.pullPolicy` | Contour Operator image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Contour Operator image pull secrets | `[]` |
| `contourImage.registry` | Contour Image registry | `docker.io` |
| `contourImage.repository` | Contour Image repository | `bitnami/contour` |
| `contourImage.tag` | Contour Image tag (immutable tags are recommended) | `1.22.0-debian-11-r0` |
| `contourImage.tag` | Contour Image tag (immutable tags are recommended) | `1.22.0-debian-11-r3` |
| `contourImage.digest` | Contour image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
| `contourImage.pullSecrets` | Contour Image pull secrets | `[]` |
| `envoyImage.registry` | Envoy Image registry | `docker.io` |
| `envoyImage.repository` | Envoy Image repository | `bitnami/envoy` |
| `envoyImage.tag` | Envoy Image tag (immutable tags are recommended) | `1.23.0-debian-11-r5` |
| `envoyImage.tag` | Envoy Image tag (immutable tags are recommended) | `1.23.0-debian-11-r7` |
| `envoyImage.digest` | Envoy image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
| `envoyImage.pullSecrets` | Envoy Image pull secrets | `[]` |
| `replicaCount` | Number of Contour Operator replicas to deploy | `1` |
| `livenessProbe.enabled` | Enable livenessProbe on Contour Operator nodes | `true` |

View File

@@ -47,6 +47,7 @@ extraDeploy: []
## @param image.registry Contour Operator image registry
## @param image.repository Contour Operator image repository
## @param image.tag Contour Operator image tag (immutable tags are recommended)
## @param image.digest Contour Operator image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param image.pullPolicy Contour Operator image pull policy
## @param image.pullSecrets Contour Operator image pull secrets
##
@@ -54,6 +55,7 @@ image:
registry: docker.io
repository: bitnami/contour-operator
tag: 1.22.0-scratch-r2
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -73,12 +75,14 @@ image:
## @param contourImage.registry Contour Image registry
## @param contourImage.repository Contour Image repository
## @param contourImage.tag Contour Image tag (immutable tags are recommended)
## @param contourImage.digest Contour image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param contourImage.pullSecrets Contour Image pull secrets
##
contourImage:
registry: docker.io
repository: bitnami/contour
tag: 1.22.0-debian-11-r3
digest: ""
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-contourImage-private-registry/
@@ -93,12 +97,14 @@ contourImage:
## @param envoyImage.registry Envoy Image registry
## @param envoyImage.repository Envoy Image repository
## @param envoyImage.tag Envoy Image tag (immutable tags are recommended)
## @param envoyImage.digest Envoy image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param envoyImage.pullSecrets Envoy Image pull secrets
##
envoyImage:
registry: docker.io
repository: bitnami/envoy
tag: 1.23.0-debian-11-r7
digest: ""
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-envoyImage-private-registry/