Skip to content

Commit

Permalink
Release main-1.17.0
Browse files Browse the repository at this point in the history
Signed-off-by: kksat <[email protected]>
  • Loading branch information
kksat committed May 6, 2024
1 parent 6f4b9df commit 68fb23d
Show file tree
Hide file tree
Showing 19 changed files with 76 additions and 814 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ SAP Operations Collection Release Notes

.. contents:: Topics

v1.17.0
=======

Release Summary
---------------

Lifecycle release

Major Changes
-------------

- Minimum ansible-core version supported is 2.15

v1.16.1
=======
Expand Down Expand Up @@ -228,7 +240,6 @@ Release Summary

Two roles are added `hana_update` and `prepare`


Major Changes
-------------

Expand All @@ -248,7 +259,6 @@ Release Summary

Using changelog fragments to build collection changelog.


Minor Changes
-------------

Expand All @@ -263,7 +273,6 @@ Release Summary

First release of SAP Operations collection.


Major Changes
-------------

Expand All @@ -281,7 +290,6 @@ Release Summary

First release of SAP Operations collection.


Major Changes
-------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ Please see documentation for role `prepare`.

Ansible collection is designed to work with following Ansible versions (on controller host)

ansible-core 2.14

ansible-core 2.15

ansible-core 2.16

### Python

Ansible collection is designed to work with following python versions on controller host
Expand Down
47 changes: 46 additions & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace: sap

name: sap_operations

version: 1.16.1
version: 1.17.0

readme: README.md

Expand Down Expand Up @@ -132,5 +132,50 @@ build_ignore:
- README-aap.md

- roles/sapjvm/
- roles/cloudconnector/*

- plugins/modules/proc_info.py
- plugins/action/cf_marketplace_info.py
- plugins/modules/cf_marketplace_info.py
- plugins/action/cf_service_instance.py
- plugins/modules/cf_service_instance.py
- plugins/action/cf_service_instance_info.py
- plugins/modules/cf_service_instance_info.py
- plugins/action/cf_service_instances_info.py
- plugins/modules/cf_service_instances_info.py
- plugins/action/cf_service_plans_info.py
- plugins/modules/cf_service_plans_info.py
- plugins/action/cf_spaces_info.py
- plugins/modules/cf_spaces_info.py

- meta/runtime-aap.yml
- meta/runtime-galaxy.yml

- plugins/action/cf_service_instance_keys_info.py
- plugins/modules/cf_service_instance_keys_info.py

- plugins/action/cf_service_instance_key.py
- plugins/modules/cf_service_instance_key.py

- plugins/action/btp_global_account_info.py
- plugins/modules/btp_global_account_info.py

- plugins/action/btp_subaccount.py
- plugins/modules/btp_subaccount.py
- plugins/action/btp_subaccounts_info.py
- plugins/modules/btp_subaccounts_info.py
- plugins/action/btp_global_account_assignments_info.py
- plugins/modules/btp_global_account_assignments_info.py
- plugins/doc_fragments/sap_btp_action_plugin.py
- plugins/doc_fragments/cloud_foundry.py
- plugins/doc_fragments/action_plugin.py
- playbooks/sample_test_sap_btp.yml

- roles/quality/*
- roles/powershell/*

- plugins/modules/enq_admin_info.py
- plugins/modules/enq_admin_locks_info.py
- plugins/modules/enq_admin_lock.py
- plugins/doc_fragments/enq_admin.py
- plugins/module_utils/enq_admin.py
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# If not, see <https://www.gnu.org/licenses/>.

---
requires_ansible: ">=2.14.0"
requires_ansible: ">=2.15.0"
Empty file added plugins/action/__init__.py
Empty file.
21 changes: 14 additions & 7 deletions plugins/modules/host_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -1296,14 +1296,21 @@

def main():
module = AnsibleModuleSAPHostAgent(argument_spec={}, supports_check_mode=True)
try:
m = saphostctrl(
hostname=module.params.get("hostname"),
username=module.params.get("username"),
password=module.params.get("password"),
ca_file=module.params.get("ca_file"),
security=module.params.get("security"),
)
except FileNotFoundError:
module.exit_json(
msg="No saphost agent installed",
instances=[],
databases=[],
)

m = saphostctrl(
hostname=module.params.get("hostname"),
username=module.params.get("username"),
password=module.params.get("password"),
ca_file=module.params.get("ca_file"),
security=module.params.get("security"),
)
try:
instances = convert2ansible(m.client.service.ListInstances())
for instance in instances:
Expand Down
238 changes: 0 additions & 238 deletions roles/cloudconnector/README.md

This file was deleted.

Loading

0 comments on commit 68fb23d

Please sign in to comment.