Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm/ldap-server/templates/deployment-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ spec:
lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.lifecycleHooks "context" .) | nindent 12 }}
{{- end }}
volumeMounts:
- name: tmp-volume
mountPath: /tmp
- name: usr-share-univention-ldap-volume
mountPath: /usr/share/univention-ldap
- name: usr-share-oidc-volume
Expand Down Expand Up @@ -251,6 +253,8 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" .) | nindent 12 }}
{{- end }}
volumes:
- name: tmp-volume
emptyDir: {}
- name: "data-volume"
emptyDir: {}
- name: "var-run-volume"
Expand Down
4 changes: 4 additions & 0 deletions helm/ldap-server/templates/statefulset-primary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,15 @@ spec:
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.readinessProbe "context" .) | nindent 12 }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.startupProbe "context" .) | nindent 12 }}
volumeMounts:
- name: tmp-volume
mountPath: /tmp
{{- if .Values.persistence.enabled }}
- name: "shared-data"
mountPath: /var/lib/univention-ldap
{{- end }}
volumes:
- name: tmp-volume
emptyDir: {}
- name: "slapd-overlay-unix-socket-volume"
emptyDir: {}
- name: "usr-share-univention-ldap-volume"
Expand Down
4 changes: 4 additions & 0 deletions helm/ldap-server/templates/statefulset-secondary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ spec:
lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.lifecycleHooks "context" .) | nindent 12 }}
{{- end }}
volumeMounts:
- name: tmp-volume
mountPath: /tmp
- name: usr-share-univention-ldap-volume
mountPath: /usr/share/univention-ldap
- name: usr-share-oidc-volume
Expand Down Expand Up @@ -331,6 +333,8 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" .) | nindent 12 }}
{{- end }}
volumes:
- name: tmp-volume
emptyDir: {}
- name: "usr-share-univention-ldap-volume"
emptyDir: {}
- name: "usr-share-saml-volume"
Expand Down