Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Oracle 19.25.0.0.0 #102

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading