
Admin token has been deprecated upstream. It will be removed in O. We switch over to the new `keystone-manage bootstrap` method for creating the initial admin user, role, and project. Co-Authored-By: Sam Yaple <sam@yaple.net> Change-Id: I6ca90e8d4c3b71009e24b049b2efbc08c05ebfbf
34 lines
1.3 KiB
YAML
34 lines
1.3 KiB
YAML
---
|
|
project_name: "keystone"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
keystone_database_name: "keystone"
|
|
keystone_database_user: "keystone"
|
|
keystone_database_address: "{{ kolla_internal_fqdn }}"
|
|
|
|
|
|
####################
|
|
# 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_fqdn }}"
|
|
keystone_admin_address: "{{ kolla_internal_fqdn }}"
|
|
keystone_internal_address: "{{ kolla_internal_fqdn }}"
|
|
|
|
keystone_admin_url: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}"
|
|
keystone_internal_url: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}"
|
|
keystone_public_url: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ keystone_public_port }}"
|
|
|
|
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 }}'}"
|