File tree 7 files changed +78
-4
lines changed
7 files changed +78
-4
lines changed Original file line number Diff line number Diff line change 31
31
matrix :
32
32
scenario :
33
33
- websphere-v90-rockylinux8
34
- - db21210
34
+ - db21211
35
35
- db21159
36
36
- oracle19c-rockylinux8
37
37
- iim-191-rockylinux8
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ name: spm_middleware
11
11
12
12
# The version of the collection. Must be compatible with semantic versioning
13
13
# 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
15
15
16
16
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
17
17
readme : README.md
Original file line number Diff line number Diff line change
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') }}"}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Ensure you update / override password variables prior to using the role.
13
13
| Property Name | Default value |
14
14
| ------------------------- | --------------------------------------------------- |
15
15
| ` db2_install_path ` | ` /opt/IBM/db2 ` |
16
- | ` db2_version ` | ` 11.5.9 .0` |
16
+ | ` db2_version ` | ` 12.1.1 .0` |
17
17
| ` db2_product ` | ` DB2_SERVER_EDITION ` |
18
18
| ` db2_bypass_prereq_check ` | ` False ` |
19
19
| ------------------------- | --------------------------------------------------- |
43
43
- hosts: servers
44
44
roles:
45
45
- role: merative.spm_middleware.db2
46
- db2_version: 11.5.9 .0
46
+ db2_version: 12.1.1 .0
47
47
```
48
48
49
49
## License
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments