Merge "Remove references to unsupported operating systems"
This commit is contained in:
commit
aa78fce9a5
@ -22,17 +22,14 @@ galaxy_info:
|
|||||||
platforms:
|
platforms:
|
||||||
- name: Debian
|
- name: Debian
|
||||||
versions:
|
versions:
|
||||||
- stretch
|
- buster
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
versions:
|
versions:
|
||||||
- xenial
|
|
||||||
- bionic
|
- bionic
|
||||||
|
- focal
|
||||||
- name: EL
|
- name: EL
|
||||||
versions:
|
versions:
|
||||||
- 7
|
- 8
|
||||||
- name: opensuse
|
|
||||||
versions:
|
|
||||||
- 15
|
|
||||||
categories:
|
categories:
|
||||||
- cloud
|
- cloud
|
||||||
- python
|
- python
|
||||||
|
@ -107,7 +107,6 @@
|
|||||||
- neutron_os_type is defined
|
- neutron_os_type is defined
|
||||||
- neutron_os_type == 'powervm'
|
- neutron_os_type == 'powervm'
|
||||||
- neutron_plugin_type == 'ml2.ovs'
|
- neutron_plugin_type == 'ml2.ovs'
|
||||||
- "{{ ansible_distribution_version is version('16.04','>') }}"
|
|
||||||
tags:
|
tags:
|
||||||
- neutron-config
|
- neutron-config
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
package:
|
package:
|
||||||
name: "{{ neutron_package_list }}"
|
name: "{{ neutron_package_list }}"
|
||||||
state: "{{ neutron_package_state }}"
|
state: "{{ neutron_package_state }}"
|
||||||
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
|
update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}"
|
||||||
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
||||||
register: install_packages
|
register: install_packages
|
||||||
until: install_packages is success
|
until: install_packages is success
|
||||||
@ -115,9 +115,9 @@
|
|||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
{{ apparmor_hosts | unique }}
|
{{ apparmor_hosts | unique }}
|
||||||
when: ansible_pkg_mgr in ['apt', 'zypper']
|
when: ansible_pkg_mgr == 'apt'
|
||||||
|
|
||||||
- import_tasks: neutron_apparmor.yml
|
- import_tasks: neutron_apparmor.yml
|
||||||
when:
|
when:
|
||||||
- ansible_pkg_mgr in ['apt', 'zypper']
|
- ansible_pkg_mgr == 'apt'
|
||||||
- inventory_hostname in neutron_apparmor_hosts
|
- inventory_hostname in neutron_apparmor_hosts
|
||||||
|
@ -95,24 +95,6 @@
|
|||||||
owner: "root"
|
owner: "root"
|
||||||
group: "root"
|
group: "root"
|
||||||
|
|
||||||
- name: Add zypper repo for ovs-nsh package
|
|
||||||
zypper_repository:
|
|
||||||
repo: "{{ repo.repo }}"
|
|
||||||
state: "{{ repo.state | default('present') }}"
|
|
||||||
name: "{{ repo.name | default(omit) }}"
|
|
||||||
enabled: "{{ repo.enabled | default(omit) }}"
|
|
||||||
disable_gpg_check: "{{ repo.disable_gpg_check | default(omit) }}"
|
|
||||||
description: "{{ repo.description | default(omit) }}"
|
|
||||||
autorefresh: "{{ repo.autorefresh | default(omit) }}"
|
|
||||||
auto_import_keys: "{{ repo.auto_import_keys | default(omit) }}"
|
|
||||||
priority: "{{ repo.priority | default(omit) }}"
|
|
||||||
with_items: "{{ neutron_repos }}"
|
|
||||||
loop_control:
|
|
||||||
loop_var: repo
|
|
||||||
when:
|
|
||||||
- ansible_pkg_mgr == 'zypper'
|
|
||||||
- ovs_nsh_support | bool
|
|
||||||
|
|
||||||
- name: Add dependency repos for Neutron
|
- name: Add dependency repos for Neutron
|
||||||
package:
|
package:
|
||||||
name: "{{ neutron_repos }}"
|
name: "{{ neutron_repos }}"
|
||||||
@ -120,7 +102,7 @@
|
|||||||
retries: 5
|
retries: 5
|
||||||
delay: 2
|
delay: 2
|
||||||
when:
|
when:
|
||||||
- ansible_pkg_mgr in ['yum', 'dnf']
|
- ansible_pkg_mgr == 'dnf'
|
||||||
- neutron_needs_openvswitch | bool
|
- neutron_needs_openvswitch | bool
|
||||||
|
|
||||||
- name: Create ovs tempfiles directory
|
- name: Create ovs tempfiles directory
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
package:
|
package:
|
||||||
name: "{{ neutron_ovn_northd_distro_packages }}"
|
name: "{{ neutron_ovn_northd_distro_packages }}"
|
||||||
state: "{{ neutron_package_state }}"
|
state: "{{ neutron_package_state }}"
|
||||||
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
|
update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}"
|
||||||
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
||||||
register: install_packages
|
register: install_packages
|
||||||
until: install_packages is success
|
until: install_packages is success
|
||||||
@ -31,7 +31,7 @@
|
|||||||
package:
|
package:
|
||||||
name: "{{ neutron_ovn_controller_distro_packages }}"
|
name: "{{ neutron_ovn_controller_distro_packages }}"
|
||||||
state: "{{ neutron_package_state }}"
|
state: "{{ neutron_package_state }}"
|
||||||
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
|
update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}"
|
||||||
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
|
||||||
register: install_packages
|
register: install_packages
|
||||||
until: install_packages is success
|
until: install_packages is success
|
||||||
|
@ -26,9 +26,9 @@ neutron_package_list: |-
|
|||||||
{% set packages = neutron_distro_packages %}
|
{% set packages = neutron_distro_packages %}
|
||||||
{% if neutron_needs_openvswitch | bool %}
|
{% if neutron_needs_openvswitch | bool %}
|
||||||
{% set _ = packages.extend(neutron_optional_ovs_distro_packages) %}
|
{% set _ = packages.extend(neutron_optional_ovs_distro_packages) %}
|
||||||
{% if (ovs_nsh_support and ansible_pkg_mgr in ['apt', 'zypper']) %}
|
{% if (ovs_nsh_support and ansible_pkg_mgr == 'apt') %}
|
||||||
{% set _ = packages.extend(neutron_ovs_nsh_required_packages) %}
|
{% set _ = packages.extend(neutron_ovs_nsh_required_packages) %}
|
||||||
{% elif (ovs_dpdk_support and ansible_pkg_mgr in ['apt', 'zypper']) %}
|
{% elif (ovs_dpdk_support and ansible_pkg_mgr == 'apt') %}
|
||||||
{% set _ = packages.extend(neutron_ovs_dpdk_required_packages) %}
|
{% set _ = packages.extend(neutron_ovs_dpdk_required_packages) %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% set _ = packages.extend(neutron_ovs_distro_packages) %}
|
{% set _ = packages.extend(neutron_ovs_distro_packages) %}
|
||||||
|
@ -60,8 +60,8 @@ neutron_service_distro_packages:
|
|||||||
- openstack-neutron-macvtap-agent
|
- openstack-neutron-macvtap-agent
|
||||||
- openstack-neutron-metering-agent
|
- openstack-neutron-metering-agent
|
||||||
- openstack-neutron-l2gw-agent
|
- openstack-neutron-l2gw-agent
|
||||||
- "{{ ansible_distribution_major_version is version('8', '<') | ternary('python-memcached', 'python3-memcached') }}"
|
- python3-memcached
|
||||||
- "{{ ansible_distribution_major_version is version('8', '<') | ternary('systemd-python', 'python3-systemd') }}"
|
- python3-systemd
|
||||||
|
|
||||||
neutron_optional_ovs_distro_packages:
|
neutron_optional_ovs_distro_packages:
|
||||||
- openstack-neutron-openvswitch
|
- openstack-neutron-openvswitch
|
||||||
@ -91,4 +91,4 @@ neutron_oslomsg_amqp1_distro_packages:
|
|||||||
- cyrus-sasl-plain
|
- cyrus-sasl-plain
|
||||||
- cyrus-sasl-md5
|
- cyrus-sasl-md5
|
||||||
|
|
||||||
_neutron_keepalived_no_track: "{{ (ansible_distribution_major_version is version('8', '>=')) }}"
|
_neutron_keepalived_no_track: True
|
||||||
|
@ -25,9 +25,9 @@
|
|||||||
neutron_package_list: |-
|
neutron_package_list: |-
|
||||||
{% set packages = neutron_distro_packages %}
|
{% set packages = neutron_distro_packages %}
|
||||||
{% if neutron_needs_openvswitch | bool %}
|
{% if neutron_needs_openvswitch | bool %}
|
||||||
{% if (ovs_nsh_support and ansible_pkg_mgr in ['apt', 'zypper']) %}
|
{% if (ovs_nsh_support and ansible_pkg_mgr == 'apt') %}
|
||||||
{% set _ = packages.extend(neutron_ovs_nsh_required_packages) %}
|
{% set _ = packages.extend(neutron_ovs_nsh_required_packages) %}
|
||||||
{% elif (ovs_dpdk_support and ansible_pkg_mgr in ['apt', 'zypper']) %}
|
{% elif (ovs_dpdk_support and ansible_pkg_mgr == 'apt') %}
|
||||||
{% set _ = packages.extend(neutron_ovs_dpdk_required_packages) %}
|
{% set _ = packages.extend(neutron_ovs_dpdk_required_packages) %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% set _ = packages.extend(neutron_ovs_distro_packages) %}
|
{% set _ = packages.extend(neutron_ovs_distro_packages) %}
|
||||||
|
110
vars/suse.yml
110
vars/suse.yml
@ -1,110 +0,0 @@
|
|||||||
---
|
|
||||||
# Copyright 2016, Rackspace US, Inc.
|
|
||||||
# Copyright 2017, SUSE LINUX GmbH.
|
|
||||||
#
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
neutron_ovs_distro_packages:
|
|
||||||
- openvswitch
|
|
||||||
|
|
||||||
neutron_ovs_service_name: openvswitch
|
|
||||||
|
|
||||||
neutron_ovn_northd_service_name: ovn-northd
|
|
||||||
|
|
||||||
neutron_ovn_controller_service_name: ovn-controller
|
|
||||||
|
|
||||||
neutron_ovs_socket_path: "/usr/local/var/run/openvswitch"
|
|
||||||
|
|
||||||
neutron_ovs_nsh_required_packages:
|
|
||||||
- openvswitch-switch
|
|
||||||
|
|
||||||
neutron_ovs_dpdk_required_packages:
|
|
||||||
- openvswitch-dpdk
|
|
||||||
|
|
||||||
neutron_repos:
|
|
||||||
- repo: https://download.opensuse.org/repositories/home:/mosquetero/openSUSE_Leap_{{ ansible_distribution_version }}/
|
|
||||||
name: ovs-nsh
|
|
||||||
autorefresh: yes
|
|
||||||
auto_import_keys: yes
|
|
||||||
priority: 98
|
|
||||||
|
|
||||||
neutron_apparmor_distro_packages:
|
|
||||||
- apparmor-parser
|
|
||||||
- apparmor-profiles
|
|
||||||
- apparmor-utils
|
|
||||||
|
|
||||||
neutron_distro_packages:
|
|
||||||
- conntrack-tools
|
|
||||||
- dnsmasq
|
|
||||||
- dnsmasq-utils
|
|
||||||
- ebtables
|
|
||||||
- ipset
|
|
||||||
- iptables
|
|
||||||
- iputils
|
|
||||||
- keepalived
|
|
||||||
- net-tools
|
|
||||||
- radvd
|
|
||||||
- which
|
|
||||||
|
|
||||||
neutron_ovn_distro_packages:
|
|
||||||
- openvswitch-ovn-common
|
|
||||||
|
|
||||||
neutron_ovn_controller_distro_packages:
|
|
||||||
- openvswitch-ovn-host
|
|
||||||
- haproxy
|
|
||||||
|
|
||||||
neutron_ovn_northd_distro_packages:
|
|
||||||
- openvswitch-ovn-central
|
|
||||||
|
|
||||||
neutron_devel_distro_packages:
|
|
||||||
- git-core
|
|
||||||
- systemd-devel
|
|
||||||
- python-httplib2
|
|
||||||
|
|
||||||
neutron_service_distro_packages:
|
|
||||||
- openstack-neutron
|
|
||||||
- openstack-neutron-dhcp-agent
|
|
||||||
- openstack-neutron-l3-agent
|
|
||||||
- openstack-neutron-metadata-agent
|
|
||||||
- openstack-neutron-metering-agent
|
|
||||||
- openstack-neutron-server
|
|
||||||
- python-memcached
|
|
||||||
- python-systemd
|
|
||||||
|
|
||||||
neutron_optional_ovs_distro_packages:
|
|
||||||
- openstack-neutron-openvswitch-agent
|
|
||||||
|
|
||||||
neutron_optional_lxb_distro_packages:
|
|
||||||
- openstack-neutron-linuxbridge-agent
|
|
||||||
|
|
||||||
neutron_option_vpnaas_distro_packages:
|
|
||||||
- openstack-neutron-vpnaas
|
|
||||||
|
|
||||||
neutron_lxb_distro_packages:
|
|
||||||
- bridge-utils
|
|
||||||
|
|
||||||
neutron_vpnaas_distro_packages:
|
|
||||||
- openswan
|
|
||||||
|
|
||||||
_neutron_driver_vpnaas: neutron_vpnaas.services.vpn.device_drivers.libreswan_ipsec.LibreSwanDriver
|
|
||||||
_neutron_vpnaas_service_provider: VPN:openswan:neutron_vpnaas.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
|
|
||||||
|
|
||||||
neutron_metadata_agent_distro_packages:
|
|
||||||
- haproxy
|
|
||||||
|
|
||||||
neutron_remove_distro_packages: []
|
|
||||||
|
|
||||||
neutron_oslomsg_amqp1_distro_packages:
|
|
||||||
- cyrus-sasl
|
|
||||||
- cyrus-sasl-plain
|
|
||||||
- cyrus-sasl-digestmd5
|
|
Loading…
Reference in New Issue
Block a user