Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.5.25

[FEATURE] Add revisionHistoryLimit [#619](https://github.com/WeblateOrg/helm/pull/619)
[BUGFIX] Use bitnami images from docker.io/bitnamilegacy for dependencies due to bitnami deprecating their public catalog. See bitnami/charts#35164

## 0.5.24

[FEATURE] Add `timeoutSeconds` and `successThreshold` for **livenessProbe** and **readinessProbe** [#583](https://github.com/WeblateOrg/helm/issues/583)
Expand Down
2 changes: 1 addition & 1 deletion charts/weblate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ appVersion: 5.13.3.3
description: Weblate is a free web-based translation management system.
name: weblate
type: application
version: 0.5.24
version: 0.5.25
home: https://weblate.org/
icon: https://s.weblate.org/cdn/weblate.svg
maintainers:
Expand Down
6 changes: 5 additions & 1 deletion charts/weblate/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# weblate

![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)
![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)

Weblate is a free web-based translation management system.

Expand Down Expand Up @@ -91,6 +91,8 @@ $ helm install my-release weblate/weblate
| postgresql.auth.secretKeys.userPasswordKey | string | `"postgresql-password"` | |
| postgresql.auth.userName | string | `""` | |
| postgresql.enabled | bool | `true` | |
| postgresql.global.security.allowInsecureImages | bool | `true` | |
| postgresql.image.repository | string | `"bitnamilegacy/postgresql"` | |
| postgresql.postgresqlHost | string | `None` | External postgres database endpoint, to be used if `postgresql.enabled == false` |
| postgresql.service.ports.postgresql | int | `5432` | |
| readinessProbe.failureThreshold | int | `2` | |
Expand All @@ -105,6 +107,8 @@ $ helm install my-release weblate/weblate
| redis.auth.password | string | `"weblate"` | |
| redis.db | int | `1` | |
| redis.enabled | bool | `true` | |
| redis.global.security.allowInsecureImages | bool | `true` | |
| redis.image.repository | string | `"bitnamilegacy/redis"` | |
| redis.redisHost | string | `None` | External redis database endpoint, to be used if `redis.enabled == false` |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
Expand Down
12 changes: 12 additions & 0 deletions charts/weblate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ readinessProbe:
successThreshold: 1

postgresql:
global:
security:
# required to allow bitnamilegacy repository
allowInsecureImages: true
image:
repository: bitnamilegacy/postgresql
auth:
# PostgreSQL user should be a superuser to
# be able to install pg_trgm extension. Alternatively you can install it
Expand All @@ -217,6 +223,12 @@ postgresql:
postgresqlHost:

redis:
global:
security:
# required to allow bitnamilegacy repository
allowInsecureImages: true
image:
repository: bitnamilegacy/redis
architecture: standalone
auth:
enabled: true
Expand Down