Skip to content

Commit

Permalink
Sync bitbucket and GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
carchi8py committed Oct 5, 2022
1 parent 8b6e7f1 commit c8da472
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 19 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ NetApp CloudManager Collection Release Notes
.. contents:: Topics


v21.20.0
========

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

- Add ``availability_zone`` option in CVO Azure on the location configuration.
- Add ``subnet_path`` option in CVO GCP.
- na_cloudmanager_cvo_aws - Add new parameter ``cluster_key_pair_name`` to support SSH authentication method key pair.
- na_cloudmanager_volume - Support AWS FsxN working environment.

Bugfixes
--------

- na_cloudmanager_connector_gcp - Fix default machine_type value on the GCP connector.

v21.19.0
========

Expand Down
19 changes: 5 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,26 +36,17 @@ This collection follows the [Ansible project's Code of Conduct](https://docs.ans
https://github.com/ansible-collections/netapp/wiki

# Release Notes
## 21.22.0

### New Options
- Add `availability_zone` option in CVO Azure on the location configuration.

## 21.21.1

### Bug Fixes
- Fix the `machine_type` default value in the connector GCP.

## 21.21.0

### New Options
- Add `cluster_key_pair_name` option in CVO AWS for SSH authentication key pair method.

## 21.20.0

### New Options
- Add `availability_zone` option in CVO Azure on the location configuration.
- Add `cluster_key_pair_name` option in CVO AWS for SSH authentication key pair method.
- Add `subnet_path` option in CVO GCP.

### Bug Fixes
- Fix the `machine_type` default value in the connector GCP.

### Minor Changes
- na_cloudmanager_volume - Support AWS FsxN working environment

Expand Down
18 changes: 18 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,24 @@ releases:
fragments:
- DEVOPS-5252.yaml
release_date: '2022-08-03'
21.20.0:
changes:
bugfixes:
- na_cloudmanager_connector_gcp - Fix default machine_type value on the GCP
connector.
minor_changes:
- Add ``availability_zone`` option in CVO Azure on the location configuration.
- Add ``subnet_path`` option in CVO GCP.
- na_cloudmanager_cvo_aws - Add new parameter ``cluster_key_pair_name`` to support
SSH authentication method key pair.
- na_cloudmanager_volume - Support AWS FsxN working environment.
fragments:
- DEVOPS-5307.yaml
- DEVOPS-5342.yaml
- DEVOPS-5366.yaml
- DEVOPS-5437.yaml
- DEVOPS-5472.yaml
release_date: '2022-10-05'
21.3.0:
modules:
- description: NetApp Cloud Manager Aggregate
Expand Down
2 changes: 2 additions & 0 deletions changelogs/fragments/DEVOPS-5472.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Add ``availability_zone`` option in CVO Azure on the location configuration.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: netapp
name: cloudmanager

# The version of the collection. Must be compatible with semantic versioning
version: "21.22.0"
version: "21.20.0"

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/netapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
except ImportError:
ansible_version = 'unknown'

COLLECTION_VERSION = "21.22.0"
COLLECTION_VERSION = "21.20.0"
PROD_ENVIRONMENT = {
'CLOUD_MANAGER_HOST': 'cloudmanager.cloud.netapp.com',
'AUTH0_DOMAIN': 'netapp-cloud-account.auth0.com',
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/na_cloudmanager_cvo_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
description:
- SSH authentication key pair name
type: str
version_added: 21.21.0
version_added: 21.20.0
nss_account:
description:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/na_cloudmanager_cvo_azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
description:
- The availability zone on the location configuration.
type: int
version_added: 21.22.0
version_added: 21.20.0
'''

EXAMPLES = """
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/na_cloudmanager_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
description:
- The NetApp account ID that the Connector will be associated with. To be used only when using FSx.
type: str
version_added: 21.22.0
version_added: 21.20.0
initiators:
description:
Expand Down

0 comments on commit c8da472

Please sign in to comment.