mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Removes the f5-sdk from bigip_config (#48456)
This commit is contained in:
parent
ec2933e20b
commit
e6fad87e20
2 changed files with 154 additions and 69 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 F5 Networks Inc.
|
# Copyright: (c) 2017, F5 Networks Inc.
|
||||||
# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
@ -68,29 +68,29 @@ EXAMPLES = r'''
|
||||||
- name: Save the running configuration of the BIG-IP
|
- name: Save the running configuration of the BIG-IP
|
||||||
bigip_config:
|
bigip_config:
|
||||||
save: yes
|
save: yes
|
||||||
|
provider:
|
||||||
server: lb.mydomain.com
|
server: lb.mydomain.com
|
||||||
password: secret
|
password: secret
|
||||||
user: admin
|
user: admin
|
||||||
validate_certs: no
|
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Reset the BIG-IP configuration, for example, to RMA the device
|
- name: Reset the BIG-IP configuration, for example, to RMA the device
|
||||||
bigip_config:
|
bigip_config:
|
||||||
reset: yes
|
reset: yes
|
||||||
save: yes
|
save: yes
|
||||||
|
provider:
|
||||||
server: lb.mydomain.com
|
server: lb.mydomain.com
|
||||||
password: secret
|
password: secret
|
||||||
user: admin
|
user: admin
|
||||||
validate_certs: no
|
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Load an SCF configuration
|
- name: Load an SCF configuration
|
||||||
bigip_config:
|
bigip_config:
|
||||||
merge_content: "{{ lookup('file', '/path/to/config.scf') }}"
|
merge_content: "{{ lookup('file', '/path/to/config.scf') }}"
|
||||||
|
provider:
|
||||||
server: lb.mydomain.com
|
server: lb.mydomain.com
|
||||||
password: secret
|
password: secret
|
||||||
user: admin
|
user: admin
|
||||||
validate_certs: no
|
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -107,38 +107,36 @@ stdout_lines:
|
||||||
sample: [['...', '...'], ['...'], ['...']]
|
sample: [['...', '...'], ['...'], ['...']]
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
try:
|
||||||
|
from StringIO import StringIO
|
||||||
|
except ImportError:
|
||||||
|
from io import StringIO
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from library.module_utils.network.f5.bigip import HAS_F5SDK
|
from library.module_utils.network.f5.bigip import F5RestClient
|
||||||
from library.module_utils.network.f5.bigip import F5Client
|
|
||||||
from library.module_utils.network.f5.common import F5ModuleError
|
from library.module_utils.network.f5.common import F5ModuleError
|
||||||
from library.module_utils.network.f5.common import AnsibleF5Parameters
|
from library.module_utils.network.f5.common import AnsibleF5Parameters
|
||||||
from library.module_utils.network.f5.common import cleanup_tokens
|
from library.module_utils.network.f5.common import cleanup_tokens
|
||||||
|
from library.module_utils.network.f5.common import fq_name
|
||||||
from library.module_utils.network.f5.common import f5_argument_spec
|
from library.module_utils.network.f5.common import f5_argument_spec
|
||||||
try:
|
from library.module_utils.network.f5.common import exit_json
|
||||||
from library.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
from library.module_utils.network.f5.common import fail_json
|
||||||
|
from library.module_utils.network.f5.icontrol import upload_file
|
||||||
except ImportError:
|
except ImportError:
|
||||||
HAS_F5SDK = False
|
from ansible.module_utils.network.f5.bigip import F5RestClient
|
||||||
except ImportError:
|
|
||||||
from ansible.module_utils.network.f5.bigip import HAS_F5SDK
|
|
||||||
from ansible.module_utils.network.f5.bigip import F5Client
|
|
||||||
from ansible.module_utils.network.f5.common import F5ModuleError
|
from ansible.module_utils.network.f5.common import F5ModuleError
|
||||||
from ansible.module_utils.network.f5.common import AnsibleF5Parameters
|
from ansible.module_utils.network.f5.common import AnsibleF5Parameters
|
||||||
from ansible.module_utils.network.f5.common import cleanup_tokens
|
from ansible.module_utils.network.f5.common import cleanup_tokens
|
||||||
|
from ansible.module_utils.network.f5.common import fq_name
|
||||||
from ansible.module_utils.network.f5.common import f5_argument_spec
|
from ansible.module_utils.network.f5.common import f5_argument_spec
|
||||||
try:
|
from ansible.module_utils.network.f5.common import exit_json
|
||||||
from ansible.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
from ansible.module_utils.network.f5.common import fail_json
|
||||||
except ImportError:
|
from ansible.module_utils.network.f5.icontrol import upload_file
|
||||||
HAS_F5SDK = False
|
|
||||||
|
|
||||||
try:
|
|
||||||
from StringIO import StringIO
|
|
||||||
except ImportError:
|
|
||||||
from io import StringIO
|
|
||||||
|
|
||||||
|
|
||||||
class Parameters(AnsibleF5Parameters):
|
class Parameters(AnsibleF5Parameters):
|
||||||
|
@ -177,10 +175,8 @@ class ModuleManager(object):
|
||||||
|
|
||||||
def exec_module(self):
|
def exec_module(self):
|
||||||
result = {}
|
result = {}
|
||||||
try:
|
|
||||||
changed = self.execute()
|
changed = self.execute()
|
||||||
except iControlUnexpectedHTTPError as e:
|
|
||||||
raise F5ModuleError(str(e))
|
|
||||||
|
|
||||||
result.update(**self.changes.to_return())
|
result.update(**self.changes.to_return())
|
||||||
result.update(dict(changed=changed))
|
result.update(dict(changed=changed))
|
||||||
|
@ -231,13 +227,29 @@ class ModuleManager(object):
|
||||||
|
|
||||||
def reset_device(self):
|
def reset_device(self):
|
||||||
command = 'tmsh load sys config default'
|
command = 'tmsh load sys config default'
|
||||||
output = self.client.api.tm.util.bash.exec_cmd(
|
uri = "https://{0}:{1}/mgmt/tm/util/bash".format(
|
||||||
'run',
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port'],
|
||||||
|
)
|
||||||
|
args = dict(
|
||||||
|
command='run',
|
||||||
utilCmdArgs='-c "{0}"'.format(command)
|
utilCmdArgs='-c "{0}"'.format(command)
|
||||||
)
|
)
|
||||||
if hasattr(output, 'commandResult'):
|
resp = self.client.api.post(uri, json=args)
|
||||||
return str(output.commandResult)
|
|
||||||
return None
|
try:
|
||||||
|
response = resp.json()
|
||||||
|
except ValueError as ex:
|
||||||
|
raise F5ModuleError(str(ex))
|
||||||
|
|
||||||
|
if 'code' in response and response['code'] == 400:
|
||||||
|
if 'message' in response:
|
||||||
|
raise F5ModuleError(response['message'])
|
||||||
|
else:
|
||||||
|
raise F5ModuleError(resp.content)
|
||||||
|
|
||||||
|
if 'commandResult' in response:
|
||||||
|
return str(response['commandResult'])
|
||||||
|
|
||||||
def merge(self, verify=True):
|
def merge(self, verify=True):
|
||||||
temp_name = next(tempfile._get_candidate_names())
|
temp_name = next(tempfile._get_candidate_names())
|
||||||
|
@ -256,40 +268,94 @@ class ModuleManager(object):
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def merge_on_device(self, remote_path, verify=True):
|
def merge_on_device(self, remote_path, verify=True):
|
||||||
result = None
|
|
||||||
|
|
||||||
command = 'tmsh load sys config file {0} merge'.format(
|
command = 'tmsh load sys config file {0} merge'.format(
|
||||||
remote_path
|
remote_path
|
||||||
)
|
)
|
||||||
if verify:
|
if verify:
|
||||||
command += ' verify'
|
command += ' verify'
|
||||||
|
|
||||||
output = self.client.api.tm.util.bash.exec_cmd(
|
uri = "https://{0}:{1}/mgmt/tm/util/bash".format(
|
||||||
'run',
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port'],
|
||||||
|
)
|
||||||
|
args = dict(
|
||||||
|
command='run',
|
||||||
utilCmdArgs='-c "{0}"'.format(command)
|
utilCmdArgs='-c "{0}"'.format(command)
|
||||||
)
|
)
|
||||||
if hasattr(output, 'commandResult'):
|
resp = self.client.api.post(uri, json=args)
|
||||||
result = str(output.commandResult)
|
|
||||||
return result
|
try:
|
||||||
|
response = resp.json()
|
||||||
|
except ValueError as ex:
|
||||||
|
raise F5ModuleError(str(ex))
|
||||||
|
|
||||||
|
if 'code' in response and response['code'] == 400:
|
||||||
|
if 'message' in response:
|
||||||
|
raise F5ModuleError(response['message'])
|
||||||
|
else:
|
||||||
|
raise F5ModuleError(resp.content)
|
||||||
|
|
||||||
|
if 'commandResult' in response:
|
||||||
|
return str(response['commandResult'])
|
||||||
|
|
||||||
def remove_temporary_file(self, remote_path):
|
def remove_temporary_file(self, remote_path):
|
||||||
self.client.api.tm.util.unix_rm.exec_cmd(
|
uri = "https://{0}:{1}/mgmt/tm/util/unix-rm".format(
|
||||||
'run',
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port'],
|
||||||
|
)
|
||||||
|
args = dict(
|
||||||
|
command='run',
|
||||||
utilCmdArgs=remote_path
|
utilCmdArgs=remote_path
|
||||||
)
|
)
|
||||||
|
resp = self.client.api.post(uri, json=args)
|
||||||
|
|
||||||
|
try:
|
||||||
|
response = resp.json()
|
||||||
|
except ValueError as ex:
|
||||||
|
raise F5ModuleError(str(ex))
|
||||||
|
|
||||||
|
if 'code' in response and response['code'] == 400:
|
||||||
|
if 'message' in response:
|
||||||
|
raise F5ModuleError(response['message'])
|
||||||
|
else:
|
||||||
|
raise F5ModuleError(resp.content)
|
||||||
|
|
||||||
def move_on_device(self, remote_path):
|
def move_on_device(self, remote_path):
|
||||||
self.client.api.tm.util.unix_mv.exec_cmd(
|
uri = "https://{0}:{1}/mgmt/tm/util/unix-mv".format(
|
||||||
'run',
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port'],
|
||||||
|
)
|
||||||
|
args = dict(
|
||||||
|
command='run',
|
||||||
utilCmdArgs='{0} /tmp/{1}'.format(
|
utilCmdArgs='{0} /tmp/{1}'.format(
|
||||||
remote_path, os.path.basename(remote_path)
|
remote_path, os.path.basename(remote_path)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
resp = self.client.api.post(uri, json=args)
|
||||||
|
|
||||||
|
try:
|
||||||
|
response = resp.json()
|
||||||
|
except ValueError as ex:
|
||||||
|
raise F5ModuleError(str(ex))
|
||||||
|
|
||||||
|
if 'code' in response and response['code'] == 400:
|
||||||
|
if 'message' in response:
|
||||||
|
raise F5ModuleError(response['message'])
|
||||||
|
else:
|
||||||
|
raise F5ModuleError(resp.content)
|
||||||
|
|
||||||
def upload_to_device(self, temp_name):
|
def upload_to_device(self, temp_name):
|
||||||
template = StringIO(self.want.merge_content)
|
template = StringIO(self.want.merge_content)
|
||||||
upload = self.client.api.shared.file_transfer.uploads
|
url = 'https://{0}:{1}/mgmt/shared/file-transfer/uploads'.format(
|
||||||
upload.upload_stringio(template, temp_name)
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port']
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
upload_file(self.client, url, template, temp_name)
|
||||||
|
except F5ModuleError:
|
||||||
|
raise F5ModuleError(
|
||||||
|
"Failed to upload the file."
|
||||||
|
)
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
if self.module.check_mode:
|
if self.module.check_mode:
|
||||||
|
@ -297,15 +363,30 @@ class ModuleManager(object):
|
||||||
return self.save_on_device()
|
return self.save_on_device()
|
||||||
|
|
||||||
def save_on_device(self):
|
def save_on_device(self):
|
||||||
result = None
|
|
||||||
command = 'tmsh save sys config'
|
command = 'tmsh save sys config'
|
||||||
output = self.client.api.tm.util.bash.exec_cmd(
|
uri = "https://{0}:{1}/mgmt/tm/util/bash".format(
|
||||||
'run',
|
self.client.provider['server'],
|
||||||
|
self.client.provider['server_port'],
|
||||||
|
)
|
||||||
|
args = dict(
|
||||||
|
command='run',
|
||||||
utilCmdArgs='-c "{0}"'.format(command)
|
utilCmdArgs='-c "{0}"'.format(command)
|
||||||
)
|
)
|
||||||
if hasattr(output, 'commandResult'):
|
resp = self.client.api.post(uri, json=args)
|
||||||
result = str(output.commandResult)
|
|
||||||
return result
|
try:
|
||||||
|
response = resp.json()
|
||||||
|
except ValueError as ex:
|
||||||
|
raise F5ModuleError(str(ex))
|
||||||
|
|
||||||
|
if 'code' in response and response['code'] == 400:
|
||||||
|
if 'message' in response:
|
||||||
|
raise F5ModuleError(response['message'])
|
||||||
|
else:
|
||||||
|
raise F5ModuleError(resp.content)
|
||||||
|
|
||||||
|
if 'commandResult' in response:
|
||||||
|
return str(response['commandResult'])
|
||||||
|
|
||||||
|
|
||||||
class ArgumentSpec(object):
|
class ArgumentSpec(object):
|
||||||
|
@ -338,11 +419,10 @@ def main():
|
||||||
argument_spec=spec.argument_spec,
|
argument_spec=spec.argument_spec,
|
||||||
supports_check_mode=spec.supports_check_mode
|
supports_check_mode=spec.supports_check_mode
|
||||||
)
|
)
|
||||||
if not HAS_F5SDK:
|
|
||||||
module.fail_json(msg="The python f5-sdk module is required")
|
client = F5RestClient(**module.params)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
client = F5Client(**module.params)
|
|
||||||
mm = ModuleManager(module=module, client=client)
|
mm = ModuleManager(module=module, client=client)
|
||||||
results = mm.exec_module()
|
results = mm.exec_module()
|
||||||
cleanup_tokens(client)
|
cleanup_tokens(client)
|
||||||
|
|
|
@ -14,25 +14,30 @@ from nose.plugins.skip import SkipTest
|
||||||
if sys.version_info < (2, 7):
|
if sys.version_info < (2, 7):
|
||||||
raise SkipTest("F5 Ansible modules require Python >= 2.7")
|
raise SkipTest("F5 Ansible modules require Python >= 2.7")
|
||||||
|
|
||||||
from units.compat import unittest
|
|
||||||
from units.compat.mock import Mock
|
|
||||||
from units.compat.mock import patch
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from library.modules.bigip_config import Parameters
|
from library.modules.bigip_config import Parameters
|
||||||
from library.modules.bigip_config import ModuleManager
|
from library.modules.bigip_config import ModuleManager
|
||||||
from library.modules.bigip_config import ArgumentSpec
|
from library.modules.bigip_config import ArgumentSpec
|
||||||
from library.module_utils.network.f5.common import F5ModuleError
|
|
||||||
from library.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
# In Ansible 2.8, Ansible changed import paths.
|
||||||
from test.unit.modules.utils import set_module_args
|
from test.units.compat import unittest
|
||||||
|
from test.units.compat.mock import Mock
|
||||||
|
from test.units.compat.mock import patch
|
||||||
|
|
||||||
|
from test.units.modules.utils import set_module_args
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ansible.modules.network.f5.bigip_config import Parameters
|
from ansible.modules.network.f5.bigip_config import Parameters
|
||||||
from ansible.modules.network.f5.bigip_config import ModuleManager
|
from ansible.modules.network.f5.bigip_config import ModuleManager
|
||||||
from ansible.modules.network.f5.bigip_config import ArgumentSpec
|
from ansible.modules.network.f5.bigip_config import ArgumentSpec
|
||||||
from ansible.module_utils.network.f5.common import F5ModuleError
|
|
||||||
from ansible.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
# Ansible 2.8 imports
|
||||||
|
from units.compat import unittest
|
||||||
|
from units.compat.mock import Mock
|
||||||
|
from units.compat.mock import patch
|
||||||
|
|
||||||
from units.modules.utils import set_module_args
|
from units.modules.utils import set_module_args
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("F5 Ansible modules require the f5-sdk Python library")
|
raise SkipTest("F5 Ansible modules require the f5-sdk Python library")
|
||||||
|
|
Loading…
Reference in a new issue