Skip to content
Merged
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
4 changes: 4 additions & 0 deletions resources/roles/preparation/tasks/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
- name: Update apk-tools package
command: apk --allow-untrusted upgrade apk-tools

- name: Update libapk2 package for Alpine 3.22 envs
command: apk --allow-untrusted upgrade libapk2
when: (ansible_facts.distribution_version | string).startswith('3.22')

- name: Install required packages on Alpine
command: apk --allow-untrusted add ansible bats python3 py3-pip ca-certificates procps file iproute2

Expand Down
Loading