Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.0 #50

Merged
merged 6 commits into from
May 26, 2024
Merged

Release 0.2.0 #50

merged 6 commits into from
May 26, 2024

Conversation

bbkz
Copy link
Contributor

@bbkz bbkz commented May 26, 2024

  • 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)"

@bbkz bbkz merged commit 286ad31 into wger-project:master May 26, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant