Merge "Allow per node configuration with augments"
This commit is contained in:
commit
f5bdcfbb60
@ -25,6 +25,7 @@
|
||||
sources:
|
||||
- "{{ role_path }}/templates/ceph.conf.j2"
|
||||
- "/etc/kolla/config/ceph.conf"
|
||||
- "/etc/kolla/config/ceph/{{ inventory_hostname }}/ceph.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/ceph.conf"
|
||||
with_items:
|
||||
- "ceph-mon"
|
||||
|
@ -31,6 +31,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/cinder.conf"
|
||||
- "/etc/kolla/config/cinder/{{ item }}.conf"
|
||||
- "/etc/kolla/config/cinder/{{ inventory_hostname }}/cinder.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/cinder.conf"
|
||||
with_items:
|
||||
- "cinder-api"
|
||||
|
@ -27,6 +27,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/glance.conf"
|
||||
- "/etc/kolla/config/glance/{{ item }}.conf"
|
||||
- "/etc/kolla/config/glance/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/{{ item }}.conf"
|
||||
with_items:
|
||||
- "glance-api"
|
||||
|
@ -29,6 +29,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/heat.conf"
|
||||
- "/etc/kolla/config/heat/{{ item }}.conf"
|
||||
- "/etc/kolla/config/heat/{{ inventory_hostname }}/heat.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/heat.conf"
|
||||
with_items:
|
||||
- "heat-api"
|
||||
|
@ -31,6 +31,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/ironic.conf"
|
||||
- "/etc/kolla/config/ironic/{{ item }}.conf"
|
||||
- "/etc/kolla/config/ironic/{{ inventory_hostname }}/ironic.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/ironic.conf"
|
||||
with_items:
|
||||
- "ironic-api"
|
||||
|
@ -24,6 +24,7 @@
|
||||
- "/etc/kolla/config/database.conf"
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/keystone.conf"
|
||||
- "/etc/kolla/config/keystone/{{ inventory_hostname }}/keystone.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/keystone.conf"
|
||||
with_items:
|
||||
- "keystone"
|
||||
|
@ -27,6 +27,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/magnum.conf"
|
||||
- "/etc/kolla/config/magnum/{{ item }}.conf"
|
||||
- "/etc/kolla/config/magnum/{{ inventory_hostname }}/magnum.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/magnum.conf"
|
||||
with_items:
|
||||
- "magnum-api"
|
||||
|
@ -29,6 +29,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/manila.conf"
|
||||
- "/etc/kolla/config/manila/{{ item }}.conf"
|
||||
- "/etc/kolla/config/manila/{{ inventory_hostname }}/manila.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/manila.conf"
|
||||
with_items:
|
||||
- "manila-api"
|
||||
|
@ -21,6 +21,7 @@
|
||||
sources:
|
||||
- "{{ role_path }}/templates/galera.cnf.j2"
|
||||
- "/etc/kolla/config/galera.cnf"
|
||||
- "/etc/kolla/config/mariadb/{{ inventory_hostname }}/galera.cnf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/galera.cnf"
|
||||
with_items:
|
||||
- "mariadb"
|
||||
|
@ -29,6 +29,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/mistral.conf"
|
||||
- "/etc/kolla/config/mistral/{{ item }}.conf"
|
||||
- "/etc/kolla/config/mistral/{{ inventory_hostname }}/mistral.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/mistral.conf"
|
||||
with_items:
|
||||
- "mistral-api"
|
||||
|
@ -27,6 +27,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/murano.conf"
|
||||
- "/etc/kolla/config/murano/{{ item }}.conf"
|
||||
- "/etc/kolla/config/murano/{{ inventory_hostname }}/murano.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/murano.conf"
|
||||
with_items:
|
||||
- "murano-api"
|
||||
|
@ -25,6 +25,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/neutron.conf"
|
||||
- "/etc/kolla/config/neutron/{{ item }}.conf"
|
||||
- "/etc/kolla/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
||||
dest: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}/neutron.conf"
|
||||
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
||||
when:
|
||||
@ -36,6 +37,7 @@
|
||||
sources:
|
||||
- "{{ role_path }}/templates/ml2_conf.ini.j2"
|
||||
- "/etc/kolla/config/neutron/ml2_conf.ini"
|
||||
- "/etc/kolla/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
||||
dest: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}/ml2_conf.ini"
|
||||
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
||||
when:
|
||||
|
@ -49,6 +49,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/neutron.conf"
|
||||
- "/etc/kolla/config/neutron/{{ item }}.conf"
|
||||
- "/etc/kolla/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/neutron.conf"
|
||||
with_items:
|
||||
- "neutron-dhcp-agent"
|
||||
@ -65,6 +66,7 @@
|
||||
sources:
|
||||
- "{{ role_path }}/templates/ml2_conf.ini.j2"
|
||||
- "/etc/kolla/config/neutron/ml2_conf.ini"
|
||||
- "/etc/kolla/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/ml2_conf.ini"
|
||||
with_items:
|
||||
- "neutron-dhcp-agent"
|
||||
|
@ -23,5 +23,6 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/nova.conf"
|
||||
- "/etc/kolla/config/nova/{{ item }}.conf"
|
||||
- "/etc/kolla/config/nova/{{ inventory_hostname }}/nova.conf"
|
||||
dest: "{{ node_config_directory }}/nova-compute-fake-{{ item }}/nova.conf"
|
||||
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
||||
|
@ -52,6 +52,7 @@
|
||||
- "/etc/kolla/config/messaging.conf"
|
||||
- "/etc/kolla/config/nova.conf"
|
||||
- "/etc/kolla/config/nova/{{ item }}.conf"
|
||||
- "/etc/kolla/config/nova/{{ inventory_hostname }}/nova.conf"
|
||||
dest: "{{ node_config_directory }}/{{ item }}/nova.conf"
|
||||
with_items:
|
||||
- "nova-api"
|
||||
|
@ -52,6 +52,7 @@
|
||||
- "/etc/kolla/config/global.conf"
|
||||
- "/etc/kolla/config/swift.conf"
|
||||
- "/etc/kolla/config/swift/{{ item }}.conf"
|
||||
- "/etc/kolla/config/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/swift-{{ item }}/swift.conf"
|
||||
with_items:
|
||||
- "account-auditor"
|
||||
@ -78,6 +79,7 @@
|
||||
- "/etc/kolla/config/global.conf"
|
||||
- "/etc/kolla/config/swift/account.conf"
|
||||
- "/etc/kolla/config/swift/{{ item }}.conf"
|
||||
- "/etc/kolla/config/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
||||
with_items:
|
||||
- "account-auditor"
|
||||
@ -94,6 +96,7 @@
|
||||
- "/etc/kolla/config/global.conf"
|
||||
- "/etc/kolla/config/swift/container.conf"
|
||||
- "/etc/kolla/config/swift/{{ item }}.conf"
|
||||
- "/etc/kolla/config/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
||||
with_items:
|
||||
- "container-auditor"
|
||||
@ -110,6 +113,7 @@
|
||||
- "/etc/kolla/config/global.conf"
|
||||
- "/etc/kolla/config/swift/object.conf"
|
||||
- "/etc/kolla/config/swift/{{ item }}.conf"
|
||||
- "/etc/kolla/config/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
||||
with_items:
|
||||
- "object-auditor"
|
||||
@ -126,6 +130,7 @@
|
||||
- "{{ role_path }}/templates/proxy-server.conf.j2"
|
||||
- "/etc/kolla/config/global.conf"
|
||||
- "/etc/kolla/config/swift/{{ item }}.conf"
|
||||
- "/etc/kolla/config/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
||||
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
||||
with_items:
|
||||
- "proxy-server"
|
||||
|
Loading…
Reference in New Issue
Block a user