Tim Rupp
ad5fdf5eb7
Fixes for bigip_gtm_wide_ip ( #39931 )
...
Added the irules parameter. Misc corrections of invalid parameter
names and internal behaviors.
7 years ago
Tim Rupp
5f9b7046ed
Adds bigip management route module ( #39520 )
...
This module can be used for managing the management routes on a bigip
7 years ago
Tim Rupp
609b1827e1
Adds log publisher module for f5 ( #39518 )
...
This module can be used to manage log publishers on a bigip
7 years ago
Tim Rupp
c0cea32f61
Adds log destination module for f5 ( #39513 )
...
This module can be used to manage log destinations on a bigip
7 years ago
Tim Rupp
0cb11c61ac
Various f5 module fixes ( #39510 )
...
Mainly fixing coding conventions. Also, added ipv6 suppor to pool members
7 years ago
Tim Rupp
fb264281de
Adds various features and fixes ( #39271 )
...
* a refactor of pool member and node modules to be inline with current f5 conventions
* Added priority_group_activation to pools
* various other small convention fixes and bug fixes
7 years ago
Tim Rupp
9940b5db9c
Adds DNS profile module for BIGIP ( #39270 )
...
This module can be used for managing DNS profiles on a BIGIP
7 years ago
Tim Rupp
20d5b04ac4
Adds udp profile module for bigip ( #39269 )
...
This module can be used to manage UDP profiles on a bigip
7 years ago
Tim Rupp
434ad97c39
Adds tcp profile module for BIGIP ( #39268 )
...
This patch adds a module to support manipulation of TCP profiles
on a BIGIP
7 years ago
Tim Rupp
256b5535ec
Various fixes to F5 modules ( #39255 )
...
* Adds gnat provisioning to bigip_provision
* Adds special handling for AFM in bigip_provision
* Add device rebooting for provisioning as necessary
* Refactored route domain module to be inline with current f5 conventions
* Minor refactors across modules
7 years ago
Tim Rupp
fc753dd261
Adds the bigip_smtp module ( #39243 )
...
This module can be used to manage smtp settings on a bigip.
7 years ago
Tim Rupp
e82a8d177f
Adds module for bigip service policies ( #39240 )
...
This patch includes a module for managing bigip service policies.
7 years ago
Tim Rupp
ed05e46f5c
Adds bigip_snmp_community module ( #39212 )
...
This module can be used to manage snmp communities on a bigip
7 years ago
Tim Rupp
3227143dc8
Fixes coding conventions, adds a small feature ( #39211 )
...
Fixes some coding conventions and adds allowed_addresses to bigip_snmp_trap.
7 years ago
Tim Rupp
39e4754fc9
Fixes for convention incompatibilities ( #39209 )
...
Minor fixes for the f5 modules to use current conventions
7 years ago
Tim Rupp
37e114756d
Adds bigip_trunk ( #39208 )
...
This patch adds a new module for managing trunks on a bigip
7 years ago
Tim Rupp
3b11def7d0
Add timer policy module ( #39206 )
7 years ago
Tim Rupp
e254121729
Adds minor fixes and features to f5 modules ( #39202 )
...
* Add Mac_address parameter to bigip_traffic_group
* Fix docs
* Fix f5 conventions
7 years ago
Tim Rupp
19d229a8e0
Fixes F5 conventions and adds features ( #39189 )
...
This patch fixes a number of convention changes in F5 modules.
Additionally, it adds some features to bigip vlan and other modules
7 years ago
Tim Rupp
d38ae9b6c9
Adds the bigip_data_group module ( #39180 )
...
This module can be used to manipulate bigip data groups.
7 years ago
Tim Rupp
77fa41795e
Reduces the unit test time of select bigip modules ( #36256 )
...
The modules in this patch include waits that need to happen to ensure
something is correctly configured on a BIG-IP. These waits were
raised as an issue in a recent ansible-testing meeting.
This patch eliminates the waits by mocking time.sleep
7 years ago
Tim Rupp
bd09e67438
More bug fixes before 2.5 ( #35260 )
...
This patch includes more fixes for bugs that were identified in
the upcoming 2.5 release.
7 years ago
Tim Rupp
ad8ee4e60f
Removes a bogus key from fixtures ( #35236 )
7 years ago
Tim Rupp
bff862b05d
Fixes bigip_asm_policy ( #35154 )
...
This module had been unable to successfully create policies
on different partitions. This appears to be fixed now
7 years ago
Tim Rupp
ca8982f96c
Fixes some bugs and things ( #35122 )
...
Removes deprecations and fixes bugs.
7 years ago
Tim Rupp
90f0c411e4
Adds module for bigip_device_group_member ( #35121 )
...
Module allows for members to be managed in a device group
7 years ago
Tim Rupp
585d8cf4c7
Adds bigip_ucs_fetch module ( #35113 )
...
This module can be used to download UCS files from a BIG-IP
7 years ago
Tim Rupp
acb26758ef
Adds better cli detection for bigip_command ( #34975 )
...
The new detection includes things like provider spec. The action
plugin for bigip generally was changed, so this is a required change
7 years ago
Tim Rupp
944ae47701
Detects errors in bigip_config ( #34965 )
...
There are changes that the merge config can fail, but the module
will still report success. This adds a blob of code to start
collecting those failures and bubbling up a module failure
accordingly.
7 years ago
Tim Rupp
17d9ba304e
Adds module for bigip device group ( #34958 )
...
This module can be used to manage a device group on a bigip
7 years ago
Tim Rupp
9aba711519
Adds bigip_static_route module ( #34859 )
...
This module can be used to manage static routes on a BIG-IP
7 years ago
Tim Rupp
c548ab0f18
Refactors and deprecation removals ( #34830 )
...
This patch is primarily a refactor to make the validate-modules arg-spec
no longer generate a traceback. It additionally includes removal of deprecated
code in the virtual server module.
7 years ago
Tim Rupp
a10aee0fc3
Adds refactors for more f5 modules ( #34824 )
...
The main patch is to remove the traceback generating code. There are
other small fixes that were made in addition to doing that.
* Removed re-def of cleanup_tokens.
* Changed parameter args to be keywords.
* Changed imports to include new module_util locations.
* Imports also include developing (sideband) module_util locations.
* Changed to using F5Client and plain AnsibleModule to prevent tracebacks caused by missing libraries.
* Removed init and update methods from most Parameter classes (optimization) as its now included in module_utils.
* Changed module and module param references to take into account the new self.module arg.
* Minor bug fixes made during this refactor.
7 years ago
Tim Rupp
0e4e7de000
Various F5 related fixes for traceback raising ( #34820 )
...
The main purpose of this patch is to do the refactor that
supports replacing tracebacks with fail_json. Additionally, the
following was done.
* Removed re-def of cleanup_tokens.
* Changed parameter args to be keywords.
* Changed imports to include new module_util locations.
* Imports also include developing (sideband) module_util locations.
* Changed to using F5Client and plain AnsibleModule to prevent tracebacks caused by missing libraries.
* Removed init and update methods from most Parameter classes (optimization) as its now included in module_utils.
* Changed module and module param references to take into account the new self.module arg.
* Minor bug fixes made during this refactor.
7 years ago
Tim Rupp
eace686044
Various fixes and changes for F5 ( #34817 )
...
Primarily, this patch contains refactors to remove tracebacks that
are generated when libraries are missing. There is also,
* Removed re-def of cleanup_tokens.
* Changed parameter args to be keywords.
* Changed imports to include new module_util locations.
* Imports also include developing (sideband) module_util locations.
* Changed to using F5Client and plain AnsibleModule to prevent tracebacks caused by missing libraries.
* Removed init and update methods from most Parameter classes (optimization) as its now included in module_utils.
* Changed module and module param references to take into account the new self.module arg. Minor bug fixes made during this refactor.
7 years ago
Tim Rupp
44a5b3abb4
Various fixes ( #34815 )
...
This patch was primarily an effort to reduce traceback errors for
work that sivel was doing. Part of (and in some cases in addition to)
that, the following was done.
* Removed re-def of cleanup_tokens.
* Changed parameter args to be keywords.
* Changed imports to include new module_util locations.
* Imports also include developing (sideband) module_util locations.
* Changed to using F5Client and plain AnsibleModule to prevent tracebacks caused by missing libraries.
* Removed init and update methods from most Parameter classes (optimization) as its now included in module_utils.
* Changed module and module param references to take into account the new self.module arg.
* Minor bug fixes made during this refactor.
7 years ago
Tim Rupp
18d33eeb89
Adds the AFM address list module ( #34814 )
...
This module can be used to manage address lists on a BIG-IP running
AFM.
7 years ago
Tim Rupp
2916ff0a1a
Introduces numerous fixes for bigip command ( #34550 )
...
A bug in the parsing of single commands with commas
Token cleanup
Password argument now defaults to false
Addition of coding conventions from v3 conventions
7 years ago
Tim Rupp
f4a2b0b103
Adds the bigiq_regkey_license module ( #34543 )
...
This module can be used to add license offerings to a pool. This
is the second part required to license a remote device from a
BIG-IQ (the first being to create a pool with bigiq_regkey_pool)
7 years ago
Tim Rupp
8c07ebe860
Adds bigiq regkey pool module ( #34542 )
...
This module can be used to manage the containers of regkeys
that exist on a BIG-IQ
7 years ago
Tim Rupp
803e4124b6
Removes deprecated code from bigip_monitor_tcp ( #34520 )
...
* Removes deprecated code from bigip_monitor_tcp
The deprecated code was moved into its own modules. We let it lay
here for a release, and now I'm removing it.
* Fixing upstreaming tests
7 years ago
Tim Rupp
e9bb5da37e
Adds the bigip_gtm_server module ( #34513 )
...
This module can be used to create GTM servers (not to be confused with
GTM virtual servers) on a BIGIP. GTM servers are a component of the
datacenter, and GTM virtual servers are their members.
7 years ago
Tim Rupp
6c97c340ea
Various bigip_gtm_datacenter fixes ( #34440 )
...
Code refactor to use f5 coding conventions. Removed deprecated
"enabled/disabled" params (this is now a state). Adds token cleanup
for cases where many api calls are made.
7 years ago
Tim Rupp
bdafb42156
Refactors the bigip_sys_global module ( #34438 )
...
Changes include the current f5 coding standards and unit tests
for the module
7 years ago
Tim Rupp
9bd4070bdf
Adds bigip_traffic_group module ( #34436 )
...
This module can be used to create and remove traffic groups. Managing
members of the group is not yet supported.
7 years ago
Tim Rupp
c132b977e8
Refactors bigip_virtual_server ( #34412 )
...
This refactors the bigip_virtual_server module to address several issues and
missing features. Additionally it adds tests and updates the coding standards
to the recent version used by f5. Finally, it removes deprecated items that
were announced in 2.4
7 years ago
Tim Rupp
9e4aed15ff
Adds bigip_software_update module ( #34410 )
...
This module can be used to adjust the ways by which a bigip communicates
back to F5 to check for system updates.
7 years ago
Tim Rupp
75fbfb9e36
Fixes and additions to bigip_pool ( #34205 )
...
Removes deprecated host/port params. Adds metadata param. Adds new
classes to better support refactoring and maintenance.
7 years ago
Tim Rupp
22059cbe67
Adds bigip_device_httpd module ( #33924 )
...
this module can be used to adjust the details of the server that
hosts the BIG-IP web ui.
7 years ago
Tim Rupp
9a807e6316
Adds bigip_security_port_list module ( #33845 )
...
This module can be used to manage port lists in an AFM configuration.
7 years ago
Tim Rupp
cb026bb660
Adds bigip_profile_client_ssl module ( #33844 )
...
This module can be used to manage client ssl profiles on a BIG-IP
7 years ago
Tim Rupp
7b76124c07
Fixes for gtm wide ip ( #33725 )
...
Adds pools argument. Refactors code to support new conventions.
Adds more unit tests
7 years ago
Tim Rupp
18aca48075
Various errors and formatting fixes ( #33503 )
...
* Various errors and formatting fixes
Mostly formatting fixes and small changes to better support debugging
* Fixes upstream errors
7 years ago
Tim Rupp
9f544cf926
Adds traffic group and fixes ( #33502 )
...
Adds the traffic group param. Adds conventions for updated f5
standards
7 years ago
Tim Rupp
00bf4ee210
routedomain fixes ( #33501 )
...
* routedomain fixes
Adds partition. Adds name. Makes name and id mutually exclusive.
* Fixes upstream errors
7 years ago
Tim Rupp
dd94cc8229
Various bigip_selfip fixes ( #33500 )
...
* Various bigip_selfip fixes
Minor optimizations. Fixes address regex
* Fixing upstream errors
7 years ago
Tim Rupp
df86d8f39e
Fixes ordered dict import ( #33499 )
...
Make it try to fallback to a pypi package if its not found in what
ships with python
7 years ago
Tim Rupp
07c9c28a06
Fixes for unit tests ( #33498 )
...
upstream unit tests broke downstream code. this rectifies that.
7 years ago
Tim Rupp
da2e20ef45
Fixes various http monitor things ( #33497 )
...
Added token cleanup. Refactored a small amount of code. formatting
and cleanup of code.
7 years ago
Tim Rupp
798de98b0c
Adds hostname to remote-syslog ( #33496 )
...
* Adds hostname to remote-syslog
Previously, only an IP address wa allowed. This removes that restriction
* Fixes upstream errors
7 years ago
Tim Rupp
a4aa00f556
Various bigip_user fixes ( #33495 )
...
There was a bit of refactoring that happened for coding standards.
Additionally, a bug fix was made for changing the root password
7 years ago
Tim Rupp
bcda0db7db
Fixes tcp monitors ( #33494 )
...
* Fixes tcp monitors
Formatting fixes and a missing default parent. This patch fixes
that.
* Fixes upstream errors
7 years ago
Tim Rupp
212340bf0c
Fixes bug converning filenames with dots ( #33493 )
...
The name detminator was incorrect. This fixes it and fixes unit
tests related things that were broken downstream
7 years ago
Tim Rupp
1f1f1c9d04
Refactors bigip_node ( #33492 )
...
* Refactors bigip_node
Includes a number of fixes and enhancements in addition to refactoring
the code to be inline with f5 standards
* Fixes upstream errors
7 years ago
Tim Rupp
4f8f99479a
Various bigip policy fixes ( #33491 )
...
Test fixes, formatting, and added a difference checking method
7 years ago
Tim Rupp
008e23dcd1
Refactors bigip_sys_db ( #33490 )
...
Bringing it up to speed with the other f5 modules.
7 years ago
Tim Rupp
277d416b5b
Refactors bigip_vlan ( #33489 )
...
This patch adds tests and refactors the code to be inline with current
f5 coding standards
7 years ago
Tim Rupp
914829f56b
Adds bigip_monitor_snmp_dca module ( #33483 )
...
This module is a flavor of monitor for SNMP DCA's
7 years ago
Tim Rupp
a2f19fbded
Adds bigip_policy_rule module ( #33482 )
...
* Adds bigip_policy_rule module
This module is the second component of managing LTM policies on
BIG-IP. This module lets you manage the rules of a policy
* Fixing upstream errors
* Correcting YAML errors
7 years ago
Tim Rupp
abca68f5ac
Adds the bigip_monitor_udp module ( #33481 )
...
This module can be used to manage UDP monitors on a BIG-IP
7 years ago
Tim Rupp
e3419fce87
Fixes and features for bigip_provision ( #33480 )
...
* Fixes and features for bigip_provision
Adds support for dedicated modules. Fixes bug in minimum name.
Adds wrappers around checking for up-ness so that they will contribute
to the watch loop
* Fixes upstream errors
7 years ago
Tim Rupp
2b1f056881
Fixes bugs in iapp template ( #33478 )
...
Fixes upstream bugs that broke downstream. Also fixes a name
matching error in the iApp's name
7 years ago
Tim Rupp
f60b8a3abb
Fixes various things in bigip tests ( #33477 )
...
an upstream change was introduced that broke downstream code. This
path rectifies that error
7 years ago
Tim Rupp
1c373c112f
Minor fixes for gtm facts ( #33476 )
...
Removed unused code and fixed upstream changes that broke downstream
7 years ago
Tim Rupp
e1062d1a7b
Refactors the gtm datacenter module ( #33474 )
...
* Refactors the gtm datacenter module
This module needed to be inline with current f5 coding standards.
This fixes that
* Fixes upstream errors
7 years ago
Tim Rupp
76135a500e
Refactors bigip device sshd ( #33473 )
...
* Refactors bigip device sshd
Fixes coding conventions for currect f5 conventions
* Fixes upstream errors
7 years ago
Tim Rupp
a3b3dbe220
Refactors bigip_device_ntp ( #33472 )
...
* Refactors bigip_device_ntp
To be inline with current f5 conventions
* Fixed incorrect key
7 years ago
Tim Rupp
929a1df91d
Adds fixes to various bigip tests ( #33471 )
...
upstream changes broke downstream code. this rectifies that
7 years ago
Tim Rupp
f6be12b5d8
Adds various fixes for bigip_config tests ( #33470 )
...
There were upstream changes that were incompatible with the downstream
code. This fixes those.
7 years ago
Tim Rupp
5fa25a0288
Adds fixes to bigip_asm_policy ( #33440 )
...
Integrates some upstream changes that were made and fixes several
spacing and testing errors
7 years ago
Tim Rupp
c94d57311c
Adds bigip_vcmp_guest module ( #33024 )
...
This module can be used to manage guests on a vCMP provisioned BIG-IP.
vCMP is a hardware-only feature, therefore this module cannot be used
on the VE editions of BIG-IP.
7 years ago
Pilou
a5c9726502
Unit tests: share common code ( #31456 )
...
* move set_module_args to units.modules.utils
* unit tests: reuse set_module_args
* unit tests: mock exit/fail_json in module.utils.ModuleTestCase
* unit tests: use module.utils.ModuleTestCase
* unit tests: fix 'import shadowed by loop variable'
7 years ago
Tim Rupp
3f3c526026
Removes deprecated "append" param from snat pool ( #32953 )
...
This param was deprecated in 2.4 and slated for removal in 2.5. This
patch removes it.
7 years ago
Tim Rupp
0c1f493b6c
Adds module for managing bigip device connectivity ( #32950 )
...
This module is a critical part of the HA process for BIG-IPs.
7 years ago
Tim Rupp
2bf6ac6c78
Adds bigip_device_trust module ( #32608 )
...
This module can be used to manage trusts between two bigip devices.
7 years ago
Tim Rupp
06363f6ede
Removes bigip_snmp from skip file ( #32530 )
7 years ago
Tim Rupp
53940670fd
Removes bigip_qkview from skip file ( #32529 )
7 years ago
Tim Rupp
45787f6ef2
Removes bigip_provision from skip file ( #32525 )
7 years ago
Tim Rupp
ab71a9de14
Removes bigip_irule from the skip file ( #32509 )
7 years ago
Tim Rupp
6b6df43eae
Removes bigip_iapp_template from the skip file ( #32488 )
7 years ago
Tim Rupp
015baf5149
Removes bigip_iapp_service from skip list ( #32482 )
7 years ago
Tim Rupp
60281b85fe
Refactored bigip_device_dns ( #32483 )
...
Module was using old coding standards. This updates the module
7 years ago
Tim Rupp
cbc5c2d556
Removes bigip_hostname from skip file ( #32479 )
7 years ago
Tim Rupp
d5d4683047
Removes bigip_snmp_trap from skip file ( #32470 )
7 years ago
Tim Rupp
e3f1198a67
Removes bigip_ucs from skip file ( #32462 )
7 years ago
Tim Rupp
27188d46a9
Adds bigip_iapplx_package module ( #32456 )
...
This module can be used to manage the iAppLX packages you have
installed on a device. It can install and remove packages in
their RPM format.
7 years ago
Tim Rupp
c239749052
Removes bigip_user from skip file ( #32451 )
7 years ago
Tim Rupp
83674af284
Removes virtual_address from skip file ( #32425 )
7 years ago
Tim Rupp
fc4580b4cc
Removes bigip ssl certificate from skip file ( #32424 )
7 years ago
Tim Rupp
6193d5bc65
Removes gtm wide ip from skip file ( #32422 )
7 years ago
Tim Rupp
8868b5fa85
Removes gtm pool from skip file ( #32419 )
7 years ago
Tim Rupp
daaf8ca86c
Fixes skip imports for bigip_configsync_action module ( #32413 )
7 years ago
Tim Rupp
8f2b243a3e
Fixes bigip_config to remove from skip file ( #32409 )
7 years ago
Tim Rupp
8c5cd9c530
Removes bigip_command from the skip file ( #32407 )
...
Includes fixes and enhancements to make it unnecessary to include this
module in the skip file
7 years ago
Tim Rupp
8037eb7474
Various fixes for bigip_remote_syslog ( #32404 )
...
This patch addresses a number of issues, large and small, that were
identified by users in the downstream repo.
* formatting of some code
* specific option combinations leading to errors
* missing includes for unit tests
7 years ago
Tim Rupp
2a5f6c28cf
Adds bigip_asm_policy module ( #32281 )
...
This module can be used to import asm policies from file or existing
template. Supported file types are xml, compact xml, and binary
7 years ago
Tim Rupp
a16db95ddb
Adds the bigip_ssl_key module ( #32270 )
...
This module's purpose is to specifically manage the ssl keys. It
is essentially the key component of the bigip_ssl_certificate module.
The modules were separated and the key portion deprecated from
bigip_ssl_certificate in favor of this module.
7 years ago
Tim Rupp
cc4bbb2929
Various bigip_pool fixes ( #32161 )
...
* corrects copyrights and mocks in unit tests
* fixes module code to include code to cleanup tokens
7 years ago
Tim Rupp
965e4151df
Adds the bigip_policy module ( #31915 )
...
this module allows one to manage policies and re-order their
corresponding rules
7 years ago
Tim Rupp
8085c38e05
Refactors the bigip_gtm_facts module ( #31917 )
...
Includes pep fixes and inlining code with current conventions
7 years ago
Tim Rupp
f94d337ef6
Adds new module allowing you to wait for a bigip ( #31846 )
...
Module allows you to wait for a bigip device to be
"ready" for configuration. This module will wait for things like
the device coming online as well as the REST API and MCPD being
ready.
If all of the above is not online and ready, then no configuration
will be able to be made.
7 years ago
Tim Rupp
02cd881697
Refactors bigip_selfip ( #31732 )
...
In this refactor we moved to the most recent coding standards for
both F5 and Ansible. Many bugs were fixed and some features were
also added (such as ipv6 support).
7 years ago
Tim Rupp
0610f09dab
Adds various provision fixes ( #31731 )
...
* vcmp provisioning support
* documentation fixes
* fixes for python3 causing an exception
7 years ago
Tim Rupp
53445ded84
Fixes documentation related bugs ( #31730 )
...
New conventions for ansible warrant fixes to accomodate those
in bigip_partition.
This patch also includes an import fix that can raise an error when
Ansible unit tests run
7 years ago
Tim Rupp
a969a529ab
Fixes various gtm pool issues ( #31728 )
...
Various formatting related fixes. Also fixed an idempotency problem
with the 'disabled' state
7 years ago
Tim Rupp
ecee475a3a
This patch fixes a number of outstanding bugs and code convention problems. ( #31618 )
...
* documentation was not inline with other Ansible modules
* Python 3 specific imports were missing
* monitor_type is no longer required when creating a new pool; it is now the default.
* A new monitor_type choice of "single" was added for a more intuitive way to specify "a single monitor". It uses "and_list" underneath, but provides additional checks to ensure that you are specifying only a single monitor.
* host and port arguments have been deprecated for now. Please use bigip_pool_member instead.
* 'partition' field was missing from documentation.
* A note that "python 2.7 or greater is required" has been added for those who were not aware that this applies for ALL F5 modules.
* Unit tests were fixed to support the above module
7 years ago
Tim Rupp
381b18fd80
Adds a refactored bigip_monitor_http module. ( #30998 )
...
This patch refactors the bigip_monitor_http module to use REST
instead of SOAP. It additionally adds unit tests and current F5
code conventions.
Integration tests can be found here
* https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_monitor_http.yaml
* https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_monitor_http/tasks
7 years ago
James Mighion
50052b3d70
Adding a cli transport option for the bigip_command module. ( #30391 )
...
* Adding a cli transport option for the bigip_command module.
* Fixing keyerror when using other f5 modules. Adding version_added for new option in bigip_command.
* Removing local connection check because the F5 tasks can be delegated to any host that has the libraries for REST.
* Using the network_common load_provider.
* Adding unit test to cover cli transport and updating previous unit test to ensure cli was not called.
7 years ago
Tim Rupp
75c5d0fedc
Adds the bigip_remote_syslog module
...
This patchs add a remote-syslog module that can be used by people
to manage their (basic, not HSL) syslog configuration
7 years ago
Tim Rupp
3717ff64cf
Adds the bigip_monitor_https module ( #31205 )
...
This patch adds the https_monitor module which allows people
to create and manage HTTPS monitors.
7 years ago
Tim Rupp
0eb0d96286
Adds module which allows users to manage partitions on a BIG-IP ( #30577 )
7 years ago
Tim Rupp
74ace093b8
Renames the bigip_configsync_actions module ( #29747 )
...
Retains the old name by making a symlink. We can remove it in a later
release.
7 years ago
Frederic Lepied
65d093d9a7
Skip f5 tests if f5-sdk is not installed ( #27035 )
...
Fixes: bug #27034
Introduced by 278fa552f8
7 years ago
Tim Rupp
09e9b4b4ba
Adds refactored bigip_monitor_tcp ( #26842 )
...
This module needed to be refactored to use the REST API and
coding conventions for newer modules. This patch adds those changes.
This patch also deprecates params in favor of separate modules. These
deprecated params will be removed in 2.5.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_monitor_tcp.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_monitor_tcp/tasks
7 years ago
Tim Rupp
a236d249ae
Adds the bigip_configsync_actions module ( #26506 )
...
This module is required as part of HA configuration of a set of
BIG-IPs. It is used to initiate and way for configuration syncing
to happen.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_configsync_actions.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_configsync_actions/tasks
7 years ago
Tim Rupp
75e609c15e
adds the bigip_ucs module ( #26663 )
...
This module allows you to load existing UCS files onto a BIG-IP
system
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_ucs.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_ucs/tasks
7 years ago
Tim Rupp
72f41148a0
Adds tcp_echo module for bigip ( #26844 )
...
This patch is part a refactor of TCP monitors for BIG-IP. This module
may file in testing without the base tcp module merged because it makes
use of similar fixtures.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_monitor_tcp_echo.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_monitor_tcp_echo/tasks
7 years ago
Tim Rupp
278fa552f8
Adds half-open tcp monitor module ( #26920 )
...
This is necessary as a part of refactoring the tcp monitor module.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_monitor_tcp_half_open.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_monitor_tcp_half_open/tasks
7 years ago
Tim Rupp
37ca55bf71
Adds missing fields for iapp service ( #26507 )
...
The iApp service module worked fine previously, but this patch
adds enhancements to it to include more fields that can be
specified when creating iapp services.
7 years ago
Tim Rupp
e7402e3d5b
Support full path templates ( #26121 )
...
This patch allows the iapp service module to support full path
templates instead of only relative templates
7 years ago
Tim Rupp
04ac15f241
Adds bigip_qkview module ( #25980 )
...
This module can be used to generate qkviews on a bigip and
save them to a location on the ansible controller.
This module is primarily used for diagnostics.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_qkview.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_qkview/tasks
7 years ago
Tim Rupp
16bd93a14e
Refactors bigip ssl cert module ( #25882 )
...
Includes unit tests and a refactor of the module to make code
more easily supported. Also fixes an issue where the extension of
the cert name was not appended if not provided. This problem was
causing certs to not be editable in the UI. Also deprecates params.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_ssl_certificate.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_ssl_certificate/tasks
7 years ago
Tim Rupp
0854c0ed88
Adds refactored bigip_hostname ( #25841 )
...
This adds a refactored bigip_hostname with unit tests and code
conventions that are common across other modules.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_hostname.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_hostname/tasks
8 years ago
Tim Rupp
59d470ae84
Adds bigip_iapp_service module ( #25808 )
...
This module allows a user to manage the iApp services on a bigip
that they created using the bigip_iapp_template module.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_iapp_service.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_iapp_service/tasks
8 years ago
Tim Rupp
c51b73d800
Makes all unit tests look the same ( #25762 )
...
Just a little cleanup from an earlier patch that makes f5 unit
tests only run if the f5 sdk is installed
8 years ago
Brian Coca
342a85d33f
fixed again
8 years ago
Brian Coca
83703e3137
skip f5 tests when f5 lib not installed
8 years ago
Tim Rupp
8e3ef4b052
Adds virtual_address module ( #25728 )
...
This module lets users manage a number of different config options
for Virtual Addresses on a BIG-IP.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_virtual_address.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_virtual_address/tasks
8 years ago
Tim Rupp
b85785bf07
Refactors irule module to conform to recent standards ( #25709 )
...
Also includes unit tests for the code
8 years ago
Tim Rupp
ba12ce64b0
Adds the bigip_snmp module ( #25668 )
...
This patch adds a module for managing several snmp related settings
on a BIG-IP that are required when configuring the range of SNMP
settings on a device.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_snmp.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_snmp/tasks
8 years ago
Tim Rupp
478d364f4d
Adds bigip_iapp_template module ( #25630 )
...
This module can be used to upload and manage TCL iApps on a BIG-IP.
iApps can be added, removed and updated in place as needed. iApp
files should be provided to the module via Ansible lookups.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_iapp_template.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_iapp_template/tasks
8 years ago
Tim Rupp
0c68e200d5
Adds the bigip_provision module to Ansible ( #25558 )
...
This module allows an administrator to provision new module functionality
on a BIG-IP. BIG-IP modules provide enhanced ADC and security features that
are commonly used by customers such as GTM, ASM, and AFM.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_provision.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_provision/tasks
8 years ago
Tim Rupp
61684f7313
Updates gtm wide ip module to be feature complete ( #25502 )
...
This module is used to manage GTM wide ips on a bigip.
Previously, this module only included a small subset of functionality
primarily related to editing a wide ip that already existed. Additionally
it used the SOAP api for its communication. this patch completes the
feature set of wide ips and refactors the code to use the F5 python SDK
and the REST API.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_gtm_wide_ip.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_gtm_wide_ip/tasks
8 years ago
Brian Coca
745f72916f
bigip tests now skipped if missing lib
8 years ago
Tim Rupp
6f2c543a33
Updates and refactors the bigip pool module to use REST ( #25234 )
...
This patch updates the bigip_pool module to use F5's REST API
as well as includes unit tests.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_pool.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_pool/tasks
8 years ago
Tim Rupp
855fd98be6
Adds the bigip_config module to Ansible ( #25191 )
...
This patch adds the bigip_config module to Ansible to support
merging SCF files, saving running configs, resetting config
and validating SCF configs
8 years ago
Tim Rupp
0133a5a763
Adds the bigip_gtm_pool module ( #25275 )
...
This module is used to manage GTM(DNS) pools in a BIG-IP.
Unit tests are provided. Integration tests can be found here
https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_gtm_pool.yaml#L23
https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_gtm_pool/tasks
8 years ago
Tim Rupp
6ef022b034
Adds the bigip_snmp_trap module to Ansible ( #24848 )
...
This patch adds the bigip_snmp_trap module to Ansible to support managing
SNMP trap destinations on an F5 BIG-IP.
8 years ago
Tim Rupp
4fc40304d5
Adds the bigip_command module to Ansible ( #24850 )
...
This patch adds the bigip_command module to Ansible to support arbitrary
tmsh command to a F5 BIG-IP.
8 years ago
Tim Rupp
22e096f911
Changes skip test for bigip user ( #24799 )
...
All of the F5 Ansible modules will come to require the same major
dependencies over time. This mentions that.
8 years ago
Tim Rupp
c1397626fc
Adds the bigip_user module to Ansible ( #24753 )
...
The patch adds the bigip_user module to Ansible to support managing
users on an F5 BIG-IP.
Unit tests are provided. Integration tests can be found here
* https://github.com/F5Networks/f5-ansible/blob/devel/test/integration/bigip_user.yaml
* https://github.com/F5Networks/f5-ansible/tree/devel/test/integration/targets/bigip_user/tasks
8 years ago