openstack-helm/rally/templates/configmap-tasks.yaml
Vladimir Kozhukalov 92ff95589c Retire senlin chart
The Senlin project is retired and there has been
little interest in Senlin chart.

Change-Id: Ib7d97bf24eec7b8fde6cf80744c839f77714beb8
2025-02-25 17:38:19 -06:00

44 lines
1.4 KiB
YAML

{{/*
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_tasks }}
{{- $envAll := . }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: rally-tasks
data:
authenticate.yaml: |
{{ toYaml .Values.conf.rally_tasks.authenticate_task | indent 4 }}
ceilometer.yaml: |
{{ toYaml .Values.conf.rally_tasks.ceilometer_task | indent 4 }}
cinder.yaml: |
{{ toYaml .Values.conf.rally_tasks.cinder_task | indent 4 }}
glance.yaml: |
{{ toYaml .Values.conf.rally_tasks.glance_task | indent 4 }}
heat.yaml: |
{{ toYaml .Values.conf.rally_tasks.heat_task | indent 4 }}
keystone.yaml: |
{{ toYaml .Values.conf.rally_tasks.keystone_task | indent 4 }}
magnum.yaml: |
{{ toYaml .Values.conf.rally_tasks.magnum_task | indent 4 }}
neutron.yaml: |
{{ toYaml .Values.conf.rally_tasks.neutron_task | indent 4 }}
nova.yaml: |
{{ toYaml .Values.conf.rally_tasks.nova_task | indent 4 }}
swift.yaml: |
{{ toYaml .Values.conf.rally_tasks.swift_task | indent 4 }}
{{- end }}