1f371e2717
This type of per node configuration is required to support things like availability zones for nova. As always, if this file doesnt exist it doesnt get used so this change is safe. TrivialFix Change-Id: Iff8172af522c2c96e5f2c173b24a5dfd4d522ed2
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
---
|
|
- name: Setting sysctl values
|
|
sysctl: name={{ item.name }} value={{ item.value }} sysctl_set=yes
|
|
with_items:
|
|
- { name: "net.bridge.bridge-nf-call-iptables", value: 1}
|
|
- { name: "net.bridge.bridge-nf-call-ip6tables", value: 1}
|
|
- { name: "net.ipv4.conf.all.rp_filter", value: 0}
|
|
- { name: "net.ipv4.conf.default.rp_filter", value: 0}
|
|
when:
|
|
- set_sysctl | bool
|
|
- inventory_hostname in groups['compute']
|
|
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "nova-api"
|
|
- "nova-compute"
|
|
- "nova-compute-ironic"
|
|
- "nova-conductor"
|
|
- "nova-consoleauth"
|
|
- "nova-libvirt"
|
|
- "nova-novncproxy"
|
|
- "nova-scheduler"
|
|
- "nova-spicehtml5proxy"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "nova-api"
|
|
- "nova-compute"
|
|
- "nova-compute-ironic"
|
|
- "nova-conductor"
|
|
- "nova-consoleauth"
|
|
- "nova-libvirt"
|
|
- "nova-novncproxy"
|
|
- "nova-scheduler"
|
|
- "nova-spicehtml5proxy"
|
|
|
|
- name: Copying over nova.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/nova.conf.j2"
|
|
- "/etc/kolla/config/global.conf"
|
|
- "/etc/kolla/config/database.conf"
|
|
- "/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"
|
|
- "nova-compute"
|
|
- "nova-compute-ironic"
|
|
- "nova-conductor"
|
|
- "nova-consoleauth"
|
|
- "nova-novncproxy"
|
|
- "nova-scheduler"
|
|
- "nova-spicehtml5proxy"
|
|
|
|
- name: Copying over libvirtd.conf
|
|
template:
|
|
src: "libvirtd.conf.j2"
|
|
dest: "{{ node_config_directory }}/nova-libvirt/libvirtd.conf"
|