diff options
author | Alexis de Talhouƫt <adetalhouet89@gmail.com> | 2019-02-04 22:32:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-04 22:32:11 +0000 |
commit | c0302566e649066e7afa28a58aae1154b9d45849 (patch) | |
tree | 7c6d450fd972930a7894a5963d0483fd97775b73 /kubernetes/pomba/charts/pomba-aaictxbuilder/templates | |
parent | e38c3eabdb4a28cd89783628ff8a41d7a9304036 (diff) | |
parent | 0b8059292f3d844864dc16f32180fd357344ab76 (diff) |
Merge "Chg AAI version to V13 in AaiCtxBuilder"
Diffstat (limited to 'kubernetes/pomba/charts/pomba-aaictxbuilder/templates')
-rw-r--r-- | kubernetes/pomba/charts/pomba-aaictxbuilder/templates/deployment.yaml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/kubernetes/pomba/charts/pomba-aaictxbuilder/templates/deployment.yaml b/kubernetes/pomba/charts/pomba-aaictxbuilder/templates/deployment.yaml index 6d46e9de09..d8210b32fc 100644 --- a/kubernetes/pomba/charts/pomba-aaictxbuilder/templates/deployment.yaml +++ b/kubernetes/pomba/charts/pomba-aaictxbuilder/templates/deployment.yaml @@ -56,15 +56,20 @@ spec: name: localtime readOnly: true - name: {{ include "common.fullname" . }}-logs - mountPath: /var/log/onap + mountPath: /opt/app/logs + readOnly: false - mountPath: /opt/app/config/logback.xml name: {{ include "common.fullname" . }}-log-conf subPath: logback.xml + - name: {{ include "common.fullname" . }}-logs-eelf + mountPath: /opt/app/logs/EELF + readOnly: false - mountPath: /opt/app/config/application.properties name: {{ include "common.fullname" . }}-config subPath: application.properties readOnly: true + resources: {{ include "common.resources" . | indent 12 }} {{- if .Values.nodeSelector }} @@ -87,7 +92,7 @@ spec: - name: {{ include "common.fullname" . }}-data-filebeat mountPath: /usr/share/filebeat/data - name: {{ include "common.fullname" . }}-logs - mountPath: /var/log/onap + mountPath: /opt/app/logs volumes: - name: localtime @@ -106,7 +111,8 @@ spec: emptyDir: {} - name: {{ include "common.fullname" . }}-logs emptyDir: {} - + - name: {{ include "common.fullname" . }}-logs-eelf + emptyDir: {} imagePullSecrets: - name: "{{ include "common.namespace" . }}-docker-registry-key" |