summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fontein <felix@fontein.de>2025-01-13 20:24:56 +0100
committerGitHub <noreply@github.com>2025-01-13 20:24:56 +0100
commit60e2135c2b942aad45afeed7a0fbeba2783edbaa (patch)
treefd552a9d30e317b5d304ae4ba0ff3033946d8d78
parenthost_group_vars - fix Python API traceback caused by undefined 'key' variable... (diff)
downloadansible-60e2135c2b942aad45afeed7a0fbeba2783edbaa.tar.xz
ansible-60e2135c2b942aad45afeed7a0fbeba2783edbaa.zip
Bump acme test container to 2.3.0 (#84547)
-rw-r--r--changelogs/fragments/84547-acme-test-container.yml4
-rw-r--r--test/lib/ansible_test/_internal/commands/integration/cloud/acme.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/changelogs/fragments/84547-acme-test-container.yml b/changelogs/fragments/84547-acme-test-container.yml
new file mode 100644
index 0000000000..26335d51fb
--- /dev/null
+++ b/changelogs/fragments/84547-acme-test-container.yml
@@ -0,0 +1,4 @@
+minor_changes:
+ - "ansible-test acme test container - bump `version to 2.3.0 <https://github.com/ansible/acme-test-container/releases/tag/2.3.0>`__
+ to include newer versions of Pebble, dependencies, and runtimes. This adds support for ACME profiles, ``dns-account-01`` support,
+ and some smaller improvements (https://github.com/ansible/ansible/pull/84547)."
diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/acme.py b/test/lib/ansible_test/_internal/commands/integration/cloud/acme.py
index 136c533196..e4dac3adb5 100644
--- a/test/lib/ansible_test/_internal/commands/integration/cloud/acme.py
+++ b/test/lib/ansible_test/_internal/commands/integration/cloud/acme.py
@@ -28,7 +28,7 @@ class ACMEProvider(CloudProvider):
if os.environ.get('ANSIBLE_ACME_CONTAINER'):
self.image = os.environ.get('ANSIBLE_ACME_CONTAINER')
else:
- self.image = 'quay.io/ansible/acme-test-container:2.1.0'
+ self.image = 'quay.io/ansible/acme-test-container:2.3.0'
self.uses_docker = True