Modify default of kolla_docker_registry

Now uses the value of 'docker_registry', the default of which is
unset.

Change-Id: I564defbc661b6c100e9773826c03e3bc960adea7
Story: 2004873
Task: 29135
This commit is contained in:
Mark Goddard 2019-01-28 09:58:14 +00:00
parent 9db9c413d4
commit bd2b225005
2 changed files with 8 additions and 1 deletions

View File

@ -62,7 +62,7 @@ kolla_install_type: "binary"
kolla_docker_namespace: "kolla"
# Url of docker registry to use for Kolla images.
kolla_docker_registry:
kolla_docker_registry: "{{ docker_registry }}"
# Username to use to access a docker registry.
kolla_docker_registry_username:

View File

@ -0,0 +1,7 @@
---
upgrade:
- |
Modifies the default value of ``kolla_docker_registry`` variable to the
value of the ``docker_registry`` variable. The default value of
``docker_registry`` is unset. This avoids needing to set the same value in
two places when a private Docker registry is in use.