Coder Social home page Coder Social logo

goneri / community.yang Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ansible-collections/community.yang

0.0 0.0 0.0 231 KB

Ansible Community Collection to support Yang in network devices.

License: GNU General Public License v3.0

Python 99.95% Jinja 0.05%

community.yang's Introduction

Ansible Collection - community.yang

This repo hosts the community.yang Ansible Collection.

The collection includes the community plugins to help the support Yang manily with network devices.

Ansible version compatibility

This collection has been tested against following Ansible versions: >=2.9.10.

Plugins and modules within a collection may be tested with only specific Ansible versions. A collection may contain metadata that identifies these versions. PEP440 is the schema used to describe the versions of Ansible.

Supported connections

The Community yang collection supports netconf connections.

Included content

Lookup plugins

Name Description
community.yang.json2xml Validates json configuration against yang data model and convert it to xml.
community.yang.spec This plugin reads the content of given yang document and generates json and xml configuration skeleton and a tree structure of yang document.
community.yang.xml2json Converts xml input to json structure output by mapping it against corresponding Yang model

Modules

Name Description
community.yang.configure Reads the input configuration in JSON format and pushes to the remote host over netconf
community.yang.fetch Fetch given yang model and it's dependencies
community.yang.generate_spec Generate JSON/XML schema and tree representation for given YANG model
community.yang.get Fetch the device configuration and render it in JSON format defined by RFC7951

Installation and Usage

Installing the Collection from Ansible Galaxy

Before using the Community Yang collection, you need to install it with the ansible-galaxy CLI:

ansible-galaxy collection install community.yang

You can also include it in a requirements.yml file and install it via ansible-galaxy collection install -r requirements.yml using the format:

---
collections:
  - name: community.yang

Platforms test against

1. Cisco IOSXR 6.1.3

Using modules from the yang Collection in your playbooks

It's preferable to use content in this collection using their Fully Qualified Collection Namespace (FQCN), for example community.yang.configure:

---
- hosts: iosxr
  gather_facts: false
  connection: ansible.netcommon.netconf

  tasks:
    - name: "Fetch given yang model and all the dependent models from remote host"
      community.yang.fetch:
        name: Cisco-IOS-XR-ifmgr-cfg

    - name: get interface configuration in json/xml format
      community.yang.get:
        filter: |
          <interface-configurations xmlns="http://cisco.com/ns/yang/Cisco-IOS-XR-ifmgr-cfg"><interface-configuration>
          </interface-configuration></interface-configurations>
        file: "./files/cisco/iosxr/*.yang"
        search_path: "./files/cisco/iosxr"
      register: result

    - name: Configure interface description providing json input file
      community.yang.configure:
        config: "{{ lookup('file', config_file) }}"
        file: "{{ yang_file }}"
        search_path: "{{ search_path }}"
      register: result

    - name: Configure interface description with json input
      community.yang.configure:
        config:
          {
              "Cisco-IOS-XR-ifmgr-cfg:interface-configurations": {
                  "interface-configuration": [
                      {
                          "active": "act",
                          "description": "test for ansible 400",
                          "interface-name": "Loopback888",
                          "interface-virtual": [
                              null
                          ],
                          "shutdown": [
                              null
                          ]
                      },
                      {
                          "active": "act",
                          "description": "This interface is configures with Ansible",
                          "interface-name": "GigabitEthernet0/0/0/4"
                      }
                  ]
              }
          }
        file: "{{ yang_file }}"
        search_path: "{{ search_path }}"
      register: result

    - name: generate spec from open-config interface yang model data and represent in xml, json and yang tree
      community.yang.generate_spec:
        file: "{{ spec_yang_file }}"
        search_path: "{{ spec_search_path }}"
        doctype: config
        json_schema:
          path: "./output/{{ inventory_hostname }}/openconfig-interfaces-config.json"
          defaults: True
        xml_schema:
          path: "./output/{{ inventory_hostname }}/openconfig-interfaces-config.xml"
          defaults: True
          annotations: True
        tree_schema:
          path: "./output/{{ inventory_hostname }}/openconfig-interfaces-config.tree"t

For documentation on how to use individual modules and other content included in this collection, please see the links in the 'Included content' section earlier in this README.

Testing and Development

If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured COLLECTIONS_PATHS, and work on it there.

Testing with ansible-test

The tests directory contains configuration for running sanity and integration tests using ansible-test.

To run these network integration tests, use ansible-test network-integration --inventory </path/to/inventory> <tests_to_run>:

ansible-test network-integration  --inventory ~/myinventory -vvv <name of the plugin>

Publishing New Versions

Releases are automatically built and pushed to Ansible Galaxy for any new tag. Before tagging a release, make sure to do the following:

  1. Update galaxy.yml and this README's requirements.yml example with the new version for the collection.
  2. Update the CHANGELOG: 1. Make sure you have antsibull-changelog installed. 2. Make sure there are fragments for all known changes in changelogs/fragments. 3. Run antsibull-changelog release.
  3. Commit the changes and create a PR with the changes. Wait for tests to pass, then merge it once they have.
  4. Tag the version in Git and push to GitHub.

After the version is published, verify it exists on the Ansible Yang Community Collection Galaxy page.

See Also:

Contributing to this collection

We welcome community contributions to this collection. If you find problems, please open an issue or create a PR against the Ansible Yang collection repository.

  1. Make changes
  2. Detail changes in a fragment. example
  3. Submit PR

You can also join us on:

See the Ansible Community Guide for details on contributing to Ansible.

Changelogs

Change log

Roadmap

More information

Licensing

GNU General Public License v3.0 or later.

See LICENSE to see the full text.

community.yang's People

Contributors

andersson007 avatar ashwini-mhatre avatar dt-arrcus avatar ganeshrn avatar jgroom33 avatar oponcea-dn avatar rawat-he avatar rohitthakur2590 avatar scotts-syd avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.