diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2017-10-05 18:01:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-05 18:01:22 +0000 |
commit | 756429ad6cd108bff2d81871227e0d6b9080a839 (patch) | |
tree | 46c45ab663ae8e966f184c8d88912cfdf7d1bd13 /kubernetes/aaf/templates/aaf-deployment.yaml | |
parent | cdabac5a645dc52162835a9ace8c36dcb05db5e1 (diff) | |
parent | e755f640ec263d81f30a509055714d7b76b329a3 (diff) |
Merge "Added missing mount to aaf deployment yaml"
Diffstat (limited to 'kubernetes/aaf/templates/aaf-deployment.yaml')
-rw-r--r-- | kubernetes/aaf/templates/aaf-deployment.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kubernetes/aaf/templates/aaf-deployment.yaml b/kubernetes/aaf/templates/aaf-deployment.yaml index 20e21c4ee8..5950b92c00 100644 --- a/kubernetes/aaf/templates/aaf-deployment.yaml +++ b/kubernetes/aaf/templates/aaf-deployment.yaml @@ -47,11 +47,18 @@ spec: value: cassandra_container image: {{ .Values.image.aafImage }}:{{ .Values.image.aafVersion }} imagePullPolicy: {{ .Values.pullPolicy }} + volumeMounts: + - mountPath: /data + name: aaf-data name: aaf readinessProbe: tcpSocket: port: 8101 initialDelaySeconds: 5 periodSeconds: 10 + volumes: + - name: aaf-data + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data2 imagePullSecrets: - name: {{ .Values.nsPrefix }}-docker-registry-key |