f9ceec9cd5
The cinder v1 API was removed in the queens release. The 'os_keystone_service' module is used to allow removal of existing services and endpoints. Disabling the v2 API will now also ensure there is not a registered service or endpoints. The 'cinder_enable_v3_api' variable has been removed since it had no effect on cinder's enablement of the v3 API. Depends-On: https://review.openstack.org/#/c/557016/ Change-Id: I02d2bae8712c0ca223cafb5a43304806c4b83125
123 lines
4.5 KiB
YAML
123 lines
4.5 KiB
YAML
---
|
|
# Copyright 2014, 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.
|
|
|
|
# Create an admin user
|
|
- name: Ensure cinder user
|
|
keystone:
|
|
command: "ensure_user"
|
|
endpoint: "{{ keystone_service_adminurl }}"
|
|
login_user: "{{ keystone_admin_user_name }}"
|
|
login_password: "{{ keystone_auth_admin_password }}"
|
|
login_project_name: "{{ keystone_admin_tenant_name }}"
|
|
user_name: "{{ cinder_service_user_name }}"
|
|
tenant_name: "{{ cinder_service_project_name }}"
|
|
password: "{{ cinder_service_password }}"
|
|
insecure: "{{ keystone_service_adminuri_insecure }}"
|
|
register: add_service
|
|
when: not cinder_service_in_ldap | bool
|
|
until: add_service|success
|
|
retries: 5
|
|
delay: 10
|
|
|
|
# Add a role to the user
|
|
- name: Ensure cinder user to admin role
|
|
keystone:
|
|
command: "ensure_user_role"
|
|
endpoint: "{{ keystone_service_adminurl }}"
|
|
login_user: "{{ keystone_admin_user_name }}"
|
|
login_password: "{{ keystone_auth_admin_password }}"
|
|
login_project_name: "{{ keystone_admin_tenant_name }}"
|
|
user_name: "{{ cinder_service_user_name }}"
|
|
tenant_name: "{{ cinder_service_project_name }}"
|
|
role_name: "{{ cinder_service_role_name }}"
|
|
insecure: "{{ keystone_service_adminuri_insecure }}"
|
|
register: add_service
|
|
when: not cinder_service_in_ldap | bool
|
|
until: add_service|success
|
|
retries: 5
|
|
delay: 10
|
|
|
|
# Create a service
|
|
- name: Ensure cinder service
|
|
os_keystone_service:
|
|
auth:
|
|
auth_url: "{{ keystone_service_adminurl }}"
|
|
username: "{{ cinder_service_user_name }}"
|
|
password: "{{ cinder_service_password }}"
|
|
project_name: "{{ cinder_service_project_name }}"
|
|
user_domain_name: "{{ cinder_service_user_domain_id }}"
|
|
project_domain_name: "{{ cinder_service_project_domain_id }}"
|
|
endpoint_type: admin
|
|
region_name: "{{ cinder_service_region }}"
|
|
validate_certs: "{{ keystone_service_adminuri_insecure | ternary(false, true) }}"
|
|
name: "{{ item.name }}"
|
|
service_type: "{{ item.type }}"
|
|
description: "{{ item.description }}"
|
|
state: "{{ item.state }}"
|
|
register: add_service
|
|
until: add_service|success
|
|
retries: 5
|
|
delay: 10
|
|
with_items:
|
|
- name: "{{ cinder_service_name }}"
|
|
type: "{{ cinder_service_type }}"
|
|
description: "{{ cinder_service_description }}"
|
|
state: absent
|
|
- name: "{{ cinder_service_v2_name }}"
|
|
type: "{{ cinder_service_v2_type }}"
|
|
description: "{{ cinder_service_v2_description }}"
|
|
state: "{{ cinder_enable_v2_api | bool | ternary('present', 'absent') }}"
|
|
- name: "{{ cinder_service_v3_name }}"
|
|
type: "{{ cinder_service_v3_type }}"
|
|
description: "{{ cinder_service_v3_description }}"
|
|
state: present
|
|
|
|
# Create an endpoint
|
|
- name: Ensure cinder endpoint
|
|
keystone:
|
|
command: "ensure_endpoint"
|
|
endpoint: "{{ keystone_service_adminurl }}"
|
|
login_user: "{{ keystone_admin_user_name }}"
|
|
login_password: "{{ keystone_auth_admin_password }}"
|
|
login_project_name: "{{ keystone_admin_tenant_name }}"
|
|
region_name: "{{ cinder_service_region }}"
|
|
service_name: "{{ item.name }}"
|
|
service_type: "{{ item.type }}"
|
|
insecure: "{{ keystone_service_adminuri_insecure }}"
|
|
endpoint_list:
|
|
- url: "{{ item.publicurl }}"
|
|
interface: "public"
|
|
- url: "{{ item.internalurl }}"
|
|
interface: "internal"
|
|
- url: "{{ item.adminurl }}"
|
|
interface: "admin"
|
|
when: item.condition | default(true)
|
|
register: add_service
|
|
until: add_service|success
|
|
retries: 5
|
|
delay: 10
|
|
with_items:
|
|
- name: "{{ cinder_service_v2_name }}"
|
|
type: "{{ cinder_service_v2_type }}"
|
|
publicurl: "{{ cinder_service_v2_publicurl }}"
|
|
internalurl: "{{ cinder_service_v2_internalurl }}"
|
|
adminurl: "{{ cinder_service_v2_adminurl }}"
|
|
condition: "{{ cinder_enable_v2_api | bool }}"
|
|
- name: "{{ cinder_service_v3_name }}"
|
|
type: "{{ cinder_service_v3_type }}"
|
|
publicurl: "{{ cinder_service_v3_publicurl }}"
|
|
internalurl: "{{ cinder_service_v3_internalurl }}"
|
|
adminurl: "{{ cinder_service_v3_adminurl }}"
|