Skip to content

Commit

Permalink
Update to Oracle 19.24.0.0.0
Browse files Browse the repository at this point in the history
New Oracle 19.24.0.0.0 yaml file
Update 19c molecule tests
Update README
  • Loading branch information
Martin Fanning committed Jul 22, 2024
1 parent 6de2704 commit b377047
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: spm_middleware

# The version of the collection. Must be compatible with semantic versioning
# Please note. version also exists in /github/workflows/release.yml and will need to be update also
version: 1.6.7
version: 1.6.8

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion molecule/__oracle-v19c/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- merative.spm_middleware

vars:
oracle_version: 19.23.0.0.0
oracle_version: 19.24.0.0.0
download_url: "{{ lookup('env', 'ARTIFACTORY_URL') }}/{{ lookup('env', 'ARTIFACTORY_REPO') }}/SoftwareInstallers"
download_header: { 'X-JFrog-Art-Api': "{{ lookup('env', 'ARTIFACTORY_TOKEN') }}"}

Expand Down
2 changes: 1 addition & 1 deletion molecule/__oracle-v19c/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
vars:
oracle_home: /opt/oracle/product/19c/dbhome_1
oracle_sid: orcl
oracle_version: 19.23.0.0.0
oracle_version: 19.24.0.0.0

pre_tasks:
- name: Check if DB exists
Expand Down
4 changes: 2 additions & 2 deletions roles/oracle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The `oracle` role will install Oracle Database EE Single Instance.

| Property Name | Default value |
| ------------------------- | --------------------------------------------------- |
| `oracle_version` | `19.23.0.0.0` |
| `oracle_version` | `19.24.0.0.0` |
| `oracle_base` | `/opt/oracle` |
| `oracle_home` | `/opt/oracle/product/<oracle_family>/dbhome_1` |
| `oracle_inventory` | `/opt/Oracle/oraInventory` |
Expand Down Expand Up @@ -42,7 +42,7 @@ None
- hosts: servers
roles:
- role: merative.spm_middleware.oracle
oracle_version: 19.23.0.0.0
oracle_version: 19.24.0.0.0
## License
Expand Down
2 changes: 1 addition & 1 deletion roles/oracle/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ travis_build: "{{ lookup('env', 'CI') }}"
travis_flags: "{{'-force -ignoresysprereqs -ignoreprereq' if lookup('env', 'CI') is defined else ''}}"

# Oracle config
oracle_version: 19.23.0.0.0
oracle_version: 19.24.0.0.0
oracle_family: "{{ oracle_version.split('.') | first }}c"
oracle_base: /opt/oracle
oracle_home: "/opt/oracle/product/{{ oracle_family }}/dbhome_1"
Expand Down
14 changes: 14 additions & 0 deletions roles/oracle/vars/v19.24.0.0.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
# prereq installers
prereqs_installer_7: https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm
prereqs_installer_8: https://yum.oracle.com/repo/OracleLinux/OL8/appstream/x86_64/getPackage/oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm
prereqs_installer: "{{ prereqs_installer_7 if ansible_distribution_major_version=='7' else prereqs_installer_8 }}"
# base installer values
base_version: 19.3.0.0.0
base_installer: oracle-database-ee-19c-1.0-1.x86_64.rpm
# patch values
patch_filename: p36582781_190000_Linux-x86-64.zip
patch_number: 36582781 # used for directory
# Add OPatch values when bundled OPatch needs to be upgraded
opatch_filename: p6880880_190000_Linux-x86-64.zip
opatch_version: 12.2.0.1.43

0 comments on commit b377047

Please sign in to comment.