Added missing mount to aaf deployment yaml
[oom.git] / kubernetes / aaf / templates / aaf-deployment.yaml
index 20e21c4..5950b92 100644 (file)
@@ -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