Execution
Date 15 Dec 2025 10:19:13 +0000
Duration 00:23:12.82
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.3
Summary
9 Hosts
618 Tasks
960 Results
108 Plays
456 Files
0 Records

File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_magnum/tasks/magnum_service_setup.yml

---
# Copyright 2016, Ian Cordasco
#
# 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.

# We set the python interpreter to the ansible runtime venv if
# the delegation is to localhost so that we get access to the
# appropriate python libraries in that venv. If the delegation
# is to another host, we assume that it is accessible by the
# system python instead.

- name: Including osa.service_setup role
  ansible.builtin.include_role:
    name: openstack.osa.service_setup
    apply:
      tags:
        - common-service
        - magnum-config
  vars:
    _domain_name: "{{ magnum_trustee_domain_name }}"
    _service_adminuri_insecure: "{{ keystone_service_adminuri_insecure }}"
    _service_setup_host: "{{ magnum_service_setup_host }}"
    _service_setup_host_python_interpreter: "{{ magnum_service_setup_host_python_interpreter }}"
    _service_in_ldap: "{{ magnum_service_in_ldap }}"
    _service_project_name: "{{ magnum_service_project_name }}"
    _service_region: "{{ magnum_service_region }}"
    _service_users:
      - name: "{{ magnum_service_user_name }}"
        password: "{{ magnum_service_password }}"
        role: "{{ magnum_service_role_names }}"
      - name: "{{ magnum_trustee_domain_admin_name }}"
        password: "{{ magnum_trustee_password }}"
        domain: "{{ magnum_trustee_domain_name }}"
        project: ""
        role: "{{ magnum_trustee_domain_admin_roles }}"
    _service_endpoints:
      - service: "{{ magnum_service_name }}"
        interface: "public"
        url: "{{ magnum_service_publicurl }}"
      - service: "{{ magnum_service_name }}"
        interface: "internal"
        url: "{{ magnum_service_internalurl }}"
      - service: "{{ magnum_service_name }}"
        interface: "admin"
        url: "{{ magnum_service_adminurl }}"
    _service_catalog:
      - name: "{{ magnum_service_name }}"
        type: "{{ magnum_service_type }}"
        description: "{{ magnum_service_description }}"
  when:
    - "_magnum_is_first_play_host"
  tags:
    - always