Skip to content

Commit 14f048b

Browse files
RisingOpsNinjapre-commit-ci[bot]nijelpre-commit-ci-lite[bot]
authored
fix(deps): Use bitnami images from docker.io/bitnamilegacy (#626)
* fix(deps): Use bitnami images from docker.io/bitnamilegacy due to bitnami deprecating their public catalog. See bitnami/charts#35164 Signed-off-by: RisingOpsNinja <175097282+RisingOpsNinja@users.noreply.github.com> * Bump chart version to 0.5.25 Signed-off-by: RisingOpsNinja <175097282+RisingOpsNinja@users.noreply.github.com> * Add Changelog Signed-off-by: RisingOpsNinja <175097282+RisingOpsNinja@users.noreply.github.com> * CHANGELOG.md: Add missing newlines Signed-off-by: RisingOpsNinja <175097282+RisingOpsNinja@users.noreply.github.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore(pre-commit): apply code formatting --------- Signed-off-by: RisingOpsNinja <175097282+RisingOpsNinja@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Michal Čihař <michal@cihar.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
1 parent 8ac1647 commit 14f048b

4 files changed

Lines changed: 23 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.25
2+
3+
[FEATURE] Add revisionHistoryLimit [#619](https://github.com/WeblateOrg/helm/pull/619)
4+
[BUGFIX] Use bitnami images from docker.io/bitnamilegacy for dependencies due to bitnami deprecating their public catalog. See bitnami/charts#35164
5+
16
## 0.5.24
27

38
[FEATURE] Add `timeoutSeconds` and `successThreshold` for **livenessProbe** and **readinessProbe** [#583](https://github.com/WeblateOrg/helm/issues/583)

charts/weblate/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ appVersion: 5.13.3.3
44
description: Weblate is a free web-based translation management system.
55
name: weblate
66
type: application
7-
version: 0.5.24
7+
version: 0.5.25
88
home: https://weblate.org/
99
icon: https://s.weblate.org/cdn/weblate.svg
1010
maintainers:

charts/weblate/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# weblate
22

3-
![Version: 0.5.24](https://img.shields.io/badge/Version-0.5.24-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.13.3.3](https://img.shields.io/badge/AppVersion-5.13.3.3-informational?style=flat-square)
3+
![Version: 0.5.25](https://img.shields.io/badge/Version-0.5.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.13.3.3](https://img.shields.io/badge/AppVersion-5.13.3.3-informational?style=flat-square)
44

55
Weblate is a free web-based translation management system.
66

@@ -91,6 +91,8 @@ $ helm install my-release weblate/weblate
9191
| postgresql.auth.secretKeys.userPasswordKey | string | `"postgresql-password"` | |
9292
| postgresql.auth.userName | string | `""` | |
9393
| postgresql.enabled | bool | `true` | |
94+
| postgresql.global.security.allowInsecureImages | bool | `true` | |
95+
| postgresql.image.repository | string | `"bitnamilegacy/postgresql"` | |
9496
| postgresql.postgresqlHost | string | `None` | External postgres database endpoint, to be used if `postgresql.enabled == false` |
9597
| postgresql.service.ports.postgresql | int | `5432` | |
9698
| readinessProbe.failureThreshold | int | `2` | |
@@ -105,6 +107,8 @@ $ helm install my-release weblate/weblate
105107
| redis.auth.password | string | `"weblate"` | |
106108
| redis.db | int | `1` | |
107109
| redis.enabled | bool | `true` | |
110+
| redis.global.security.allowInsecureImages | bool | `true` | |
111+
| redis.image.repository | string | `"bitnamilegacy/redis"` | |
108112
| redis.redisHost | string | `None` | External redis database endpoint, to be used if `redis.enabled == false` |
109113
| replicaCount | int | `1` | |
110114
| resources | object | `{}` | |

charts/weblate/values.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,12 @@ readinessProbe:
196196
successThreshold: 1
197197

198198
postgresql:
199+
global:
200+
security:
201+
# required to allow bitnamilegacy repository
202+
allowInsecureImages: true
203+
image:
204+
repository: bitnamilegacy/postgresql
199205
auth:
200206
# PostgreSQL user should be a superuser to
201207
# be able to install pg_trgm extension. Alternatively you can install it
@@ -217,6 +223,12 @@ postgresql:
217223
postgresqlHost:
218224

219225
redis:
226+
global:
227+
security:
228+
# required to allow bitnamilegacy repository
229+
allowInsecureImages: true
230+
image:
231+
repository: bitnamilegacy/redis
220232
architecture: standalone
221233
auth:
222234
enabled: true

0 commit comments

Comments
 (0)