2017-08-07 17:07:38 -05:00
|
|
|
{{/*
|
2018-08-26 17:07:24 -05:00
|
|
|
Copyright 2017-2018 OpenStack Foundation.
|
2017-08-07 17:07:38 -05:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/}}
|
2017-02-17 10:44:54 -05:00
|
|
|
|
2017-08-07 11:37:42 -05:00
|
|
|
{{- if .Values.manifests.configmap_bin }}
|
2017-07-05 02:34:12 -05:00
|
|
|
{{- $envAll := . }}
|
|
|
|
---
|
2016-12-19 15:37:39 -08:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: horizon-bin
|
|
|
|
data:
|
2018-05-10 17:09:18 -05:00
|
|
|
{{- if .Values.images.local_registry.active }}
|
|
|
|
image-repo-sync.sh: |
|
|
|
|
{{- include "helm-toolkit.scripts.image_repo_sync" . | indent 4 }}
|
|
|
|
{{- end }}
|
2017-07-06 22:06:39 -05:00
|
|
|
db-init.py: |
|
|
|
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
|
|
|
db-sync.sh: |
|
|
|
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
2018-02-06 02:30:40 +00:00
|
|
|
db-drop.py: |
|
2017-09-25 13:52:44 -06:00
|
|
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
2017-06-05 14:52:06 -05:00
|
|
|
horizon.sh: |
|
|
|
|
{{ tuple "bin/_horizon.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
2017-08-29 08:01:04 -05:00
|
|
|
manage.py: |
|
|
|
|
{{ tuple "bin/_manage.py.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
django.wsgi: |
|
|
|
|
{{ tuple "bin/_django.wsgi.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
2017-08-07 11:37:42 -05:00
|
|
|
{{- end }}
|