Skip to content

Commit d17bb58

Browse files
committed
update test config
1 parent 0a5fc3a commit d17bb58

File tree

10 files changed

+18
-8
lines changed

10 files changed

+18
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
fqcn: 'middleware_automation/keycloak'
2222
debug_verbosity: "${{ github.event.inputs.debug_verbosity }}"
2323
molecule_tests: >-
24-
[ "default", "debian", "quarkus_ha", "quarkus_ha_remote" ]
24+
[ "debian", "quarkus_ha", "quarkus_ha_remote" ]
2525
podman_tests_current: >-
26-
[ "default", "quarkus", "quarkus-devmode", "quarkus_upgrade" ]
26+
[ "default", "quarkus", "quarkus_devmode", "quarkus_upgrade" ]
2727
podman_tests_next: >-
28-
[ "default", "quarkus", "quarkus-devmode", "quarkus_upgrade" ]
28+
[ "default", "quarkus", "quarkus_devmode", "quarkus_upgrade" ]

molecule/default/molecule.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
driver:
3-
name: docker
3+
name: podman
44
platforms:
55
- name: instance
66
image: registry.access.redhat.com/ubi9/ubi-init:latest
@@ -29,6 +29,8 @@ provisioner:
2929
ansible_python_interpreter: "{{ ansible_playbook_python }}"
3030
env:
3131
ANSIBLE_FORCE_COLOR: "true"
32+
PROXY: "${PROXY}"
33+
NO_PROXY: "${NO_PROXY}"
3234
verifier:
3335
name: ansible
3436
scenario:

molecule/quarkus/molecule.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
driver:
3-
name: docker
3+
name: podman
44
platforms:
55
- name: instance
66
image: registry.access.redhat.com/ubi9/ubi-init:latest
@@ -32,6 +32,8 @@ provisioner:
3232
env:
3333
ANSIBLE_FORCE_COLOR: "true"
3434
PYTHONHTTPSVERIFY: 0
35+
PROXY: "${PROXY}"
36+
NO_PROXY: "${NO_PROXY}"
3537
verifier:
3638
name: ansible
3739
scenario:

molecule/quarkus/prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- name: Make sure a jre is available (for keytool to prepare keystore)
2525
delegate_to: localhost
2626
ansible.builtin.package:
27-
name: "{{ 'java-21-openjdk-headless' if hera_home | length > 0 else 'openjdk-21-jdk-headless' }}"
27+
name: java-21-openjdk-headless
2828
state: present
2929
become: true
3030
failed_when: false

molecule/quarkus-devmode/molecule.yml renamed to molecule/quarkus_devmode/molecule.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
driver:
3-
name: docker
3+
name: podman
44
platforms:
55
- name: instance
66
image: registry.access.redhat.com/ubi9/ubi-init:latest
@@ -31,6 +31,8 @@ provisioner:
3131
ansible_python_interpreter: "{{ ansible_playbook_python }}"
3232
env:
3333
ANSIBLE_FORCE_COLOR: "true"
34+
PROXY: "${PROXY}"
35+
NO_PROXY: "${NO_PROXY}"
3436
verifier:
3537
name: ansible
3638
scenario:
File renamed without changes.

molecule/quarkus_upgrade/molecule.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependency:
44
options:
55
requirements-file: molecule/requirements.yml
66
driver:
7-
name: docker
7+
name: podman
88
platforms:
99
- name: instance
1010
image: registry.access.redhat.com/ubi9/ubi-init:latest
@@ -27,6 +27,10 @@ provisioner:
2727
host_vars:
2828
localhost:
2929
ansible_python_interpreter: "{{ ansible_playbook_python }}"
30+
env:
31+
ANSIBLE_FORCE_COLOR: "true"
32+
PROXY: "${PROXY}"
33+
NO_PROXY: "${NO_PROXY}"
3034
verifier:
3135
name: ansible
3236
scenario:

0 commit comments

Comments
 (0)