Fix molecule test by pinning community.docker for requests issue (#1396)

This commit is contained in:
Christian Adams
2023-05-04 18:30:47 -04:00
committed by GitHub
parent 1023718b87
commit e829dafbd2
2 changed files with 14 additions and 1 deletions

View File

@@ -5,8 +5,20 @@
gather_facts: no gather_facts: no
tasks: tasks:
# Remove after this if fixed: https://github.com/ansible-collections/community.docker/issues/611
- name: Install docker
become: yes
pip:
name:
- websocket-client==0.59.0
- requests==2.28.2
- urllib3==1.26.15
- docker
- docker-compose
state: present
- name: Build operator image - name: Build operator image
docker_image: community.docker.docker_image:
build: build:
path: '{{ project_dir }}' path: '{{ project_dir }}'
pull: no pull: no

View File

@@ -5,4 +5,5 @@ collections:
version: 2.3.2 version: 2.3.2
- name: operator_sdk.util - name: operator_sdk.util
- name: community.docker - name: community.docker
version: 3.4.4
- name: awx.awx - name: awx.awx