feat(umami): provision new DB
All checks were successful
Renovate / renovate (push) Successful in 44s
All checks were successful
Renovate / renovate (push) Successful in 44s
This commit is contained in:
parent
00231308c5
commit
04ba2c63d7
3 changed files with 22 additions and 0 deletions
|
@ -16,6 +16,8 @@ labels:
|
|||
|
||||
resources:
|
||||
- "resources/namespace.yaml"
|
||||
- "resources/db/db.yaml"
|
||||
- "resources/db/user.yaml"
|
||||
- "resources/deployment.yaml"
|
||||
- "resources/service.yaml"
|
||||
- "resources/http_route.yaml"
|
||||
|
|
8
umami/resources/db/db.yaml
Normal file
8
umami/resources/db/db.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
apiVersion: db.movetokube.com/v1alpha1
|
||||
kind: Postgres
|
||||
metadata:
|
||||
name: umami
|
||||
spec:
|
||||
database: umami
|
||||
dropOnDelete: false
|
12
umami/resources/db/user.yaml
Normal file
12
umami/resources/db/user.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
apiVersion: db.movetokube.com/v1alpha1
|
||||
kind: PostgresUser
|
||||
metadata:
|
||||
name: umami
|
||||
spec:
|
||||
role: umami
|
||||
database: umami
|
||||
secretName: db-credentials
|
||||
privileges: OWNER
|
||||
secretTemplate:
|
||||
PQ_URL: "postgresql://{{.Role}}:{{.Password}}@app-cluster-pooler-rw.postgres.svc:5432/{{.Database}}?sslmode=require"
|
Loading…
Reference in a new issue