d43b95a152
The new default for mitaka+ is fernet tokens which not all container images support. This allows the operator to specify the token provider, allowing uuid token usage in images which is required until the infrastructure to setup and distribute fernet keys is created.
22 lines
566 B
Smarty
22 lines
566 B
Smarty
[DEFAULT]
|
|
debug = {{ .Values.api.default.debug }}
|
|
use_syslog = False
|
|
use_stderr = True
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ .Values.database.keystone_user }}:{{ .Values.database.keystone_password }}@{{ include "keystone_db_host" . }}/{{ .Values.database.keystone_database_name }}
|
|
max_retries = -1
|
|
|
|
[memcache]
|
|
servers = {{ include "memcached_host" . }}:11211
|
|
|
|
[token]
|
|
provider = {{ .Values.api.token.provider }}
|
|
|
|
[cache]
|
|
backend = dogpile.cache.memcached
|
|
memcache_servers = {{ include "memcached_host" . }}:11211
|
|
config_prefix = cache.keystone
|
|
enabled = True
|
|
|