Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2021-11-15 19:55:30 +00:00
parent 8db9184061
commit 9731a32ce4
19 changed files with 262 additions and 19 deletions
+9
View File
@@ -1,6 +1,15 @@
# Changelog<br>
<a name="mariadb-1.0.1"></a>
### [mariadb-1.0.1](https://github.com/truecharts/apps/compare/mariadb-1.0.0...mariadb-1.0.1) (2021-11-15)
#### Feat
* move postgresql to use statefullset and cleanup ([#1335](https://github.com/truecharts/apps/issues/1335))
<a name="mariadb-1.0.0"></a>
### [mariadb-1.0.0](https://github.com/truecharts/apps/compare/mariadb-0.0.1...mariadb-1.0.0) (2021-11-15)
+2 -3
View File
@@ -49,8 +49,7 @@ You will, however, be able to use all values referenced in the common chart here
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `3306` | |
| service.main.ports.main.targetPort | int | `3306` | |
| volumeClaimTemplates.db.accessMode | string | `"ReadWriteOnce"` | |
| volumeClaimTemplates.db.enabled | bool | `true` | |
| volumeClaimTemplates.db.mountPath | string | `"/bitnami/mariadb"` | |
| volumeClaimTemplates.data.enabled | bool | `true` | |
| volumeClaimTemplates.data.mountPath | string | `"/bitnami/mariadb"` | |
All Rights Reserved - The TrueCharts Project
@@ -1,6 +1,15 @@
# Changelog<br>
<a name="postgresql-5.2.0"></a>
### [postgresql-5.2.0](https://github.com/truecharts/apps/compare/postgresql-5.1.18...postgresql-5.2.0) (2021-11-15)
#### Feat
* move postgresql to use statefullset and cleanup ([#1335](https://github.com/truecharts/apps/issues/1335))
<a name="postgresql-5.1.18"></a>
### [postgresql-5.1.18](https://github.com/truecharts/apps/compare/postgresql-5.1.17...postgresql-5.1.18) (2021-11-15)
+22 -1
View File
@@ -11,6 +11,13 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| controller.replicas | int | `1` | Number of desired pods |
| controller.revisionHistoryLimit | int | `3` | ReplicaSet revision history limit |
| controller.rollingUpdate.partition | string | `nil` | Set statefulset RollingUpdate partition |
| controller.rollingUpdate.surge | string | `nil` | Set deployment RollingUpdate max surge |
| controller.rollingUpdate.unavailable | int | `1` | Set deployment RollingUpdate max unavailable |
| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this. |
| controller.type | string | `"statefulset"` | Set the controller type. Valid options are deployment, daemonset or statefulset |
| enableUpgradeBackup | bool | `false` | |
| envTpl.POSTGRES_DB | string | `"{{ .Values.postgresqlDatabase }}"` | |
| envTpl.POSTGRES_USER | string | `"{{ .Values.postgresqlUsername }}"` | |
@@ -22,8 +29,20 @@ You will, however, be able to use all values referenced in the common chart here
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"bitnami/postgresql"` | |
| image.tag | string | `"14.1.0@sha256:480fa9cd68d9013ea622b8a6dc71505bc8f0eaeac6d062cb5182bff44d0fcdbb"` | |
| initContainers.migrate-db.command[0] | string | `"/bin/sh"` | |
| initContainers.migrate-db.command[1] | string | `"-cx"` | |
| initContainers.migrate-db.command[2] | string | `"echo 'trying to migrate old db to new location...'\nmkdir -p /bitnami/postgresql/data\nmv -f /bitnami/postgresql/old/* /bitnami/postgresql/ || true\nchown -R {{ .Values.podSecurityContext.runAsUser }}:{{ .Values.podSecurityContext.fsGroup }} /bitnami/postgresql/\nchmod 775 /bitnami/postgresql/\n"` | |
| initContainers.migrate-db.image | string | `"{{ .Values.alpineImage.repository}}:{{ .Values.alpineImage.tag }}"` | |
| initContainers.migrate-db.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainers.migrate-db.securityContext.privileged | bool | `true` | |
| initContainers.migrate-db.securityContext.runAsNonRoot | bool | `false` | |
| initContainers.migrate-db.securityContext.runAsUser | int | `0` | |
| initContainers.migrate-db.volumeMounts[0].mountPath | string | `"/bitnami/postgresql/old"` | |
| initContainers.migrate-db.volumeMounts[0].name | string | `"db"` | |
| initContainers.migrate-db.volumeMounts[1].mountPath | string | `"/bitnami/postgresql"` | |
| initContainers.migrate-db.volumeMounts[1].name | string | `"data"` | |
| persistence.db.enabled | bool | `true` | |
| persistence.db.mountPath | string | `"/bitnami/postgresql"` | |
| persistence.db.mountPath | string | `"/bitnami/postgresql/old"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| postgrespassword | string | `"testroot"` | |
| postgresqlDatabase | string | `"test"` | |
@@ -33,5 +52,7 @@ You will, however, be able to use all values referenced in the common chart here
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `5432` | |
| service.main.ports.main.targetPort | int | `5432` | |
| volumeClaimTemplates.data.enabled | bool | `true` | |
| volumeClaimTemplates.data.mountPath | string | `"/bitnami/postgresql"` | |
All Rights Reserved - The TrueCharts Project
+9
View File
@@ -1,6 +1,15 @@
# Changelog<br>
<a name="redis-1.0.3"></a>
### [redis-1.0.3](https://github.com/truecharts/apps/compare/redis-1.0.2...redis-1.0.3) (2021-11-15)
#### Feat
* move postgresql to use statefullset and cleanup ([#1335](https://github.com/truecharts/apps/issues/1335))
<a name="redis-1.0.2"></a>
### [redis-1.0.2](https://github.com/truecharts/apps/compare/redis-1.0.1...redis-1.0.2) (2021-11-15)
-3
View File
@@ -50,10 +50,7 @@ You will, however, be able to use all values referenced in the common chart here
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| service.main.ports.main.port | int | `6379` | |
| service.main.ports.main.targetPort | int | `6379` | |
| volumeClaimTemplates.data.accessMode | string | `"ReadWriteOnce"` | |
| volumeClaimTemplates.data.enabled | bool | `true` | |
| volumeClaimTemplates.data.mountPath | string | `"/bitnami/redis"` | |
| volumeClaimTemplates.data.size | string | `"100Gi"` | |
| volumeClaimTemplates.data.type | string | `"pvc"` | |
All Rights Reserved - The TrueCharts Project