Init: mediaserver

This commit is contained in:
2023-02-08 12:13:28 +01:00
parent 848bc9739c
commit f7c23d4ba9
31914 changed files with 6175775 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
bugfixes:
- galaxy.yml - fix path to github repository.
- netapp.py - report error in case of connection error rather than raising a generic exception by default.

View File

@@ -0,0 +1,2 @@
bugfixes:
- galaxy.yml - fix repository and homepage links.

View File

@@ -0,0 +1,21 @@
minor_changes:
- na_elementsw_drive - add all drives in a cluster, allow for a list of nodes or a list of drives.
- use a three group format for ``version_added``. So 2.7 becomes 2.7.0. Same thing for 2.8 and 2.9.
- add "type:str" (or int, dict) where missing in documentation section.
- add "required:true" where missing.
- remove "required:true" for state and use present as default.
bugfixes:
- na_elementsw_access_group - fix check_mode so that no action is taken.
- na_elementsw_admin_users - fix check_mode so that no action is taken.
- na_elementsw_cluster - create cluster if it does not exist. Do not expect MVIP or SVIP to exist before create.
- na_elementsw_cluster_snmp - double exception because of AttributeError.
- na_elementsw_drive - node_id or drive_id were not handled properly when using numeric ids.
- na_elementsw_initiators - volume_access_group_id was ignored. volume_access_groups was ignored and redundant.
- na_elementsw_ldap - double exception because of AttributeError.
- na_elementsw_snapshot_schedule - ignore schedules being deleted (idempotency), remove default values and fix documentation.
- na_elementsw_vlan - AttributeError if VLAN already exists.
- na_elementsw_vlan - fix check_mode so that no action is taken.
- na_elementsw_vlan - change in attributes was ignored.
- na_elementsw_volume - double exception because of AttributeError.
- na_elementsw_volume - Argument '512emulation' in argument_spec is not a valid python identifier - renamed to enable512emulation.

View File

@@ -0,0 +1,7 @@
minor_changes:
- na_elementsw_node - ``cluster_name`` to set the cluster name on new nodes.
- na_elementsw_node - ``preset_only`` to only set the cluster name before creating a cluster with na_elementsw_cluster.
- na_elementsw_volume - ``qos_policy_name`` to provide a QOS policy name or ID.
bugfixes:
- na_elementsw_node - fix check_mode so that no action is taken.

View File

@@ -0,0 +1,2 @@
minor_changes:
- refactor existing modules as a collection

View File

@@ -0,0 +1,2 @@
minor_changes:
- na_elementsw_cluster - add new options ``encryption``, ``order_number``, and ``serial_number``.

View File

@@ -0,0 +1,2 @@
bugfixes:
- na_elementsw_node - improve error reporting when cluster name cannot be set because node is already active.

View File

@@ -0,0 +1,2 @@
bugfixes:
- na_elementsw_schedule - missing imports TimeIntervalFrequency, Schedule, ScheduleInfo have been added back

View File

@@ -0,0 +1,2 @@
minor_changes:
- na_elementsw_network_interfaces - make all options not required, so that only bond_1g can be set for example.

View File

@@ -0,0 +1,2 @@
minor_changes:
- na_elementsw_network_interfaces - restructure options into 2 dictionaries ``bond_1g`` and ``bond_10g``, so that there is no shared option. Disallow all older options.

View File

@@ -0,0 +1,2 @@
minor_changes:
- na_elementsw_snapshot_schedule - Add ``retention`` in examples.

View File

@@ -0,0 +1,2 @@
bugfixes:
- na_elementsw_drive - Object of type 'dict_values' is not JSON serializable.

View File

@@ -0,0 +1,4 @@
minor_changes:
- na_elementsw_qos_policy - explicitly define ``minIOPS``, ``maxIOPS``, ``burstIOPS`` as int.
bugfixes:
- na_elementsw_qos_policy - loop would convert `minIOPS`, `maxIOPS`, `burstIOPS` to str, causing type mismatch issues in comparisons.

View File

@@ -0,0 +1,4 @@
minor_changes:
- na_elementsw_info - add ``cluster_nodes`` and ``cluster_drives``.
bugfixes:
- na_elementsw_drive - lastest SDK does not accept ``force_during_bin_sync`` and ``force_during_upgrade``.

View File

@@ -0,0 +1,2 @@
bugfixes:
- na_elementsw_snapshot_schedule - change of interface in SDK ('ScheduleInfo' object has no attribute 'minutes')

View File

@@ -0,0 +1,2 @@
bugfixes:
- requirements.txt - point to the correct python dependency

View File

@@ -0,0 +1,2 @@
minor_changes:
- PR1 - allow usage of Ansible module group defaults - for Ansible 2.12+.