netapp_eseries.santricity.netapp_e_amg 模块 – NetApp E 系列创建、移除和更新异步镜像组

注意

此模块是 netapp_eseries.santricity 集合 (版本 1.4.1) 的一部分。

如果您使用的是 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install netapp_eseries.santricity

要在 playbook 中使用它,请指定: netapp_eseries.santricity.netapp_e_amg

netapp_eseries.santricity 2.2.0 中的新增功能

概要

  • 允许为 NetApp E 系列存储阵列创建、移除和更新异步镜像组。

参数

参数

注释

api_password

字符串 / 必填

用于对 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的密码。

api_url

字符串 / 必填

SANtricity Web Services Proxy 或嵌入式 Web Services API 的 URL。例如 https://prod-1.wahoo.acme.com/devmgr/v2

api_username

字符串 / 必填

用于对 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的用户名。

interfaceType

字符串

如果光纤和 iSCSI 都可用,则要使用的预期协议。

选项

  • "iscsi"

  • "fibre"

manualSync

布尔值

将其设置为 true 将导致忽略其他同步值。

选项

  • false ← (默认)

  • true

name

字符串 / 必填

您希望定位或创建的异步阵列的名称。

如果 state 为 present 且找不到名称,它将尝试创建。

new_name

字符串

新的异步阵列名称

recoveryWarnThresholdMinutes

整数

恢复点警告阈值(分钟)。当最后一次良好故障点的年龄超过此值时,将向用户发出警告。

默认值: 20

repoUtilizationWarnThreshold

整数

恢复点警告阈值

默认值: 80

secondaryArrayId

字符串 / 必填

在镜像过程中要使用的辅助阵列的 ID。

ssid

字符串

要管理的阵列的 ID。此值对于每个阵列必须唯一。

默认值: "1"

state

字符串 / 必填

state 为 present 将创建或更新异步镜像组。

state 为 absent 将移除异步镜像组。

选项

  • "absent"

  • "present"

syncIntervalMinutes

整数

同步间隔(分钟)

默认值: 10

syncWarnThresholdMinutes

整数

通知用户定期同步完成时间过长的阈值(分钟)。

默认值: 10

validate_certs

布尔值

是否应验证 https 证书?

选项

  • false

  • true ← (默认)

备注

注意

  • E 系列 Ansible 模块需要 Web Services Proxy (WSP) 实例才能管理存储系统,或者需要支持嵌入式 Web Services API 的 E 系列存储系统。

  • 嵌入式 Web Services 目前适用于 E2800、E5700、EF570 和更新的硬件型号。

  • netapp_eseries.santricity.netapp_e_storage_system 可用于配置由 WSP 实例管理的系统。

示例

- name: AMG removal
  na_eseries_amg:
    state: absent
    ssid: "{{ ssid }}"
    secondaryArrayId: "{{amg_secondaryArrayId}}"
    api_url: "{{ netapp_api_url }}"
    api_username: "{{ netapp_api_username }}"
    api_password: "{{ netapp_api_password }}"
    new_name: "{{amg_array_name}}"
    name: "{{amg_name}}"
  when: amg_create

- name: AMG create
  netapp_e_amg:
    state: present
    ssid: "{{ ssid }}"
    secondaryArrayId: "{{amg_secondaryArrayId}}"
    api_url: "{{ netapp_api_url }}"
    api_username: "{{ netapp_api_username }}"
    api_password: "{{ netapp_api_password }}"
    new_name: "{{amg_array_name}}"
    name: "{{amg_name}}"
  when: amg_create

返回值

常见返回值已在 此处 记录,以下是此模块特有的字段。

描述

msg

字符串

成功创建

返回:成功

示例: "{\"changed\": true, \"connectionType\": \"fc\", \"groupRef\": \"3700000060080E5000299C24000006E857AC7EEC\", \"groupState\": \"optimal\", \"id\": \"3700000060080E5000299C24000006E857AC7EEC\", \"label\": \"amg_made_by_ansible\", \"localRole\": \"primary\", \"mirrorChannelRemoteTarget\": \"9000000060080E5000299C24005B06E557AC7EEC\", \"orphanGroup\": false, \"recoveryPointAgeAlertThresholdMinutes\": 20, \"remoteRole\": \"secondary\", \"remoteTarget\": {\"nodeName\": {\"ioInterfaceType\": \"fc\", \"iscsiNodeName\": null, \"remoteNodeWWN\": \"20040080E5299F1C\"}, \"remoteRef\": \"9000000060080E5000299C24005B06E557AC7EEC\", \"scsiinitiatorTargetBaseProperties\": {\"ioInterfaceType\": \"fc\", \"iscsiinitiatorTargetBaseParameters\": null}}, \"remoteTargetId\": \"ansible2\", \"remoteTargetName\": \"Ansible2\", \"remoteTargetWwn\": \"60080E5000299F880000000056A25D56\", \"repositoryUtilizationWarnThreshold\": 80, \"roleChangeProgress\": \"none\", \"syncActivity\": \"idle\", \"syncCompletionTimeAlertThresholdMinutes\": 10, \"syncIntervalMinutes\": 10, \"worldWideName\": \"60080E5000299C24000006E857AC7EEC\"}"

作者

  • Kevin Hulquest (@hulquest)