diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-03-31 05:56:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-31 05:56:16 +0000 |
commit | 62b927f8ac6b15387ec9828cccb51bef67298b5a (patch) | |
tree | 64accb1879c6b08a0ef9f8708933cd41c5c9f009 /kubernetes/clamp/templates | |
parent | 1b6875ac94561f437050b8b33328e9c9720f1a57 (diff) | |
parent | 93b4fd477cb834af30051b86cb764c96d218290e (diff) |
Merge "Update CLAMP deployment for Frankfurt release (RC0)"
Diffstat (limited to 'kubernetes/clamp/templates')
-rw-r--r-- | kubernetes/clamp/templates/deployment.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kubernetes/clamp/templates/deployment.yaml b/kubernetes/clamp/templates/deployment.yaml index cc6440050f..e4ac4723da 100644 --- a/kubernetes/clamp/templates/deployment.yaml +++ b/kubernetes/clamp/templates/deployment.yaml @@ -81,9 +81,9 @@ spec: volumeMounts: - name: {{ include "common.fullname" . }}-logs mountPath: /var/log/nginx/ - - mountPath: /etc/nginx/conf.d/nginx.conf + - mountPath: /etc/nginx/conf.d/default.conf name: {{ include "common.fullname" . }}-config - subPath: nginx.conf + subPath: default.conf resources: {{ include "common.resources" . | indent 12 }} {{- if .Values.nodeSelector }} @@ -99,8 +99,8 @@ spec: configMap: name: {{ include "common.fullname" . }} items: - - key: nginx.conf - path: nginx.conf + - key: default.conf + path: default.conf - name: {{ include "common.fullname" . }}-filebeat-conf configMap: name: {{ include "common.release" . }}-clamp-filebeat-configmap @@ -110,3 +110,4 @@ spec: emptyDir: {} imagePullSecrets: - name: "{{ include "common.namespace" . }}-docker-registry-key" + |