Files
openstack-ansible-os_magnum/tasks/magnum_service_setup.yml
Dmitriy Rabotyagov bfbf0db8fb Fix linters and metadata
With update of ansible-lint to version >=6.0.0 a lot of new
linters were added, that enabled by default. In order to comply
with linter rules we're applying changes to the role.

With that we also update metdata to reflect current state.

Depends-On: https://review.opendev.org/c/openstack/ansible-role-systemd_service/+/888223
Change-Id: I68c3d98de3a0a4444c0c1ea0cc528901613a63bd
2023-07-14 18:02:08 +02:00

64 lines
2.4 KiB
YAML

---
# 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
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