Allow Kolla's docker namespace to be configured
This commit is contained in:
parent
b235bcf65a
commit
91dac755c8
@ -34,6 +34,9 @@ kolla_base_distro: "centos"
|
||||
# Kolla installation type: binary or source.
|
||||
kolla_install_type: "binary"
|
||||
|
||||
# Docker namespace to use for Kolla images.
|
||||
kolla_docker_namespace: "kolla"
|
||||
|
||||
# Kolla OpenStack release version. This should be a Docker image tag.
|
||||
kolla_openstack_release: "3.0.2"
|
||||
|
||||
|
@ -27,6 +27,9 @@ kolla_base_distro:
|
||||
# Valid options are [ binary, source ]
|
||||
kolla_install_type:
|
||||
|
||||
# Docker namespace to use for Kolla images.
|
||||
kolla_docker_namespace:
|
||||
|
||||
# Valid option is Docker repository tag
|
||||
kolla_openstack_release:
|
||||
|
||||
|
@ -52,7 +52,7 @@ node_custom_config: "{{ kolla_node_custom_config_path }}"
|
||||
### Example: Private repository with authentication
|
||||
|
||||
#docker_registry: "172.16.0.10:4000"
|
||||
#docker_namespace: "companyname"
|
||||
docker_namespace: "{{ kolla_docker_namespace }}"
|
||||
#docker_registry_username: "sam"
|
||||
#docker_registry_password: "correcthorsebatterystaple"
|
||||
|
||||
|
@ -8,5 +8,8 @@ kolla_base_distro:
|
||||
# Valid options are [ binary, source ]
|
||||
kolla_install_type:
|
||||
|
||||
# Docker namespace to use for Kolla images.
|
||||
kolla_docker_namespace:
|
||||
|
||||
# Valid option is Docker repository tag
|
||||
kolla_openstack_release:
|
||||
|
@ -8,6 +8,9 @@ base={{ kolla_base_distro }}
|
||||
# Method of OpenStack install. Valid options are [ binary, source ]
|
||||
type={{ kolla_install_type }}
|
||||
|
||||
# Docker namespace to use for Kolla images.
|
||||
namespace={{ kolla_docker_namespace }}
|
||||
|
||||
# Docker image tag to apply.
|
||||
tag={{ kolla_openstack_release }}
|
||||
|
||||
|
@ -33,6 +33,9 @@
|
||||
# Kolla installation type: binary or source.
|
||||
#kolla_install_type:
|
||||
|
||||
# Docker namespace to use for Kolla images.
|
||||
#kolla_docker_namespace:
|
||||
|
||||
# Kolla OpenStack release version. This should be a Docker image tag.
|
||||
#kolla_openstack_release:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user