Fix deployment-db manifest according to docker-compose file (#9447)
Update `packages/twenty-docker/k8s/manifests/deployment-db.yaml` file to match recent changes in docker-compose.yaml version. - update postgresql docker image to Spilo version - add important ENV vars
This commit is contained in:
@ -27,13 +27,17 @@ spec:
|
|||||||
claimName: twentycrm-db-pvc
|
claimName: twentycrm-db-pvc
|
||||||
containers:
|
containers:
|
||||||
- name: twentycrm
|
- name: twentycrm
|
||||||
image: twentycrm/twenty-postgres:latest
|
image: twentycrm/twenty-postgres-spilo:latest
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
env:
|
env:
|
||||||
- name: PGUSER_SUPERUSER
|
- name: PGUSER_SUPERUSER
|
||||||
value: "postgres"
|
value: "postgres"
|
||||||
- name: PGPASSWORD_SUPERUSER
|
- name: PGPASSWORD_SUPERUSER
|
||||||
value: "postgres"
|
value: "postgres"
|
||||||
|
- name: SPILO_PROVIDER
|
||||||
|
value: "local"
|
||||||
|
- name: ALLOW_NOSSL
|
||||||
|
value: "true"
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 5432
|
- containerPort: 5432
|
||||||
name: tcp
|
name: tcp
|
||||||
|
|||||||
Reference in New Issue
Block a user