mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-08-14 01:54:30 -07:00
This is useful if the default route does not represent the network you want/need to use for cluster communication.
17 lines
506 B
YAML
17 lines
506 B
YAML
---
|
|
- name: Prepare
|
|
hosts: all
|
|
gather_facts: yes
|
|
tasks:
|
|
- name: Install sudo
|
|
ansible.builtin.apt:
|
|
name:
|
|
- sudo
|
|
# - openjdk-21-jdk-headless # this is not available in ghcr.io/hspaans/molecule-containers:debian-11 (neither in debian-12) since the images are using outdated package sources
|
|
- openjdk-17-jdk-headless
|
|
state: present
|
|
- name: "Install iproute2"
|
|
ansible.builtin.apt:
|
|
name:
|
|
- iproute2
|
|
state: present
|