Skip to content

Commit

Permalink
Merge pull request openstack-k8s-operators#499 from umago/ovn-edpm-ch…
Browse files Browse the repository at this point in the history
…assis-extport

[ovn] Chassis as external port host edpm config
  • Loading branch information
openshift-merge-bot[bot] authored Dec 11, 2023
2 parents 7e1cdab + 05e448f commit e53be77
Show file tree
Hide file tree
Showing 28 changed files with 225 additions and 13 deletions.
1 change: 1 addition & 0 deletions roles/edpm_ovn/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ edpm_ovn_chassis_mac_mapping_seed: "{{ ansible_machine_id }}"
edpm_ovn_encap_type: geneve
edpm_ovn_dbs: []
edpm_enable_chassis_gw: false
edpm_enable_chassis_extport: false
edpm_enable_hw_offload: false
edpm_ovn_multi_rhel: false
edpm_enable_internal_tls: false
Expand Down
5 changes: 5 additions & 0 deletions roles/edpm_ovn/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ argument_specs:
default: false
description: ''
type: bool
edpm_enable_chassis_extport:
default: false
description: >
Mark Chassis as eligible for scheduling OVN's external ports
type: bool
edpm_enable_hw_offload:
default: false
description: ''
Expand Down
12 changes: 11 additions & 1 deletion roles/edpm_ovn/molecule/default/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,14 @@
gather_facts: false
any_errors_fatal: true
become: true
tasks: []
tasks:
- name: Cleanup edpm_ovn
ansible.builtin.import_role:
name: "osp.edpm.edpm_ovn"
tasks_from: cleanup.yml

- name: Verify ovn-cms-options was cleared up
ansible.builtin.shell: >
/usr/bin/ovs-vsctl get open . external_ids
register: output
failed_when: "'ovn-cms-options' in output.stdout"
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ scenario:
- prepare
- converge
- verify
- cleanup
- destroy
verifier:
name: ansible
6 changes: 6 additions & 0 deletions roles/edpm_ovn/molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@
/usr/bin/ovs-vsctl get open_vswitch . other_config:hw-offload
register: output
failed_when: output.rc == 0

- name: Verify ovn-cms-options was not set by default
ansible.builtin.shell: >
/usr/bin/ovs-vsctl get open . external_ids
register: output
failed_when: "'ovn-cms-options' in output.stdout"
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_extport/cleanup.yml
29 changes: 29 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_extport/converge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# Copyright 2021 Red Hat, Inc.
# All Rights Reserved.
#
# 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: Converge
hosts: all
gather_facts: true
become: true
tasks:
- include_role:
name: "osp.edpm.edpm_ovn"
vars:
tenant_ip: "{{ ansible_host }}"
edpm_ovn_dbs:
- "{{ ansible_host }}"
edpm_ovn_config_src: "{{lookup('env', 'MOLECULE_SCENARIO_DIRECTORY')}}/test-data"
edpm_enable_chassis_extport: true
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_extport/prepare.yml
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_extport/test-data
13 changes: 13 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_extport/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
- name: Verify
hosts: all
tasks:
- name: Include default tasks
ansible.builtin.include_tasks:
file: ../default/verify-tasks.yml

- name: Verify enable-chassis-as-extport-host
ansible.builtin.shell: >
/usr/bin/ovs-vsctl get open_vswitch . external_ids:ovn-cms-options
register: output
failed_when: output.stdout != "enable-chassis-as-extport-host"
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/cleanup.yml
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/collections.yml
29 changes: 29 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/converge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# Copyright 2021 Red Hat, Inc.
# All Rights Reserved.
#
# 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: Converge
hosts: all
gather_facts: true
become: true
tasks:
- include_role:
name: "osp.edpm.edpm_ovn"
vars:
tenant_ip: "{{ ansible_host }}"
edpm_ovn_dbs:
- "{{ ansible_host }}"
edpm_ovn_config_src: "{{lookup('env', 'MOLECULE_SCENARIO_DIRECTORY')}}/test-data"
edpm_enable_chassis_gw: true
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/molecule.yml
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/prepare.yml
1 change: 1 addition & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/test-data
13 changes: 13 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
- name: Verify
hosts: all
tasks:
- name: Include default tasks
ansible.builtin.include_tasks:
file: ../default/verify-tasks.yml

- name: Verify enable-chassis-as-gw
ansible.builtin.shell: >
/usr/bin/ovs-vsctl get open_vswitch . external_ids:ovn-cms-options
register: output
failed_when: output.stdout != "enable-chassis-as-gw"
30 changes: 30 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw_and_extport/converge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
# Copyright 2021 Red Hat, Inc.
# All Rights Reserved.
#
# 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: Converge
hosts: all
gather_facts: true
become: true
tasks:
- include_role:
name: "osp.edpm.edpm_ovn"
vars:
tenant_ip: "{{ ansible_host }}"
edpm_ovn_dbs:
- "{{ ansible_host }}"
edpm_ovn_config_src: "{{lookup('env', 'MOLECULE_SCENARIO_DIRECTORY')}}/test-data"
edpm_enable_chassis_gw: true
edpm_enable_chassis_extport: true
13 changes: 13 additions & 0 deletions roles/edpm_ovn/molecule/enable_chassis_gw_and_extport/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
- name: Verify
hosts: all
tasks:
- name: Include default tasks
ansible.builtin.include_tasks:
file: ../default/verify-tasks.yml

- name: Verify enable-chassis-as-gw and enable-chassis-as-extport-host
ansible.builtin.shell: >
/usr/bin/ovs-vsctl get open_vswitch . external_ids:ovn-cms-options
register: output
failed_when: output.stdout != "\"enable-chassis-as-gw,enable-chassis-as-extport-host\""
43 changes: 38 additions & 5 deletions roles/edpm_ovn/tasks/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,43 @@
failed_when: cleanup_hw_offload.rc != 0
when: not edpm_enable_hw_offload | bool

- name: Get OVN CMS Options from the local OVSDB
ansible.builtin.shell: >
ovs-vsctl get Open_vSwitch . external_ids:ovn-cms-options | sed 's/\"//g'
register: cleanup_ovn_cms_options
changed_when: false
ignore_errors: true

- name: Cleanup enable-chassis-as-gw when chassis GW not enabled
ansible.builtin.set_fact:
cleanup_ovn_cms_options: "{{ cleanup_ovn_cms_options | regex_replace('enable-chassis-as-gw' ~ ',?', '') }}"
when:
- not edpm_enable_chassis_gw | bool
- cleanup_ovn_cms_options.rc == 0

- name: Cleanup enable-chassis-as-extport-host when chassis extport not enabled
ansible.builtin.set_fact:
cleanup_ovn_cms_options: "{{ cleanup_ovn_cms_options | regex_replace('enable-chassis-as-extport-host' ~ ',?', '') }}"
when:
- not edpm_enable_chassis_extport | bool
- cleanup_ovn_cms_options.rc == 0

- name: Set updated OVN CMS Options to the local OVSDB
ansible.builtin.shell: >
ovs-vsctl set Open_vSwitch . external_ids:ovn-cms-options={{ cleanup_ovn_cms_options.stdout }}
register: cleanup_ovn_cms_options_set
changed_when: cleanup_ovn_cms_options_set.rc == 0
failed_when: cleanup_ovn_cms_options_set.rc != 0
when:
- cleanup_ovn_cms_options.rc == 0
- cleanup_ovn_cms_options.stdout != ""

- name: Clear OVN CMS Options if updated string is empty
ansible.builtin.shell: >
ovs-vsctl remove open . external_ids ovn-cms-options
register: cleanup_enable_chassis_as_gw
changed_when: cleanup_enable_chassis_as_gw.rc == 0
failed_when: cleanup_enable_chassis_as_gw.rc != 0
when: not edpm_enable_chassis_gw | bool
ovs-vsctl remove Open_vSwitch . external_ids ovn-cms-options
register: cleanup_ovn_cms_options_remove
changed_when: cleanup_ovn_cms_options_remove.rc == 0
failed_when: cleanup_ovn_cms_options_remove.rc != 0
when:
- cleanup_ovn_cms_options.rc == 0
- cleanup_ovn_cms_options.stdout == ""
28 changes: 21 additions & 7 deletions roles/edpm_ovn/tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,31 @@
ansible.builtin.set_fact:
edpm_ovn_ovs_external_ids: "{{ edpm_ovn_ovs_external_ids | combine(edpm_ovn_configmap_facts | default({})) }}"

- name: Configure GW ports on chassis setting when enabled
when: edpm_enable_chassis_gw | default(false)
- name: Configure OVN CMS Options
block:
- name: Set enable-chassis-as-gw
- name: Configure GW ports on chassis setting when enabled
ansible.builtin.set_fact:
cms_options:
ovn-cms-options: "enable-chassis-as-gw"
chassis_options:
- "enable-chassis-as-gw"
when: edpm_enable_chassis_gw | default(false)

- name: Append CMS options to external_ids
- name: Configure external port hosting on chassis setting when enabled
ansible.builtin.set_fact:
edpm_ovn_ovs_external_ids: "{{ edpm_ovn_ovs_external_ids | combine(cms_options) }}"
chassis_options: "{{ chassis_options | default([]) + ['enable-chassis-as-extport-host'] }}"
when: edpm_enable_chassis_extport | default(false)

- name: Build OVN CMS Options
ansible.builtin.set_fact:
ovn_cms_options:
ovn-cms-options: "{{ chassis_options | join(',') }}"
when:
- chassis_options is defined

- name: Append OVN CMS Options to external_ids
ansible.builtin.set_fact:
edpm_ovn_ovs_external_ids: "{{ edpm_ovn_ovs_external_ids | combine(ovn_cms_options | default({})) }}"
when:
- ovn_cms_options is defined

- name: Configure hw-offload when required
when: edpm_enable_hw_offload | default(false)
Expand Down

0 comments on commit e53be77

Please sign in to comment.