diff options
author | Kangwook Lee (이강욱) <pbzweihander@gmail.com> | 2022-10-28 23:21:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 16:21:58 +0200 |
commit | 9bf6a8af82391fa8b32112deb4a36a0cfc68143e (patch) | |
tree | 94751a60e043d7a84f75c62cb2304bdfcf3f3518 /chart | |
parent | 923f06a07c851b25b989412f341f87f8b8fff42f (diff) |
Fix PostgreSQL password reference (#19502)
Diffstat (limited to 'chart')
-rw-r--r-- | chart/templates/deployment-sidekiq.yaml | 2 | ||||
-rw-r--r-- | chart/templates/deployment-streaming.yaml | 2 | ||||
-rw-r--r-- | chart/templates/deployment-web.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chart/templates/deployment-sidekiq.yaml b/chart/templates/deployment-sidekiq.yaml index f1809bd85..44d3b8203 100644 --- a/chart/templates/deployment-sidekiq.yaml +++ b/chart/templates/deployment-sidekiq.yaml @@ -76,7 +76,7 @@ spec: valueFrom: secretKeyRef: name: {{ template "mastodon.postgresql.secretName" . }} - key: password + key: postgresql-password - name: "REDIS_PASSWORD" valueFrom: secretKeyRef: diff --git a/chart/templates/deployment-streaming.yaml b/chart/templates/deployment-streaming.yaml index 12203a530..6b7c3cdd9 100644 --- a/chart/templates/deployment-streaming.yaml +++ b/chart/templates/deployment-streaming.yaml @@ -44,7 +44,7 @@ spec: valueFrom: secretKeyRef: name: {{ template "mastodon.postgresql.secretName" . }} - key: password + key: postgresql-password - name: "REDIS_PASSWORD" valueFrom: secretKeyRef: diff --git a/chart/templates/deployment-web.yaml b/chart/templates/deployment-web.yaml index ab722c77b..c5d177e51 100644 --- a/chart/templates/deployment-web.yaml +++ b/chart/templates/deployment-web.yaml @@ -62,7 +62,7 @@ spec: valueFrom: secretKeyRef: name: {{ template "mastodon.postgresql.secretName" . }} - key: password + key: postgresql-password - name: "REDIS_PASSWORD" valueFrom: secretKeyRef: |