From ab20b5bd1087957a6bbc37f9b36b41ed306d6d81 Mon Sep 17 00:00:00 2001 From: Philip DOUGLASS Date: Tue, 21 Jul 2020 15:33:42 -0400 Subject: [PATCH] Installer: remove quote filter from docker_registry_password The docker_registry_password var isn't interpolated by the shell, so it shouldn't be quoted Fixes: #7695 Signed-off-by: Philip DOUGLASS --- installer/roles/image_push/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/roles/image_push/tasks/main.yml b/installer/roles/image_push/tasks/main.yml index 61db5ce803..e005af1096 100644 --- a/installer/roles/image_push/tasks/main.yml +++ b/installer/roles/image_push/tasks/main.yml @@ -3,7 +3,7 @@ docker_login: registry: "{{ docker_registry }}" username: "{{ docker_registry_username }}" - password: "{{ docker_registry_password | quote }}" + password: "{{ docker_registry_password }}" reauthorize: true when: docker_registry is defined and docker_registry_password is defined delegate_to: localhost