
Patch [0] left 2 variables for authentication one is
openstack_swift_auth and the other (inexistent) openstack_ceph_rgw_auth
for the ceph_rgw start_keystone task.
This patch leaves only openstack_ceph_rgw_auth.
Closes-Bug: #1769463
[0] 84ade4e149
Change-Id: I1cc522d91f8258f4ca23afc10a0a2a2b35c1ff68
Signed-off-by: Jorge Niedbalski <jorge.niedbalski@linaro.org>
79 lines
2.9 KiB
YAML
79 lines
2.9 KiB
YAML
---
|
|
project_name: "ceph"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
ceph_install_type: "{{ kolla_install_type }}"
|
|
ceph_tag: "{{ openstack_release }}"
|
|
|
|
ceph_mds_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-mds"
|
|
ceph_mds_tag: "{{ ceph_tag }}"
|
|
ceph_mds_image_full: "{{ ceph_mds_image }}:{{ ceph_mds_tag }}"
|
|
|
|
ceph_mon_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-mon"
|
|
ceph_mon_tag: "{{ ceph_tag }}"
|
|
ceph_mon_image_full: "{{ ceph_mon_image }}:{{ ceph_mon_tag }}"
|
|
|
|
ceph_mgr_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-mgr"
|
|
ceph_mgr_tag: "{{ ceph_tag }}"
|
|
ceph_mgr_image_full: "{{ ceph_mgr_image }}:{{ ceph_mgr_tag }}"
|
|
|
|
ceph_nfs_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-nfs"
|
|
ceph_nfs_tag: "{{ ceph_tag }}"
|
|
ceph_nfs_image_full: "{{ ceph_nfs_image }}:{{ ceph_nfs_tag }}"
|
|
|
|
ceph_osd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-osd"
|
|
ceph_osd_tag: "{{ ceph_tag }}"
|
|
ceph_osd_image_full: "{{ ceph_osd_image }}:{{ ceph_osd_tag }}"
|
|
|
|
ceph_rgw_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ ceph_install_type }}-ceph-rgw"
|
|
ceph_rgw_tag: "{{ ceph_tag }}"
|
|
ceph_rgw_image_full: "{{ ceph_rgw_image }}:{{ ceph_rgw_tag }}"
|
|
|
|
####################
|
|
# Ceph
|
|
####################
|
|
osd_initial_weight: "1"
|
|
|
|
# Increase tcmalloc cache size
|
|
ceph_tcmalloc_tc_bytes: "134217728"
|
|
|
|
ceph_client_admin_keyring_caps:
|
|
mds: "allow"
|
|
mon: "allow *"
|
|
osd: "allow *"
|
|
mgr: "allow *"
|
|
|
|
####################
|
|
## Ceph_rgw_keystone
|
|
####################
|
|
swift_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ rgw_port }}/swift/v1"
|
|
swift_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ rgw_port }}/swift/v1"
|
|
swift_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ rgw_port }}/swift/v1"
|
|
|
|
ceph_rgw_keystone_user: "ceph_rgw"
|
|
|
|
openstack_swift_auth: "{{ openstack_auth }}"
|
|
openstack_ceph_rgw_auth: "{{ openstack_auth }}"
|
|
|
|
##########
|
|
# Ceph MDS
|
|
##########
|
|
cephfs_data_pool_name: "cephfs_data"
|
|
cephfs_data_pool_type: "{{ ceph_pool_type }}"
|
|
cephfs_data_pool_cache_mode: "{{ ceph_cache_mode }}"
|
|
cephfs_data_pool_pg_num: "{{ ceph_pool_pg_num }}"
|
|
cephfs_data_pool_pgp_num: "{{ ceph_pool_pgp_num }}"
|
|
cephfs_metadata_pool_name: "cephfs_metadata"
|
|
cephfs_metadata_pool_type: "{{ ceph_pool_type }}"
|
|
cephfs_metadata_pool_cache_mode: "{{ ceph_cache_mode }}"
|
|
cephfs_metadata_pool_pg_num: "{{ ceph_pool_pg_num }}"
|
|
cephfs_metadata_pool_pgp_num: "{{ ceph_pool_pgp_num }}"
|
|
|
|
####################
|
|
# Kolla
|
|
####################
|
|
kolla_ceph_use_udev: True
|