netapp_eseries.santricity.netapp_e_drive_firmware 模块 – NetApp E 系列管理驱动程序固件

注意

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

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

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

要在剧本中使用它,请指定: netapp_eseries.santricity.netapp_e_drive_firmware

netapp_eseries.santricity 2.9.0 中的新增功能

概要

  • 确保在指定的驱动器型号上激活驱动器固件版本。

参数

参数

注释

api_password

字符串 / 必填

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

api_url

字符串 / 必填

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

api_username

字符串 / 必填

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

firmware

列表 / 元素=字符串 / 必填

驱动器固件文件路径列表。

NetApp E 系列驱动器需要特殊的固件,可以从 https://mysupport.netapp.com/NOW/download/tools/diskfw_eseries/ 下载

ignore_inaccessible_drives

布尔值

此标志将确定如果任何受影响的驱动器不可访问,则驱动器固件升级是否应失败。

选项

  • false ← (默认)

  • true

ssid

字符串

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

默认值: "1"

upgrade_drives_online

布尔值

此标志将确定是否可以在驱动器接受 I/O 时升级驱动器固件。

upgrade_drives_online==False 时,在运行任务之前停止所有 I/O。

选项

  • false

  • true ← (默认)

validate_certs

布尔值

是否应验证 https 证书?

选项

  • false

  • true ← (默认)

wait_for_completion

布尔值

此标志将导致模块等待任何升级操作完成。

选项

  • false ← (默认)

  • true

备注

注意

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

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

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

示例

- name: Ensure correct firmware versions
  nac_santricity_drive_firmware:
    ssid: "1"
    api_url: "https://192.168.1.100:8443/devmgr/v2"
    api_username: "admin"
    api_password: "adminpass"
    validate_certs: true
    firmware: "path/to/drive_firmware"
    wait_for_completion: true
    ignore_inaccessible_drives: false

返回值

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

描述

msg

字符串

是否升级了任何驱动器固件以及它是否正在进行中。

返回:始终

示例: "{'changed': True, 'upgrade_in_process': True}"

作者

  • Nathan Swartz (@swartzn)

  • Vu Tran (@VuTran007)