Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #254

Merged
merged 24 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e23c87c
[FIX] added check for list element match. (#239)
JchhatbarInfoblox Jul 12, 2024
2f75ead
[FIX] NPA-73, Re-execution showing change for each execution. (#240)
JkhatriInfobox Jul 12, 2024
d0dd285
[FIX] NPA-77, Network container update operation. (#241)
JkhatriInfobox Jul 16, 2024
421e971
- added network_view in get object search. (#242)
JchhatbarInfoblox Jul 17, 2024
564a2e9
Ansible lint fix (#238)
JchhatbarInfoblox Jul 24, 2024
73f8204
[NPA-83] Fixed DHCP options for IPv4/v6 network container. (#243)
JchhatbarInfoblox Jul 25, 2024
f44a14c
- Added dhcp options supports for ipv4 and ipv6 network container. (#…
JchhatbarInfoblox Aug 8, 2024
4189c09
- fixed Re-execution of IPv4/v6 network playbook shows 'changed' stat…
JchhatbarInfoblox Aug 16, 2024
55ac1df
- [NPA-113] Unable to remove dhcp options from DHCP Range using ansib…
JchhatbarInfoblox Aug 19, 2024
fae3317
[ADD]Integration and Unit test cases for extensible attribute. (#246)
JkhatriInfobox Aug 29, 2024
1485e91
- [NPA-125] unable to configure dhcp options with combination of 'num…
JchhatbarInfoblox Aug 29, 2024
a5bdce0
[FIX] added check for list element match. (#239)
JchhatbarInfoblox Jul 12, 2024
b023e53
[FIX] NPA-73, Re-execution showing change for each execution. (#240)
JkhatriInfobox Jul 12, 2024
79e8b01
[FIX] NPA-77, Network container update operation. (#241)
JkhatriInfobox Jul 16, 2024
4d7039a
- added network_view in get object search. (#242)
JchhatbarInfoblox Jul 17, 2024
36804f9
Ansible lint fix (#238)
JchhatbarInfoblox Jul 24, 2024
d847cce
[NPA-83] Fixed DHCP options for IPv4/v6 network container. (#243)
JchhatbarInfoblox Jul 25, 2024
7810a5e
- Added dhcp options supports for ipv4 and ipv6 network container. (#…
JchhatbarInfoblox Aug 8, 2024
f06b4f7
- fixed Re-execution of IPv4/v6 network playbook shows 'changed' stat…
JchhatbarInfoblox Aug 16, 2024
f82b939
- [NPA-113] Unable to remove dhcp options from DHCP Range using ansib…
JchhatbarInfoblox Aug 19, 2024
41836fa
[ADD]Integration and Unit test cases for extensible attribute. (#246)
JkhatriInfobox Aug 29, 2024
009ffbf
- [NPA-125] unable to configure dhcp options with combination of 'num…
JchhatbarInfoblox Aug 29, 2024
e2ba2d3
Merge branch 'develop' of github.com:infobloxopen/infoblox-ansible in…
JkhatriInfobox Sep 3, 2024
1807d56
[IMP] Updated depricated artifact v1 to v4
JkhatriInfobox Sep 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
python-version: '3.11'

- name: Install ansible (${{ matrix.ansible-version }})
run: pip install pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz --disable-pip-version-check
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz --disable-pip-version-check

- name: Build a collection tarball
run: ansible-galaxy collection build --output-path "${GITHUB_WORKSPACE}/.cache/collection-tarballs"

- name: Store migrated collection artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: collection
path: .cache/collection-tarballs
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz --disable-pip-version-check

- name: Download migrated collection artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: collection
path: .cache/collection-tarballs
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Generate coverage report
run: |
if [ "${{ matrix.ansible-version }}" == "devel" ]; then
pip install coverage==7.5.3;
pip install coverage==7.6.1;
elif [ "${{ matrix.ansible-version }}" == "stable-2.15" ]; then
pip install coverage==6.5.0;
fi
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz --disable-pip-version-check

- name: Download migrated collection artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: collection
path: .cache/collection-tarball
Expand All @@ -152,6 +152,7 @@ jobs:

- name: Setup Integration test Pre-requisites
run: |
sudo apt-get update
sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
pip install -r /home/runner/.ansible/collections/ansible_collections/infoblox/nios_modules/tests/requirements.txt

Expand All @@ -161,7 +162,7 @@ jobs:
echo $ANSIBLE_NIOSSIM_CONTAINER
ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python-version }} --docker --coverage
env:
ANSIBLE_NIOSSIM_CONTAINER: quay.io/ansible/nios-test-container:4.0.0
ANSIBLE_NIOSSIM_CONTAINER: quay.io/ansible/nios-test-container:5.0.0
working-directory: /home/runner/.ansible/collections/ansible_collections/infoblox/nios_modules/

# ansible-test support producing code coverage date
Expand Down Expand Up @@ -200,7 +201,7 @@ jobs:
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz --disable-pip-version-check

- name: Download migrated collection artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: collection
path: .cache/collection-tarballs
Expand Down
55 changes: 28 additions & 27 deletions changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
plugins:
become: {}
cache: {}
Expand Down Expand Up @@ -27,137 +28,137 @@ plugins:
nios_a_record:
description: Configure Infoblox NIOS A records
name: nios_a_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_aaaa_record:
description: Configure Infoblox NIOS AAAA records
name: nios_aaaa_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_cname_record:
description: Configure Infoblox NIOS CNAME records
name: nios_cname_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_dns_view:
description: Configure Infoblox NIOS DNS views
name: nios_dns_view
namespace: ''
namespace: ""
version_added: 1.0.0
nios_dtc_lbdn:
description: Configure Infoblox NIOS DTC LBDN
name: nios_dtc_lbdn
namespace: ''
namespace: ""
version_added: 1.1.0
nios_dtc_pool:
description: Configure Infoblox NIOS DTC Pool
name: nios_dtc_pool
namespace: ''
namespace: ""
version_added: 1.1.0
nios_dtc_server:
description: Configure Infoblox NIOS DTC Server
name: nios_dtc_server
namespace: ''
namespace: ""
version_added: 1.1.0
nios_dtc_monitor_http:
description: Configure Infoblox NIOS DTC HTTP monitor
name: nios_dtc_monitor_http
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_monitor_tcp:
description: Configure Infoblox NIOS DTC TCP monitor
name: nios_dtc_monitor_tcp
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_monitor_icmp:
description: Configure Infoblox NIOS DTC ICMP monitor
name: nios_dtc_monitor_icmp
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_monitor_pdp:
description: Configure Infoblox NIOS DTC PDP monitor
name: nios_dtc_monitor_pdp
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_monitor_sip:
description: Configure Infoblox NIOS DTC SIP monitor
name: nios_dtc_monitor_sip
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_monitor_snmp:
description: Configure Infoblox NIOS DTC SNMP monitor
name: nios_dtc_monitor_snmp
namespace: ''
namespace: ""
version_added: 1.6.0
nios_dtc_topology:
description: Configure Infoblox NIOS DTC Topology
name: nios_dtc_topology
namespace: ''
namespace: ""
version_added: 1.6.0
nios_fixed_address:
description: Configure Infoblox NIOS DHCP Fixed Address
name: nios_fixed_address
namespace: ''
namespace: ""
version_added: 1.0.0
nios_host_record:
description: Configure Infoblox NIOS host records
name: nios_host_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_member:
description: Configure Infoblox NIOS members
name: nios_member
namespace: ''
namespace: ""
version_added: 1.0.0
nios_mx_record:
description: Configure Infoblox NIOS MX records
name: nios_mx_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_naptr_record:
description: Configure Infoblox NIOS NAPTR records
name: nios_naptr_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_network:
description: Configure Infoblox NIOS network object
name: nios_network
namespace: ''
namespace: ""
version_added: 1.0.0
nios_network_view:
description: Configure Infoblox NIOS network views
name: nios_network_view
namespace: ''
namespace: ""
version_added: 1.0.0
nios_nsgroup:
description: Configure InfoBlox DNS Nameserver Groups
name: nios_nsgroup
namespace: ''
namespace: ""
version_added: 1.0.0
nios_ptr_record:
description: Configure Infoblox NIOS PTR records
name: nios_ptr_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_restartservices:
description: Restart grid services.
name: nios_restartservices
namespace: ''
namespace: ""
version_added: 1.1.0
nios_srv_record:
description: Configure Infoblox NIOS SRV records
name: nios_srv_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_txt_record:
description: Configure Infoblox NIOS txt records
name: nios_txt_record
namespace: ''
namespace: ""
version_added: 1.0.0
nios_zone:
description: Configure Infoblox NIOS DNS zones
name: nios_zone
namespace: ''
namespace: ""
version_added: 1.0.0
netconf: {}
shell: {}
Expand Down
Loading
Loading