Skip to content

Commit 18df234

Browse files
authored
Merge pull request #442 from sap-linuxlab/dev
collection: merge dev to main for release 1.3.1
2 parents 1eb9696 + 7b9d8a7 commit 18df234

File tree

41 files changed

+571
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+571
-217
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ community.sap_install Release Notes
55
.. contents:: Topics
66

77

8+
v1.3.1
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
| Release Date: 2023-08-14
15+
| sap_ha_pacemaker_cluster: Improved AWS constructs based on feedback
16+
| sap_ha_pacemaker_cluster: Improved no STONITH resource definition handling
17+
| sap_hana_install: Bug fix for arg spec on deprecated vars
18+
| sap_hostagent: Bug fix for media handling
19+
| sap_install_media_detect: Improved handling based on feedback
20+
| sap_storage_setup: Bug fix for existing storage devices
21+
| sap_swpm: Make full log output optional and replace with sapcontrol log final status
22+
| collection: Bug fix for sample Ansible Playbooks
823
924
v1.3.0
1025
======

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,25 +95,29 @@ There are various methods to execute the Ansible Collection, dependant on the us
9595
| ---- | ---- | ---- |
9696
| Ansible Playbook <br/>-> source Ansible Collection <br/>-> execute Ansible Task <br/>--> run Ansible Role <br/>---> run Ansible Module for Shell (built-in)<br/>---> ... | Complex executions with various interlinked activities;<br/> run in parallel or sequentially | Localhost or Remote |
9797

98-
## Requirements, Dependencies and Testing
98+
## Testing, Requirements and Dependencies
9999

100-
## Testing with SAP Software Provisioning Manager (SWPM)
100+
### Testing
101101

102102
Various SAP Software solutions have been extensively tested:
103103

104104
- SAP HANA
105-
- SAP NetWeaver AS (ABAP or JAVA)
106-
- SAP S/4HANA AnyPremise 1809, 1909, 2020, 2021
107-
- One Host installation
108-
- Dual Host installation
105+
- Scale-Up
106+
- Scale-Out
107+
- High Availability
108+
- SAP NetWeaver AS (ABAP or JAVA) and additional addons (e.g. GRC, ADS)
109+
- SAP S/4HANA AnyPremise (1809, 1909, 2020, 2021, 2022)
110+
- Sandbox (One Host) installation
111+
- Standard (Dual Host) installation
109112
- Distributed installation
110113
- High Availability installation
111114
- System Copy (Homogeneous with SAP HANA Backup / Recovery) installation
115+
- Maintenance Planner installation
112116
- System Rename
113117
- SAP BW/4HANA
118+
- SAP Business Suite on HANA (SoH, i.e. SAP ECC on HANA)
119+
- SAP Business Suite (i.e. SAP ECC with SAP AnyDB - SAP ASE, SAP MaxDB, IBM Db2, Oracle DB)
114120
- SAP Solution Manager 7.2
115-
- SAP Business Suite (i.e. ECC)
116-
- SAP NetWeaver applications (e.g. GRC)
117121
- SAP Web Dispatcher
118122

119123
### Target host - Operating System requirements
@@ -136,7 +140,7 @@ N.B. The Ansible Collection works with SLES from version 15 SP3 and upwards, for
136140

137141
Execution of Ansible Playbooks using this Ansible Collection have been tested with:
138142
- Python 3.9.7 and above (i.e. CPython distribution)
139-
- Ansible Core 2.11.5 and above (included with optional installation of Ansible Community Edition 4.0 and above)
143+
- Ansible Core 2.11.5 and above _(included with optional installation of Ansible Community Edition 4.0 and above)_
140144
- OS: macOS with Homebrew, RHEL, SLES, and containers in Task Runners (e.g. Azure DevOps)
141145

142146
## License

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace: community
1010
name: sap_install
1111

1212
# The version of the collection. Must be compatible with semantic versioning
13-
version: 1.3.0
13+
version: 1.3.1
1414

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

playbooks/vars/sample-variables-sap-swpm-advanced-mode-s4hana-onehost-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP HANA and SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-advanced-templates-mode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Detect SAP HANA and SAP NetWeaver software
44
# Set vars: on each Ansible Task depending on chosen template
5-
sap_install_media_detect_directory: "/software"
5+
sap_install_media_detect_source_directory: "/software"
66
sap_install_media_detect_source: local_dir
77
#sap_install_media_detect_swpm: true
88
#sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-default-mode-bw4hana-onehost-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP HANA and SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-default-mode-s4hana-distributed-ascs-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-default-mode-s4hana-distributed-dbload-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-default-mode-s4hana-distributed-ers-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

playbooks/vars/sample-variables-sap-swpm-default-mode-s4hana-distributed-pas-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Detect SAP NetWeaver software
4-
sap_install_media_detect_directory: "/software"
4+
sap_install_media_detect_source_directory: "/software"
55
sap_install_media_detect_source: local_dir
66
sap_install_media_detect_swpm: true
77
sap_install_media_detect_hostagent: true

0 commit comments

Comments
 (0)