diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 987917d..3e8d8c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,7 @@ jobs: - cronut - duply - events-relay + - ansible - helm - kubectl - netdebug diff --git a/ansible/Dockerfile b/ansible/Dockerfile new file mode 100644 index 0000000..1481b9d --- /dev/null +++ b/ansible/Dockerfile @@ -0,0 +1,7 @@ +FROM debian:bookworm + +RUN apt-get update && apt-get install -y ansible git openssh-client + +RUN ansible-playbook --version + +ENTRYPOINT ["ansible-playbook"]