Init: mediaserver

This commit is contained in:
2023-02-08 12:13:28 +01:00
parent 848bc9739c
commit f7c23d4ba9
31914 changed files with 6175775 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
plugins:
become: {}
cache: {}
callback: {}
cliconf: {}
connection: {}
httpapi: {}
inventory: {}
lookup: {}
module:
nso_action:
description: Executes Cisco NSO actions and verifies output.
name: nso_action
namespace: ''
version_added: null
nso_config:
description: Manage Cisco NSO configuration and service synchronization.
name: nso_config
namespace: ''
version_added: null
nso_query:
description: Query data from Cisco NSO.
name: nso_query
namespace: ''
version_added: null
nso_show:
description: Displays data from Cisco NSO.
name: nso_show
namespace: ''
version_added: null
nso_verify:
description: Verifies Cisco NSO configuration.
name: nso_verify
namespace: ''
version_added: null
netconf: {}
shell: {}
strategy: {}
vars: {}
version: 1.0.3

View File

@@ -0,0 +1,47 @@
ancestor: null
releases:
1.0.0:
changes:
release_summary: This is the first release of the ``cisco.nso`` collection.
The modules in this collection were migrated from Ansible Core with no changes
to their functionality.
fragments:
- 1.0.0.yml
release_date: '2020-10-26'
1.0.1:
changes:
minor_changes:
- Added See Also section to docs providing links to additional resources
- Added example for nso_action
- Corrected import paths in the test modules
- Defined data types for arguments in the docs where necessary to pass sanity
tests
- Existing nso_config L3VPN example replaced with new examples due to existing
example reliance on non-default l3vpn module
- Modified nso_verify module example
- Updated documentation with a See Also section providing links to NSO resources
- Updated examples for nso_show
- Updated examples in the documentation to align with the NSO DevNet Sandbox
- Verified all sanity and unit tests passing
fragments:
- 1.0.1.yml
release_date: '2020-10-30'
1.0.2:
changes:
minor_changes:
- add GitHub Action to the repo for automated sanity and unit tests
- minor fixes to prepare for inclusion in Ansible 2.10
fragments:
- 1.0.2.yml
release_date: '2020-12-02'
1.0.3:
changes:
minor_changes:
- nso_action can now handle YANG model choices as input parameters (https://github.com/CiscoDevNet/ansible-nso/issues/1)
- nso_config now supports setting commit flags such as "no-networking", "commit-queue",
etc. (https://github.com/CiscoDevNet/ansible-nso/issues/2)
- nso_config will now return a commit_results dictionary containing the results
such as commit-queue-id, rollback-id, etc. (https://github.com/CiscoDevNet/ansible-nso/issues/3)
fragments:
- 1.0.3.yml
release_date: '2021-01-27'

View File

@@ -0,0 +1,32 @@
changelog_filename_template: ../CHANGELOG.rst
changelog_filename_version_depth: 0
changes_file: changelog.yaml
changes_format: combined
ignore_other_fragment_extensions: true
keep_fragments: true
mention_ancestor: true
new_plugins_after_name: removed_features
notesdir: fragments
prelude_section_name: release_summary
prelude_section_title: Release Summary
sanitize_changelog: true
sections:
- - major_changes
- Major Changes
- - minor_changes
- Minor Changes
- - breaking_changes
- Breaking Changes / Porting Guide
- - deprecated_features
- Deprecated Features
- - removed_features
- Removed Features (previously deprecated)
- - security_fixes
- Security Fixes
- - bugfixes
- Bugfixes
- - known_issues
- Known Issues
title: Cisco NSO Ansible Collection
trivial_section_name: trivial
use_fqcn: true

View File

@@ -0,0 +1,11 @@
minor_changes:
- Updated examples in the documentation to align with the NSO DevNet Sandbox
- Added See Also section to docs providing links to additional resources
- Modified nso_verify module example
- Existing nso_config L3VPN example replaced with new examples due to existing example reliance on non-default l3vpn module
- Updated examples for nso_show
- Added example for nso_action
- Updated documentation with a See Also section providing links to NSO resources
- Corrected import paths in the test modules
- Defined data types for arguments in the docs where necessary to pass sanity tests
- Verified all sanity and unit tests passing

View File

@@ -0,0 +1,3 @@
minor_changes:
- minor fixes to prepare for inclusion in Ansible 2.10
- add GitHub Action to the repo for automated sanity and unit tests

View File

@@ -0,0 +1,5 @@
minor_changes:
- nso_action can now handle YANG model choices as input parameters (https://github.com/CiscoDevNet/ansible-nso/issues/1)
- nso_config now supports setting commit flags such as "no-networking", "commit-queue", etc. (https://github.com/CiscoDevNet/ansible-nso/issues/2)
- nso_config will now return a commit_results dictionary containing the results such as commit-queue-id, rollback-id, etc. (https://github.com/CiscoDevNet/ansible-nso/issues/3)