cisco.ucs.ucs_org 模块 – 管理 UCS Manager 的 UCS 组织
注意
此模块是 cisco.ucs 集合(版本 1.14.0)的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install cisco.ucs
。您需要进一步的要求才能使用此模块,有关详细信息,请参阅 要求。
要在 playbook 中使用它,请指定:cisco.ucs.ucs_org
。
概要
管理 UCS Manager 的 UCS 组织。
要求
执行此模块的主机需要满足以下要求。
ucsmsdk
参数
参数 |
注释 |
---|---|
模块将在哪里运行 默认值: |
|
组织的用户定义描述。 输入最多 256 个字符。 您可以使用任何字符或空格,但以下字符除外 ` (重音符)、(反斜杠)、^ (插入符)、” (双引号)、= (等号)、> (大于号)、< (小于号) 或 ‘ (单引号)。 |
|
Cisco UCS Manager 的 IP 地址或主机名。 模块可以与 UCS 平台模拟器一起使用 https://cs.co/ucspe |
|
组织的名称。 输入最多 16 个字符。 您可以使用任何字符或空格,但以下字符除外 ` (重音符)、(反斜杠)、^ (插入符)、” (双引号)、= (等号)、> (大于号)、< (小于号) 或 ‘ (单引号)。 |
|
从根组织到要添加或更新的组织的父组织,用斜杠 / 分隔的分层路径。 UCS Manager 支持最多五层深的组织层次结构,不包括根组织。 例如,名为 level5 的组织的 parent_org_path 可以是 root/level1/level2/level3/level4 默认值: |
|
用于 Cisco UCS Manager 身份验证的密码。 |
|
连接期间要使用的端口号(默认情况下,https 使用 443,http 连接使用 80)。 |
|
如果 use_proxy 为 no,则指定用于连接的代理。例如 ‘http://proxy.xy.z:8080’ |
|
如果为 如果为 选择
|
|
如果为 选择
|
|
如果为 选择
|
|
用于 Cisco UCS Manager 身份验证的用户名。 默认值: |
示例
- name: Add UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: test
description: testing org
state: present
delegate_to: localhost
- name: Update UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: test
description: Testing org
state: present
delegate_to: localhost
- name: Add UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: level1
parent_org_path: root
description: level1 org
state: present
delegate_to: localhost
- name: Add UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: level2
parent_org_path: root/level1
description: level2 org
state: present
- name: Add UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: level3
parent_org_path: root/level1/level2
description: level3 org
state: present
- name: Remove UCS Organization
cisco.ucs.ucs_org:
hostname: "{{ ucs_hostname }}"
username: "{{ ucs_username }}"
password: "{{ ucs_password }}"
org_name: level2
parent_org_path: root/level1
state: absent