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

do not create the postgres PVC inside the helm chart

parent bb191e7b
No related branches found
No related tags found
1 merge request!54Resolve "Database PVC creation should be optional"
Pipeline #9662 failed
apiVersion: v1 apiVersion: v1
description: A Helm chart for Stackspin's Single sign-on components description: A Helm chart for Stackspin's Single sign-on components
name: single-sign-on name: single-sign-on
version: 0.4.1 version: 0.4.2
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: single-sign-on-database
spec:
accessModes:
- ReadWriteOnce
volumeMode: Filesystem
resources:
requests:
storage: 1Gi
storageClassName: local-path
...@@ -72,10 +72,9 @@ userbackend: ...@@ -72,10 +72,9 @@ userbackend:
postgresql: postgresql:
persistence: persistence:
existingClaim: "single-sign-on-database"
enabled: true enabled: true
size: 1Gi size: 1Gi
storageClass: "-" storageClass: "local-path"
annotations: {} annotations: {}
initdbScripts: initdbScripts:
setup.sql: | setup.sql: |
......
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