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

参数

参数

注释

delegate_to

字符串

模块将在哪里运行

默认值: "localhost"

description

别名:descr

字符串

组织的用户定义描述。

输入最多 256 个字符。

您可以使用任何字符或空格,但以下字符除外

` (重音符)、(反斜杠)、^ (插入符)、” (双引号)、= (等号)、> (大于号)、< (小于号) 或 ‘ (单引号)。

hostname

字符串 / 必需

Cisco UCS Manager 的 IP 地址或主机名。

模块可以与 UCS 平台模拟器一起使用 https://cs.co/ucspe

org_name

别名:name

字符串

组织的名称。

输入最多 16 个字符。

您可以使用任何字符或空格,但以下字符除外

` (重音符)、(反斜杠)、^ (插入符)、” (双引号)、= (等号)、> (大于号)、< (小于号) 或 ‘ (单引号)。

parent_org_path

字符串

从根组织到要添加或更新的组织的父组织,用斜杠 / 分隔的分层路径。

UCS Manager 支持最多五层深的组织层次结构,不包括根组织。

例如,名为 level5 的组织的 parent_org_path 可以是 root/level1/level2/level3/level4

默认值: "root"

password

字符串 / 必需

用于 Cisco UCS Manager 身份验证的密码。

port

整数

连接期间要使用的端口号(默认情况下,https 使用 443,http 连接使用 80)。

proxy

字符串

如果 use_proxy 为 no,则指定用于连接的代理。例如 ‘http://proxy.xy.z:8080

state

字符串

如果为 absent,将删除组织。

如果为 present,将创建或更新组织。

选择

  • "absent"

  • "present" ← (默认)

use_proxy

布尔值

如果为 no,则不会使用由系统环境变量定义的代理。

选择

  • false

  • true ← (默认)

use_ssl

布尔值

如果为 no,则将使用 HTTP 连接而不是默认的 HTTPS 连接。

选择

  • false

  • true ← (默认)

username

字符串

用于 Cisco UCS Manager 身份验证的用户名。

默认值: "admin"

示例

- 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

作者

  • David Soper (@dsoper2)

  • John McDonough (@movinalot)

  • CiscoUcs (@CiscoUcs)