Remove inline comments from example config

Inline comments are not automatically removed when config options are
parsed. This can lead to difficult to debug errors if the example config
is used directly.

Change-Id: I23ecd32a0f14a7d8ba36a7cf17c47ac3814e7f19
This commit is contained in:
Jimmy McCrory 2017-06-14 16:29:46 -07:00
parent c86e5d6ebf
commit c16472bbc1
1 changed files with 5 additions and 5 deletions

View File

@ -16,14 +16,14 @@ password = Secrete
[keystone]
# NOTE(cloudnull):
# When using keystone V3 you will need the .*domain_name configuration options.
user_domain_name = default # This is required when Keystone V3 is being used
project_domain_name = default # This is required when Keystone V3 is being used
user_domain_name = default
project_domain_name = default
[glance]
# NOTE(cloudnull):
# If you're using keystone V2 you will need the tenant_name option.
tenant_name = admin # This is required when Keystone V2 is being used
project_name = admin # This is required when Keystone V2 is being used
# If you're using keystone V2 you will need the tenant_name and project_name options.
tenant_name = admin
project_name = admin
# NEVER Mix and match the options tenant name and domain_name options withiin the same section.
# You are be required to run either V2 or V3 as it pertains to this config.