mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
22 lines
525 B
YAML
22 lines
525 B
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app outline
|
|
namespace: default
|
|
spec:
|
|
values:
|
|
initContainers:
|
|
init-db:
|
|
image: ghcr.io/onedr0p/postgres-initdb:14.5
|
|
env:
|
|
- name: POSTGRES_HOST
|
|
value: postgres.${SECRET_DOMAIN}
|
|
- name: POSTGRES_DB
|
|
value: *app
|
|
- name: POSTGRES_SUPER_PASS
|
|
value: ${SECRET_POSTGRESQL_POSTGRES_PASSWORD}
|
|
envFrom:
|
|
- secretRef:
|
|
name: *app
|