42420830f6
Add a nova-ssh container to handle the `nova migrate` and `nova resize` case, in which the nova will use ssh to copy files between machines. Change-Id: Ie6675943f3aeabfbba8589d308d55b9c89d732db Closes-Bug: #1562141
83 lines
2.3 KiB
YAML
83 lines
2.3 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"
|
|
- "nova-ssh"
|
|
|
|
- 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"
|
|
- "nova-ssh"
|
|
|
|
- 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"
|
|
|
|
- name: Copying files for nova-ssh
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ node_config_directory }}/nova-ssh/{{ item.dest }}"
|
|
with_items:
|
|
- { src: "sshd_config.j2", dest: "sshd_config" }
|
|
- { src: "id_rsa", dest: "id_rsa" }
|
|
- { src: "id_rsa.pub", dest: "id_rsa.pub" }
|
|
- { src: "ssh_config.j2", dest: "ssh_config" }
|