Skip to content

Commit

Permalink
Merge pull request att-comdev#113 from portdirect/heat_engine/clients
Browse files Browse the repository at this point in the history
Update Heat to mount policy at engine pods and set client endpoints
  • Loading branch information
v1k0d3n authored Jan 19, 2017
2 parents 230d41f + f1ef55d commit c532b5c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions heat/templates/etc/_heat.conf.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,11 @@ 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 "endpoint_keystone_internal" . }}
7 changes: 7 additions & 0 deletions heat/templates/statefulset-engine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ spec:
mountPath: /etc/heat/conf/heat.conf
subPath: heat.conf
readOnly: true
- name: heatpolicy
mountPath: /etc/heat/policy.json
subPath: policy.json
readOnly: true
volumes:
- name: pod-etc-heat
emptyDir: {}
Expand All @@ -43,3 +47,6 @@ spec:
- name: heatconf
configMap:
name: heat-etc
- name: heatpolicy
configMap:
name: heat-etc
2 changes: 1 addition & 1 deletion heat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ resources:
workers: 8

misc:
debug: false
debug: true

secrets:
keystone_admin:
Expand Down

0 comments on commit c532b5c

Please sign in to comment.