Skip to content
Snippets Groups Projects
Commit c2f2be4d authored by Serguei Bezverkhi's avatar Serguei Bezverkhi
Browse files

Changing Swift option section in globals.yml

This patch adds some explanations for different options available
in /etc/kolla/globals.yml for customizing swift configuration.

Trivial fix

Change-Id: Iaf03f5293804d63c87d8881ac4282909a81b0bfe
parent 3c0641b3
No related branches found
No related tags found
No related merge requests found
...@@ -40,11 +40,11 @@ kolla_internal_vip_address: "10.10.10.254" ...@@ -40,11 +40,11 @@ kolla_internal_vip_address: "10.10.10.254"
# Docker options # Docker options
#################### ####################
### Example: Private repository with authentication ### Example: Private repository with authentication
#
# docker_registry: "172.16.0.10:4000" #docker_registry: "172.16.0.10:4000"
# docker_namespace: "companyname" #docker_namespace: "companyname"
# docker_registry_username: "sam" #docker_registry_username: "sam"
# docker_registry_password: "correcthorsebatterystaple" #docker_registry_password: "correcthorsebatterystaple"
#################### ####################
...@@ -78,8 +78,8 @@ neutron_external_interface: "eth1" ...@@ -78,8 +78,8 @@ neutron_external_interface: "eth1"
# To provide encryption and authentication on the kolla_external_vip_interface, # To provide encryption and authentication on the kolla_external_vip_interface,
# TLS can be enabled. When TLS is enabled, certificates must be provided to # TLS can be enabled. When TLS is enabled, certificates must be provided to
# allow clients to perform authentication. The default is TLS disabled. # allow clients to perform authentication. The default is TLS disabled.
# kolla_enable_tls_external: "yes" #kolla_enable_tls_external: "yes"
# kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem" #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
#################### ####################
...@@ -95,6 +95,7 @@ neutron_external_interface: "eth1" ...@@ -95,6 +95,7 @@ neutron_external_interface: "eth1"
#enable_cinder: "yes" #enable_cinder: "yes"
#enable_heat: "no" #enable_heat: "no"
#enable_magnum: "no" #enable_magnum: "no"
#enable_swift: "yes"
################### ###################
...@@ -104,14 +105,33 @@ neutron_external_interface: "eth1" ...@@ -104,14 +105,33 @@ neutron_external_interface: "eth1"
# must provide separate disks than those for the OSDs # must provide separate disks than those for the OSDs
# ceph_use_cache: "no" # ceph_use_cache: "no"
# Valid options are [ forward, none, writeback ] # Valid options are [ forward, none, writeback ]
# ceph_cache_mode: "writeback" #ceph_cache_mode: "writeback"
# A requirement for using the erasure-coded pools is you must setup a cache tier # A requirement for using the erasure-coded pools is you must setup a cache tier
# Valid options are [ erasure, replicated ] # Valid options are [ erasure, replicated ]
# ceph_pool_type: "replicated" #ceph_pool_type: "replicated"
####################################### #######################################
# Manila - Shared File Systems Options # Manila - Shared File Systems Options
####################################### #######################################
# manila_enable_dhss: "yes" #manila_enable_dhss: "yes"
#######################################
# Swift options
#######################################
# Swift expects block devices to be available for storage. Two types of storage
# are supported: 1 - storage device with a special partition name and filesystem
# label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
# is used to detect the disk which Swift will be using.
# Swift support two mathcing modes, valid options are [ prefix, strict ]
#swift_devices_match_mode: "strict"
# This parameter defines matching pattern: if "strict" mode was selected,
# for swift_devices_match_mode then swift_device_name should specify the name of
# the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
# selected then swift_devices_name should specify a pattern which would match to
# filesystems' labels prepared for swift.
#swift_devices_name: "KOLLA_SWIFT_DATA"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment