yaml cleanup: trim multiline strings
Change-Id: Ice615c1d252651793dfa09b8e85a5b4228d68737
This commit is contained in:
parent
9bbd48362f
commit
6b844382ad
@ -23,7 +23,7 @@ metadata:
|
|||||||
name: barbican-bin
|
name: barbican-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
barbican-test.sh: |
|
barbican-test.sh: |
|
||||||
@ -32,7 +32,7 @@ data:
|
|||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
barbican.sh: |
|
barbican.sh: |
|
||||||
{{ tuple "bin/_barbican.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_barbican.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -76,14 +76,14 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: barbican-etc
|
name: barbican-etc
|
||||||
data:
|
data:
|
||||||
barbican.conf: |+
|
barbican.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.barbican | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.barbican | indent 4 }}
|
||||||
barbican-api-paste.ini: |+
|
barbican-api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
api_audit_map.conf: |+
|
api_audit_map.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.audit_map | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.audit_map | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
barbican-api.ini: |+
|
barbican-api.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.barbican_api | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.barbican_api | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -31,20 +31,20 @@ data:
|
|||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
ceilometer-api.sh: |+
|
ceilometer-api.sh: |
|
||||||
{{ tuple "bin/_ceilometer-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceilometer-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceilometer-central.sh: |+
|
ceilometer-central.sh: |
|
||||||
{{ tuple "bin/_ceilometer-central.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceilometer-central.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceilometer-collector.sh: |+
|
ceilometer-collector.sh: |
|
||||||
{{ tuple "bin/_ceilometer-collector.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceilometer-collector.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceilometer-compute.sh: |+
|
ceilometer-compute.sh: |
|
||||||
{{ tuple "bin/_ceilometer-compute.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceilometer-compute.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceilometer-notification.sh: |+
|
ceilometer-notification.sh: |
|
||||||
{{ tuple "bin/_ceilometer-notification.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceilometer-notification.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -108,22 +108,22 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: ceilometer-etc
|
name: ceilometer-etc
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tests "etc/_rally_tests.yaml.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tests "etc/_rally_tests.yaml.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
ceilometer.conf: |+
|
ceilometer.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.ceilometer | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.ceilometer | indent 4 }}
|
||||||
api_paste.ini: |+
|
api_paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
event_pipeline.yaml: |+
|
event_pipeline.yaml: |
|
||||||
{{ toYaml .Values.conf.event_pipeline | indent 4 }}
|
{{ toYaml .Values.conf.event_pipeline | indent 4 }}
|
||||||
pipeline.yaml: |+
|
pipeline.yaml: |
|
||||||
{{ toYaml .Values.conf.pipeline | indent 4 }}
|
{{ toYaml .Values.conf.pipeline | indent 4 }}
|
||||||
event_definitions.yaml: |+
|
event_definitions.yaml: |
|
||||||
{{ toYaml .Values.conf.event_definitions | indent 4 }}
|
{{ toYaml .Values.conf.event_definitions | indent 4 }}
|
||||||
gnocchi_resources.yaml: |+
|
gnocchi_resources.yaml: |
|
||||||
{{ toYaml .Values.conf.gnocchi_resources | indent 4 }}
|
{{ toYaml .Values.conf.gnocchi_resources | indent 4 }}
|
||||||
wsgi-ceilometer.conf: |+
|
wsgi-ceilometer.conf: |
|
||||||
{{- tuple .Values.conf.wsgi_ceilometer "etc/_wsgi-ceilometer.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.wsgi_ceilometer "etc/_wsgi-ceilometer.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,8 +22,8 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: ceph-bin-clients
|
name: ceph-bin-clients
|
||||||
data:
|
data:
|
||||||
provisioner-rbd-namespace-client-key-manager.sh: |+
|
provisioner-rbd-namespace-client-key-manager.sh: |
|
||||||
{{ tuple "bin/provisioner/rbd/_namespace-client-key-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/provisioner/rbd/_namespace-client-key-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
provisioner-rbd-namespace-client-key-cleaner.sh: |+
|
provisioner-rbd-namespace-client-key-cleaner.sh: |
|
||||||
{{ tuple "bin/provisioner/rbd/_namespace-client-key-cleaner.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/provisioner/rbd/_namespace-client-key-cleaner.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,10 +22,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: ceph-bin-ks
|
name: ceph-bin-ks
|
||||||
data:
|
data:
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,31 +23,31 @@ metadata:
|
|||||||
name: ceph-bin
|
name: ceph-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
init-dirs.sh: |+
|
init-dirs.sh: |
|
||||||
{{ tuple "bin/_init-dirs.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_init-dirs.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
pool-init.sh: |+
|
pool-init.sh: |
|
||||||
{{ tuple "bin/pool/_init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/pool/_init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
pool-calc.py: |+
|
pool-calc.py: |
|
||||||
{{ tuple "bin/pool/_calc.py.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/pool/_calc.py.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
keys-bootstrap-keyring-generator.py: |+
|
keys-bootstrap-keyring-generator.py: |
|
||||||
{{ tuple "bin/keys/_bootstrap-keyring-generator.py.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/keys/_bootstrap-keyring-generator.py.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
keys-bootstrap-keyring-manager.sh: |+
|
keys-bootstrap-keyring-manager.sh: |
|
||||||
{{ tuple "bin/keys/_bootstrap-keyring-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/keys/_bootstrap-keyring-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
keys-storage-keyring-manager.sh: |+
|
keys-storage-keyring-manager.sh: |
|
||||||
{{ tuple "bin/keys/_storage-keyring-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/keys/_storage-keyring-manager.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
mds-start.sh: |+
|
mds-start.sh: |
|
||||||
{{ tuple "bin/mds/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/mds/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
mgr-start.sh: |+
|
mgr-start.sh: |
|
||||||
{{ tuple "bin/mgr/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/mgr/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
mgr-check.sh: |+
|
mgr-check.sh: |
|
||||||
{{ tuple "bin/mgr/_check.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/mgr/_check.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
mon-start.sh: |
|
mon-start.sh: |
|
||||||
@ -83,9 +83,9 @@ data:
|
|||||||
provisioner-rbd-start.sh: |
|
provisioner-rbd-start.sh: |
|
||||||
{{ tuple "bin/provisioner/rbd/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/provisioner/rbd/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
rgw-start.sh: |+
|
rgw-start.sh: |
|
||||||
{{ tuple "bin/rgw/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/rgw/_start.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
rgw-init-keystone.sh: |+
|
rgw-init-keystone.sh: |
|
||||||
{{ tuple "bin/rgw/_init_keystone.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/rgw/_init_keystone.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -44,7 +44,7 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: {{ $configMapName }}
|
name: {{ $configMapName }}
|
||||||
data:
|
data:
|
||||||
ceph.conf: |+
|
ceph.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.ceph | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.ceph | indent 4 }}
|
||||||
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,16 +22,16 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: ceph-templates
|
name: ceph-templates
|
||||||
data:
|
data:
|
||||||
admin.keyring: |+
|
admin.keyring: |
|
||||||
{{ tuple "templates/_admin.keyring.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_admin.keyring.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
bootstrap.keyring.mds: |+
|
bootstrap.keyring.mds: |
|
||||||
{{ tuple "templates/_bootstrap.keyring.mds.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_bootstrap.keyring.mds.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
bootstrap.keyring.mgr: |+
|
bootstrap.keyring.mgr: |
|
||||||
{{ tuple "templates/_bootstrap.keyring.mgr.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_bootstrap.keyring.mgr.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
bootstrap.keyring.osd: |+
|
bootstrap.keyring.osd: |
|
||||||
{{ tuple "templates/_bootstrap.keyring.osd.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_bootstrap.keyring.osd.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
bootstrap.keyring.rgw: |+
|
bootstrap.keyring.rgw: |
|
||||||
{{ tuple "templates/_bootstrap.keyring.rgw.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_bootstrap.keyring.rgw.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
mon.keyring: |+
|
mon.keyring: |
|
||||||
{{ tuple "templates/_mon.keyring.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "templates/_mon.keyring.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -29,13 +29,13 @@ data:
|
|||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
cinder-api.sh: |
|
cinder-api.sh: |
|
||||||
{{ tuple "bin/_cinder-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_cinder-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
@ -45,20 +45,20 @@ data:
|
|||||||
{{ tuple "bin/_cinder-scheduler.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_cinder-scheduler.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
cinder-volume.sh: |
|
cinder-volume.sh: |
|
||||||
{{ tuple "bin/_cinder-volume.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_cinder-volume.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceph-keyring.sh: |+
|
ceph-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceph-admin-keyring.sh: |+
|
ceph-admin-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
volume-usage-audit.sh: |+
|
volume-usage-audit.sh: |
|
||||||
{{ tuple "bin/_volume-usage-audit.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_volume-usage-audit.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
backup-storage-init.sh: |+
|
backup-storage-init.sh: |
|
||||||
{{ tuple "bin/_backup-storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_backup-storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
storage-init.sh: |+
|
storage-init.sh: |
|
||||||
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
clean-secrets.sh: |+
|
clean-secrets.sh: |
|
||||||
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -98,20 +98,20 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: cinder-etc
|
name: cinder-etc
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
||||||
cinder.conf: |+
|
cinder.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.cinder | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.cinder | indent 4 }}
|
||||||
backends.conf: |+
|
backends.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.backends | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.backends | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
cinder_sudoers: |+
|
cinder_sudoers: |
|
||||||
{{- tuple .Values.conf.neutron_sudoers "etc/_cinder_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.neutron_sudoers "etc/_cinder_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
rootwrap.conf: |+
|
rootwrap.conf: |
|
||||||
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
volume.filters: |+
|
volume.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.volume "etc/rootwrap.d/_volume.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.volume "etc/rootwrap.d/_volume.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -36,10 +36,10 @@ data:
|
|||||||
{{ tuple "bin/_ds_create.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ds_create.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
congress-test.sh: |
|
congress-test.sh: |
|
||||||
{{ tuple "bin/_helm-tests.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_helm-tests.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -63,10 +63,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: congress-etc
|
name: congress-etc
|
||||||
data:
|
data:
|
||||||
congress.conf: |+
|
congress.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.congress | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.congress | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -47,7 +47,7 @@ produce the following config file:
|
|||||||
metadata:
|
metadata:
|
||||||
name: keystone-etc
|
name: keystone-etc
|
||||||
data:
|
data:
|
||||||
keystone.conf: |+
|
keystone.conf: |
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
max_token_size = 255
|
max_token_size = 255
|
||||||
transport_url = rabbit://keystone:password@rabbitmq.default.svc.cluster.local:5672/openstack
|
transport_url = rabbit://keystone:password@rabbitmq.default.svc.cluster.local:5672/openstack
|
||||||
@ -94,6 +94,6 @@ performed via statements in the configmap template, which also calls the
|
|||||||
metadata:
|
metadata:
|
||||||
name: keystone-etc
|
name: keystone-etc
|
||||||
data:
|
data:
|
||||||
keystone.conf: |+
|
keystone.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.keystone | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.keystone | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -25,32 +25,32 @@ metadata:
|
|||||||
data:
|
data:
|
||||||
rally-test.sh: |
|
rally-test.sh: |
|
||||||
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
||||||
storage-init.sh: |+
|
storage-init.sh: |
|
||||||
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
glance-api.sh: |
|
glance-api.sh: |
|
||||||
{{ tuple "bin/_glance-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_glance-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
glance-registry.sh: |
|
glance-registry.sh: |
|
||||||
{{ tuple "bin/_glance-registry.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_glance-registry.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceph-keyring.sh: |+
|
ceph-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceph-admin-keyring.sh: |+
|
ceph-admin-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
clean-image.sh: |+
|
clean-image.sh: |
|
||||||
{{ tuple "bin/_clean-image.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_clean-image.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
clean-secrets.sh: |+
|
clean-secrets.sh: |
|
||||||
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -144,18 +144,18 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: glance-etc
|
name: glance-etc
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
||||||
glance-api.conf: |+
|
glance-api.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.glance | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.glance | indent 4 }}
|
||||||
glance-api-paste.ini: |+
|
glance-api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
glance-registry.conf: |+
|
glance-registry.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.glance_registry | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.glance_registry | indent 4 }}
|
||||||
glance-registry-paste.ini: |+
|
glance-registry-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste_registry | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste_registry | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
swift-store.conf: |+
|
swift-store.conf: |
|
||||||
{{- tuple .Values.conf.swift_store "etc/_swift-store.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.swift_store "etc/_swift-store.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,34 +22,34 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: gnocchi-bin
|
name: gnocchi-bin
|
||||||
data:
|
data:
|
||||||
storage-init.sh: |+
|
storage-init.sh: |
|
||||||
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_storage-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
clean-secrets.sh: |+
|
clean-secrets.sh: |
|
||||||
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_clean-secrets.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-init.sh: |+
|
db-init.sh: |
|
||||||
{{ tuple "bin/_db-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-init.py: |+
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |+
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
gnocchi-api.sh: |+
|
gnocchi-api.sh: |
|
||||||
{{ tuple "bin/_gnocchi-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_gnocchi-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
gnocchi-metricd.sh: |+
|
gnocchi-metricd.sh: |
|
||||||
{{ tuple "bin/_gnocchi-metricd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_gnocchi-metricd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
gnocchi-statsd.sh: |+
|
gnocchi-statsd.sh: |
|
||||||
{{ tuple "bin/_gnocchi-statsd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_gnocchi-statsd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
ks-domain-user.sh: |+
|
ks-domain-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_domain_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_domain_user" . | indent 4 }}
|
||||||
ceph-keyring.sh: |+
|
ceph-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceph-admin-keyring.sh: |+
|
ceph-admin-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-admin-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
gnocchi-test.sh: |+
|
gnocchi-test.sh: |
|
||||||
{{ tuple "bin/_gnocchi-test.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_gnocchi-test.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -82,12 +82,12 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: gnocchi-etc
|
name: gnocchi-etc
|
||||||
data:
|
data:
|
||||||
gnocchi.conf: |+
|
gnocchi.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.gnocchi | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.gnocchi | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
wsgi-gnocchi.conf: |+
|
wsgi-gnocchi.conf: |
|
||||||
{{- tuple .Values.conf.wsgi_gnocchi "etc/_wsgi-gnocchi.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.wsgi_gnocchi "etc/_wsgi-gnocchi.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,24 +23,24 @@ metadata:
|
|||||||
name: heat-bin
|
name: heat-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
ks-domain-user.sh: |+
|
ks-domain-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_domain_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_domain_user" . | indent 4 }}
|
||||||
trusts.sh: |+
|
trusts.sh: |
|
||||||
{{ tuple "bin/_trusts.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_trusts.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
heat-api.sh: |
|
heat-api.sh: |
|
||||||
{{ tuple "bin/_heat-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_heat-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -115,10 +115,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: heat-etc
|
name: heat-etc
|
||||||
data:
|
data:
|
||||||
heat.conf: |+
|
heat.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.heat | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.heat | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -26,7 +26,7 @@ data:
|
|||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
horizon.sh: |
|
horizon.sh: |
|
||||||
{{ tuple "bin/_horizon.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_horizon.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -26,18 +26,18 @@ data:
|
|||||||
{{ tuple "etc/_horizon.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "etc/_horizon.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
local_settings: |
|
local_settings: |
|
||||||
{{ tuple "etc/_local_settings.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "etc/_local_settings.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ceilometer_policy.json: |+
|
ceilometer_policy.json: |
|
||||||
{{ toJson .Values.conf.ceilometer_policy | indent 4 }}
|
{{ toJson .Values.conf.ceilometer_policy | indent 4 }}
|
||||||
cinder_policy.json: |+
|
cinder_policy.json: |
|
||||||
{{ toJson .Values.conf.cinder_policy | indent 4 }}
|
{{ toJson .Values.conf.cinder_policy | indent 4 }}
|
||||||
glance_policy.json: |+
|
glance_policy.json: |
|
||||||
{{ toJson .Values.conf.glance_policy | indent 4 }}
|
{{ toJson .Values.conf.glance_policy | indent 4 }}
|
||||||
heat_policy.json: |+
|
heat_policy.json: |
|
||||||
{{ toJson .Values.conf.heat_policy | indent 4 }}
|
{{ toJson .Values.conf.heat_policy | indent 4 }}
|
||||||
keystone_policy.json: |+
|
keystone_policy.json: |
|
||||||
{{ toJson .Values.conf.keystone_policy | indent 4 }}
|
{{ toJson .Values.conf.keystone_policy | indent 4 }}
|
||||||
neutron_policy.json: |+
|
neutron_policy.json: |
|
||||||
{{ toJson .Values.conf.neutron_policy | indent 4 }}
|
{{ toJson .Values.conf.neutron_policy | indent 4 }}
|
||||||
nova_policy.json: |+
|
nova_policy.json: |
|
||||||
{{ toJson .Values.conf.nova_policy | indent 4 }}
|
{{ toJson .Values.conf.nova_policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -26,8 +26,8 @@ data:
|
|||||||
ingress-vip.sh: |
|
ingress-vip.sh: |
|
||||||
{{ tuple "bin/_ingress-vip.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ingress-vip.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
ingress-controller.sh: |+
|
ingress-controller.sh: |
|
||||||
{{ tuple "bin/_ingress-controller.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ingress-controller.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ingress-error-pages.sh: |+
|
ingress-error-pages.sh: |
|
||||||
{{ tuple "bin/_ingress-error-pages.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ingress-error-pages.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,7 +23,7 @@ metadata:
|
|||||||
name: ironic-bin
|
name: ironic-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
manage-cleaning-network.sh: |
|
manage-cleaning-network.sh: |
|
||||||
@ -34,11 +34,11 @@ data:
|
|||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
ironic-api.sh: |
|
ironic-api.sh: |
|
||||||
{{ tuple "bin/_ironic-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ironic-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -187,11 +187,11 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: ironic-etc
|
name: ironic-etc
|
||||||
data:
|
data:
|
||||||
ironic.conf: |+
|
ironic.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.ironic | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.ironic | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
tftp-map-file: |+
|
tftp-map-file: |
|
||||||
{{ if .Values.conf.tftp_map_file.override -}}
|
{{ if .Values.conf.tftp_map_file.override -}}
|
||||||
{{ .Values.conf.tftp_map_file.override | indent 4 }}
|
{{ .Values.conf.tftp_map_file.override | indent 4 }}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
@ -200,7 +200,7 @@ data:
|
|||||||
{{- if .Values.conf.tftp_map_file.append -}}
|
{{- if .Values.conf.tftp_map_file.append -}}
|
||||||
{{ .Values.conf.tftp_map_file.append | indent 4 }}
|
{{ .Values.conf.tftp_map_file.append | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
nginx.conf: |+
|
nginx.conf: |
|
||||||
{{ if .Values.conf.nginx.override -}}
|
{{ if .Values.conf.nginx.override -}}
|
||||||
{{ .Values.conf.nginx.override | indent 4 }}
|
{{ .Values.conf.nginx.override | indent 4 }}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
|
@ -24,18 +24,18 @@ metadata:
|
|||||||
name: keystone-bin
|
name: keystone-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
rally-test.sh: |
|
rally-test.sh: |
|
||||||
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
keystone-api.sh: |
|
keystone-api.sh: |
|
||||||
{{ tuple "bin/_keystone-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_keystone-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -35,22 +35,22 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: keystone-etc
|
name: keystone-etc
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
||||||
keystone.conf: |+
|
keystone.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.keystone | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.keystone | indent 4 }}
|
||||||
keystone-paste.ini: |+
|
keystone-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
mpm_event.conf: |+
|
mpm_event.conf: |
|
||||||
{{- tuple .Values.conf.mpm_event "etc/_mpm_event.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.mpm_event "etc/_mpm_event.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
wsgi-keystone.conf: |+
|
wsgi-keystone.conf: |
|
||||||
{{- tuple .Values.conf.wsgi_keystone "etc/_wsgi-keystone.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.wsgi_keystone "etc/_wsgi-keystone.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
sso_callback_template.html: |+
|
sso_callback_template.html: |
|
||||||
{{- tuple .Values.conf.sso_callback_template "etc/_sso_callback_template.html.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.sso_callback_template "etc/_sso_callback_template.html.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- range $k, $v := .Values.conf.ks_domains }}
|
{{- range $k, $v := .Values.conf.ks_domains }}
|
||||||
keystone.{{ $k }}.conf: |+
|
keystone.{{ $k }}.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" $v | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" $v | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -25,7 +25,7 @@ data:
|
|||||||
libvirt.sh: |
|
libvirt.sh: |
|
||||||
{{ tuple "bin/_libvirt.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_libvirt.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- if .Values.ceph.enabled }}
|
{{- if .Values.ceph.enabled }}
|
||||||
ceph-keyring.sh: |+
|
ceph-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,8 +22,8 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: libvirt-etc
|
name: libvirt-etc
|
||||||
data:
|
data:
|
||||||
libvirtd.conf: |+
|
libvirtd.conf: |
|
||||||
{{- include "helm-toolkit.utils.to_kv_list" .Values.conf.libvirt | indent 4 }}
|
{{- include "helm-toolkit.utils.to_kv_list" .Values.conf.libvirt | indent 4 }}
|
||||||
qemu.conf: |+
|
qemu.conf: |
|
||||||
{{- include "helm-toolkit.utils.to_kv_list" .Values.conf.qemu | indent 4 }}
|
{{- include "helm-toolkit.utils.to_kv_list" .Values.conf.qemu | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,20 +23,20 @@ metadata:
|
|||||||
name: magnum-bin
|
name: magnum-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
magnum-api.sh: |
|
magnum-api.sh: |
|
||||||
{{ tuple "bin/_magnum-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_magnum-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -67,10 +67,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: magnum-etc
|
name: magnum-etc
|
||||||
data:
|
data:
|
||||||
magnum.conf: |+
|
magnum.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.magnum | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.magnum | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,20 +23,20 @@ metadata:
|
|||||||
name: mistral-bin
|
name: mistral-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
db-init.py: |+
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |+
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
mistral-api.sh: |
|
mistral-api.sh: |
|
||||||
{{ tuple "bin/_mistral-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_mistral-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -67,8 +67,8 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: mistral-etc
|
name: mistral-etc
|
||||||
data:
|
data:
|
||||||
mistral.conf: |+
|
mistral.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.mistral | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.mistral | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -24,43 +24,43 @@ metadata:
|
|||||||
name: neutron-bin
|
name: neutron-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
rally-test.sh: |
|
rally-test.sh: |
|
||||||
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
||||||
db-init.py: |+
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |+
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
neutron-dhcp-agent.sh: |+
|
neutron-dhcp-agent.sh: |
|
||||||
{{ tuple "bin/_neutron-dhcp-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-dhcp-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-l3-agent.sh: |+
|
neutron-l3-agent.sh: |
|
||||||
{{ tuple "bin/_neutron-l3-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-l3-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-linuxbridge-agent.sh: |+
|
neutron-linuxbridge-agent.sh: |
|
||||||
{{ tuple "bin/_neutron-linuxbridge-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-linuxbridge-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-linuxbridge-agent-init.sh: |+
|
neutron-linuxbridge-agent-init.sh: |
|
||||||
{{ tuple "bin/_neutron-linuxbridge-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-linuxbridge-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-linuxbridge-agent-init-modules.sh: |+
|
neutron-linuxbridge-agent-init-modules.sh: |
|
||||||
{{ tuple "bin/_neutron-linuxbridge-agent-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-linuxbridge-agent-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-metadata-agent.sh: |+
|
neutron-metadata-agent.sh: |
|
||||||
{{ tuple "bin/_neutron-metadata-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-metadata-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-metadata-agent-init.sh: |+
|
neutron-metadata-agent-init.sh: |
|
||||||
{{ tuple "bin/_neutron-metadata-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-metadata-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-openvswitch-agent.sh: |+
|
neutron-openvswitch-agent.sh: |
|
||||||
{{ tuple "bin/_neutron-openvswitch-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-openvswitch-agent.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-openvswitch-agent-init.sh: |+
|
neutron-openvswitch-agent-init.sh: |
|
||||||
{{ tuple "bin/_neutron-openvswitch-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-openvswitch-agent-init.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-openvswitch-agent-init-modules.sh: |+
|
neutron-openvswitch-agent-init-modules.sh: |
|
||||||
{{ tuple "bin/_neutron-openvswitch-agent-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-openvswitch-agent-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
neutron-server.sh: |+
|
neutron-server.sh: |
|
||||||
{{ tuple "bin/_neutron-server.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_neutron-server.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -98,57 +98,57 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: neutron-etc
|
name: neutron-etc
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
neutron.conf: |+
|
neutron.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.neutron | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.neutron | indent 4 }}
|
||||||
dhcp_agent.ini: |+
|
dhcp_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.dhcp_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.dhcp_agent | indent 4 }}
|
||||||
l3_agent.ini: |+
|
l3_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.l3_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.l3_agent | indent 4 }}
|
||||||
metadata_agent.ini: |+
|
metadata_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.metadata_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.metadata_agent | indent 4 }}
|
||||||
metering_agent.ini: |+
|
metering_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.metering_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.metering_agent | indent 4 }}
|
||||||
ml2_conf.ini: |+
|
ml2_conf.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.ml2_conf | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.ml2_conf | indent 4 }}
|
||||||
ml2_conf_sriov.ini: |+
|
ml2_conf_sriov.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.ml2_conf_sriov | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.ml2_conf_sriov | indent 4 }}
|
||||||
macvtap_agent.ini: |+
|
macvtap_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.macvtap_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.macvtap_agent | indent 4 }}
|
||||||
linuxbridge_agent.ini: |+
|
linuxbridge_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.linuxbridge_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.linuxbridge_agent | indent 4 }}
|
||||||
openvswitch_agent.ini: |+
|
openvswitch_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.openvswitch_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.openvswitch_agent | indent 4 }}
|
||||||
sriov_agent.ini: |+
|
sriov_agent.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.sriov_agent | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.plugins.sriov_agent | indent 4 }}
|
||||||
dnsmasq.conf: ""
|
dnsmasq.conf: ""
|
||||||
neutron_sudoers: |+
|
neutron_sudoers: |
|
||||||
{{- tuple .Values.conf.neutron_sudoers "etc/_neutron_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.neutron_sudoers "etc/_neutron_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
rootwrap.conf: |+
|
rootwrap.conf: |
|
||||||
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
debug.filters: |+
|
debug.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.debug "etc/rootwrap.d/_debug.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.debug "etc/rootwrap.d/_debug.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
dibbler.filters: |+
|
dibbler.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.dibbler "etc/rootwrap.d/_dibbler.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.dibbler "etc/rootwrap.d/_dibbler.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
ipset-firewall.filters: |+
|
ipset-firewall.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.ipset_firewall "etc/rootwrap.d/_ipset-firewall.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.ipset_firewall "etc/rootwrap.d/_ipset-firewall.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
l3.filters: |+
|
l3.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.l3 "etc/rootwrap.d/_l3.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.l3 "etc/rootwrap.d/_l3.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
netns-cleanup.filters: |+
|
netns-cleanup.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.netns_cleanup "etc/rootwrap.d/_netns-cleanup.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.netns_cleanup "etc/rootwrap.d/_netns-cleanup.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
dhcp.filters: |+
|
dhcp.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.dhcp "etc/rootwrap.d/_dhcp.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.dhcp "etc/rootwrap.d/_dhcp.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
ebtables.filters: |+
|
ebtables.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.ebtables "etc/rootwrap.d/_ebtables.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.ebtables "etc/rootwrap.d/_ebtables.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
iptables-firewall.filters: |+
|
iptables-firewall.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.iptables_firewall "etc/rootwrap.d/_iptables-firewall.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.iptables_firewall "etc/rootwrap.d/_iptables-firewall.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
linuxbridge-plugin.filters: |+
|
linuxbridge-plugin.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.linuxbridge_plugin "etc/rootwrap.d/_linuxbridge-plugin.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.linuxbridge_plugin "etc/rootwrap.d/_linuxbridge-plugin.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
openvswitch-plugin.filters: |+
|
openvswitch-plugin.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.openvswitch_plugin "etc/rootwrap.d/_openvswitch-plugin.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.openvswitch_plugin "etc/rootwrap.d/_openvswitch-plugin.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -25,20 +25,20 @@ metadata:
|
|||||||
data:
|
data:
|
||||||
rally-test.sh: |
|
rally-test.sh: |
|
||||||
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
{{ tuple $rallyTests | include "helm-toolkit.scripts.rally_test" | indent 4 }}
|
||||||
db-init.py: |+
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |+
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
{{- if .Values.ceph.enabled }}
|
{{- if .Values.ceph.enabled }}
|
||||||
ceph-keyring.sh: |+
|
ceph-keyring.sh: |
|
||||||
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_ceph-keyring.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
bootstrap.sh: |
|
bootstrap.sh: |
|
||||||
|
@ -206,29 +206,29 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: {{ $configMapName }}
|
name: {{ $configMapName }}
|
||||||
data:
|
data:
|
||||||
rally_tests.yaml: |+
|
rally_tests.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.paste | indent 4 }}
|
||||||
policy.yaml: |+
|
policy.yaml: |
|
||||||
{{ toYaml .Values.conf.policy | indent 4 }}
|
{{ toYaml .Values.conf.policy | indent 4 }}
|
||||||
nova_sudoers: |+
|
nova_sudoers: |
|
||||||
{{- tuple .Values.conf.neutron_sudoers "etc/_nova_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.neutron_sudoers "etc/_nova_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
rootwrap.conf: |+
|
rootwrap.conf: |
|
||||||
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
api-metadata.filters: |+
|
api-metadata.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.api_metadata "etc/rootwrap.d/_api-metadata.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.api_metadata "etc/rootwrap.d/_api-metadata.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
compute.filters: |+
|
compute.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.compute "etc/rootwrap.d/_compute.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.compute "etc/rootwrap.d/_compute.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
network.filters: |+
|
network.filters: |
|
||||||
{{- tuple .Values.conf.rootwrap_filters.network "etc/rootwrap.d/_network.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rootwrap_filters.network "etc/rootwrap.d/_network.filters.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
nova.conf: |+
|
nova.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.nova | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.nova | indent 4 }}
|
||||||
nova-ironic.conf: |+
|
nova-ironic.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.nova_ironic | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.nova_ironic | indent 4 }}
|
||||||
wsgi-nova-placement.conf: |+
|
wsgi-nova-placement.conf: |
|
||||||
{{- tuple .Values.conf.wsgi_placement "etc/_wsgi-nova-placement.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.wsgi_placement "etc/_wsgi-nova-placement.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
ssh-config.sh: |+
|
ssh-config.sh: |
|
||||||
{{- tuple .Values.conf.ssh "etc/_ssh-config.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.ssh "etc/_ssh-config.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,10 +22,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: openvswitch-bin
|
name: openvswitch-bin
|
||||||
data:
|
data:
|
||||||
openvswitch-db-server.sh: |+
|
openvswitch-db-server.sh: |
|
||||||
{{ tuple "bin/_openvswitch-db-server.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_openvswitch-db-server.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
openvswitch-vswitchd.sh: |+
|
openvswitch-vswitchd.sh: |
|
||||||
{{ tuple "bin/_openvswitch-vswitchd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_openvswitch-vswitchd.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
openvswitch-vswitchd-init-modules.sh: |+
|
openvswitch-vswitchd-init-modules.sh: |
|
||||||
{{ tuple "bin/_openvswitch-vswitchd-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_openvswitch-vswitchd-init-modules.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,7 +23,7 @@ metadata:
|
|||||||
name: rally-bin
|
name: rally-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
|
@ -55,6 +55,6 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: rally-etc
|
name: rally-etc
|
||||||
data:
|
data:
|
||||||
rally.conf: |+
|
rally.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.rally | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.rally | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,26 +22,26 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: rally-tasks
|
name: rally-tasks
|
||||||
data:
|
data:
|
||||||
authenticate.yaml: |+
|
authenticate.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.authenticate_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.authenticate_task | indent 4 }}
|
||||||
ceilometer.yaml: |+
|
ceilometer.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.ceilometer_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.ceilometer_task | indent 4 }}
|
||||||
cinder.yaml: |+
|
cinder.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.cinder_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.cinder_task | indent 4 }}
|
||||||
glance.yaml: |+
|
glance.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.glance_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.glance_task | indent 4 }}
|
||||||
heat.yaml: |+
|
heat.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.heat_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.heat_task | indent 4 }}
|
||||||
keystone.yaml: |+
|
keystone.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.keystone_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.keystone_task | indent 4 }}
|
||||||
magnum.yaml: |+
|
magnum.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.magnum_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.magnum_task | indent 4 }}
|
||||||
neutron.yaml: |+
|
neutron.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.neutron_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.neutron_task | indent 4 }}
|
||||||
nova.yaml: |+
|
nova.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.nova_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.nova_task | indent 4 }}
|
||||||
senlin.yaml: |+
|
senlin.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.senlin_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.senlin_task | indent 4 }}
|
||||||
swift.yaml: |+
|
swift.yaml: |
|
||||||
{{ toYaml .Values.conf.rally_tasks.swift_task | indent 4 }}
|
{{ toYaml .Values.conf.rally_tasks.swift_task | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -22,34 +22,34 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: heat-tasks-test-templates
|
name: heat-tasks-test-templates
|
||||||
data:
|
data:
|
||||||
random-strings.yaml: |+
|
random-strings.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.random_strings "tasks/test-templates/_random-strings.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.random_strings "tasks/test-templates/_random-strings.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
updated-random-strings-replace.yaml: |+
|
updated-random-strings-replace.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_replace "tasks/test-templates/_updated-random-strings-replace.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_replace "tasks/test-templates/_updated-random-strings-replace.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
updated-random-strings-add.yaml: |+
|
updated-random-strings-add.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_add "tasks/test-templates/_updated-random-strings-add.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_add "tasks/test-templates/_updated-random-strings-add.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
updated-random-strings-delete.yaml: |+
|
updated-random-strings-delete.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_delete "tasks/test-templates/_updated-random-strings-delete.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_random_strings_delete "tasks/test-templates/_updated-random-strings-delete.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
resource-group-with-constraint.yaml: |+
|
resource-group-with-constraint.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_with_constraint "tasks/test-templates/_resource-group-with-constraint.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_with_constraint "tasks/test-templates/_resource-group-with-constraint.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
resource-group-with-outputs.yaml: |+
|
resource-group-with-outputs.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_with_outputs "tasks/test-templates/_resource-group-with-outputs.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_with_outputs "tasks/test-templates/_resource-group-with-outputs.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
resource-group-server-with-volume.yaml: |+
|
resource-group-server-with-volume.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_server_with_volume "tasks/test-templates/_resource-group-server-with-volume.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group_server_with_volume "tasks/test-templates/_resource-group-server-with-volume.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
resource-group.yaml: |+
|
resource-group.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group "tasks/test-templates/_resource-group.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.resource_group "tasks/test-templates/_resource-group.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
default.yaml: |+
|
default.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.default "tasks/test-templates/_default.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.default "tasks/test-templates/_default.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
autoscaling-group.yaml: |+
|
autoscaling-group.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.autoscaling_group "tasks/test-templates/_autoscaling-group.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.autoscaling_group "tasks/test-templates/_autoscaling-group.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
autoscaling-policy.yaml: |+
|
autoscaling-policy.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.autoscaling_policy "tasks/test-templates/_autoscaling-policy.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.autoscaling_policy "tasks/test-templates/_autoscaling-policy.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
server-with-ports.yaml: |+
|
server-with-ports.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.server_with_ports "tasks/test-templates/_server-with-ports.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.server_with_ports "tasks/test-templates/_server-with-ports.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
server-with-volume.yaml: |+
|
server-with-volume.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.server_with_volume "tasks/test-templates/_server-with-volume.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.server_with_volume "tasks/test-templates/_server-with-volume.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
updated-resource-group-increase.yaml: |+
|
updated-resource-group-increase.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_resource_group_increase "tasks/test-templates/_updated-resource-group-increase.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_resource_group_increase "tasks/test-templates/_updated-resource-group-increase.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
updated-resource-group-reduce.yaml: |+
|
updated-resource-group-reduce.yaml: |
|
||||||
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_resource_group_reduce "tasks/test-templates/_updated-resource-group-reduce.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
{{- tuple .Values.conf.rally_tasks.heat_tests.updated_resource_group_reduce "tasks/test-templates/_updated-resource-group-reduce.yaml.template.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -23,20 +23,20 @@ metadata:
|
|||||||
name: senlin-bin
|
name: senlin-bin
|
||||||
data:
|
data:
|
||||||
{{- if .Values.bootstrap.enabled }}
|
{{- if .Values.bootstrap.enabled }}
|
||||||
bootstrap.sh: |+
|
bootstrap.sh: |
|
||||||
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
db-init.py: |
|
db-init.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_init" . | indent 4 }}
|
||||||
db-sync.sh: |
|
db-sync.sh: |
|
||||||
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_db-sync.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
db-drop.py: |+
|
db-drop.py: |
|
||||||
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.db_drop" . | indent 4 }}
|
||||||
ks-service.sh: |+
|
ks-service.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_service" . | indent 4 }}
|
||||||
ks-endpoints.sh: |+
|
ks-endpoints.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_endpoints" . | indent 4 }}
|
||||||
ks-user.sh: |+
|
ks-user.sh: |
|
||||||
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
{{- include "helm-toolkit.scripts.keystone_user" . | indent 4 }}
|
||||||
senlin-api.sh: |
|
senlin-api.sh: |
|
||||||
{{ tuple "bin/_senlin-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
{{ tuple "bin/_senlin-api.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
||||||
|
@ -68,10 +68,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: senlin-etc
|
name: senlin-etc
|
||||||
data:
|
data:
|
||||||
senlin.conf: |+
|
senlin.conf: |
|
||||||
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.senlin | indent 4 }}
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.senlin | indent 4 }}
|
||||||
api-paste.ini: |+
|
api-paste.ini: |
|
||||||
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
||||||
policy.json: |+
|
policy.json: |
|
||||||
{{ toJson .Values.conf.policy | indent 4 }}
|
{{ toJson .Values.conf.policy | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user