blob: 2d93be0ea0e67e84ec5de933a61914858d11fc6a [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12{{- if .Values.manifests.configmap_bin }}
13
14{{- $envAll := . }}
15---
16apiVersion: v1
17kind: ConfigMap
18metadata:
19 name: designate-bin
20data:
21{{- if .Values.bootstrap.enabled }}
22 bootstrap.sh: |+
23{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
24{{- end }}
25 ks-service.sh: |+
26{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
27 ks-endpoints.sh: |+
28{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
29 ks-user.sh: |+
30{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
31 db-init.py: |
32{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
33 db-sync.sh: |
34{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
35 designate-api.sh: |
36{{ tuple "bin/_designate-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
37 designate-central.sh: |
38{{ tuple "bin/_designate-central.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
39 designate-mdns.sh: |
40{{ tuple "bin/_designate-mdns.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
41 designate-worker.sh: |
42{{ tuple "bin/_designate-worker.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
43 designate-producer.sh: |
44{{ tuple "bin/_designate-producer.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
45 designate-sink.sh: |
46{{ tuple "bin/_designate-sink.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
47 rabbit-init.sh: |
48{{- include "helm-toolkit.scripts.rabbit_init" . | indent 4 }}
49
50{{- end }}