-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
molecule: new stage golden to create golden images
- Loading branch information
Showing
6 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
minor_changes: | ||
- "molecule: new stage download to prepare dbfs stage (oravirt#381)" | ||
- "molecule: new stage golden to create golden images (oravirt#381)" | ||
|
||
bugfixes: | ||
- "molecule: Use shared inventory with download scenario (oravirt#381)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
collections: | ||
# Use current directory as collection source | ||
- source: ./.. | ||
type: dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
# - name: Converge os | ||
# ansible.builtin.import_playbook: opitzconsulting.ansible_oracle.os | ||
|
||
# - name: Converge swdb | ||
# ansible.builtin.import_playbook: opitzconsulting.ansible_oracle.swdb | ||
# vars: | ||
# # install it directly from remote in this test | ||
# # => Do not copy the installation media into container | ||
# oracle_sw_copy: false | ||
# is_sw_source_local: true | ||
# oracle_stage_remote: /vagrant | ||
|
||
# - name: Side-Effect - DB-Patching 19.20 | ||
# ansible.builtin.import_playbook: opitzconsulting.ansible_oracle.opatch | ||
|
||
- name: Converge oraswdb_golden_image | ||
ansible.builtin.import_playbook: opitzconsulting.ansible_oracle.golden_images |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
enabled: true | ||
|
||
driver: | ||
name: docker | ||
platforms: | ||
- name: ol | ||
image: "quay.io/rendanic/docker-${MOLECULE_DISTRO:-ol8}-ansible:latest" | ||
pre_build_image: true | ||
# The following 4 lines are needed only for making systemd work | ||
command: ${MOLECULE_DOCKER_COMMAND:-""} | ||
volumes: | ||
- /sys/fs/cgroup:/sys/fs/cgroup:rw | ||
- /vagrant:/vagrant:ro | ||
cgroupns_mode: host | ||
privileged: true | ||
|
||
verifier: | ||
name: ansible | ||
|
||
provisioner: | ||
name: ansible | ||
inventory: | ||
links: | ||
group_vars: ../shared_config/inventory/group_vars/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
# This is an example playbook to execute Ansible tests. | ||
|
||
- name: Verify | ||
hosts: all | ||
gather_facts: false | ||
tasks: | ||
- name: Example assertion | ||
ansible.builtin.assert: | ||
that: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters