Merge "[goal] Deprecate the JSON formatted policy file"

This commit is contained in:
Zuul 2021-06-23 20:36:37 +00:00 committed by Gerrit Code Review
commit d76dbaff51
2 changed files with 29 additions and 5 deletions

View File

@ -22,3 +22,12 @@
with_items: "{{ filtered_heat_services }}"
listen:
- "venv changed"
# NOTE (noonedeadpunk): Remove this task after Xena release
- name: Remove obsoleted policy.json
file:
path: "/etc/heat/policy.json"
state: absent
listen:
- "Restart heat services"
- "venv changed"

View File

@ -26,12 +26,27 @@
- Restart heat services
- Restart uwsgi services
- name: Implement policy.json if there are overrides configured
copy:
content: "{{ heat_policy_overrides | to_nice_json }}"
dest: "/etc/heat/policy.json"
- name: Implement policy.yaml if there are overrides configured
config_template:
content: "{{ heat_policy_overrides }}"
dest: "/etc/heat/policy.yaml"
owner: "root"
group: "{{ heat_system_group_name }}"
mode: "0640"
config_type: yaml
when:
- heat_policy_overrides != {}
- heat_policy_overrides | length > 0
tags:
- heat-policy-override
- name: Remove legacy policy.yaml file
file:
path: "/etc/heat/policy.yaml"
state: absent
when:
- heat_policy_overrides | length == 0
tags:
- heat-policy-override
# NOTE(cloudnull): This is using "cp" instead of copy with a remote_source
# because we only want to copy the original files once. and we