diff --git a/bitnami/common/Chart.yaml b/bitnami/common/Chart.yaml index 3965f00e2..29cdc36c9 100644 --- a/bitnami/common/Chart.yaml +++ b/bitnami/common/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: common # Please make sure that version and appVersion are always the same. -version: 0.3.0 -appVersion: 0.3.0 +version: 0.3.1 +appVersion: 0.3.1 description: A Library Helm Chart for grouping common logic between bitnami charts. This chart is not deployable by itself. keywords: - common diff --git a/bitnami/common/README.md b/bitnami/common/README.md index 8ccc3d858..ab50967e3 100644 --- a/bitnami/common/README.md +++ b/bitnami/common/README.md @@ -40,6 +40,7 @@ Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment The following table lists the helpers available in the library which are scoped in different sections. **Names** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.names.name` | Expand the name of the chart or use `.Values.nameOverride` | `.` Chart context | @@ -47,39 +48,46 @@ The following table lists the helpers available in the library which are scoped | `common.names.chart` | Chart name plus version | `.` Chart context | **Images** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.images.image` | Return the proper and full image name | `dict "imageRoot" .Values.path.to.the.image "global" $`, see [ImageRoot](#imageroot) for the structure. | | `common.images.pullSecrets` | Return the proper Docker Image Registry Secret Names | `dict "images" (list .Values.path.to.the.image1, .Values.path.to.the.image2) "global" $` | **Labels** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.labels.standard` | Return Kubernetes standard labels | `.` Chart context | | `common.labels.matchLabels` | Return the proper Docker Image Registry Secret Names | `.` Chart context | **Storage** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.storage.class` | Return the proper Storage Class | `dict "persistence" .Values.path.to.the.persistence "global" $`, see [Persistence](#persistence) for the structure. | **TplValues** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.tplvalues.render` | Renders a value that contains template | `dict "value" .Values.path.to.the.Value "context" $`, value is the value should rendered as template, context frecuently is the chart context `$` or `.` | **Capabilities** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.capabilities.deployment.apiVersion` | Return the appropriate apiVersion for deployment. | `.` Chart context | | `common.capabilities.ingress.apiVersion` | Return the appropriate apiVersion for ingress. | `.` Chart context | **Warnings** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.warnings.rollingTag` | Warning about using rolling tag. | `ImageRoot` see [ImageRoot](#imageroot) for the structure. | **Secrets** + | Helper identifier | Description | Expected Input | |---------------------------------------------|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| | `common.secrets.name` | Generate the name of the secret. | `dict "existingSecret" .Values.path.to.the.existingSecret "defaultNameSuffix" "mySuffix" "context" $` see [ExistingSecret](#existingsecret) for the structure. | diff --git a/bitnami/mariadb/Chart.yaml b/bitnami/mariadb/Chart.yaml index 9849bdf92..9b28c5d3f 100644 --- a/bitnami/mariadb/Chart.yaml +++ b/bitnami/mariadb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mariadb -version: 7.5.0 +version: 7.5.1 appVersion: 10.3.23 description: Fast, reliable, scalable, and easy to use open-source relational database system. MariaDB Server is intended for mission-critical, heavy-load production systems as well as for embedding into mass-deployed software. Highly available MariaDB cluster. keywords: diff --git a/bitnami/mariadb/README.md b/bitnami/mariadb/README.md index 962a04711..f3900d6bd 100644 --- a/bitnami/mariadb/README.md +++ b/bitnami/mariadb/README.md @@ -48,6 +48,7 @@ The command removes all the Kubernetes components associated with the chart and ## Parameters The following table lists the configurable parameters of the MariaDB chart and their default values. + | Parameter | Description | Default | |----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------| | `global.imageRegistry` | Global Docker image registry | `nil` | diff --git a/bitnami/mariadb/values-production.yaml b/bitnami/mariadb/values-production.yaml index 84b92c647..f4f0c1db8 100644 --- a/bitnami/mariadb/values-production.yaml +++ b/bitnami/mariadb/values-production.yaml @@ -19,7 +19,7 @@ image: registry: docker.io repository: bitnami/mariadb - tag: 10.3.23-debian-10-r23 + tag: 10.3.23-debian-10-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -492,7 +492,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-10-r127 + tag: 0.12.1-debian-10-r130 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mariadb/values.yaml b/bitnami/mariadb/values.yaml index a8b49c6cc..2f22173d9 100644 --- a/bitnami/mariadb/values.yaml +++ b/bitnami/mariadb/values.yaml @@ -19,7 +19,7 @@ image: registry: docker.io repository: bitnami/mariadb - tag: 10.3.23-debian-10-r23 + tag: 10.3.23-debian-10-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -480,7 +480,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-10-r127 + tag: 0.12.1-debian-10-r130 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mysql/Chart.yaml b/bitnami/mysql/Chart.yaml index f6b9fff5e..f73ad0e5f 100644 --- a/bitnami/mysql/Chart.yaml +++ b/bitnami/mysql/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mysql -version: 6.14.2 +version: 6.14.3 appVersion: 8.0.20 description: Chart to create a Highly available MySQL cluster keywords: diff --git a/bitnami/mysql/README.md b/bitnami/mysql/README.md index 273102fb3..20d68594f 100644 --- a/bitnami/mysql/README.md +++ b/bitnami/mysql/README.md @@ -47,6 +47,7 @@ The command removes all the Kubernetes components associated with the chart and ## Parameters The following tables lists the configurable parameters of the MySQL chart and their default values. + | Parameter | Description | Default | | |---------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `global.imageRegistry` | Global Docker image registry | `nil` | | diff --git a/bitnami/mysql/values-production.yaml b/bitnami/mysql/values-production.yaml index 723bb702f..03a51f198 100644 --- a/bitnami/mysql/values-production.yaml +++ b/bitnami/mysql/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mysql - tag: 8.0.20-debian-10-r37 + tag: 8.0.20-debian-10-r41 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -524,7 +524,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-10-r127 + tag: 0.12.1-debian-10-r130 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mysql/values.yaml b/bitnami/mysql/values.yaml index 97d05aaf3..5101423e3 100644 --- a/bitnami/mysql/values.yaml +++ b/bitnami/mysql/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mysql - tag: 8.0.20-debian-10-r37 + tag: 8.0.20-debian-10-r41 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -523,7 +523,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-10-r127 + tag: 0.12.1-debian-10-r130 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace.