diff options
author | vaibhav_16dec <vaibhav.chopra@amdocs.com> | 2018-03-19 05:45:47 +0000 |
---|---|---|
committer | Mike Elliott <mike.elliott@amdocs.com> | 2018-03-21 14:20:44 -0400 |
commit | f67e418cca95ef2c07e61bf65ea0334ac5ca9b1c (patch) | |
tree | 2d49e7177b4c23c91685ce15d366323f70405822 /kubernetes/clamp/charts/mariadb/templates/configmap.yaml | |
parent | a68cf4f3da292a9b41b6570067470bb456ca41c6 (diff) |
Add Helm Chart Standardization for Clamp
Issue-ID: OOM-735
Change-Id: Id5789742b4c930dcb2bebebbaa2cf82182949ee3
Signed-off-by: vaibhav_16dec <vaibhav.chopra@amdocs.com>
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Diffstat (limited to 'kubernetes/clamp/charts/mariadb/templates/configmap.yaml')
-rw-r--r-- | kubernetes/clamp/charts/mariadb/templates/configmap.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kubernetes/clamp/charts/mariadb/templates/configmap.yaml b/kubernetes/clamp/charts/mariadb/templates/configmap.yaml new file mode 100644 index 0000000000..8b58aedcb0 --- /dev/null +++ b/kubernetes/clamp/charts/mariadb/templates/configmap.yaml @@ -0,0 +1,33 @@ +#{{ if not .Values.disableClampClampMariadb }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: clamp-entrypoint-initdb-configmap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/mariadb/docker-entrypoint-initdb.d/*").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: clamp-entrypoint-drop-configmap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/mariadb/docker-entrypoint-initdb.d/drop/*").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: clamp-entrypoint-bulkload-configmap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/mariadb/docker-entrypoint-initdb.d/bulkload/*").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: clamp-mariadb-conf-configmap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/mariadb/conf.d/conf1/*").AsConfig . | indent 2 }} +#{{ end }} |