Skip to content
Open
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
7 changes: 4 additions & 3 deletions ansible.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[defaults]
host_key_checking = False
# Use the YAML callback plugin.
stdout_callback = yaml
# Use the default callback with YAML-formatted task results.
stdout_callback = ansible.builtin.default
callback_result_format = yaml
# Use the stdout_callback when running ad-hoc commands.
bin_ansible_callbacks = True
callback_whitelist = profile_tasks
callbacks_enabled = profile_tasks
interpreter_python = auto

[ssh_connection]
Expand Down
12 changes: 6 additions & 6 deletions infra/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM ubuntu:24.04@sha256:c4a8d5503dfb2a3eb8ab5f807da5bc69a85730fb49b5cfca2330194ebcc41c7b
FROM ubuntu:26.04@sha256:5e275723f82c67e387ba9e3c24baa0abdcb268917f276a0561c97bef9450d0b4

ENV HOME="/home/ubuntu"

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
git=1:2.43.0-1ubuntu7.3 \
ansible=9.2.0+dfsg-0ubuntu5 \
jq=1.7.1-3ubuntu0.24.04.1 \
curl=8.5.0-2ubuntu10.8 \
unzip=6.0-28ubuntu4.1
git=1:2.53.0-1ubuntu1 \
ansible=13.1.0+dfsg-1ubuntu1 \
jq=1.8.1-4ubuntu2 \
curl=8.18.0-1ubuntu2 \
unzip=6.0-29ubuntu1

ARG TERRAFORM_VERSION=1.14.9
RUN curl https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -o /tmp/terraform.zip && \
Expand Down