e1ff26612f
References: https://review.openstack.org/#/c/269042/ TrivialFix Change-Id: Ief08781342a06f956fc4cf00ba4383759da8c897
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
---
|
|
project_name: "keystone"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
keystone_database_name: "keystone"
|
|
keystone_database_user: "keystone"
|
|
keystone_database_address: "{{ kolla_internal_address }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
keystone_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-keystone"
|
|
keystone_tag: "{{ openstack_release }}"
|
|
keystone_image_full: "{{ keystone_image }}:{{ keystone_tag }}"
|
|
|
|
|
|
####################
|
|
# Openstack
|
|
####################
|
|
keystone_public_address: "{{ kolla_external_address }}"
|
|
keystone_admin_address: "{{ kolla_internal_address }}"
|
|
keystone_internal_address: "{{ kolla_internal_address }}"
|
|
|
|
keystone_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
openstack_keystone_auth: "{'auth_url':'{{ openstack_auth_v2.auth_url }}','username':'{{ openstack_auth_v2.username }}','password':'{{ openstack_auth_v2.password }}','project_name':'{{ openstack_auth_v2.project_name }}'}"
|
|
openstack_keystone_token_auth: "{'endpoint':'{{ openstack_auth_v2.auth_url }}','token':'{{ keystone_admin_token }}'}"
|