cisco.ucs.ucs_server_maintenance – Creates Server Maintenance Policy on Cisco UCS Manager

From Get docs
Ansible/docs/2.10/collections/cisco/ucs/ucs server maintenance module


cisco.ucs.ucs_server_maintenance – Creates Server Maintenance Policy on Cisco UCS Manager

Note

This plugin is part of the cisco.ucs collection (version 1.6.0).

To install it use: ansible-galaxy collection install cisco.ucs.

To use it in a playbook, specify: cisco.ucs.ucs_server_maintenance.


New in version 2.1: of cisco.ucs


Synopsis

  • Configures Server Maintenance Policy on Cisco UCS Manager.

Requirements

The below requirements are needed on the host that executes this module.

  • ucsmsdk

Parameters

Parameter Choices/Defaults Comments

description

string

A description of the Server Maintenance Package Policy.

Cisco recommends including information about where and when to use the policy.

Enter up to 256 characters.

You can use any characters or spaces except the following:

` (accent mark), (backslash), ^ (carat), " (double quote), = (equal sign), > (greater than), < (less than), or ' (single quote).


aliases: descr

hostname

string / required

IP address or hostname of Cisco UCS Manager.

Modules can be used with the UCS Platform Emulator https://cs.co/ucspe

name

string / required

The name assigned to the Server Maintenance Policy.

The Server Maintenance Policy name is case sensitive.

This name can be between 1 and 16 alphanumeric characters.

You cannot use spaces or any special characters other than - (hyphen), "_" (underscore), : (colon), and . (period).

You cannot change this name after the Server Maintenance Policy is created.

password

string / required

Password for Cisco UCS Manager authentication.

port

integer

Port number to be used during connection (by default uses 443 for https and 80 for http connection).

proxy

string

If use_proxy is no, specfies proxy to be used for connection. e.g. 'http://proxy.xy.z:8080'

state

string

  • present

  • absent

If present, will verify Server Maintenance Policy is present and will create if needed.

If absent, will verify Server Maintenance Policy is absent and will delete if needed.

trigger_config

string

  • on-next-boot

This option is used in combination with either User Ack (user-ack) or Timer Automatic (timer-automatic).

When the On Next Boot option is enabled, the host OS reboot, shutdown, or server reset also triggers the associated FSM to apply the changes.

Note that de-selecting the On Next Boot option disables the Maintenance Policy on the BMC.

uptime_disr

string / required

  • immediate
  • timer-automatic
  • user-ack

When a Server profile is associated with a Server, or when changes are made to a Server profile that is already associated with a Server, you must reboot the Server to complete the process.

The Reboot Policy field determines when the reboot occurs for Server associated with any Server profiles that include this maintenance policy.

use_proxy

boolean

  • no
  • yes

If no, will not use the proxy as defined by system environment variable.

use_ssl

boolean

  • no
  • yes

If no, an HTTP connection will be used instead of the default HTTPS connection.

username

string

Default:

"admin"

Username for Cisco UCS Manager authentication.



Examples

- name: Add Server Maintenance Policy
  cisco.ucs.ucs_server_maintenance:
    hostname: 172.16.143.150
    username: admin
    password: password
    name: user-ack
    uptime_disr: user-ack
    trigger_config: on-next-boot

Authors

  • Brett Johnson (@brettjohnson008)

© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/cisco/ucs/ucs_server_maintenance_module.html