Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
guidograzioli committed Feb 27, 2024
1 parent 7f021a8 commit d97ddbd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions molecule/quarkus-devmode/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
keycloak_quarkus_frontend_url: 'http://localhost:8080/'
keycloak_quarkus_start_dev: True
keycloak_quarkus_proxy_mode: none
keycloak_quarkus_java_home: /opt/openjdk/
roles:
- role: keycloak_quarkus
- role: keycloak_realm
Expand Down
11 changes: 10 additions & 1 deletion molecule/quarkus-devmode/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@
tasks:
- name: Install sudo
ansible.builtin.yum:
name: sudo
name:
- sudo
- java-17-openjdk-headless
state: present

- name: Link default logs directory
ansible.builtin.file:
state: link
src: /usr/lib/jvm/jre-17-openjdk
dest: /opt/openjdk
force: true

- name: "Display hera_home if defined."
ansible.builtin.set_fact:
hera_home: "{{ lookup('env', 'HERA_HOME') }}"
8 changes: 8 additions & 0 deletions molecule/quarkus-devmode/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
- ansible_facts.services["keycloak.service"]["state"] == "running"
- ansible_facts.services["keycloak.service"]["status"] == "enabled"

- name: Verify we are running on requested JAVA_HOME # noqa blocked_modules command-instead-of-module
ansible.builtin.shell: |
set -o pipefail
ps -ef | grep '/opt/openjdk' | grep -v grep
args:
executable: /bin/bash
changed_when: False

- name: Set internal envvar
ansible.builtin.set_fact:
hera_home: "{{ lookup('env', 'HERA_HOME') }}"
Expand Down

0 comments on commit d97ddbd

Please sign in to comment.