Configure the secret so we can connect
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
30c38f06c1
commit
6bc6703659
|
@ -56,6 +56,33 @@ spec:
|
||||||
name: config
|
name: config
|
||||||
dnsPolicy: ClusterFirst
|
dnsPolicy: ClusterFirst
|
||||||
enableServiceLinks: true
|
enableServiceLinks: true
|
||||||
|
initContainers:
|
||||||
|
- command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
PG_HOST=homeassistant-postgres
|
||||||
|
PG_DB=homeassistant
|
||||||
|
echo "psql_string: \"postgresql://${PG_USER}:${PG_PASS}@${PG_HOST}/${PG_DB}\"" > /config/secrets.yaml
|
||||||
|
env:
|
||||||
|
- name: PG_USER
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
key: username
|
||||||
|
name: homeassistant.homeassistant-postgres.credentials.postgresql.acid.zalan.do
|
||||||
|
- name: PG_PASS
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
key: password
|
||||||
|
name: homeassistant.homeassistant-postgres.credentials.postgresql.acid.zalan.do
|
||||||
|
image: alpine:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
name: dbsecret
|
||||||
|
terminationMessagePath: /dev/termination-log
|
||||||
|
terminationMessagePolicy: File
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /config
|
||||||
|
name: config
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
schedulerName: default-scheduler
|
schedulerName: default-scheduler
|
||||||
serviceAccount: default
|
serviceAccount: default
|
||||||
|
|
Loading…
Reference in New Issue