Skip to content

Commit

Permalink
Version 1.10.0 (#72)
Browse files Browse the repository at this point in the history
* IBM Spectrum Virtualize Collection v1.10.0

Unit tests added for the new release 1.10.0

* SSL certificate module name changed.

* Unit test fix and old named module removed.

* Version number restored.

* galaxy spacing issue fix.

Co-authored-by: Shilpi-J <[email protected]>
Co-authored-by: Sanjai <[email protected]>
  • Loading branch information
3 people authored Sep 30, 2022
1 parent 28fb12e commit 49979af
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Alternatively, you can add a full namepsace and collection name in the `collecti
- ibm_sv_manage_replication_policy - Manages policy-based replication configuration on Spectrum Virtualize storage systems
- ibm_sv_manage_snapshot - Manages snapshots (mutual consistent images of a volume) on Spectrum Virtualize storage systems
- ibm_sv_manage_snapshotpolicy - Manages snapshot policy configuration on Spectrum Virtualize storage systems
- ibm_sv_manage_SSL_certificate - Exports an existing system certificate on to Spectrum Virtualize storage systems
- ibm_sv_manage_ssl_certificate - Exports an existing system certificate on to Spectrum Virtualize storage systems
- ibm_sv_manage_truststore_for_replication - Manages certificate trust stores for replication on Spectrum Virtualize family storage systems
- ibm_sv_switch_replication_direction - Switches the replication direction on Spectrum Virtualize storage systems

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

DOCUMENTATION = '''
---
module: ibm_sv_manage_SSL_certificate
module: ibm_sv_manage_ssl_certificate
short_description: This module exports existing system-signed certificate on to IBM Spectrum Virtualize family storage systems
version_added: '1.10.0'
description:
Expand Down Expand Up @@ -65,7 +65,7 @@

EXAMPLES = '''
- name: Export SSL certificate internally
ibm_sv_manage_SSL_certificate:
ibm.spectrum_virtualize.ibm_sv_manage_ssl_certificate:
clustername: "x.x.x.x"
username: "username"
password: "password"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- Once transfer is done successfully, it also adds the certificate to the trust store of the local system.
- This module can be used to set up mutual TLS (mTLS) for policy-based replication inter-system communication
using cluster endpoint certificates (usually system-signed which are exported by the
M(ibm.spectrum_virtualize.ibm_sv_manage_SSL_certificate) module).
M(ibm.spectrum_virtualize.ibm_sv_manage_ssl_certificate) module).
options:
clustername:
description:
Expand Down
2 changes: 0 additions & 2 deletions plugins/modules/ibm_svcinfo_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@
description:
- Path of debug log file.
type: str
notes:
- This module supports C(check_mode).
'''

EXAMPLES = '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

""" unit tests IBM Spectrum Virtualize Ansible module: ibm_sv_manage_snapshot """
""" unit tests IBM Spectrum Virtualize Ansible module: ibm_sv_manage_ssl_certificate """

from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
Expand All @@ -14,7 +14,7 @@
from ansible.module_utils import basic
from ansible.module_utils._text import to_bytes
from ansible_collections.ibm.spectrum_virtualize.plugins.module_utils.ibm_svc_utils import IBMSVCRestApi
from ansible_collections.ibm.spectrum_virtualize.plugins.modules.ibm_sv_manage_SSL_certificate import IBMSVSSLCertificate
from ansible_collections.ibm.spectrum_virtualize.plugins.modules.ibm_sv_manage_ssl_certificate import IBMSVSSLCertificate


def set_module_args(args):
Expand Down

0 comments on commit 49979af

Please sign in to comment.