Merge "Move defaults.yml to group_vars/all.yml"
This commit is contained in:
commit
41fabba084
@ -56,3 +56,20 @@ enable_mariadb: "yes"
|
|||||||
enable_neutron: "yes"
|
enable_neutron: "yes"
|
||||||
enable_nova: "yes"
|
enable_nova: "yes"
|
||||||
enable_rabbitmq: "yes"
|
enable_rabbitmq: "yes"
|
||||||
|
|
||||||
|
|
||||||
|
# Openstack authentication strings. You should only need to adjust these if you
|
||||||
|
# are changing the admin tenant/project or user.
|
||||||
|
openstack_auth:
|
||||||
|
auth_url: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}"
|
||||||
|
username: "admin"
|
||||||
|
password: "{{ keystone_admin_password }}"
|
||||||
|
project_name: "admin"
|
||||||
|
|
||||||
|
# This shouldn't be needed for long. It is only temporary until we get the
|
||||||
|
# ansible modules sorted out
|
||||||
|
openstack_auth_v2:
|
||||||
|
auth_url: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}/v2.0"
|
||||||
|
username: "admin"
|
||||||
|
password: "{{ keystone_admin_password }}"
|
||||||
|
project_name: "admin"
|
@ -74,20 +74,6 @@ openstack_logging_debug: "False"
|
|||||||
|
|
||||||
openstack_region_name: "RegionOne"
|
openstack_region_name: "RegionOne"
|
||||||
|
|
||||||
openstack_auth:
|
|
||||||
auth_url: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}"
|
|
||||||
username: "admin"
|
|
||||||
password: "{{ keystone_admin_password }}"
|
|
||||||
project_name: "admin"
|
|
||||||
|
|
||||||
# This shouldn't be needed for long. It is only temporary until we get the
|
|
||||||
# ansible modules sorted out
|
|
||||||
openstack_auth_v2:
|
|
||||||
auth_url: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}/v2.0"
|
|
||||||
username: "admin"
|
|
||||||
password: "{{ keystone_admin_password }}"
|
|
||||||
project_name: "admin"
|
|
||||||
|
|
||||||
|
|
||||||
####################
|
####################
|
||||||
# RabbitMQ options
|
# RabbitMQ options
|
||||||
|
@ -70,7 +70,7 @@ case "$1" in
|
|||||||
|
|
||||||
(deploy)
|
(deploy)
|
||||||
ACTION="Deploying Playbook"
|
ACTION="Deploying Playbook"
|
||||||
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK"
|
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
(*) usage
|
(*) usage
|
||||||
|
Loading…
Reference in New Issue
Block a user