diff options
author | Munir Ahmad <munir.ahmad@bell.ca> | 2018-01-30 17:13:19 -0500 |
---|---|---|
committer | Munir Ahmad <munir.ahmad@bell.ca> | 2018-01-30 17:21:33 -0500 |
commit | 05b29cc607b6d6a0eac65aae34f41acbf850e920 (patch) | |
tree | 5b8890953b03a6e1c149a1774203c4b3ffa6d8ac /kubernetes/aai/templates/hbase-deployment.yaml | |
parent | c2e4627285a01bae296b9097a604a9f02f98a2f9 (diff) |
Persist AAI data
Issue-ID: OOM-639
Change-Id: I0e90a12ac8f00c6b34d99dbd4ac1921a3c8591a9
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
Diffstat (limited to 'kubernetes/aai/templates/hbase-deployment.yaml')
-rw-r--r-- | kubernetes/aai/templates/hbase-deployment.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/kubernetes/aai/templates/hbase-deployment.yaml b/kubernetes/aai/templates/hbase-deployment.yaml index fd8e10cc5a..acb29dad09 100644 --- a/kubernetes/aai/templates/hbase-deployment.yaml +++ b/kubernetes/aai/templates/hbase-deployment.yaml @@ -33,13 +33,18 @@ spec: initialDelaySeconds: 5 periodSeconds: 10 volumeMounts: + - name: hbase-data + mountPath: /tmp - name: localtime mountPath: /etc/localtime readOnly: true volumes: + - name: hbase-data + hostPath: + path: /dockerdata-nfs/onap/aai/hbase - name: localtime hostPath: path: /etc/localtime imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" -#{{ end }}
\ No newline at end of file +#{{ end }} |