ibm.storage_virtualize.ibm_svcinfo_command 模块 – 此模块实现 SSH 客户端,有助于在 IBM 存储虚拟化系列系统上运行 svcinfo CLI 命令
注意
此模块是 ibm.storage_virtualize 集合 (版本 2.5.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install ibm.storage_virtualize
。
要在 playbook 中使用它,请指定: ibm.storage_virtualize.ibm_svcinfo_command
。
ibm.storage_virtualize 1.2.0 中的新增功能
概要
在 IBM 存储虚拟化系列系统上运行单个 svcinfo CLI 命令。此模块中的命令不支持 filtervalue 等筛选选项或与 grep、awk 等的管道 ‘|’ 。必须安装 Paramiko 才能使用此模块。
参数
参数 |
注释 |
---|---|
存储虚拟化系统的 hostname 或管理 IP。 |
|
要在存储虚拟化系统上执行的单个 svcinfo CLI 命令。 |
|
SSH 客户端私钥文件名。默认情况下,使用 |
|
调试日志文件的路径。 |
|
存储虚拟化系统的密码。 |
|
存储虚拟化系统的用户名。 |
|
对于基于密钥对的 SSH 连接,将此字段设置为 选项
|
示例
- name: Run svcinfo CLI command using SSH client with password
ibm.storage_virtualize.ibm_svcinfo_command:
command: "svcinfo lsuser {{user}}"
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log
- name: Run svcinfo CLI command using passwordless SSH Client
ibm.storage_virtualize.ibm_svcinfo_command:
command: "svcinfo lsuser"
usesshkey: "yes"
clustername: "{{clustername}}"
username: "{{username}}"
password:
log_path: /tmp/ansible.log
- name: Run sainfo CLI command
ibm.storage_virtualize.ibm_svcinfo_command:
command: "sainfo lsservicenodes"
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log