Skip to content

Commit

Permalink
Update to Oracle 19.25.0.0.0 (#102)
Browse files Browse the repository at this point in the history
* Update to WebLogic 14.1.1.0.240922

Update to WebLogic 14.1.1.0.240922
Use Java 1.8.0_431
Update OPatch to 13.9.4.2.17
Update molecule tests
Update galaxy.yml

* Update to Oracle 19.25.0.0.0

New Oracle 19.25.0.0.0 yaml file
Update 19c molecule tests
Update README
Update Galaxy.yml

---------

Co-authored-by: Martin Fanning <[email protected]>
  • Loading branch information
martinfanning1 and Martin Fanning authored Oct 21, 2024
1 parent 9556e81 commit 8aa66ef
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.7.3
version: 1.7.4

# 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.24.0.0.0
oracle_version: 19.25.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.24.0.0.0
oracle_version: 19.25.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.24.0.0.0` |
| `oracle_version` | `19.25.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.24.0.0.0
oracle_version: 19.25.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.24.0.0.0
oracle_version: 19.25.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.25.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: p36912597_190000_Linux-x86-64.zip
patch_number: 36912597 # 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.44

0 comments on commit 8aa66ef

Please sign in to comment.