Browse Source

Fix PostgreSQL password reference (#19502)

closed-social-glitch-2
Kangwook Lee (이강욱) 1 year ago
committed by GitHub
parent
commit
9bf6a8af82
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      chart/templates/deployment-sidekiq.yaml
  2. +1
    -1
      chart/templates/deployment-streaming.yaml
  3. +1
    -1
      chart/templates/deployment-web.yaml

+ 1
- 1
chart/templates/deployment-sidekiq.yaml View File

@ -76,7 +76,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ template "mastodon.postgresql.secretName" . }}
key: password
key: postgresql-password
- name: "REDIS_PASSWORD"
valueFrom:
secretKeyRef:

+ 1
- 1
chart/templates/deployment-streaming.yaml View File

@ -44,7 +44,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ template "mastodon.postgresql.secretName" . }}
key: password
key: postgresql-password
- name: "REDIS_PASSWORD"
valueFrom:
secretKeyRef:

+ 1
- 1
chart/templates/deployment-web.yaml View File

@ -62,7 +62,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ template "mastodon.postgresql.secretName" . }}
key: password
key: postgresql-password
- name: "REDIS_PASSWORD"
valueFrom:
secretKeyRef:

Loading…
Cancel
Save