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

remove pvc-userbackend because it makes the installation fail and it is deprecated

parent 4da9e4dc
No related branches found
No related tags found
1 merge request!68Merge loginpanel into main and release 0.5.0
Pipeline #10325 failed with stages
in 1 minute and 15 seconds
{{- if .Values.userbackend.persistence.enabled -}}
{{- if not .Values.userbackend.persistence.existingClaim -}}
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: {{ include "single-sign-on.fullname" . }}-userbackend
labels:
{{ include "single-sign-on.labels" . | indent 4 }}
{{- if .Values.userbackend.persistence.annotations }}
annotations:
{{ toYaml .Values.userbackend.persistence.annotations | indent 4 }}
{{- end }}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: {{ .Values.userbackend.persistence.size }}
{{- if .Values.userbackend.persistence.storageClass }}
{{- if not (eq "-" .Values.userbackend.persistence.storageClass) }}
storageClassName: "{{ .Values.userbackend.persistence.storageClass }}"
{{- end }}
{{- end }}
{{- end -}}
{{- end -}}
......@@ -219,8 +219,6 @@ login:
# for a detailed list of the options available here, refer to
# https://www.ory.sh/docs/hydra/sdk/api#create-an-oauth-20-client
oAuthClients:
# oauthClients[].clientName is the name of the oauth client that needs to be the same as
# the application name in userbackend.applications[].name
- clientName: user-panel
# oauthClients[].clientSecret is the secret the client uses to authenticate
clientSecret: "YouReallyNeedToChangeThis"
......
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