Update mariadb chart from 9.x to 11.x #407

Closed
pat-s wants to merge 5 commits from refs/pull/407/head into main
4 changed files with 29 additions and 18 deletions

View File

@ -9,7 +9,7 @@ dependencies:
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
version: 10.3.17
- name: mariadb
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
version: 9.3.6
digest: sha256:eb786e862718ddd8c66d66b0a7d3501bd7fbb3c8edef12a406c9544159971965
generated: "2023-02-26T13:51:59.1429398+01:00"
repository: oci://registry-1.docker.io/bitnamicharts
version: 11.4.7
digest: sha256:898599305b96235ef9d8781ca079510be687e74ae1e9e9b73614d0290e4e1e9b
generated: "2023-02-26T15:58:54.210572+01:00"

View File

@ -45,7 +45,8 @@ dependencies:
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
version: 10.3.17
condition: postgresql.enabled
# Chart release date: 2023-02
- name: mariadb
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
version: 9.3.6
repository: oci://registry-1.docker.io/bitnamicharts
version: 11.4.7
condition: mariadb.enabled

View File

@ -803,15 +803,15 @@ gitea:
### MariaDB
| Name | Description | Value |
| ---------------------------------- | ----------------------------------------------------------------- | ------- |
| `mariadb.enabled` | Enable MariaDB | `false` |
| `mariadb.auth.database` | Name of the database to create. | `gitea` |
| `mariadb.auth.username` | Username of the new user to create. | `gitea` |
| `mariadb.auth.password` | Password for the new user. Ignored if existing secret is provided | `gitea` |
| `mariadb.auth.rootPassword` | Password for the root user. | `gitea` |
| `mariadb.primary.service.port` | Port to connect to MariaDB service | `3306` |
| `mariadb.primary.persistence.size` | Persistence size for MariaDB | `10Gi` |
| Name | Description | Value |
| ------------------------------------- | ----------------------------------------------------------------- | ------- |
| `mariadb.enabled` | Enable MariaDB | `false` |
| `mariadb.auth.database` | Name of the database to create. | `gitea` |
| `mariadb.auth.username` | Username of the new user to create. | `gitea` |
| `mariadb.auth.password` | Password for the new user. Ignored if existing secret is provided | `gitea` |
| `mariadb.auth.rootPassword` | Password for the root user. | `gitea` |
| `mariadb.primary.service.ports.mysql` | Port to connect to MariaDB service | `3306` |
| `mariadb.primary.persistence.size` | Persistence size for MariaDB | `10Gi` |
### Advanced
@ -830,6 +830,14 @@ See [CONTRIBUTORS GUIDE](CONTRIBUTING.md) for details.
This section lists major and breaking changes of each Helm Chart version.
Please read them carefully to upgrade successfully.
### To 8.0.0
#### MariaDB
This update bumps the MariDB chart from 9.x to 11., which comes with a MariaDB version update from 10.5.9 to 10.6.12 [(update instructions)](https://mariadb.com/kb/en/upgrading-from-mariadb-10-5-to-mariadb-10-6/).
See the [MariaDB Chart Changelog for 10.0](https://github.com/bitnami/charts/tree/main/bitnami/mariadb#to-1000) for details.
With respect to values, `primary.service.port` has been renamed to `primary.service.ports.mysql`.
### To 7.0.0
#### Gitea 1.18.1
@ -838,6 +846,8 @@ This Chart version updates Gitea to 1.18.1. Don't miss any application related [
#### Private GPG key configuration for Gitea signing actions
---
Having `signing.enabled=true` now requires to use either `signing.privateKey` or `signing.existingSecret` so that the Chart can automatically prepare the GPG key for Gitea internal signing actions.
See [Configure commit signing](#configure-commit-signing) for details.

View File

@ -125,7 +125,6 @@ service:
loadBalancerSourceRanges: []
annotations: {}
## @section Ingress
## @param ingress.enabled Enable ingress
## @param ingress.className Ingress class name
@ -465,7 +464,7 @@ mysql:
## @param mariadb.auth.username Username of the new user to create.
## @param mariadb.auth.password Password for the new user. Ignored if existing secret is provided
## @param mariadb.auth.rootPassword Password for the root user.
## @param mariadb.primary.service.port Port to connect to MariaDB service
## @param mariadb.primary.service.ports.mysql Port to connect to MariaDB service
## @param mariadb.primary.persistence.size Persistence size for MariaDB
mariadb:
enabled: false
@ -476,7 +475,8 @@ mariadb:
rootPassword: gitea
primary:
service:
port: 3306
ports:
mysql: 3306
persistence:
size: 10Gi