dbd28ef755
The change modifies the heat template tasks such that it's now using the config_template action plugin. This change will make so that config files can be dynamically updated, by a deployer, at run time, without requiring the need to modify the in tree templates or defaults. Partially implements: blueprint tunable-openstack-configuration Change-Id: I53bb46f19fd61a5b320dbf0650433c5dd93b98fe
54 lines
2.0 KiB
YAML
54 lines
2.0 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Drop heat Config(s)
|
|
config_template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "{{ heat_system_user_name }}"
|
|
group: "{{ heat_system_group_name }}"
|
|
mode: "0644"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items:
|
|
- src: "heat.conf.j2"
|
|
dest: "/etc/heat/heat.conf"
|
|
config_overrides: "{{ heat_heat_conf_overrides }}"
|
|
config_type: "ini"
|
|
- src: "api-paste.ini.j2"
|
|
dest: "/etc/heat/api-paste.ini"
|
|
config_overrides: "{{ heat_api_paste_ini_overrides }}"
|
|
config_type: "ini"
|
|
- src: "environment.d/default.yaml.j2"
|
|
dest: "/etc/heat/environment.d/default.yaml"
|
|
config_overrides: "{{ heat_default_yaml_overrides }}"
|
|
config_type: "yaml"
|
|
- src: "templates/AWS_CloudWatch_Alarm.yaml.j2"
|
|
dest: "/etc/heat/templates/AWS_CloudWatch_Alarm.yaml"
|
|
config_overrides: "{{ heat_aws_cloudwatch_alarm_yaml_overrides }}"
|
|
config_type: "yaml"
|
|
- src: "templates/AWS_RDS_DBInstance.yaml.j2"
|
|
dest: "/etc/heat/templates/AWS_RDS_DBInstance.yaml"
|
|
config_overrides: "{{ heat_aws_rds_dbinstance_yaml_overrides }}"
|
|
config_type: "yaml"
|
|
- src: "policy.json.j2"
|
|
dest: "/etc/heat/policy.json"
|
|
config_overrides: "{{ heat_policy_overrides }}"
|
|
config_type: "json"
|
|
notify:
|
|
- Restart heat services
|
|
tags:
|
|
- heat-config
|