kolla-ansible/ansible/roles/congress/tasks/register.yml

43 lines
1.4 KiB
YAML

---
- name: Creating the congress service and endpoint
kolla_toolbox:
module_name: "kolla_keystone_service"
module_args:
service_name: "congress"
service_type: "application_catalog"
description: "Openstack Application Catalog"
endpoint_region: "{{ openstack_region_name }}"
url: "{{ item.url }}"
interface: "{{ item.interface }}"
region_name: "{{ openstack_region_name }}"
auth: "{{ '{{ openstack_congress_auth }}' }}"
module_extra_vars:
openstack_congress_auth: "{{ openstack_congress_auth }}"
register: congress_endpoint
until: congress_endpoint|success
retries: 10
delay: 5
run_once: True
with_items:
- {'interface': 'admin', 'url': '{{ congress_admin_endpoint }}'}
- {'interface': 'internal', 'url': '{{ congress_internal_endpoint }}'}
- {'interface': 'public', 'url': '{{ congress_public_endpoint }}'}
- name: Creating the congress project, user, and role
kolla_toolbox:
module_name: "kolla_keystone_user"
module_args:
project: "service"
user: "congress"
password: "{{ congress_keystone_password }}"
role: "admin"
region_name: "{{ openstack_region_name }}"
auth: "{{ '{{ openstack_congress_auth }}' }}"
module_extra_vars:
openstack_congress_auth: "{{ openstack_congress_auth }}"
register: congress_user
until: congress_user|success
retries: 10
delay: 5
run_once: True