From f565befdb0b656e35296818ff3ccf045c54fedb0 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Wed, 16 Jun 2021 12:41:40 -0400 Subject: [PATCH] Update build-and-push.yml to use community.docker --- ansible/build-and-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/build-and-push.yml b/ansible/build-and-push.yml index 4cdcb1d7..aae813d8 100644 --- a/ansible/build-and-push.yml +++ b/ansible/build-and-push.yml @@ -3,15 +3,15 @@ hosts: localhost collections: - - community.general + - community.docker tasks: - name: Build and (optionally) push operator image docker_image: name: "{{ operator_image }}:{{ operator_version }}" - pull: no - push: "{{ push_image | bool }}" + source: "build" + push: "{{ push_image }}" build: dockerfile: "build/Dockerfile" path: "../" - force: yes + force_source: "yes"