53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
# Copyright 2021 Canonical Ltd.
|
|
# See LICENSE file for licensing details.
|
|
#
|
|
options:
|
|
debug:
|
|
default: False
|
|
description: Enable debug logging.
|
|
type: boolean
|
|
log-level:
|
|
default: WARNING
|
|
type: string
|
|
description: Log level (WARNING, INFO, DEBUG, ERROR)
|
|
|
|
admin-user:
|
|
default: admin
|
|
description: Default admin user for keystone
|
|
type: string
|
|
admin-role:
|
|
default: Admin
|
|
description: Admin role to be associated with admin and service users
|
|
type: string
|
|
service-tenant:
|
|
default: services
|
|
description: Name of tenant to associate with service credentials
|
|
type: string
|
|
|
|
region:
|
|
default: RegionOne
|
|
description: Name of the OpenStack region
|
|
type: string
|
|
|
|
catalog-cache-expiration:
|
|
type: int
|
|
default: 60
|
|
description: Amount of time (in seconds) the catalog should be cached for.
|
|
dogpile-cache-expiration:
|
|
type: int
|
|
default: 60
|
|
description: |
|
|
Amount of time (in seconds) to cache items in the dogpile.cache. This only applies
|
|
to cached methods that do not have an explicitly defined cache expiration time.
|
|
|
|
identity-backend:
|
|
type: string
|
|
default: "sql"
|
|
description: |
|
|
Keystone identity backend, valid options are sql and pam
|
|
|
|
enable-telemetry-notifications:
|
|
type: boolean
|
|
default: False
|
|
description: Enable notifications to send to telemetry.
|