Skip to content
Snippets Groups Projects
Commit f1212d0f authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Support setting docker registry credentials to the empty string"

parents 480ba15e d0263e65
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,9 @@
password: "{{ kolla_docker_registry_password }}"
reauthorize: yes
when:
- kolla_docker_registry_username is not none
- kolla_docker_registry_password is not none
# NOTE(wszumski): Switch to truthy filter when min ansible>=2.10.5
- kolla_docker_registry_username not in [none, ""]
- kolla_docker_registry_password not in [none, ""]
- name: Ensure Kolla container images are built
shell:
......
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