netapp_eseries.santricity.na_santricity_proxy_firmware_upload 模块 – 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.na_santricity_proxy_firmware_upload

概要

  • 确保 SANtricity Web Services Proxy 上提供了特定的固件版本。

参数

参数

注释

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

列表 / elements=字符串

包含固件/NVSRAM 文件的路径和/或目录的列表。

如果存在,则将从代理中删除所有未指定的固件/NVSRAM 文件。

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: Ensure proxy has the expected firmware versions.
  na_santricity_proxy_firmware_upload:
    api_url: "https://192.168.1.100:8443/devmgr/v2"
    api_username: "admin"
    api_password: "adminpass"
    validate_certs: true
    firmware:
      - "path/to/firmware/dlp_files"
      - "path/to/nvsram.dlp"
      - "path/to/firmware.dlp"

返回值

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

描述

msg

字符串

固件和 NVSRAM 的状态和版本。

返回:始终

作者

  • Nathan Swartz (@swartzn)

  • Vu Tran (@VuTran007)