diff options
author | Dusan Rozman <dusan.rozman@amdocs.com> | 2017-10-02 09:55:04 -0400 |
---|---|---|
committer | Dusan Rozman <dusan.rozman@amdocs.com> | 2017-10-02 10:02:29 -0400 |
commit | d29156116c93e33ecbaa9f9ea867b6e9c102d989 (patch) | |
tree | d2046e49e4ef0ecaf607f9bd2809416e537e21b1 /templates/aaf-deployment.yaml | |
parent | 906b67060c1f062816b9baa91d5c9845dad41dab (diff) |
Added missing mount to aaf deployment yaml
Created mount /data2/ needed for aaf
Change-Id: I050579e42afce9dc29c4c7a3cfdfb05ddb4d4217
Issue-ID: OOM-331
Signed-off-by: Dusan Rozman <dusan.rozman@amdocs.com>
Diffstat (limited to 'templates/aaf-deployment.yaml')
-rw-r--r-- | templates/aaf-deployment.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/aaf-deployment.yaml b/templates/aaf-deployment.yaml index 20e21c4..5950b92 100644 --- a/templates/aaf-deployment.yaml +++ b/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 |