c700fdba0d
This adds a new scenario for Ceph Rados GW integration: - It adds the RGW into haproxy to the default swift port if swift port isn't deployed already - It adds tempest swift API testing on the rados gw in the check scenario - It adds ceph rgw in default inventories. Change-Id: I5f6ff3fa05a4a8019bf5b695b02184d9f065bc2e Co-Authored-By: Jean-Philippe Evrard <jean-philippe@evrard.me> Co-Authored-By: Maxime Guyot <maxime.guyot@elits.com>
67 lines
3.2 KiB
YAML
67 lines
3.2 KiB
YAML
---
|
|
# Copyright 2017, Ravi Kumar Boyapati <rboyapat@gmail.com>
|
|
#
|
|
# 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.
|
|
|
|
# ceph default list of bind mounts
|
|
ceph_container_bind_mounts:
|
|
- bind_dir_path: "/var/lib/ceph"
|
|
mount_path: "/openstack/{{ inventory_hostname }}"
|
|
|
|
# Disable the NFS gateway PPA and package install by default as it is not
|
|
# needed.
|
|
nfs_file_gw: False
|
|
nfs_obj_gw: False
|
|
|
|
# radosgw
|
|
|
|
radosgw_service_name: "radosgw"
|
|
radosgw_service_type: "object-store"
|
|
radosgw_service_description: "Object Storage Service"
|
|
radosgw_service_region: "{{ service_region }}"
|
|
radosgw_admin_user: radosgw
|
|
radosgw_admin_tenant: service
|
|
|
|
radosgw_service_port: "{{ (groups['swift_proxy'] is defined and groups['swift_proxy'] | length > 0) | ternary(7980,8080) }}"
|
|
radosgw_address: "{{ container_address }}"
|
|
radosgw_service_proto: http
|
|
radosgw_service_publicuri_proto: "{{ openstack_service_publicuri_proto | default(radosgw_service_proto) }}"
|
|
radosgw_service_adminuri_proto: "{{ openstack_service_adminuri_proto | default(radosgw_service_proto) }}"
|
|
radosgw_service_internaluri_proto: "{{ openstack_service_internaluri_proto | default(radosgw_service_proto) }}"
|
|
radosgw_service_publicuri: "{{ radosgw_service_publicuri_proto }}://{{ external_lb_vip_address }}:{{ radosgw_service_port }}"
|
|
radosgw_service_publicurl: "{{ radosgw_service_publicuri }}/swift/v1"
|
|
radosgw_service_adminuri: "{{ radosgw_service_adminuri_proto }}://{{ internal_lb_vip_address }}:{{ radosgw_service_port }}"
|
|
radosgw_service_adminurl: "{{ radosgw_service_adminuri }}/swift/v1"
|
|
radosgw_service_internaluri: "{{ radosgw_service_internaluri_proto }}://{{ internal_lb_vip_address }}:{{ radosgw_service_port }}"
|
|
radosgw_service_internalurl: "{{ radosgw_service_internaluri }}/swift/v1"
|
|
|
|
# This is the endpoint hostname that will be configured in the Keystone catalog for object storage
|
|
radosgw_dns_name: "{{ ansible_host }}"
|
|
# To extend ceph_conf_overrides while keeping this configuration, create a
|
|
# dict of config_template style overrides for ceph.conf in a var, ie.
|
|
# ceph_conf_overrides_custom, then use:
|
|
# ceph_conf_overrides: "{{ ceph_conf_overrides_rgw | combine(ceph_conf_overrides_custom, recursive=True) }}"
|
|
ceph_conf_overrides: "{{ ceph_conf_overrides_rgw }}"
|
|
ceph_conf_overrides_rgw:
|
|
"client.rgw.{{ hostvars[inventory_hostname]['ansible_hostname'] }}":
|
|
# OpenStack integration with Keystone
|
|
rgw_keystone_url: "{{ keystone_service_adminuri }}"
|
|
rgw_keystone_api_version: 3
|
|
rgw_keystone_admin_user: "{{ radosgw_admin_user }}"
|
|
rgw_keystone_admin_password: "{{ radosgw_admin_password }}"
|
|
rgw_keystone_admin_tenant: "{{ radosgw_admin_tenant }}"
|
|
rgw_keystone_admin_domain: default
|
|
rgw_keystone_accepted_roles: 'Member, _member_, admin, swiftoperator'
|
|
rgw_s3_auth_use_keystone: true
|
|
rgw_enable_apis: swift
|