diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-02-06 17:20:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-06 17:20:09 +0000 |
commit | 68e6115eb446e0a7993a2d8765a7d05c5345d1d3 (patch) | |
tree | 8d65db34416cddaeceadfa440fdf955d185ff359 /kubernetes/aai/templates/aai-resources-deployment.yaml | |
parent | bce13fa0b25fb7932d5ad1be748541682329853c (diff) | |
parent | f313ba956d64be9f997899af5df46b28bc087e19 (diff) |
Merge "config seg aai resources and traversal"
Diffstat (limited to 'kubernetes/aai/templates/aai-resources-deployment.yaml')
-rw-r--r-- | kubernetes/aai/templates/aai-resources-deployment.yaml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/kubernetes/aai/templates/aai-resources-deployment.yaml b/kubernetes/aai/templates/aai-resources-deployment.yaml index 7ff5e66ee2..5ca0c165df 100644 --- a/kubernetes/aai/templates/aai-resources-deployment.yaml +++ b/kubernetes/aai/templates/aai-resources-deployment.yaml @@ -50,7 +50,10 @@ spec: - mountPath: /etc/localtime name: localtime readOnly: true - - mountPath: /var/chef/aai-data/ + - mountPath: /var/chef/aai-data/chef-config/dev/.knife/solo.rb + subPath: solo.rb + name: aai-chef-config + - mountPath: /var/chef/aai-data/environments/ name: aai-data - mountPath: /var/log/onap name: aai-resources-logs @@ -69,6 +72,7 @@ spec: imagePullPolicy: {{ .Values.pullPolicy }} volumeMounts: - mountPath: /usr/share/filebeat/filebeat.yml + subPath: filebeat.yml name: filebeat-conf - mountPath: /var/log/onap name: aai-resources-logs @@ -78,12 +82,15 @@ spec: - name: localtime hostPath: path: /etc/localtime + - name: aai-chef-config + configMap: + name: aai-chef-config-configmap - name: aai-data - hostPath: - path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/aai-data/" + configMap: + name: aai-resources-environments-configmap - name: filebeat-conf - hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/logback/filebeat.yml + configMap: + name: aai-filebeat-configmap - name: aai-resources-logs emptyDir: {} - name: aai-resources-filebeat |