mirror of
https://github.com/bitnami/charts.git
synced 2026-02-19 11:37:23 +08:00
fix(mariadb): use proper configuration map (#8115)
This commit is contained in:
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-mariadb
|
||||
- https://github.com/prometheus/mysqld_exporter
|
||||
- https://mariadb.org
|
||||
version: 10.0.0
|
||||
version: 10.0.1
|
||||
|
||||
@@ -107,7 +107,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `primary.lifecycleHooks` | for the MariaDB Primary container(s) to automate configuration before or after startup | `{}` |
|
||||
| `primary.hostAliases` | Add deployment host aliases | `[]` |
|
||||
| `primary.configuration` | MariaDB Primary configuration to be injected as ConfigMap | `""` |
|
||||
| `primary.existingConfiguration` | Name of existing ConfigMap with MariaDB Primary configuration. | `""` |
|
||||
| `primary.existingConfigmap` | Name of existing ConfigMap with MariaDB Primary configuration. | `""` |
|
||||
| `primary.updateStrategy.type` | MariaDB primary statefulset strategy type | `RollingUpdate` |
|
||||
| `primary.rollingUpdatePartition` | Partition update strategy for Mariadb Primary statefulset | `""` |
|
||||
| `primary.podAnnotations` | Additional pod annotations for MariaDB primary pods | `{}` |
|
||||
@@ -196,7 +196,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `secondary.lifecycleHooks` | for the MariaDB Secondary container(s) to automate configuration before or after startup | `{}` |
|
||||
| `secondary.hostAliases` | Add deployment host aliases | `[]` |
|
||||
| `secondary.configuration` | MariaDB Secondary configuration to be injected as ConfigMap | `""` |
|
||||
| `secondary.existingConfiguration` | Name of existing ConfigMap with MariaDB Secondary configuration. | `""` |
|
||||
| `secondary.existingConfigmap` | Name of existing ConfigMap with MariaDB Secondary configuration. | `""` |
|
||||
| `secondary.updateStrategy.type` | MariaDB secondary statefulset strategy type | `RollingUpdate` |
|
||||
| `secondary.rollingUpdatePartition` | Partition update strategy for Mariadb Secondary statefulset | `""` |
|
||||
| `secondary.podAnnotations` | Additional pod annotations for MariaDB secondary pods | `{}` |
|
||||
@@ -467,7 +467,7 @@ Affected values:
|
||||
### To 8.0.0
|
||||
|
||||
- Several parameters were renamed or disappeared in favor of new ones on this major version:
|
||||
- The terms *master* and *slave* have been replaced by the terms *primary* and *secondary*. Therefore, parameters prefixed with `master` or `slave` are now prefixed with `primary` or `secondary`, respectively.
|
||||
- The terms _master_ and _slave_ have been replaced by the terms _primary_ and _secondary_. Therefore, parameters prefixed with `master` or `slave` are now prefixed with `primary` or `secondary`, respectively.
|
||||
- `securityContext.*` is deprecated in favor of `primary.podSecurityContext`, `primary.containerSecurityContext`, `secondary.podSecurityContext`, and `secondary.containerSecurityContext`.
|
||||
- Credentials parameter are reorganized under the `auth` parameter.
|
||||
- `replication.enabled` parameter is deprecated in favor of `architecture` parameter that accepts two values: `standalone` and `replication`.
|
||||
|
||||
@@ -196,10 +196,10 @@ primary:
|
||||
port=3306
|
||||
socket=/opt/bitnami/mariadb/tmp/mysql.sock
|
||||
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
|
||||
## @param primary.existingConfiguration Name of existing ConfigMap with MariaDB Primary configuration.
|
||||
## @param primary.existingConfigmap Name of existing ConfigMap with MariaDB Primary configuration.
|
||||
## NOTE: When it's set the 'configuration' parameter is ignored
|
||||
##
|
||||
existingConfiguration: ""
|
||||
existingConfigmap: ""
|
||||
## @param primary.updateStrategy.type MariaDB primary statefulset strategy type
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
|
||||
##
|
||||
@@ -568,10 +568,10 @@ secondary:
|
||||
port=3306
|
||||
socket=/opt/bitnami/mariadb/tmp/mysql.sock
|
||||
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
|
||||
## @param secondary.existingConfiguration Name of existing ConfigMap with MariaDB Secondary configuration.
|
||||
## @param secondary.existingConfigmap Name of existing ConfigMap with MariaDB Secondary configuration.
|
||||
## NOTE: When it's set the 'configuration' parameter is ignored
|
||||
##
|
||||
existingConfiguration: ""
|
||||
existingConfigmap: ""
|
||||
## @param secondary.updateStrategy.type MariaDB secondary statefulset strategy type
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user