diff --git a/charts/dependency/mariadb/CHANGELOG.md b/charts/dependency/mariadb/CHANGELOG.md index 0746dfa1b41..eb7a02fb93a 100644 --- a/charts/dependency/mariadb/CHANGELOG.md +++ b/charts/dependency/mariadb/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [mariadb-1.0.0](https://github.com/truecharts/apps/compare/mariadb-0.0.1...mariadb-1.0.0) (2021-11-15) diff --git a/charts/dependency/mariadb/helm-values.md b/charts/dependency/mariadb/helm-values.md index 9c91fb29ef5..82f1fb27c5e 100644 --- a/charts/dependency/mariadb/helm-values.md +++ b/charts/dependency/mariadb/helm-values.md @@ -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 diff --git a/charts/dependency/postgresql/CHANGELOG.md b/charts/dependency/postgresql/CHANGELOG.md index 38188753dce..0ccc7a31d60 100644 --- a/charts/dependency/postgresql/CHANGELOG.md +++ b/charts/dependency/postgresql/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [postgresql-5.1.18](https://github.com/truecharts/apps/compare/postgresql-5.1.17...postgresql-5.1.18) (2021-11-15) diff --git a/charts/dependency/postgresql/helm-values.md b/charts/dependency/postgresql/helm-values.md index d7d6ec06bd2..67a2c3dda9d 100644 --- a/charts/dependency/postgresql/helm-values.md +++ b/charts/dependency/postgresql/helm-values.md @@ -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 diff --git a/charts/dependency/redis/CHANGELOG.md b/charts/dependency/redis/CHANGELOG.md index c75b199eb32..b55851fbfe0 100644 --- a/charts/dependency/redis/CHANGELOG.md +++ b/charts/dependency/redis/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [redis-1.0.2](https://github.com/truecharts/apps/compare/redis-1.0.1...redis-1.0.2) (2021-11-15) diff --git a/charts/dependency/redis/helm-values.md b/charts/dependency/redis/helm-values.md index 543012effc0..656f11bb339 100644 --- a/charts/dependency/redis/helm-values.md +++ b/charts/dependency/redis/helm-values.md @@ -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 diff --git a/charts/stable/openldap/CHANGELOG.md b/charts/stable/openldap/CHANGELOG.md index 3ed98dff243..ad23dffd885 100644 --- a/charts/stable/openldap/CHANGELOG.md +++ b/charts/stable/openldap/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [openldap-4.0.13](https://github.com/truecharts/apps/compare/openldap-4.0.12...openldap-4.0.13) (2021-11-15) + +#### Feat + +* move postgresql to use statefullset and cleanup ([#1335](https://github.com/truecharts/apps/issues/1335)) + + + ### [openldap-4.0.12](https://github.com/truecharts/apps/compare/openldap-4.0.11...openldap-4.0.12) (2021-11-14) diff --git a/charts/stable/openldap/README.md b/charts/stable/openldap/README.md index 441cfc9e66e..e4c839735e9 100644 --- a/charts/stable/openldap/README.md +++ b/charts/stable/openldap/README.md @@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://truecharts.org | common | 8.5.7 | +| https://truecharts.org | common | 8.6.1 | ## Installing the Chart diff --git a/charts/stable/openldap/helm-values.md b/charts/stable/openldap/helm-values.md index 8624ae6bffe..4c4c87a77e7 100644 --- a/charts/stable/openldap/helm-values.md +++ b/charts/stable/openldap/helm-values.md @@ -60,6 +60,6 @@ You will, however, be able to use all values referenced in the common chart here | service.ldaps.ports.ldaps.targetPort | int | `636` | | | service.main.ports.main.port | int | `389` | | | service.main.ports.main.targetPort | int | `389` | | -| volumeClaimTemplates | object | `{"data":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/var/lib/ldap/","size":"100Gi"},"slapd":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/etc/ldap/slapd.d/","size":"100Gi"}}` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. | +| volumeClaimTemplates | object | `{"data":{"enabled":true,"mountPath":"/var/lib/ldap/"},"slapd":{"enabled":true,"mountPath":"/etc/ldap/slapd.d/"}}` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. | All Rights Reserved - The TrueCharts Project diff --git a/docs/apps/dependency/mariadb/CHANGELOG.md b/docs/apps/dependency/mariadb/CHANGELOG.md index 0746dfa1b41..eb7a02fb93a 100644 --- a/docs/apps/dependency/mariadb/CHANGELOG.md +++ b/docs/apps/dependency/mariadb/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [mariadb-1.0.0](https://github.com/truecharts/apps/compare/mariadb-0.0.1...mariadb-1.0.0) (2021-11-15) diff --git a/docs/apps/dependency/mariadb/helm-values.md b/docs/apps/dependency/mariadb/helm-values.md index 9c91fb29ef5..82f1fb27c5e 100644 --- a/docs/apps/dependency/mariadb/helm-values.md +++ b/docs/apps/dependency/mariadb/helm-values.md @@ -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 diff --git a/docs/apps/dependency/postgresql/CHANGELOG.md b/docs/apps/dependency/postgresql/CHANGELOG.md index 38188753dce..0ccc7a31d60 100644 --- a/docs/apps/dependency/postgresql/CHANGELOG.md +++ b/docs/apps/dependency/postgresql/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [postgresql-5.1.18](https://github.com/truecharts/apps/compare/postgresql-5.1.17...postgresql-5.1.18) (2021-11-15) diff --git a/docs/apps/dependency/postgresql/helm-values.md b/docs/apps/dependency/postgresql/helm-values.md index d7d6ec06bd2..67a2c3dda9d 100644 --- a/docs/apps/dependency/postgresql/helm-values.md +++ b/docs/apps/dependency/postgresql/helm-values.md @@ -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 diff --git a/docs/apps/dependency/redis/CHANGELOG.md b/docs/apps/dependency/redis/CHANGELOG.md index c75b199eb32..b55851fbfe0 100644 --- a/docs/apps/dependency/redis/CHANGELOG.md +++ b/docs/apps/dependency/redis/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [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)) + + + ### [redis-1.0.2](https://github.com/truecharts/apps/compare/redis-1.0.1...redis-1.0.2) (2021-11-15) diff --git a/docs/apps/dependency/redis/helm-values.md b/docs/apps/dependency/redis/helm-values.md index 543012effc0..656f11bb339 100644 --- a/docs/apps/dependency/redis/helm-values.md +++ b/docs/apps/dependency/redis/helm-values.md @@ -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 diff --git a/docs/apps/stable/openldap/CHANGELOG.md b/docs/apps/stable/openldap/CHANGELOG.md index 3ed98dff243..ad23dffd885 100644 --- a/docs/apps/stable/openldap/CHANGELOG.md +++ b/docs/apps/stable/openldap/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [openldap-4.0.13](https://github.com/truecharts/apps/compare/openldap-4.0.12...openldap-4.0.13) (2021-11-15) + +#### Feat + +* move postgresql to use statefullset and cleanup ([#1335](https://github.com/truecharts/apps/issues/1335)) + + + ### [openldap-4.0.12](https://github.com/truecharts/apps/compare/openldap-4.0.11...openldap-4.0.12) (2021-11-14) diff --git a/docs/apps/stable/openldap/helm-values.md b/docs/apps/stable/openldap/helm-values.md index 8624ae6bffe..4c4c87a77e7 100644 --- a/docs/apps/stable/openldap/helm-values.md +++ b/docs/apps/stable/openldap/helm-values.md @@ -60,6 +60,6 @@ You will, however, be able to use all values referenced in the common chart here | service.ldaps.ports.ldaps.targetPort | int | `636` | | | service.main.ports.main.port | int | `389` | | | service.main.ports.main.targetPort | int | `389` | | -| volumeClaimTemplates | object | `{"data":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/var/lib/ldap/","size":"100Gi"},"slapd":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/etc/ldap/slapd.d/","size":"100Gi"}}` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. | +| volumeClaimTemplates | object | `{"data":{"enabled":true,"mountPath":"/var/lib/ldap/"},"slapd":{"enabled":true,"mountPath":"/etc/ldap/slapd.d/"}}` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. | All Rights Reserved - The TrueCharts Project diff --git a/docs/apps/stable/openldap/index.md b/docs/apps/stable/openldap/index.md index 441cfc9e66e..e4c839735e9 100644 --- a/docs/apps/stable/openldap/index.md +++ b/docs/apps/stable/openldap/index.md @@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://truecharts.org | common | 8.5.7 | +| https://truecharts.org | common | 8.6.1 | ## Installing the Chart diff --git a/docs/index.yaml b/docs/index.yaml index 8cfdbee4c54..f534e9b40ba 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -112057,6 +112057,42 @@ entries: - https://github.com/truecharts/apps/releases/download/lychee-3.1.5/lychee-3.1.5.tgz version: 3.1.5 mariadb: + - annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - database + truecharts.org/grade: U + apiVersion: v2 + appVersion: 10.6.5 + created: "2021-11-15T19:55:26.672244743Z" + dependencies: + - name: common + repository: https://truecharts.org + version: 8.6.1 + description: Fast, reliable, scalable, and easy to use open-source relational + database system. + digest: 01eec2981d5d0b32ff7ef94e5ad07e77a0624b32d2680344d8795bdea1a913ee + home: https://github.com/truecharts/apps/tree/master/stable/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + type: application + urls: + - https://github.com/truecharts/apps/releases/download/mariadb-1.0.1/mariadb-1.0.1.tgz + version: 1.0.1 - annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | @@ -144978,6 +145014,40 @@ entries: - https://github.com/truecharts/apps/releases/download/openkm-0.0.1/openkm-0.0.1.tgz version: 0.0.1 openldap: + - annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - cloud + truecharts.org/grade: U + apiVersion: v2 + appVersion: 1.5.0 + created: "2021-11-15T19:55:26.827527961Z" + dependencies: + - name: common + repository: https://truecharts.org + version: 8.6.1 + description: Community developed LDAP software + digest: 58cc3700b7c50df7e717ccd46401993d5b0a3a11bb0ab08f1be232b950ba22b0 + home: https://www.openldap.org + icon: https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Database-openldap.svg/640px-Database-openldap.svg.png + keywords: + - ldap + - openldap + - iam-stack + - high availability + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org + name: openldap + sources: + - https://github.com/jp-gouin/helm-openldap + - https://github.com/osixia/docker-openldap + type: application + urls: + - https://github.com/truecharts/apps/releases/download/openldap-4.0.13/openldap-4.0.13.tgz + version: 4.0.13 - annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | @@ -168876,6 +168946,39 @@ entries: - https://github.com/truecharts/apps/releases/download/portalexample-0.0.1/portalexample-0.0.1.tgz version: 0.0.1 postgresql: + - annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - database + truecharts.org/grade: U + apiVersion: v2 + appVersion: 14.1.0 + created: "2021-11-15T19:55:26.978366844Z" + dependencies: + - name: common + repository: https://truecharts.org + version: 8.6.1 + description: PostgresSQL + digest: 2cd93c7a09a600cdd3703d6bcb745837796aea09547be1e1bd17aa1830394433 + home: https://github.com/truecharts/apps/tree/master/stable/postgres + icon: https://d1q6f0aelx0por.cloudfront.net/product-logos/library-postgres-logo.png + keywords: + - postgres + - postgressql + - dtabase + - sql + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org + name: postgresql + sources: + - https://www.postgresql.org/ + type: application + urls: + - https://github.com/truecharts/apps/releases/download/postgresql-5.2.0/postgresql-5.2.0.tgz + version: 5.2.0 - annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | @@ -190246,6 +190349,40 @@ entries: - https://github.com/truecharts/apps/releases/download/recipes-0.0.1/recipes-0.0.1.tgz version: 0.0.1 redis: + - annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - database + - cache + truecharts.org/grade: U + apiVersion: v2 + appVersion: 6.2.6 + created: "2021-11-15T19:55:27.140834218Z" + dependencies: + - name: common + repository: https://truecharts.org + version: 8.6.1 + description: Open source, advanced key-value store. + digest: b34d395bd072639bb906239fa6fa1663df38056226ce2e1335e814b5a21d4657 + home: https://github.com/truecharts/apps/tree/master/stable/redis + icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png + keywords: + - redis + - keyvalue + - database + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org + name: redis + sources: + - https://github.com/bitnami/bitnami-docker-redis + - http://redis.io/ + type: application + urls: + - https://github.com/truecharts/apps/releases/download/redis-1.0.3/redis-1.0.3.tgz + version: 1.0.3 - annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | @@ -245117,4 +245254,4 @@ entries: urls: - https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-3.1.5/zwavejs2mqtt-3.1.5.tgz version: 3.1.5 -generated: "2021-11-15T19:06:59.175569007Z" +generated: "2021-11-15T19:55:27.229018209Z"