20c5e8fe13
When upgrade from ceph Jewel to ceph luminous, the client.admin caps should add `mgr 'allow *'` caps Change-Id: Ia4cb7a59d4cf215a1dce1efe31e00f1401e0b753 Closes-Bug: #1750967
78 lines
2.9 KiB
YAML
78 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 }}"
|
|
|
|
##########
|
|
# 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
|