Dependency updates, update where postgresql password is set
This commit is contained in:
parent
f5bef70e04
commit
013c879d32
|
@ -26,14 +26,4 @@ upload:
|
|||
script:
|
||||
- 'curl --request POST --user gitlab-ci-token:$CI_JOB_TOKEN --form "chart=@chart/glitchtip.tgz" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/api/stable/charts"'
|
||||
only:
|
||||
- master
|
||||
|
||||
pages:
|
||||
stage: upload
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
script:
|
||||
- ls public
|
||||
only:
|
||||
- master
|
||||
- tags
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
dependencies:
|
||||
- name: postgresql
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 11.1.16
|
||||
version: 11.1.25
|
||||
- name: redis
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 16.5.5
|
||||
digest: sha256:bac8f2f5cfd606a20aee1e712417ea19653ff28d53f9c684ef047bb5456e828f
|
||||
generated: "2022-04-05T17:05:38.211033952-04:00"
|
||||
version: 16.8.9
|
||||
digest: sha256:dfe84aaf6f25e860c8175c19cf068ef609c0cb36bdfc2190717d37a55eb6afd4
|
||||
generated: "2022-05-01T11:50:00.925596567-04:00"
|
||||
|
|
|
@ -14,7 +14,7 @@ type: application
|
|||
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
version: 0.1.3
|
||||
version: 0.1.4
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application.
|
||||
|
@ -28,6 +28,6 @@ dependencies:
|
|||
repository: https://charts.bitnami.com/bitnami
|
||||
condition: postgresql.enabled
|
||||
- name: redis
|
||||
version: ~16.5.5
|
||||
version: ~16.8.9
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
condition: redis.enabled
|
||||
|
|
Binary file not shown.
BIN
charts/postgresql-11.1.25.tgz
Normal file
BIN
charts/postgresql-11.1.25.tgz
Normal file
Binary file not shown.
Binary file not shown.
BIN
charts/redis-16.8.9.tgz
Normal file
BIN
charts/redis-16.8.9.tgz
Normal file
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
image:
|
||||
tag: v1.11.1 # Make this the latest version, then change it to upgrade
|
||||
tag: v1.12.0 # Make this the latest version, then change it to upgrade
|
||||
pullPolicy: IfNotPresent
|
||||
env:
|
||||
normal:
|
||||
|
@ -10,7 +10,8 @@ env:
|
|||
# DATABASE_URL: postgres://postgres:postgres@postgres:5432/postgres
|
||||
postgresql:
|
||||
enabled: true # Be careful upgrading. The postgresql helm chart does not support major upgrades.
|
||||
postgresqlPassword: mypass
|
||||
auth:
|
||||
postgresPassword: change_this # Without setting this, you'll have to set the password on each upgrade
|
||||
primary:
|
||||
persistence:
|
||||
size: 10Gi # Default is 8, may want this considerably higher
|
||||
|
|
Loading…
Reference in a new issue