diff options
author | jmac <james.macnider@amdocs.com> | 2018-04-26 14:26:55 +0000 |
---|---|---|
committer | jmac <james.macnider@amdocs.com> | 2018-05-02 14:25:53 +0000 |
commit | 8d6dc96d5cdc582b236ba4c6a76ece023094f55c (patch) | |
tree | 36533de1f4cfc608c55d0fc6cae7a2f3bd77d397 /kubernetes/sdnc/templates/statefulset.yaml | |
parent | c72aa028fcfd48a7f6674eb17fc9e7454184be2e (diff) |
Add PV for SDN-C MD-DAL data exports
The path '/opt/opendaylight/current/daexim' is now mapped to a persistent
volume that will survive pod restarts and destruction. A separate PV is
created for each SDN-C instance with the same ordinal as the corresponding
sdnc pod.
Change-Id: Ib5373fc2ae25b70992ff69e78571106f37af72e4
Signed-off-by: jmac <james.macnider@amdocs.com>
Issue-ID: SDNC-223
Diffstat (limited to 'kubernetes/sdnc/templates/statefulset.yaml')
-rw-r--r-- | kubernetes/sdnc/templates/statefulset.yaml | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/kubernetes/sdnc/templates/statefulset.yaml b/kubernetes/sdnc/templates/statefulset.yaml index 55eaf2b4d0..ccf283ff4c 100644 --- a/kubernetes/sdnc/templates/statefulset.yaml +++ b/kubernetes/sdnc/templates/statefulset.yaml @@ -102,6 +102,8 @@ spec: - mountPath: /opt/onap/sdnc/svclogic/config/svclogic.properties name: onap-sdnc-svclogic-config subPath: svclogic.properties + - mountPath: {{ .Values.persistence.mdsalPath }} + name: {{ include "common.fullname" . }}-data - mountPath: /var/log/onap name: logs resources: @@ -127,6 +129,8 @@ spec: name: logs - mountPath: /usr/share/filebeat/data name: data-filebeat + imagePullSecrets: + - name: "{{ include "common.namespace" . }}-docker-registry-key" volumes: - name: localtime hostPath: @@ -183,6 +187,19 @@ spec: - key: svclogic.properties path: svclogic.properties mode: 0644 - - imagePullSecrets: - - name: "{{ include "common.namespace" . }}-docker-registry-key" + {{ if not .Values.persistence.enabled }} + - name: {{ include "common.fullname" . }}-data + emptyDir: {} + {{ else }} + volumeClaimTemplates: + - metadata: + name: {{ include "common.fullname" . }}-data + labels: + name: {{ include "common.fullname" . }} + spec: + accessModes: [ {{ .Values.persistence.accessMode }} ] + storageClassName: {{ include "common.fullname" . }}-data + resources: + requests: + storage: {{ .Values.persistence.size }} + {{ end }}
\ No newline at end of file |