[bitnami/mariadb-galera] Add extraDeploy (#7184)

* [bitnami/mariadb-galera] Add extraDeploy

* Update readme
This commit is contained in:
Miguel Ruiz
2021-08-11 08:23:07 +02:00
committed by GitHub
parent e74750cb7a
commit 4f52c1b001
4 changed files with 11 additions and 3 deletions

View File

@@ -27,4 +27,4 @@ sources:
- https://github.com/bitnami/bitnami-docker-mariadb-galera
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
version: 5.12.1
version: 5.13.0

View File

@@ -74,6 +74,7 @@ The command removes all the Kubernetes components associated with the chart and
| `fullnameOverride` | String to fully override common.names.fullname template with a string | `""` |
| `schedulerName` | Name of the Kubernetes scheduler (other than default) | `""` |
| `clusterDomain` | Kubernetes DNS Domain name to use | `cluster.local` |
| `extraDeploy` | Array of extra objects to deploy with the release (evaluated as a template) | `[]` |
| `diagnosticMode.enabled` | Enable diagnostic mode (all probes will be disabled and the command will be overridden) | `false` |
| `diagnosticMode.command` | Command to override all containers in the deployment | `[]` |
| `diagnosticMode.args` | Args to override all containers in the deployment | `[]` |
@@ -85,7 +86,7 @@ The command removes all the Kubernetes components associated with the chart and
| ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- |
| `image.registry` | MariaDB Galera image registry | `docker.io` |
| `image.repository` | MariaDB Galera image repository | `bitnami/mariadb-galera` |
| `image.tag` | MariaDB Galera image tag (immutable tags are recommended) | `10.5.11-debian-10-r24` |
| `image.tag` | MariaDB Galera image tag (immutable tags are recommended) | `10.5.11-debian-10-r25` |
| `image.pullPolicy` | MariaDB Galera image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `image.debug` | Specify if debug logs should be enabled | `false` |
@@ -199,7 +200,7 @@ The command removes all the Kubernetes components associated with the chart and
| `metrics.enabled` | Start a side-car prometheus exporter | `false` |
| `metrics.image.registry` | MariaDB Prometheus exporter image registry | `docker.io` |
| `metrics.image.repository` | MariaDB Prometheus exporter image repository | `bitnami/mysqld-exporter` |
| `metrics.image.tag` | MariaDB Prometheus exporter image tag (immutable tags are recommended) | `0.13.0-debian-10-r44` |
| `metrics.image.tag` | MariaDB Prometheus exporter image tag (immutable tags are recommended) | `0.13.0-debian-10-r45` |
| `metrics.image.pullPolicy` | MariaDB Prometheus exporter image pull policy | `IfNotPresent` |
| `metrics.image.pullSecrets` | MariaDB Prometheus exporter image pull secrets | `[]` |
| `metrics.extraFlags` | MariaDB Prometheus exporter additional command line flags | `[]` |

View File

@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}

View File

@@ -31,6 +31,9 @@ schedulerName: ""
## @param clusterDomain Kubernetes DNS Domain name to use
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release (evaluated as a template)
##
extraDeploy: []
## Diagnostic mode in the deployment
##