d8a07ee1cb
This commit addresses the concerns raised in: https://github.com/att-comdev/openstack-helm/pull/77#pullrequestreview-15758654
15 lines
429 B
YAML
15 lines
429 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ .Values.keystone_secrets.stack }}
|
|
type: Opaque
|
|
data:
|
|
OS_REGION_NAME: |
|
|
{{ .Values.keystone.heat_stack_region_name | b64enc | indent 4 }}
|
|
OS_DOMAIN_NAME: |
|
|
{{ .Values.keystone.heat_stack_domain | b64enc | indent 4 }}
|
|
OS_USERNAME: |
|
|
{{ .Values.keystone.heat_stack_user | b64enc | indent 4 }}
|
|
OS_PASSWORD: |
|
|
{{ .Values.keystone.heat_stack_password | b64enc | indent 4 }}
|