feat(fider): provision new DB
All checks were successful
Renovate / renovate (push) Successful in 40s
All checks were successful
Renovate / renovate (push) Successful in 40s
This commit is contained in:
parent
6e55c2c6ce
commit
15552bba71
3 changed files with 22 additions and 0 deletions
|
@ -11,6 +11,8 @@ labels:
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- "resources/namespace.yaml"
|
- "resources/namespace.yaml"
|
||||||
|
- "resources/db/db.yaml"
|
||||||
|
- "resources/db/user.yaml"
|
||||||
- "resources/deployment.yaml"
|
- "resources/deployment.yaml"
|
||||||
- "resources/service.yaml"
|
- "resources/service.yaml"
|
||||||
- "resources/http_routes.yaml"
|
- "resources/http_routes.yaml"
|
||||||
|
|
8
fider/resources/db/db.yaml
Normal file
8
fider/resources/db/db.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
apiVersion: db.movetokube.com/v1alpha1
|
||||||
|
kind: Postgres
|
||||||
|
metadata:
|
||||||
|
name: fider
|
||||||
|
spec:
|
||||||
|
database: fider
|
||||||
|
dropOnDelete: false
|
12
fider/resources/db/user.yaml
Normal file
12
fider/resources/db/user.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
apiVersion: db.movetokube.com/v1alpha1
|
||||||
|
kind: PostgresUser
|
||||||
|
metadata:
|
||||||
|
name: fider
|
||||||
|
spec:
|
||||||
|
role: fider
|
||||||
|
database: fider
|
||||||
|
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