diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-03-25 09:19:34 -0700 |
---|---|---|
committer | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-03-30 19:07:08 +0000 |
commit | 93b4fd477cb834af30051b86cb764c96d218290e (patch) | |
tree | 963b09b35a80168798deae0eee5fa87c84e4038e /kubernetes/clamp/templates | |
parent | e0c3fc48aa7d6000502ed6c83b6c3a3e63572619 (diff) |
Update CLAMP deployment for Frankfurt release (RC0)
Update the SQL and settings of Clamp + set the docker image to current release
Issue-ID: CLAMP-795
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: Idaa4935516237221c90c4cf9141136fa1e104a02
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" + |