Install oc and kubectl in upstream task image

This commit is contained in:
Shane McDonald
2019-10-30 12:12:56 -04:00
parent 9b09344bae
commit 28994d4b0b
4 changed files with 23 additions and 4 deletions

View File

@@ -9,9 +9,6 @@
delegate_to: localhost
- name: Remove local images to ensure proper push behavior
# TODO: this code will not be necessary if and when docker_image can be configured to push if the image
# Already exists locally
# Pull request: https://github.com/ansible/ansible/pull/31863
block:
- name: Remove web image
docker_image:
@@ -25,7 +22,6 @@
tag: "{{ awx_version }}"
state: absent
delegate_to: localhost
when: docker_remove_local_images|default(False)|bool
- name: Tag and Push Container Images
block: