Skip to content

Bump molecule from 4.0.4 to 5.0.1 in /.github/workflows/requirements #610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/requirements/requirements_molecule.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ jinja2==3.1.2
ansible-compat==3.0.2
ansible-lint==6.16.0
yamllint==1.31.0
molecule==4.0.4
molecule==5.0.1
molecule-plugins[docker]==23.0.0
docker==6.1.1
15 changes: 11 additions & 4 deletions molecule/distribution/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: alpine-3.16
image: alpine:3.16
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -44,6 +45,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: alpine-3.17
image: alpine:3.17
platform: aarch64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -52,7 +54,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: amazonlinux-2
image: amazonlinux:2
platform: amd64
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -61,7 +63,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /usr/sbin/init
- name: centos-7
image: centos:7
platform: amd64
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -78,7 +80,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: oraclelinux-7
image: oraclelinux:7
platform: amd64
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -103,6 +105,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /usr/sbin/init
- name: rhel-8
image: redhat/ubi8:8.7
platform: s390x
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -111,6 +114,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /usr/sbin/init
- name: rhel-9
image: redhat/ubi9:9.1.0
platform: aarch64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -135,7 +139,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /usr/sbin/init
- name: sles15
image: registry.suse.com/bci/bci-base:15.4
platform: amd64
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -144,6 +148,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /usr/sbin/init
- name: ubuntu-bionic
image: ubuntu:bionic
platform: x86_64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -152,6 +157,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: ubuntu-focal
image: ubuntu:focal
platform: s390x
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand All @@ -160,6 +166,7 @@ platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when
command: /sbin/init
- name: ubuntu-jammy
image: ubuntu:jammy
platform: aarch64
dockerfile: ../common/Dockerfile.j2
privileged: true
cgroupns_mode: host
Expand Down