Skip to content
Snippets Groups Projects
Commit 8ffa0f53 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Adds an example openrc file"

parents 8f756ac2 7a25b6be
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,12 @@ Multiple tags may be specified, and order is still determined by the playbooks. ...@@ -89,6 +89,12 @@ Multiple tags may be specified, and order is still determined by the playbooks.
ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq
ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq,mariadb ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq,mariadb
Finally, you can view ./kolla/tools/openrc-example for an example of an openrc
you can use with your environment. If you wish you may also run the following
command to initiate your environment with an glance image and neutron networks.
cd ./kolla/tools
./init-runonce
Further Reading Further Reading
--------------- ---------------
......
# You can customize this to match your environment by replacing the variables:
# keystone_admin_password
# kolla_internal_address
# keystone_admin_port
export OS_PROJECT_DOMAIN_ID=default
export OS_USER_DOMAIN_ID=default
export OS_PROJECT_NAME=admin
export OS_USERNAME=admin
export OS_PASSWORD=<keystone_admin_password>
export OS_AUTH_URL=http://<kolla_internal_address>:<keystone_admin_port>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment