From c29bad5daa6ec4242b14e2873ddee34048b4240a Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 2 Jan 2024 16:33:04 +0930 Subject: [PATCH 1/3] feat(image): add ansible module ansible.utils required for xmltodict function. used within keycloak playbook to fetch saml public cert !179 --- dockerfile | 1 + requirements.txt | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 2b2312e..5becc23 100644 --- a/dockerfile +++ b/dockerfile @@ -86,6 +86,7 @@ RUN ansible-galaxy collection install \ awx.awx==23.5.0 \ # ansible.posix.authorized_key for SSH ansible.posix==1.5.4 \ + ansible.utils=3.0.0 \ community.dns==2.6.4 \ # docker managment community.docker==3.4.11 \ diff --git a/requirements.txt b/requirements.txt index 38f9b22..041d0e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,6 @@ psycopg2==2.9.9 # community.mysql PyMySQL==1.1.0 -dnspython \ No newline at end of file +dnspython + +xmltodict==0.13.0 \ No newline at end of file From 28fc8b3c658a973e1294e9fb7eb9c53e1e52eaf6 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 2 Jan 2024 16:33:34 +0930 Subject: [PATCH 2/3] feat(image): add awxkit used for awx export module !179 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 041d0e7..cc27f24 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ ansible-core==2.16.1 ansible-lint==6.15.0 ansible-runner==2.3.4 - +awxkit==23.5.1 # Required for community.general.gitlab_* python_gitlab==3.14.0 # community.postgresql From 2ec5e2306707d4c5c1d0dcc1062afa1ee0f00857 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 2 Jan 2024 16:40:21 +0930 Subject: [PATCH 3/3] fix(collections): fix utils version decalaration !179 --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 5becc23..56ab4f6 100644 --- a/dockerfile +++ b/dockerfile @@ -86,7 +86,7 @@ RUN ansible-galaxy collection install \ awx.awx==23.5.0 \ # ansible.posix.authorized_key for SSH ansible.posix==1.5.4 \ - ansible.utils=3.0.0 \ + ansible.utils==3.0.0 \ community.dns==2.6.4 \ # docker managment community.docker==3.4.11 \