Update Heat to mount Policy at engine statefulsets and set client endpoints
This commit is contained in:
parent
49133ce86b
commit
f1ef55de6e
@ -80,3 +80,11 @@ region_name = {{ .Values.keystone.heat_trustee_region_name }}
|
|||||||
user_domain_name = {{ .Values.keystone.heat_trustee_user_domain }}
|
user_domain_name = {{ .Values.keystone.heat_trustee_user_domain }}
|
||||||
username = {{ .Values.keystone.heat_trustee_user }}
|
username = {{ .Values.keystone.heat_trustee_user }}
|
||||||
password = {{ .Values.keystone.heat_trustee_password }}
|
password = {{ .Values.keystone.heat_trustee_password }}
|
||||||
|
|
||||||
|
|
||||||
|
[clients]
|
||||||
|
endpoint_type = internalURL
|
||||||
|
|
||||||
|
[clients_keystone]
|
||||||
|
endpoint_type = internalURL
|
||||||
|
auth_uri = {{ include "endpoint_keystone_internal" . }}
|
||||||
|
@ -55,6 +55,10 @@ spec:
|
|||||||
mountPath: /etc/heat/conf/heat.conf
|
mountPath: /etc/heat/conf/heat.conf
|
||||||
subPath: heat.conf
|
subPath: heat.conf
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
- name: heatpolicy
|
||||||
|
mountPath: /etc/heat/policy.json
|
||||||
|
subPath: policy.json
|
||||||
|
readOnly: true
|
||||||
volumes:
|
volumes:
|
||||||
- name: pod-etc-heat
|
- name: pod-etc-heat
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
@ -63,3 +67,6 @@ spec:
|
|||||||
- name: heatconf
|
- name: heatconf
|
||||||
configMap:
|
configMap:
|
||||||
name: heat-etc
|
name: heat-etc
|
||||||
|
- name: heatpolicy
|
||||||
|
configMap:
|
||||||
|
name: heat-etc
|
||||||
|
@ -108,7 +108,7 @@ resources:
|
|||||||
workers: 8
|
workers: 8
|
||||||
|
|
||||||
misc:
|
misc:
|
||||||
debug: false
|
debug: true
|
||||||
|
|
||||||
secrets:
|
secrets:
|
||||||
keystone_admin:
|
keystone_admin:
|
||||||
|
Loading…
Reference in New Issue
Block a user