Merge "Add manila service to openrc file"

This commit is contained in:
Zuul 2019-03-24 22:01:40 +00:00 committed by Gerrit Code Review
commit fddcb7ea33
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,7 @@
## Endpoint types
openrc_cinder_endpoint_type: internalURL
openrc_nova_endpoint_type: internalURL
openrc_manila_endpoint_type: internalURL
openrc_os_endpoint_type: internalURL
openrc_clouds_yml_interface: internal

View File

@ -7,6 +7,9 @@ export CINDER_ENDPOINT_TYPE={{ openrc_cinder_endpoint_type }}
# COMMON NOVA ENVS
export NOVA_ENDPOINT_TYPE={{ openrc_nova_endpoint_type }}
# COMMON MANILA ENVS
export OS_MANILA_ENDPOINT_TYPE={{ openrc_manila_endpoint_type }}
# COMMON OPENSTACK ENVS
export OS_ENDPOINT_TYPE={{ openrc_os_endpoint_type }}
export OS_INTERFACE={{ openrc_os_endpoint_type }}
@ -43,4 +46,5 @@ alias nova='nova --insecure'
alias openstack='openstack --insecure'
alias swift='swift --insecure'
alias tacker='tacker --insecure'
alias manila='manila --insecure'
{% endif %}