116931bb51
* Rename common chart to helm-toolkit * Update useage of helpers to include reference to chart they come from. * Update helm-toolkit function naming Also catches several functions missed in previous PS * Update remaining requirements.yaml to use helm-toolbox * Dep Check container fix for common -> helm-toolbox renaming
91 lines
3.1 KiB
Smarty
91 lines
3.1 KiB
Smarty
[DEFAULT]
|
|
debug = {{ .Values.misc.debug }}
|
|
use_syslog = False
|
|
use_stderr = True
|
|
|
|
deferred_auth_method = "trusts"
|
|
|
|
enable_stack_adopt = "True"
|
|
enable_stack_abandon = "True"
|
|
|
|
heat_metadata_server_url = {{ .Values.service.cfn.proto }}://{{ .Values.service.cfn.name }}:{{ .Values.service.cfn.port }}
|
|
heat_waitcondition_server_url = {{ .Values.service.cfn.proto }}://{{ .Values.service.cfn.name }}:{{ .Values.service.cfn.port }}/v1/waitcondition
|
|
heat_watch_server_url = {{ .Values.service.cloudwatch.proto }}://{{ .Values.service.cloudwatch.name }}:{{ .Values.service.cloudwatch.port }}
|
|
|
|
num_engine_workers = {{ .Values.resources.engine.workers }}
|
|
|
|
stack_user_domain_name = {{ .Values.keystone.heat_stack_user_domain }}
|
|
stack_domain_admin = {{ .Values.keystone.heat_stack_user }}
|
|
stack_domain_admin_password = {{ .Values.keystone.heat_stack_password }}
|
|
|
|
trusts_delegated_roles = "Member"
|
|
|
|
[cache]
|
|
enabled = "True"
|
|
backend = oslo_cache.memcache_pool
|
|
memcache_servers = "{{ .Values.memcached.host }}:{{ .Values.memcached.port }}"
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ .Values.database.heat_user }}:{{ .Values.database.heat_password }}@{{ .Values.database.address }}:{{ .Values.database.port }}/{{ .Values.database.heat_database_name }}
|
|
max_retries = -1
|
|
|
|
[keystone_authtoken]
|
|
signing_dir = "/var/cache/heat"
|
|
memcached_servers = "{{ .Values.memcached.host }}:{{ .Values.memcached.port }}"
|
|
auth_version = v3
|
|
auth_url = {{ include "helm-toolkit.endpoint_keystone_internal" . }}
|
|
auth_type = password
|
|
region_name = {{ .Values.keystone.heat_region_name }}
|
|
project_domain_name = {{ .Values.keystone.heat_project_domain }}
|
|
project_name = {{ .Values.keystone.heat_project_name }}
|
|
user_domain_name = {{ .Values.keystone.heat_user_domain }}
|
|
username = {{ .Values.keystone.heat_user }}
|
|
password = {{ .Values.keystone.heat_password }}
|
|
|
|
[heat_api]
|
|
bind_port = {{ .Values.service.api.port }}
|
|
bind_host = 0.0.0.0
|
|
workers = {{ .Values.resources.api.workers }}
|
|
|
|
[heat_api_cloudwatch]
|
|
bind_port = {{ .Values.service.cloudwatch.port }}
|
|
bind_host = 0.0.0.0
|
|
workers = {{ .Values.resources.cloudwatch.workers }}
|
|
|
|
[heat_api_cfn]
|
|
bind_port = {{ .Values.service.cfn.port }}
|
|
bind_host = 0.0.0.0
|
|
workers = {{ .Values.resources.cfn.workers }}
|
|
|
|
[oslo_messaging_rabbit]
|
|
rabbit_userid = {{ .Values.messaging.user }}
|
|
rabbit_password = {{ .Values.messaging.password }}
|
|
rabbit_ha_queues = true
|
|
rabbit_hosts = {{ .Values.messaging.hosts }}
|
|
|
|
[paste_deploy]
|
|
config_file = /etc/heat/api-paste.ini
|
|
|
|
[trustee]
|
|
auth_type = "password"
|
|
auth_section = "trustee_keystone"
|
|
|
|
[trustee_keystone]
|
|
signing_dir = "/var/cache/heat"
|
|
memcached_servers = "{{ .Values.memcached.host }}:{{ .Values.memcached.port }}"
|
|
auth_version = v3
|
|
auth_url = {{ include "helm-toolkit.endpoint_keystone_internal" . }}
|
|
auth_type = password
|
|
region_name = {{ .Values.keystone.heat_trustee_region_name }}
|
|
user_domain_name = {{ .Values.keystone.heat_trustee_user_domain }}
|
|
username = {{ .Values.keystone.heat_trustee_user }}
|
|
password = {{ .Values.keystone.heat_trustee_password }}
|
|
|
|
|
|
[clients]
|
|
endpoint_type = internalURL
|
|
|
|
[clients_keystone]
|
|
endpoint_type = internalURL
|
|
auth_uri = {{ include "helm-toolkit.endpoint_keystone_internal" . }}
|