Skip to content

Commit 9d311b5

Browse files
martinfanning1Martin Fanning
and
Martin Fanning
authored
DB2 12.1.1 Fixpack Updates (#120)
* DB2 12.1.1 Fixpack Updates DB2 12.1.1 Fixpack Updates YAML file New db21211 role Updated ReadME * Update GitHub Workflow with db2 12.1.1. test Update GitHub Workflow with db2 12.1.1. test * Update galaxy.yml --------- Co-authored-by: Martin Fanning <[email protected]>
1 parent 714c31c commit 9d311b5

File tree

7 files changed

+78
-4
lines changed

7 files changed

+78
-4
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
scenario:
3333
- websphere-v90-rockylinux8
34-
- db21210
34+
- db21211
3535
- db21159
3636
- oracle19c-rockylinux8
3737
- iim-191-rockylinux8

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: spm_middleware
1111

1212
# The version of the collection. Must be compatible with semantic versioning
1313
# Please note. version also exists in /github/workflows/release.yml and will need to be update also
14-
version: 1.8.5
14+
version: 1.8.6
1515

1616
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1717
readme: README.md

molecule/db21211/converge.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
- name: Converge
3+
hosts: all
4+
5+
collections:
6+
- merative.spm_middleware
7+
8+
roles:
9+
- db2
10+
11+
vars:
12+
db2_version: "12.1.1.0"
13+
download_url: "{{ lookup('env', 'ARTIFACTORY_URL') }}/{{ lookup('env', 'ARTIFACTORY_REPO') }}/SoftwareInstallers"
14+
download_header: { 'X-JFrog-Art-Api': "{{ lookup('env', 'ARTIFACTORY_TOKEN') }}"}

molecule/db21211/molecule.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
driver:
3+
name: docker
4+
provider:
5+
name: docker
6+
7+
lint: |
8+
set -e
9+
yamllint .
10+
11+
platforms:
12+
- name: rockylinux9
13+
image: rockylinux:9
14+
dockerfile: ../_resources/Dockerfile.j2
15+
pre_build_image: false
16+
privileged: true
17+
volume_mounts:
18+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
19+
command: "/usr/sbin/init"
20+
environment:
21+
container: docker
22+
23+
provisioner:
24+
name: ansible
25+
log: true
26+
config_options:
27+
defaults:
28+
stderr_callback: debug
29+
stdout_callback: debug
30+
env:
31+
ANSIBLE_FORCE_COLOR: 'true'
32+
playbooks:
33+
converge: ./converge.yml
34+
verify: ./verify.yml

molecule/db21211/verify.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
- name: Verify
3+
hosts: all
4+
pre_tasks:
5+
- stat: "path=/opt/Props/Bootstrap.properties"
6+
register: boot_props
7+
- command: "db2level"
8+
become: true
9+
become_user: "db2admin"
10+
become_method: sudo
11+
become_flags: "-i"
12+
register: db2level_cmd
13+
14+
tasks:
15+
- name: Check that Bootstrap.properties exists
16+
assert:
17+
that: boot_props.stat.exists
18+
- name: Check that the db2level command is working
19+
assert:
20+
that:
21+
- db2level_cmd.rc == 0
22+
- "'v12.1.1' in db2level_cmd.stdout"

roles/db2/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Ensure you update / override password variables prior to using the role.
1313
| Property Name | Default value |
1414
| ------------------------- | --------------------------------------------------- |
1515
| `db2_install_path` | `/opt/IBM/db2` |
16-
| `db2_version` | `11.5.9.0` |
16+
| `db2_version` | `12.1.1.0` |
1717
| `db2_product` | `DB2_SERVER_EDITION` |
1818
| `db2_bypass_prereq_check` | `False` |
1919
| ------------------------- | --------------------------------------------------- |
@@ -43,7 +43,7 @@ None
4343
- hosts: servers
4444
roles:
4545
- role: merative.spm_middleware.db2
46-
db2_version: 11.5.9.0
46+
db2_version: 12.1.1.0
4747
```
4848

4949
## License

roles/db2/vars/v12.1.1.0.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
# paths can be relative to download_url or local
3+
db2_installer_path: DB2/12.1/v12.1.1_linuxx64_universal_fixpack.tar.gz
4+
db2_license_path: DB2/12.1/db2ese_u.lic

0 commit comments

Comments
 (0)