Skip to content

Releases: wger-project/helm-charts

wger-0.2.4

02 Mar 09:36
c75a834
Compare
Choose a tag to compare
  • support existing database
    • credentials in the values.yaml
    • credentials in a existing secret
  • minor upgrade postgres
  • minor upgrade redis

wger-0.2.4-rc.1

22 Feb 11:42
043ef50
Compare
Choose a tag to compare
wger-0.2.4-rc.1 Pre-release
Pre-release
  • support existing database
    • credentials in the values.yaml
    • credentials in a existing secret
  • minor upgrade postgres
  • minor upgrade redis

wger-0.2.3

01 Feb 10:46
622cc90
Compare
Choose a tag to compare
  • fix initContainer when flower is not enabled
  • add NOTES.txt
  • move README.md and LICENSE into package
  • add wger icon
  • add to https://artifacthub.io

wger-0.2.2

31 Jan 13:59
d905cf6
Compare
Choose a tag to compare
  • Every helm upgrade will restart the deployments
  • Create/Update secrets in pre-* hooks

Mail settings

  • Values to setup the mail configuration
  • Creates a new secret for the mail password
  • Manually created secrets can be used with:
app:
  mail:
    secret:
      name: yoursecret
      key: yourkey

wger-0.2.1

17 Sep 04:27
e06c70a
Compare
Choose a tag to compare
  • fixes #54 Database migration fails
  • fix celery redis password
  • update development setup

wger-0.2.1-rc.1

21 Jun 07:51
1cb7ac0
Compare
Choose a tag to compare
wger-0.2.1-rc.1 Pre-release
Pre-release
  • fix redis password for celery containers

wger-0.2.0

26 May 09:53
286ad31
Compare
Choose a tag to compare
  • redis upgrade
  • postgres minor upgrade
  • setting a redis password is now possible
  • remove inexistent 500 error page config in nginx
  • increase proxy timeout for gunicorn
  • mention DJANGO_ADMINS environment variable

Upgrade

Postgres values change

Upgraded chart from groundhog2k for postgres requires changes to the values.yml:

postgres:
  settings:
    superuser:
      value: postgres
    superuserPassword:
      value: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  userDatabase:
    name:
      value: wger
    user:
      value: wger
    password:
      value: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Redis password

When enabling the redis password after the installation (upgrade), it is required to set the password once in the values.yml, as soon as the secret is created it can be removed.

redis:
  auth:
    enabled: true
    password: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Enabling redis authentication, requires you to set the following env and args, for the redis container:

redis:
  auth:
    enabled: true
  # Additional environment variables (Redis server and Sentinel)
  env:
    - name: REDIS_PASSWORD
      valueFrom:
        secretKeyRef:
          name: redis
          key: redis-password
  # Arguments for the container entrypoint process (Redis server)
  args:
    - "--requirepass $(REDIS_PASSWORD)"

wger-0.2.0-rc.1

13 May 18:47
76bbbd4
Compare
Choose a tag to compare
wger-0.2.0-rc.1 Pre-release
Pre-release
  • redis upgrade
  • postgres minor upgrade
  • setting a redis password is now possible

Upgrade

Postgres values change

Upgraded chart from groundhog2k for postgres requires changes to the values.yml:

postgres:
  settings:
    superuser:
      value: postgres
    superuserPassword:
      value: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  userDatabase:
    name:
      value: wger
    user:
      value: wger
    password:
      value: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Redis password

When enabling the redis password after the installation (upgrade), it is required to set the password once in the values.yml, as soon as the secret is created it can be removed.

redis:
  auth:
    enabled: true
    password: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Enabling redis authentication, requires you to set the following env and args, for the redis container:

redis:
  auth:
    enabled: true
  # Additional environment variables (Redis server and Sentinel)
  env:
    - name: REDIS_PASSWORD
      valueFrom:
        secretKeyRef:
          name: redis
          key: redis-password
  # Arguments for the container entrypoint process (Redis server)
  args:
    - "--requirepass $(REDIS_PASSWORD)"

wger-0.1.12

15 Mar 10:32
4d2e588
Compare
Choose a tag to compare
  • increase the resource limit
  • use 127.0.0.1 instead of localhost

wger-0.1.11

05 Jan 07:31
91ba990
Compare
Choose a tag to compare
  • X-FORWARD-FOR header in django has a HTTP prefix
  • use integer in yaml