Skip to content

Commit 8a89687

Browse files
authored
Merge pull request #1007 from sap-linuxlab/dev
merge dev to main for release 1.5.3
2 parents 9ee20c7 + bc98358 commit 8a89687

File tree

95 files changed

+2088
-1156
lines changed

Some content is hidden

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

95 files changed

+2088
-1156
lines changed

.ansible-lint

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22
# Collection wide lint-file
33
# DO NOT CHANGE
44
exclude_paths:
5+
- .ansible/
56
- .cache/
67
- .github/
78
#- docs/
89
- changelogs/
910
- playbooks/
1011
- roles/sap_anydb_install_oracle
1112
#- roles/sap_general_preconfigure
13+
#- roles/sap_ha_install_anydb_ibmdb2
1214
#- roles/sap_ha_install_hana_hsr
1315
#- roles/sap_ha_pacemaker_cluster
1416
#- roles/sap_hana_install
1517
#- roles/sap_hana_preconfigure
16-
- roles/sap_hostagent
18+
#- roles/sap_hostagent
1719
#- roles/sap_install_media_detect
1820
#- roles/sap_netweaver_preconfigure
1921
#- roles/sap_storage_setup

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
name: Bug report
3+
description: Report an unexpected error, a crash, or an incorrect behavior
4+
title: "ansible_role_name_here: short_desc_here"
5+
labels: [bug]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
:wave:
11+
12+
Thank you for taking the time to fill out this bug/issue report!
13+
14+
Before raising a bug/issue, please read the documentation of the Ansible Role where the feature or enhancement is requested; such as [community.sap_install/roles/sap_hana_install/README](https://github.com/sap-linuxlab/community.sap_install/blob/main/roles/sap_hana_install/README.md)
15+
16+
- type: dropdown
17+
id: role
18+
attributes:
19+
label: Ansible Role
20+
description: Which Ansible Role are you proposing a feature or enhancement for?
21+
options:
22+
- All
23+
- sap_anydb_install_oracle
24+
- sap_general_preconfigure
25+
- sap_ha_install_anydb_ibmdb2
26+
- sap_ha_install_hana_hsr
27+
- sap_ha_pacemaker_cluster
28+
- sap_hana_install
29+
- sap_hana_preconfigure
30+
- sap_hostagent
31+
- sap_install_media_detect
32+
- sap_maintain_etc_hosts
33+
- sap_netweaver_preconfigure
34+
- sap_storage_setup
35+
- sap_swpm
36+
- None of them (or I don't know)
37+
default: 0
38+
validations:
39+
required: true
40+
41+
- type: dropdown
42+
id: os-family
43+
attributes:
44+
label: OS Family
45+
description: Which OS are experiencing the issue with?
46+
options:
47+
- N/A
48+
- RHEL
49+
- SLES
50+
default: 0
51+
validations:
52+
required: true
53+
54+
- type: textarea
55+
id: python-version
56+
attributes:
57+
label: Ansible Controller - Python version
58+
description: From wherever you execute Ansible, please provide the Python version being used
59+
placeholder: |
60+
python --version
61+
Python 3.12.0
62+
validations:
63+
required: true
64+
65+
- type: textarea
66+
id: ansible-version
67+
attributes:
68+
label: Ansible-core version
69+
description: From wherever you execute Ansible, please provide the Ansible Core version being used
70+
placeholder: |
71+
ansible --version
72+
ansible [core 2.16.0]
73+
validations:
74+
required: true
75+
76+
- type: textarea
77+
id: description
78+
attributes:
79+
label: Bug Description
80+
description: Please provide a clear and concise description of the bug. You can attach images (drag-and-drop) or log files as required.
81+
validations:
82+
required: true
83+
84+
- type: textarea
85+
id: reproduction
86+
attributes:
87+
label: Bug reproduction
88+
description: Please provide the steps you performed, so we can try to reproduce the problem you ran into
89+
validations:
90+
required: true
91+
92+
- type: dropdown
93+
id: participation
94+
attributes:
95+
label: Community participation
96+
description: Do you want to join our community and contribute/implement a bug fix yourself?
97+
options:
98+
- Happy to implement this bug fix
99+
- Happy to help with this bug fix, but may need help (e.g. first time contributing to open-source using git)
100+
- Unfortunately I am not in a position to help with the bug fix
101+
validations:
102+
required: true
103+
104+
- type: markdown
105+
attributes:
106+
value: |
107+
<br/>
108+
109+
**Before submitting this report, I confirm:**
110+
111+
- :white_check_mark: Yes, I read the documentation
112+
113+
- :white_check_mark: Yes, I checked if there was already a previous [GitHub Issue](https://github.com/sap-linuxlab/community.sap_install/issues?q=is%3Aissue%20) about this bug
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
---
2+
name: Feature request
3+
description: Request a feature or enhancement to the Ansible Collection
4+
title: "feat: ansible_role_name_here short_desc_here"
5+
labels: [enhancement]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
:wave:
11+
12+
Thank you for taking the time to fill out this feature request!
13+
14+
Before raising a feature request, please read the documentation of the Ansible Role where the feature or enhancement is requested; such as [community.sap_install/roles/sap_hana_install/README](https://github.com/sap-linuxlab/community.sap_install/blob/main/roles/sap_hana_install/README.md)
15+
16+
- type: dropdown
17+
id: role
18+
attributes:
19+
label: Ansible Role
20+
description: Which Ansible Role are you proposing a feature or enhancement for?
21+
options:
22+
- All
23+
- sap_anydb_install_oracle
24+
- sap_general_preconfigure
25+
- sap_ha_install_anydb_ibmdb2
26+
- sap_ha_install_hana_hsr
27+
- sap_ha_pacemaker_cluster
28+
- sap_hana_install
29+
- sap_hana_preconfigure
30+
- sap_hostagent
31+
- sap_install_media_detect
32+
- sap_maintain_etc_hosts
33+
- sap_netweaver_preconfigure
34+
- sap_storage_setup
35+
- sap_swpm
36+
default: 0
37+
validations:
38+
required: true
39+
40+
- type: dropdown
41+
id: os-family
42+
attributes:
43+
label: OS Family
44+
description: Is feature or enhancement OS specific?
45+
options:
46+
- All
47+
- RHEL
48+
- SLES
49+
default: 0
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
id: description
55+
attributes:
56+
label: Feature/Enhancement request
57+
description: A clear and concise description of what will improve the Ansible Role; please include use cases for the desired final outcome.
58+
placeholder: |
59+
e.g. I believe [...] would help clarity to end-users during execution.
60+
61+
e.g. I believe [...] is required to avoid [...] problem/s occuring.
62+
63+
e.g. I believe [...] is missing according to [citation] SAP documentation.
64+
validations:
65+
required: true
66+
67+
- type: dropdown
68+
id: participation
69+
attributes:
70+
label: Community participation
71+
description: Do you want to join our community and contribute/implement this feature yourself?
72+
options:
73+
- Happy to implement this feature
74+
- Happy to help with this feature, but may need help (e.g. first time contributing to open-source using git)
75+
- Unfortunately I am not in a position to help with the feature
76+
validations:
77+
required: true
78+
79+
- type: textarea
80+
id: attempted-solution
81+
attributes:
82+
label: Optional - Attempted solutions or manual steps
83+
description: If you already have some Ansible code or manual steps (shell commands), please paste these below
84+
placeholder: |
85+
<paste example code here>
86+
validations:
87+
required: false
88+
89+
- type: markdown
90+
attributes:
91+
value: |
92+
<br/>
93+
94+
**Before submitting this request, I confirm:**
95+
96+
- :white_check_mark: Yes, I read the documentation

0 commit comments

Comments
 (0)