The files and templates we carry are almost always in a state of
maintenance. The upstream services are maintaining these files and
there's really no reason we need to carry duplicate copies of them. This
change removes all of the files we expect to get from the upstream
service. while the focus of this change is to remove configuration file
maintenance burdens it also allows the role to execute faster.
* Source installs have the configuration files within the venv at
"<<VENV_PATH>>/etc/<<SERVICE_NAME>>". The role will now link the
default configuration path to this directory. When the service is
upgraded the link will move to the new venv path.
* Distro installs package all of the required configuration files.
To maintain our current capabilities to override configuration the
role will fetch files from the disk whenever an override is provided and
then push the fetched file back to the target using `config_template`.
Change-Id: I8fba4a1f70d7f5870ad81c8a84e3b1d15742c70f
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
206 lines
6.4 KiB
YAML
206 lines
6.4 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: Create plugins neutron dir
|
|
file:
|
|
path: "{{ item.path | default(omit) }}"
|
|
state: "directory"
|
|
owner: "{{ item.owner|default(neutron_system_user_name) }}"
|
|
group: "{{ item.group|default(neutron_system_group_name) }}"
|
|
mode: "{{ item.mode | default(omit) }}"
|
|
with_items:
|
|
- path: "{{ neutron_conf_dir }}/plugins"
|
|
mode: "0750"
|
|
- path: "{{ neutron_conf_dir }}/plugins/{{ neutron_plugin_type.split('.')[0] }}"
|
|
mode: "0750"
|
|
- path: "{{ neutron_conf_dir }}/rootwrap.d"
|
|
owner: "root"
|
|
group: "root"
|
|
|
|
# NOTE(cloudnull): This task is required to copy rootwrap filters that we need
|
|
# and neutron does not provide by default.
|
|
- name: Copy extra neutron rootwrap filters
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "{{ neutron_conf_dir }}/rootwrap.d/"
|
|
owner: "root"
|
|
group: "root"
|
|
with_fileglob:
|
|
- rootwrap.d/*
|
|
notify:
|
|
- Restart neutron services
|
|
|
|
- name: Copy common neutron config
|
|
config_template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "{{ item.group|default(neutron_system_group_name) }}"
|
|
mode: "0640"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items:
|
|
- src: "neutron.conf.j2"
|
|
dest: "{{ neutron_conf_dir }}/neutron.conf"
|
|
config_overrides: "{{ neutron_neutron_conf_overrides }}"
|
|
config_type: "ini"
|
|
- src: "{{ neutron_plugins[neutron_plugin_type].plugin_ini }}.j2"
|
|
dest: "{{ neutron_conf_dir }}/{{ neutron_plugins[neutron_plugin_type].plugin_ini }}"
|
|
config_overrides: "{{ neutron_plugins[neutron_plugin_type].plugin_conf_ini_overrides }}"
|
|
config_type: "ini"
|
|
notify:
|
|
- Restart neutron services
|
|
|
|
- name: Preserve original configuration file(s)
|
|
command: "cp {{ item.target_f }} {{ item.target_f }}.original"
|
|
args:
|
|
creates: "{{ item.target_f }}.original"
|
|
with_items: "{{ neutron_core_files }}"
|
|
|
|
- name: Fetch override files
|
|
fetch:
|
|
src: "{{ item.target_f }}.original"
|
|
dest: "{{ item.tmp_f }}"
|
|
flat: yes
|
|
changed_when: false
|
|
with_items: "{{ neutron_core_files }}"
|
|
run_once: true
|
|
|
|
- name: Copy common neutron config
|
|
config_template:
|
|
src: "{{ item.tmp_f }}"
|
|
dest: "{{ item.target_f }}"
|
|
owner: "{{ item.owner | default('root') }}"
|
|
group: "{{ item.group | default(neutron_system_group_name) }}"
|
|
mode: "{{ item.mode | default('0640') }}"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items: "{{ neutron_core_files }}"
|
|
notify:
|
|
- Restart neutron services
|
|
|
|
- name: Cleanup fetched temp files
|
|
file:
|
|
path: "{{ item.tmp_f }}"
|
|
state: absent
|
|
changed_when: false
|
|
delegate_to: localhost
|
|
with_items: "{{ neutron_core_files }}"
|
|
|
|
# NOTE(cloudnull): This will ensure strong permissions on all rootwrap files.
|
|
- name: Set rootwrap.d permissions
|
|
file:
|
|
path: "{{ neutron_conf_dir }}/rootwrap.d"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0640"
|
|
recurse: true
|
|
|
|
- name: Copy neutron ml2 plugin config
|
|
config_template:
|
|
src: "{{ neutron_plugins[item].plugin_ini }}.j2"
|
|
dest: "{{ neutron_conf_dir }}/{{ neutron_plugins[item].plugin_ini }}"
|
|
owner: "root"
|
|
group: "{{ neutron_system_group_name }}"
|
|
mode: "0640"
|
|
config_overrides: "{{ neutron_plugins[item].plugin_conf_ini_overrides }}"
|
|
config_type: "ini"
|
|
with_items: "{{ neutron_plugin_types }}"
|
|
|
|
- name: Generate neutron dnsmasq Config
|
|
template:
|
|
src: "dnsmasq-neutron.conf.j2"
|
|
dest: "{{ neutron_conf_dir }}/dnsmasq-neutron.conf"
|
|
owner: "root"
|
|
group: "{{ neutron_system_group_name }}"
|
|
mode: "0640"
|
|
notify:
|
|
- Restart neutron services
|
|
when:
|
|
- neutron_services['neutron-dhcp-agent']['group'] in group_names
|
|
|
|
- name: Generate neutron agent only Config
|
|
config_template:
|
|
src: "{{ item.service_conf }}.j2"
|
|
dest: "{{ item.service_conf_path }}/{{ item.service_conf }}"
|
|
owner: "root"
|
|
group: "{{ neutron_system_group_name }}"
|
|
mode: "0640"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items: "{{ filtered_neutron_services }}"
|
|
notify:
|
|
- Restart neutron services
|
|
when:
|
|
- "'service_conf_path' in item"
|
|
- "'service_conf' in item"
|
|
|
|
- name: Generate neutron bgpvpn networking configuration
|
|
template:
|
|
src: "networking_bgpvpn.conf.j2"
|
|
dest: "{{ neutron_conf_dir }}/networking_bgpvpn.conf"
|
|
owner: "root"
|
|
group: "{{ neutron_system_group_name }}"
|
|
mode: "0640"
|
|
notify:
|
|
- Restart neutron services
|
|
when:
|
|
- "'bgpvpn' in neutron_plugin_base"
|
|
|
|
# NOTE: Remove this in S
|
|
# This option has been removed with the implementation of networkd within the
|
|
# host and container. Additionally the execution of this script is now
|
|
# controlled by a systemd oneshot service so the legacy configs are no longer
|
|
# needed.
|
|
- name: Remove legacy checksum fix script
|
|
file:
|
|
path: "{{ neutron_checksum_script }}"
|
|
state: absent
|
|
|
|
- name: Drop metadata iptables checksum fix
|
|
copy:
|
|
src: "post-up-metadata-checksum"
|
|
dest: "/usr/local/bin/post-up-metadata-checksum"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0755"
|
|
when:
|
|
- neutron_metadata_checksum_fix | bool
|
|
- neutron_services['neutron-linuxbridge-agent']['group'] in group_names
|
|
|
|
- name: Run the systemd service role
|
|
include_role:
|
|
name: systemd_service
|
|
private: true
|
|
vars:
|
|
systemd_services:
|
|
- service_name: "neutron-post-up-metadata-checksum"
|
|
config_overrides:
|
|
Unit:
|
|
Description: networking-post-up
|
|
After: network-online.target
|
|
Wants: network-online.target
|
|
Service:
|
|
RemainAfterExit: yes
|
|
service_type: oneshot
|
|
execstarts:
|
|
- "/usr/local/bin/post-up-metadata-checksum"
|
|
enabled: yes
|
|
state: started
|
|
systemd_tempd_prefix: openstack
|
|
when:
|
|
- neutron_metadata_checksum_fix | bool
|
|
- neutron_services['neutron-linuxbridge-agent']['group'] in group_names
|