Skip to content
Snippets Groups Projects
Verified Commit 1a66e5aa authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

fix postgresql values

parent 65aa8554
No related branches found
No related tags found
No related merge requests found
......@@ -5,17 +5,16 @@ metadata:
name: stackspin-single-sign-on-database-values
data:
values.yaml: |
postgresql:
persistence:
size: 1Gi
enabled: true
existingClaim: single-sign-on-database
annotations: {}
initdbScripts:
setup.sql: |
CREATE USER hydra WITH PASSWORD '${hydra_postgresql_password}';
CREATE USER kratos WITH PASSWORD '${kratos_postgresql_password}';
CREATE USER stackspin WITH PASSWORD '${dashboard_postgresql_password}';
CREATE DATABASE kratos WITH OWNER kratos;
CREATE DATABASE hydra WITH OWNER hydra;
CREATE DATABASE stackspin WITH OWNER stackspin;
persistence:
size: 1Gi
enabled: true
existingClaim: single-sign-on-database
annotations: {}
initdbScripts:
setup.sql: |
CREATE USER hydra WITH PASSWORD '${hydra_postgresql_password}';
CREATE USER kratos WITH PASSWORD '${kratos_postgresql_password}';
CREATE USER stackspin WITH PASSWORD '${dashboard_postgresql_password}';
CREATE DATABASE kratos WITH OWNER kratos;
CREATE DATABASE hydra WITH OWNER hydra;
CREATE DATABASE stackspin WITH OWNER stackspin;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment