Skip to content

Commit

Permalink
Releasing version constraint to allow versions >= 2.15.0
Browse files Browse the repository at this point in the history
Previously deprecated callback_whitelist configuration option
was replaced with callback callbacks_enabled in 2.15.0.

Upstream ee image was moved to tag 0.21.0

Signed-off-by: Jiri Podivin <[email protected]>
  • Loading branch information
jpodivin committed Aug 26, 2024
1 parent 1d392c5 commit f1eb197
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/docs-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# this is required for the docs build jobs
ansible-core==2.14.6
ansible-core>=2.15.0
sphinx>=2.0.0,!=2.1.0 # BSD
reno>=3.1.0 # Apache-2.0
doc8>=0.8.1 # Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---

requires_ansible: ">=2.14.0,<2.15.0"
requires_ansible: ">=2.15.0"
2 changes: 1 addition & 1 deletion molecule-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ansible-core==2.14.6
ansible-core>=2.15.0
molecule>=5.1.0,<6.0.0
molecule-plugins[podman,vagrant]>=23.5.0
pytest-testinfra
Expand Down
4 changes: 2 additions & 2 deletions openstack_ansibleee/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/ansible/creator-ee:v0.14.1 as builder
FROM quay.io/ansible/creator-ee:v0.21.0 as builder

ARG REMOTE_SOURCE=.
ARG REMOTE_SOURCE_DIR=/var/tmp/edpm-ansible
Expand All @@ -8,7 +8,7 @@ RUN cd $REMOTE_SOURCE_DIR && \
ansible-galaxy collection install -U --timeout 120 -r requirements.yml --collections-path "/usr/share/ansible/collections" && \
ansible-galaxy collection install -U $REMOTE_SOURCE_DIR --collections-path "/usr/share/ansible/collections"

FROM quay.io/ansible/creator-ee:v0.14.1 as runner
FROM quay.io/ansible/creator-ee:v0.21.0 as runner

RUN \
microdnf install -y \
Expand Down
2 changes: 1 addition & 1 deletion roles/edpm_bootstrap/molecule/molecule_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provisioner:
log: true
config_options:
interpreter_python: auto_silent
callback_whitelist: profile_tasks, timer, yaml
callbacks_enabled: profile_tasks, timer, yaml
env:
ANSIBLE_STDOUT_CALLBACK: yaml

Expand Down

0 comments on commit f1eb197

Please sign in to comment.