diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-05-07 10:08:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-07 10:08:24 +0000 |
commit | 942e8f8450f06dc2f20d6c3b5dc28a62ef524770 (patch) | |
tree | 1651fd0f1e019edf6571545567bc2c08c0626e6f /kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml | |
parent | f7591a5a90a005e825fddb4de73da62d55d6cb70 (diff) | |
parent | 8f9ef350ce5f3ea446e526105c0251393782d38a (diff) |
Merge "[AAF] v1.16+ compatible templates"
Diffstat (limited to 'kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml')
-rw-r--r-- | kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml b/kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml index e76baa2d36..b3e7f9fabd 100644 --- a/kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml +++ b/kubernetes/aaf/charts/aaf-sshsm/templates/pv-dbus.yaml @@ -14,27 +14,4 @@ # limitations under the License. */}} -{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}} -{{- if eq "True" (include "common.needPV" .) }} -kind: PersistentVolume -apiVersion: v1 -metadata: - name: {{ include "common.fullname" . }}-dbus - namespace: {{ include "common.namespace" . }} - labels: - app: {{ include "common.name" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" - release: "{{ include "common.release" . }}" - heritage: "{{ .Release.Service }}" - name: {{ include "common.fullname" . }}-dbus -spec: - capacity: - storage: {{ .Values.persistence.size}} - accessModes: - - {{ .Values.persistence.accessMode }} - persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }} - storageClassName: "{{ include "common.fullname" . }}-dbus" - hostPath: - path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.dbusMountSubPath }} -{{- end -}} -{{- end -}} +{{ include "common.PV" (dict "dot" . "suffix" "dbus" "persistenceInfos" .Values.persistence.dbus) }} |