From 2cffc4e3ae6b9ef874a9681d9c6fe505859e8a28 Mon Sep 17 00:00:00 2001 From: Mykyta Karpin Date: Thu, 14 Nov 2019 12:55:48 +0200 Subject: [PATCH] Move ingress config to separate configmap Currently when updating configuration for mariadb, ingress pods also are being restarted, however there were no reasons for this. Change-Id: I398e20541a0e2337e9a5d100f3ef6ce4ad7d0284 --- mariadb/templates/configmap-etc.yaml | 6 ---- mariadb/templates/configmap-ingress-etc.yaml | 31 ++++++++++++++++++++ mariadb/templates/deployment-error.yaml | 2 +- mariadb/templates/deployment-ingress.yaml | 8 ++--- mariadb/values.yaml | 1 + 5 files changed, 37 insertions(+), 11 deletions(-) create mode 100644 mariadb/templates/configmap-ingress-etc.yaml diff --git a/mariadb/templates/configmap-etc.yaml b/mariadb/templates/configmap-etc.yaml index 68b4807d14..feb1714fde 100644 --- a/mariadb/templates/configmap-etc.yaml +++ b/mariadb/templates/configmap-etc.yaml @@ -28,10 +28,4 @@ data: {{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" ( index $envAll.Values.conf.database "config_override" ) "key" "20-override.cnf" ) | indent 2 }} {{- end }} {{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" ( index $envAll.Values.conf.database "99_force" ) "key" "99-force.cnf" ) | indent 2 }} -{{- if $envAll.Values.conf.ingress }} - nginx.tmpl: | -{{ $envAll.Values.conf.ingress | indent 4 }} -{{- else }} -{{ ( $envAll.Files.Glob "files/nginx.tmpl" ).AsConfig | indent 2 }} -{{- end }} {{- end }} diff --git a/mariadb/templates/configmap-ingress-etc.yaml b/mariadb/templates/configmap-ingress-etc.yaml new file mode 100644 index 0000000000..375dd37e9c --- /dev/null +++ b/mariadb/templates/configmap-ingress-etc.yaml @@ -0,0 +1,31 @@ +{{/* +Copyright 2017 The Openstack-Helm Authors. + +Licensed under the Apache License, Version 2.0 (the "License" ); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/}} + +{{- if .Values.manifests.configmap_ingress_etc }} +{{- $envAll := . }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: mariadb-ingress-etc +data: +{{- if $envAll.Values.conf.ingress }} + nginx.tmpl: | +{{ $envAll.Values.conf.ingress | indent 4 }} +{{- else }} +{{ ( $envAll.Files.Glob "files/nginx.tmpl" ).AsConfig | indent 2 }} +{{- end }} +{{- end }} diff --git a/mariadb/templates/deployment-error.yaml b/mariadb/templates/deployment-error.yaml index 121c513d71..115212df3a 100644 --- a/mariadb/templates/deployment-error.yaml +++ b/mariadb/templates/deployment-error.yaml @@ -41,7 +41,7 @@ spec: annotations: {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }} configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }} - configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }} + configmap-etc-hash: {{ tuple "configmap-ingress-etc.yaml" . | include "helm-toolkit.utils.hash" }} spec: shareProcessNamespace: true serviceAccountName: {{ $serviceAccountName }} diff --git a/mariadb/templates/deployment-ingress.yaml b/mariadb/templates/deployment-ingress.yaml index 5f0bfab64d..3d43ddb160 100644 --- a/mariadb/templates/deployment-ingress.yaml +++ b/mariadb/templates/deployment-ingress.yaml @@ -138,7 +138,7 @@ spec: annotations: {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }} configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }} - configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }} + configmap-etc-hash: {{ tuple "configmap-ingress-etc.yaml" . | include "helm-toolkit.utils.hash" }} spec: shareProcessNamespace: true serviceAccountName: {{ $serviceAccountName }} @@ -196,7 +196,7 @@ spec: mountPath: /tmp/mariadb-ingress-controller.sh subPath: mariadb-ingress-controller.sh readOnly: true - - name: mariadb-etc + - name: mariadb-ingress-etc mountPath: /etc/nginx/template/nginx.tmpl subPath: nginx.tmpl readOnly: true @@ -207,8 +207,8 @@ spec: configMap: name: mariadb-bin defaultMode: 0555 - - name: mariadb-etc + - name: mariadb-ingress-etc configMap: - name: mariadb-etc + name: mariadb-ingress-etc defaultMode: 0444 {{- end }} diff --git a/mariadb/values.yaml b/mariadb/values.yaml index aee6f96bcc..c5ff96ccf5 100644 --- a/mariadb/values.yaml +++ b/mariadb/values.yaml @@ -512,6 +512,7 @@ manifests: configmap_bin: true configmap_etc: true configmap_ingress_conf: true + configmap_ingress_etc: true configmap_services_tcp: true deployment_error: true deployment_ingress: true