mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-30 12:59:09 -07:00
Connection and MAC pool module for Cisco UCS (#31151)
* Initial commit for UcsConnection and ucs_macpool module. Configures MAC address pools on UCS Manager. * ansible-doc fixes * PEP8 fixes * pep8, pylint, and validate-modules fixes * Correct indent issue introduced during pycodestyle cleanup * Simplified module arugment setup. Placed all code in main to avoid multiple calls and arg passing. * module_utils/ucs changed to UCSModule which now handles login/logout directly login_handle removed from module.params doc updates on mac_list params and change to first_addr/last_addr for mac blocks checking of all mac params * Move module_utils to remote_management/ucs Fix validate-modules issue with docs * UCS MAC pool integration tests Fixed issues with MAC pool descr and address range params
This commit is contained in:
parent
67c83823f2
commit
d1cf9cfeb6
7 changed files with 454 additions and 0 deletions
90
lib/ansible/module_utils/remote_management/ucs.py
Normal file
90
lib/ansible/module_utils/remote_management/ucs.py
Normal file
|
@ -0,0 +1,90 @@
|
|||
# This code is part of Ansible, but is an independent component.
|
||||
# This particular file snippet, and this file snippet only, is BSD licensed.
|
||||
# Modules you write using this snippet, which is embedded dynamically by Ansible
|
||||
# still belong to the author of the module, and may assign their own license
|
||||
# to the complete work.
|
||||
#
|
||||
# (c) 2016 Red Hat Inc.
|
||||
# (c) 2017 Cisco Systems Inc.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without modification,
|
||||
# are permitted provided that the following conditions are met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||
# this list of conditions and the following disclaimer in the documentation
|
||||
# and/or other materials provided with the distribution.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
|
||||
try:
|
||||
import ucsmsdk
|
||||
HAS_UCSMSDK = True
|
||||
except:
|
||||
HAS_UCSMSDK = False
|
||||
|
||||
ucs_argument_spec = dict(
|
||||
hostname=dict(type='str', required=True),
|
||||
username=dict(type='str', default='admin'),
|
||||
password=dict(type='str', required=True, no_log=True),
|
||||
port=dict(type='int', default=None),
|
||||
use_ssl=dict(type='bool', default=True),
|
||||
use_proxy=dict(type='bool', default=True),
|
||||
proxy=dict(type='str', default=None),
|
||||
)
|
||||
|
||||
|
||||
class UCSModule():
|
||||
|
||||
def __init__(self, module):
|
||||
self.module = module
|
||||
self.result = {}
|
||||
if not HAS_UCSMSDK:
|
||||
self.module.fail_json(msg='ucsmsdk is required for this module')
|
||||
self.login()
|
||||
|
||||
def __del__(self):
|
||||
self.logout()
|
||||
|
||||
def login(self):
|
||||
from ucsmsdk.ucshandle import UcsHandle
|
||||
|
||||
# use_proxy=yes (default) and proxy=None (default) should be using the system defined proxy
|
||||
# use_proxy=yes (default) and proxy=value should use the provided proxy
|
||||
# use_proxy=no (user) should not be using a proxy
|
||||
if self.module.params['use_proxy']:
|
||||
proxy = self.module.params['proxy']
|
||||
else:
|
||||
# force no proxy to be used. Note that proxy=None in UcsHandle will
|
||||
# use the system proxy so we must set to something else
|
||||
proxy = {}
|
||||
|
||||
try:
|
||||
handle = UcsHandle(ip=self.module.params['hostname'],
|
||||
username=self.module.params['username'],
|
||||
password=self.module.params['password'],
|
||||
port=self.module.params['port'],
|
||||
secure=self.module.params['use_ssl'],
|
||||
proxy=proxy)
|
||||
handle.login()
|
||||
except Exception as e:
|
||||
self.result['msg'] = str(e)
|
||||
self.module.fail_json(**self.result)
|
||||
self.login_handle = handle
|
||||
|
||||
def logout(self):
|
||||
if self.login_handle:
|
||||
self.login_handle.logout()
|
||||
return True
|
||||
return False
|
Loading…
Add table
Add a link
Reference in a new issue