-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ansible-collections:main' into feature/Add-OG-service-s…
…upport
- Loading branch information
Showing
44 changed files
with
14,248 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Integration | ||
on: | ||
pull_request_target: | ||
branches: [main] | ||
types: | ||
- labeled | ||
- opened | ||
- reopened | ||
- synchronize | ||
paths: | ||
- "plugins/**" | ||
- "tests/integration/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
safe-to-test: | ||
if: >- | ||
github.event.label.name == 'safe to test' || | ||
github.event.action != 'labeled' | ||
uses: ansible-network/github_actions/.github/workflows/safe-to-test.yml@main | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
integration: | ||
uses: ansible/ansible-content-actions/.github/workflows/network_integration.yaml@main | ||
needs: | ||
- safe-to-test | ||
with: | ||
lab_title: cisco_ios | ||
network_os: cisco.ios.ios | ||
pytest_addopts: "--color=yes -n 2 --log-level WARNING -vvv" | ||
collection_pre_install: >- | ||
git+https://github.com/ansible-collections/ansible.utils.git | ||
git+https://github.com/ansible-collections/ansible.netcommon.git | ||
secrets: | ||
cml_ssh_password: ${{ secrets.CML_SSH_PASSWORD }} | ||
virl_host: ${{ secrets.VIRL_HOST }} | ||
virl_password: ${{ secrets.VIRL_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
minor_changes: | ||
- Adds a new module `ios_vrf_address_family` to manage VRFs address families on Cisco IOS devices. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
bugfixes: | ||
- Fixes an issue with facts gathering failing when an sub interface is in a deleted state. |
6 changes: 6 additions & 0 deletions
6
changelogs/fragments/fix_purge_and_overridden_operations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
bugfixes: | ||
- Fix purged state operation to enable users to completely remove VLAN configurations. | ||
- Fix overridden state operations to ensure excluded VLANs in the provided configuration are removed, thus overriding the VLAN configuration. | ||
- Improve documentation to provide clarity on the "shutdown" variable. | ||
- Improve unit tests to align with the changes made. |
Oops, something went wrong.