Code Monkey home page Code Monkey logo

community.network's Introduction

Community Network Collection

Build Status Codecov

This repository contains the community.network Ansible Collection. The collection is a part of the ansible package and includes many network modules and plugins supported by Ansible community which are not part of more specialized community collections.

You can find documentation for this collection on the Ansible docs site.

Code of Conduct

We follow Ansible Code of Conduct in all our interactions within this project.

If you encounter abusive behavior violating the Ansible Code of Conduct, please refer to the policy violations section of the Code of Conduct for information on how to raise a complaint.

Contributing to this collection

The content of this collection is made by good people just like you, a community of individuals collaborating on making the world better through developing automation software.

We are actively accepting new contributors.

All types of contributions are very welcome.

You don't know how to start? Refer to our contribution guide!

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

If you're interested in becoming a maintainer of this collection, refer to the Maintainer guidelines for details.

Communication

We announce important development changes and releases through Ansible's The Bullhorn newsletter. If you are a contributor, be sure you are subscribed.

Join us on Matrix in the following (and other) rooms:

Note that all the rooms above have corresponding bridged IRC channels on Libera.Chat. See the Ansible Communication Guide for details.

Also join us on Slack.

Contributors to this collection take part in the global Ansible Contributor Summit virtually or in-person. Track The Bullhorn newsletter and join us.

For more information about communication, refer to the Ansible communication guide.

Tested with Ansible

Tested with the Ansible 2.11, 2.12, 2.13, 2.14 releases and the current development version of Ansible.

Ansible-core versions before 2.11.0 are not supported. In particular, ansible-base 2.10 and Ansible 2.9 are not supported. Use community.network 3.x.y if you are using Ansible 2.9 or ansible-base 2.10.

Supported connections

The community network collection supports network_cli and httpapi connections.

Included content

Click the Content button to see the list of content included in this collection, or check the documentation on the Ansible docs site.

Installing this collection

This collection is shipped with the ansible package. So if you have it installed, no more action is required.

If you have a minimal installation (only Ansible Core installed) or you want to use the latest version of the collection along with the whole ansible package, you need to install the collection from Ansible Galaxy manually with the ansible-galaxy command-line tool:

ansible-galaxy collection install community.network

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

---
collections:
  - name: community.network
    # If you need a specific version of the collection, you can specify like this:
    # version: ...

Note that if you install the collection manually, it will not be upgraded automatically when you upgrade the ansible package. To upgrade the collection to the latest available version, run the following command:

ansible-galaxy collection install community.network --upgrade

You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax where X.Y.Z can be any available version:

ansible-galaxy collection install community.network:==X.Y.Z

See Ansible Using collections for more details.

Using this collection

You can call modules by their Fully Qualified Collection Name (FQCN), such as community.network.a10_server. The following example task creates a new server load balancer object on an A10 Networks device, using the FQCN:

---
    - name: Create a new server
      community.network.a10_server:
        host: a10.mydomain.com
        username: myadmin
        password: mypassword
        partition: mypartition
        server: test
        server_ip: 192.0.2.100
        server_ports:
          - port_num: 8080
            protocol: tcp
          - port_num: 8443
            protocol: TCP

Alternately, you can call modules by their short name if you list the community.network collection in the playbook's collections, as follows:

---
- hosts: "{{desired_inventory_group}}"
  connection: local

  collections:
    - community.network

  tasks:
    - name: Create a new server
      a10_server:
            host: a10.mydomain.com
            username: myadmin
            password: mypassword
            partition: mypartition
            server: test
            server_ip: 192.0.2.100
            server_ports:
              - port_num: 8080
                protocol: tcp
              - port_num: 8443
                protocol: TCP

See Also:

Changelogs

See here.

Roadmap

More information

Licensing

GNU General Public License v3.0 or later.

See COPYING to see the full text.

community.network's People

Contributors

adeptvin1 avatar andersson007 avatar anguswarren avatar dericcrago avatar dmsimard avatar edificomsa avatar efrikin avatar felixfontein avatar ganeshrn avatar getjack avatar gundalow avatar istaicu avatar jplitza avatar kakkotetsu avatar lonely123 avatar mamullen13316 avatar mddeff avatar mjbnz avatar mjr9804 avatar ompragash avatar renatoalmeidaoliveira avatar rothman857 avatar samccann avatar spredzy avatar srgvg avatar svliron avatar timpasternak avatar uedvt359 avatar yanzhangi avatar yuandongx avatar

Watchers

 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.