Created
September 22, 2020 14:02
Revisions
-
a1git created this gist
Sep 22, 2020 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,101 @@ # root @ vbg-deploy in /etc/ansible/roles/os_heat/tasks on git:f0ba530 o [14:01:30] $ cat heat_service_setup.yml --- # Copyright 2016, Rackspace US, Inc. # # 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. # NOTE (noonedeadpunk) We can't move domain creation inside service_setup.yml # since for role assignment we need to provide ID of created domain instead of # domain name (which we have). This might be dropped right after backport of # https://github.com/ansible/ansible/commit/737da1853ef2239e27a2fe380c3e83ba5b34de5b - name: Setup the service delegate_to: "{{ heat_service_setup_host }}" vars: ansible_python_interpreter: "{{ heat_service_setup_host_python_interpreter }}" os_keystone_domain: cloud: default state: present name: "{{ heat_stack_user_domain_name }}" endpoint_type: admin verify: "{{ not keystone_service_adminuri_insecure }}" register: add_stack_user_domain until: add_stack_user_domain is success retries: 5 delay: 10 - include_tasks: service_setup.yml vars: _project_name: "{{ heat_project_name }}" _project_domain: "{{ add_stack_user_domain.id }}" _service_adminuri_insecure: "{{ keystone_service_adminuri_insecure }}" _service_in_ldap: "{{ heat_service_in_ldap }}" _service_setup_host: "{{ heat_service_setup_host }}" _service_setup_host_python_interpreter: "{{ heat_service_setup_host_python_interpreter }}" _service_project_name: "{{ heat_service_project_name }}" _service_region: "{{ heat_service_region }}" _service_users: - name: "{{ heat_service_user_name }}" password: "{{ heat_service_password }}" domain: default project: "{{ heat_service_project_name }}" role: "{{ heat_service_role_name }}" # We add the keystone role used by heat to delegate to the heat service user # for performing deferred operations via trusts. - name: "{{ heat_service_user_name }}" role: "{{ heat_stack_owner_name }}" project: "{{ heat_service_project_name }}" # Any user creating stacks needs to have the 'heat_stack_owner' role assigned. # We add to admin user here for testing purposes. - name: "{{ keystone_admin_user_name }}" role: "{{ heat_stack_owner_name }}" project: "{{ heat_service_project_name }}" - name: "{{ heat_stack_domain_admin }}" password: "{{ heat_stack_domain_admin_password }}" domain: "{{ add_stack_user_domain.id }}" project: "{{ heat_project_name }}" role: "{{ keystone_role_name | default('admin') }}" - role: heat_stack_user _service_endpoints: - service: "{{ heat_service_name }}" interface: "public" url: "{{ heat_service_publicurl }}" - service: "{{ heat_service_name }}" interface: "internal" url: "{{ heat_service_internalurl }}" - service: "{{ heat_service_name }}" interface: "admin" url: "{{ heat_service_adminurl }}" - interface: "public" url: "{{ heat_cfn_service_publicurl }}" service: "{{ heat_cfn_service_name }}" - interface: "internal" url: "{{ heat_cfn_service_internalurl }}" service: "{{ heat_cfn_service_name }}" - interface: "admin" url: "{{ heat_cfn_service_adminurl }}" service: "{{ heat_cfn_service_name }}" _service_catalog: - name: "{{ heat_service_name }}" type: "{{ heat_service_type }}" description: "{{ heat_service_description }}" - name: "{{ heat_cfn_service_name }}" type: "{{ heat_cfn_service_type }}" description: "{{ heat_cfn_service_description }}"