Skip to content

Commit

Permalink
update molecule configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
rpelisse committed Apr 2, 2024
1 parent 9f932a2 commit d1facc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
5 changes: 0 additions & 5 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
---
dependency:
name: galaxy
options:
requirements-file: molecule/default/requirements.yml
driver:
name: docker
platforms:
Expand Down Expand Up @@ -30,7 +26,6 @@ verifier:
name: ansible
scenario:
test_sequence:
- dependency
- cleanup
- destroy
- syntax
Expand Down
11 changes: 7 additions & 4 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,17 @@
loop: "{{ range(0,3) | list }}"

- name: "Ensures webapp {{ app.name }} has been retrieved from {{ app.url }}"
get_url:
become: true
ansible.builtin.get_url:
url: "{{ app.url }}"
dest: "{{ wildfly_install_workdir }}/{{ app.name }}"

- set_fact:
- name: "Determin info app absolute path."
ansible.builtin.set_fact:
info_app_dest: "{{ wildfly_install_workdir }}/{{ app.name }}"

- name: "Fine tuning configuration: {{ install_name }}"
include_role:
ansible.builtin.include_role:
name: wildfly_utils
tasks_from: jboss_cli.yml
vars:
Expand All @@ -56,5 +58,6 @@
- 10190

post_tasks:
- include_tasks: validate.yml
- name: "Verify that deployments are functional."
ansible.builtin.include_tasks: validate.yml
loop: "{{ instance_http_ports }}"

0 comments on commit d1facc0

Please sign in to comment.