f2d575b9c6
Change-Id: I0daf8b78f39b919d2b88336322203f1d643fc54b Partial-Bug: #1482214 Partially-Implements: blueprint remove-abstraction-ansible
29 lines
862 B
YAML
29 lines
862 B
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_verbose: "{{ openstack_logging_verbose }}"
|
|
keystone_logging_debug: "{{ openstack_logging_debug }}"
|