netapp_eseries.santricity.na_santricity_drive_firmware 模块 – NetApp E-Series 管理驱动器固件

注意

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

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

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

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

概要

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

参数

参数

注释

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:8443/devmgr/v2

api_username

字符串 / 必需

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

firmware

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

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

NetApp E-Series 驱动器需要特殊的固件,可以从 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-Series Ansible 模块需要 Web Services Proxy (WSP) 的实例才能管理存储系统,或者需要支持嵌入式 Web Services API 的 E-Series 存储系统。

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

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

示例

- name: Ensure correct firmware versions
  na_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 (@ndswartz)