loomio (not yet working), and new config for postgres and redis

This commit is contained in:
2025-12-30 03:39:19 +00:00
parent 1b78abbdc4
commit 8818d822cf
19 changed files with 452 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: postgres
image: "{{ .apps.postgres.image }}"
image: "{{ .image }}"
args:
[
"-c",
@@ -35,16 +35,16 @@ spec:
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
- name: TZ
value: "{{ .apps.postgres.timezone }}"
value: "{{ .timezone }}"
- name: POSTGRES_DB
value: "{{ .apps.postgres.database }}"
value: "{{ .database }}"
- name: POSTGRES_USER
value: "{{ .apps.postgres.user }}"
value: "{{ .user }}"
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: postgres-secrets
key: apps.postgres.password
key: password
volumeMounts:
- name: postgres-data
mountPath: /var/lib/postgresql/data