Skip to content

Commit

Permalink
removing data volume mount
Browse files Browse the repository at this point in the history
  • Loading branch information
M_Westerholz committed Nov 29, 2024
1 parent c1d576f commit 51bbaf6
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions charts/dbildungs-iam-keycloak/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,27 +134,16 @@ spec:
- configMapRef:
name: {{ template "common.names.name" . }}
volumeMounts:
- name: data
mountPath: /data
- mountPath: "/opt/keycloak/data/import"
name: realm-config
readOnly: true
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 12 }}
{{- end }}

volumes:
- name: realm-config
configMap:
name: {{ .Values.realm.name }}
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
# volumeClaimTemplates:
# - metadata:
# name: data
# spec:
# accessModes: [ "ReadWriteOnce" ]
# resources:
# requests:
# storage: {{ .Values.persistence.size }}
{{- end }}

0 comments on commit 51bbaf6

Please sign in to comment.