Mohammed Naser | 0a13cee | 2023-03-02 11:28:29 +0100 | [diff] [blame] | 1 | # Copyright (c) 2023 VEXXHOST, Inc. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | |
| 15 | - name: Generate configuration difference (control plane) |
| 16 | ansible.builtin.include_role: |
| 17 | name: osa_config_diff |
| 18 | vars: |
| 19 | osa_config_diff_containers_group: neutron_server |
| 20 | osa_config_diff_chart_ref: "{{ neutron_helm_chart_ref }}" |
| 21 | osa_config_diff_release_namespace: "{{ neutron_helm_release_namespace }}" |
| 22 | osa_config_diff_release_values: "{{ _neutron_helm_values | combine(neutron_helm_values, recursive=True) }}" |
| 23 | osa_config_diff_config_files: |
| 24 | neutron.conf: /etc/neutron/neutron.conf |
| 25 | ml2_conf.ini: /etc/neutron/plugins/ml2/ml2_conf.ini |
| 26 | |
| 27 | - name: Generate configuration difference (control plane agents) |
| 28 | ansible.builtin.include_role: |
| 29 | name: osa_config_diff |
| 30 | vars: |
| 31 | osa_config_diff_containers_group: network_hosts |
| 32 | osa_config_diff_chart_ref: "{{ neutron_helm_chart_ref }}" |
| 33 | osa_config_diff_release_namespace: "{{ neutron_helm_release_namespace }}" |
| 34 | osa_config_diff_release_values: "{{ _neutron_helm_values | combine(neutron_helm_values, recursive=True) }}" |
| 35 | osa_config_diff_config_files: |
| 36 | ml2_conf.ini: /etc/neutron/plugins/ml2/ml2_conf.ini |
| 37 | dhcp_agent.ini: /etc/neutron/dhcp_agent.ini |
| 38 | l3_agent.ini: /etc/neutron/l3_agent.ini |
| 39 | linuxbridge_agent.ini: /etc/neutron/plugins/ml2/linuxbridge_agent.ini |
| 40 | metadata_agent.ini: /etc/neutron/metadata_agent.ini |
| 41 | |
| 42 | - name: Migrate the databases |
| 43 | ansible.builtin.include_role: |
| 44 | name: migrate_db_from_osa |
| 45 | vars: |
| 46 | migrate_db_from_osa_pxc_namespace: "{{ neutron_helm_release_namespace }}" |
| 47 | migrate_db_from_osa_containers_group: neutron_server |
| 48 | migrate_db_from_osa_databases: |
| 49 | neutron: neutron |
| 50 | |
| 51 | - name: Run deployment flow |
| 52 | ansible.builtin.import_tasks: |
| 53 | file: main.yml |
| 54 | |
| 55 | - name: Get the Kuberentes service for RabbitMQ |
| 56 | run_once: true |
| 57 | kubernetes.core.k8s_info: |
| 58 | kind: Service |
| 59 | name: "{{ openstack_helm_endpoints.oslo_messaging.hosts.default }}" |
| 60 | namespace: "{{ neutron_helm_release_namespace }}" |
| 61 | register: _neutron_rabbitmq_service |
| 62 | |
| 63 | - name: Update RabbitMQ configuration for Neutron agents |
| 64 | delegate_to: "{{ item.0 }}" |
| 65 | community.general.ini_file: |
| 66 | path: /etc/neutron/neutron.conf |
| 67 | section: "{{ item.1.section }}" |
| 68 | option: "{{ item.1.option }}" |
| 69 | value: "{{ item.1.value }}" |
Mohammed Naser | a8950ec | 2023-03-05 19:28:27 +0000 | [diff] [blame] | 70 | mode: "0644" |
Mohammed Naser | 0a13cee | 2023-03-02 11:28:29 +0100 | [diff] [blame] | 71 | with_nested: |
| 72 | - "{{ groups['neutron_linuxbridge_agent'] }}" |
| 73 | - - section: DEFAULT |
| 74 | option: transport_url |
| 75 | value: "rabbit://neutron:{{ openstack_helm_endpoints.oslo_messaging.auth.neutron.password }}@{{ cluster_ip }}:5672/neutron" |
| 76 | - section: oslo_messaging_notifications |
| 77 | option: transport_url |
| 78 | value: "rabbit://nova:{{ openstack_helm_endpoints.oslo_messaging.auth.neutron.password }}@{{ cluster_ip }}:5672/neutron" |
| 79 | - section: oslo_messaging_rabbit |
| 80 | option: ssl |
| 81 | value: false |
| 82 | vars: |
| 83 | cluster_ip: "{{ _neutron_rabbitmq_service.resources[0].spec.clusterIP }}" |
| 84 | |
| 85 | - name: Restart all Neutron agents |
| 86 | delegate_to: "{{ item }}" |
| 87 | ansible.builtin.service: |
| 88 | name: neutron.slice |
| 89 | state: restarted |
| 90 | with_items: "{{ groups['neutron_linuxbridge_agent'] }}" |
| 91 | |
| 92 | - name: Migrate HAproxy |
| 93 | ansible.builtin.include_role: |
| 94 | name: migrate_haproxy_from_osa |
| 95 | vars: |
| 96 | migrate_haproxy_from_osa_group: neutron_server |
| 97 | migrate_haproxy_from_osa_service_namespace: "{{ neutron_helm_release_namespace }}" |
| 98 | migrate_haproxy_from_osa_service_name: neutron-server |
| 99 | migrate_haproxy_from_osa_haproxy_backend: neutron_server |