openstack-ansible-os_trove/tasks/trove_service_network.yml
Dmitriy Rabotyagov 9ab52c9d2a Adopt for usage openstack_resources role
With efforts to create a resources in same, unified way,
we convert tempest role to use openstack_resources
for creating and managing openstack resources, like projects, flavors,
networks, images, etc. This should reduce maintenance costs
in case of futher collection updates and unify approach.

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-plugins/+/878794
Change-Id: I848ab09f8b6c81681f0ce0b5c0cc53b5653791c5
2023-11-10 13:12:57 +00:00

67 lines
2.7 KiB
YAML

---
# Copyright 2016,2017 IBM Corp.
#
# 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: Set up the service network
ansible.builtin.include_role:
name: openstack.osa.openstack_resources
vars:
openstack_resources_setup_host: "{{ trove_service_setup_host }}"
openstack_resources_python_interpreter: "{{ trove_service_setup_host_python_interpreter }}"
openstack_resources_network:
networks:
- name: "{{ trove_service_net_name }}"
network_type: "{{ trove_service_net_type }}"
physical_network: "{{ trove_service_net_phys_net }}"
segmentation_id: "{{ trove_service_net_segmentation_id | default(omit) }}"
project: "admin"
subnets:
- name: "{{ trove_service_subnet_name }}"
cidr: "{{ trove_service_net_subnet_cidr }}"
dhcp: "{{ trove_service_net_dhcp }}"
allocation_start: "{{ trove_service_net_allocation_pool_start | default(omit) }}"
allocation_end: "{{ trove_service_net_allocation_pool_end | default(omit) }}"
when: trove_service_net_setup
- name: Get the service network ID
delegate_to: "{{ trove_service_setup_host }}"
vars:
ansible_python_interpreter: "{{ trove_service_setup_host_python_interpreter }}"
block:
- name: Get trove service net id
openstack.cloud.networks_info:
cloud: default
validate_certs: "{{ trove_service_net_validate_certs }}"
wait: yes
name: "{{ trove_service_net_name }}"
endpoint_type: "{{ trove_service_net_endpoint_type }}"
register: _get_trove_service_net
run_once: true
- name: Fail if trove service network is not available
fail:
msg: >
"Trove service network {{ trove_service_net_name }} is not available. "
"For Trove to operate properly it needs a network created to allocate "
"to the deployed VMs. This network can be created prior to running this"
" playbook or can be setup by setting trove_service_net_setup to true."
when:
- _get_trove_service_net.networks is not defined or _get_trove_service_net.networks | length == 0
- name: Save trove service net id
set_fact:
trove_service_net_id: "{{ _get_trove_service_net.networks[0].id }}"
run_once: true