Fix publishing login
Login to DockerHub was failing because of trailing newlines in the encrypted credentials. This patch makes the playbook trim them before usage. Change-Id: I411f91af927ffa4d04c8021ddb5c3d584d90bdfd
This commit is contained in:
@@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
- name: Login to Dockerhub
|
- name: Login to Dockerhub
|
||||||
docker_login:
|
docker_login:
|
||||||
username: "{{ kolla_dockerhub_creds.user }}"
|
username: "{{ kolla_dockerhub_creds.user | trim }}"
|
||||||
password: "{{ kolla_dockerhub_creds.password }}"
|
password: "{{ kolla_dockerhub_creds.password | trim }}"
|
||||||
|
|
||||||
- name: Push built container images
|
- name: Push built container images
|
||||||
docker_image:
|
docker_image:
|
||||||
|
Reference in New Issue
Block a user