-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IBM Spectrum Virtualize v1.7.0 (#48)
* IBM Spectrum Virtualize v1.7.0 1. Updated new module description in README 2. Updated version name in galaxy.yml 3. Updated changelog 4. Added support for managing user, user groups and ownership groups 5. Added support for the configuration of Call Home feature. 6. Added support for remote assistance configuration. 7. Unit tests are added
- Loading branch information
Showing
35 changed files
with
6,290 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ namespace: ibm | |
name: spectrum_virtualize | ||
|
||
# The version of the collection. Must be compatible with semantic versioning | ||
version: 1.6.0 | ||
version: 1.7.0 | ||
|
||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection | ||
readme: README.md | ||
|
@@ -21,6 +21,7 @@ authors: | |
- Shilpi Jain <[email protected]> | ||
- Rohit Kumar <[email protected]> | ||
- Sreshtant Bohidar <[email protected]> | ||
- Sanjaikumaar M <[email protected]> | ||
|
||
|
||
### OPTIONAL but strongly recommended | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright (C) 2020 IBM CORPORATION | ||
# Copyright (C) 2021 IBM CORPORATION | ||
# Author(s): Shilpi Jain <[email protected]> | ||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
|
@@ -15,7 +15,7 @@ | |
DOCUMENTATION = ''' | ||
--- | ||
module: ibm_svc_auth | ||
short_description: This module generates an authentication token for a user on IBM Spectrum Virtualize Family storage system | ||
short_description: This module generates an authentication token for a user on IBM Spectrum Virtualize family storage system | ||
description: | ||
- Ansible interface to generate the authentication token. | ||
The token is used to make REST API calls to the storage system. | ||
|
@@ -97,7 +97,6 @@ | |
version_added: 1.5.0 | ||
''' | ||
|
||
from traceback import format_exc | ||
from ansible.module_utils.basic import AnsibleModule | ||
from ansible_collections.ibm.spectrum_virtualize.plugins.module_utils.ibm_svc_utils import IBMSVCRestApi, svc_argument_spec, get_logger | ||
from ansible.module_utils._text import to_native | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright (C) 2020 IBM CORPORATION | ||
# Copyright (C) 2021 IBM CORPORATION | ||
# Author(s): Shilpi Jain <[email protected]> | ||
# | ||
# GNU General Public License v3.0+ | ||
|
@@ -17,7 +17,7 @@ | |
DOCUMENTATION = ''' | ||
--- | ||
module: ibm_svc_hostcluster | ||
short_description: This module manages host cluster on IBM Spectrum Virtualize Family storage systems | ||
short_description: This module manages host cluster on IBM Spectrum Virtualize family storage systems | ||
version_added: "1.5.0" | ||
description: | ||
- Ansible interface to manage 'mkhostcluster', 'chhostcluster' and 'rmhostcluster' host commands. | ||
|
@@ -41,7 +41,7 @@ | |
domain: | ||
description: | ||
- Domain for the Spectrum Virtualize storage system. | ||
Valid when hostname is used for the parameter I(clustername). | ||
- Valid when hostname is used for the parameter I(clustername). | ||
type: str | ||
username: | ||
description: | ||
|
@@ -56,19 +56,19 @@ | |
token: | ||
description: | ||
- The authentication token to verify a user on the Spectrum Virtualize storage system. | ||
- To generate a token, use ibm_svc_auth module. | ||
- To generate a token, use the ibm_svc_auth module. | ||
type: str | ||
ownershipgroup: | ||
description: | ||
- The name of the ownership group to which the host cluster object is being added. | ||
Parameters I(ownershipgroup) and I(noownershipgroup) are mutually exclusive. | ||
- Parameters I(ownershipgroup) and I(noownershipgroup) are mutually exclusive. | ||
- Applies when C(state=present). | ||
type: str | ||
version_added: '1.6.0' | ||
noownershipgroup: | ||
description: | ||
- If specified True, the host cluster object is removed from the ownership group to which it belongs. | ||
Parameters I(ownershipgroup) and I(noownershipgroup) are mutually exclusive. | ||
- Parameters I(ownershipgroup) and I(noownershipgroup) are mutually exclusive. | ||
- Applies when C(state=present) to modify an existing hostcluster. | ||
type: bool | ||
version_added: '1.6.0' | ||
|
Oops, something went wrong.