Skip to content

Commit

Permalink
Updated README and CHANGELOGS (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
anagha-infoblox authored Oct 11, 2021
1 parent 4b0c9a6 commit ff9e03c
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 12 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ Infoblox.Nios_Modules Release Notes

.. contents:: Topics

v1.1.2
======
Release Summary
---------------
- Issue fixes and standardization of inventory plugin and lookup modules as per Ansible guidelines
- Directory restructure and added integration & unit tests

Minor Changes
-------------
- Changes in inventory and lookup plugins documentation `#85 <https://github.com/infobloxopen/infoblox-ansible/pull/85>`_
- Directory restructure and added integration & unit tests `#87 <https://github.com/infobloxopen/infoblox-ansible/pull/87>`_

Bugfixes
-------------
- Handle NoneType parsing in nios_inventory.py `#81 <https://github.com/infobloxopen/infoblox-ansible/pull/81>`_
- Check all dhcp options, not just first one `#83 <https://github.com/infobloxopen/infoblox-ansible/pull/83>`_


v1.1.1
======
Release Summary
Expand Down
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,38 +102,43 @@ branch.

### Installation from Ansible Galaxy
- To directly install the `nios_modules` collection from [Ansible Galaxy](https://galaxy.ansible.com/infoblox/nios_modules), run the following command:
- ```shell
- ```
$ ansible-galaxy collection install infoblox.nios_modules
```
- The collection folder would be installed at
`~/.ansible/collections/ansible_collections/infoblox/nios_modules`
```
~/.ansible/collections/ansible_collections/infoblox/nios_modules
```
- For offline installation on the Ansible control machine, download the required tar archive version of the collection from [Infoblox Nios Modules collections](https://galaxy.ansible.com/infoblox/nios_modules) and run the command given below in `~/.ansible` directory:
- ```shell
- ```
$ ansible-galaxy collection install infoblox-nios_modules-<version>.tar.gz -p ./collections
```
### Installation from GitHub
- Install the collection directly from the [GitHub](https://github.com/infobloxopen/infoblox-ansible/tree/master/ansible_collections/infoblox/nios_modules) repository using the latest commit on the master branch:
- ```shell
$ ansible-galaxy collection install git+https://github.com/infobloxopen/infoblox-ansible.git#ansible_collections/infoblox/nios_modules
- ```
$ ansible-galaxy collection install git+https://github.com/infobloxopen/infoblox-ansible.git,master
```
- For offline installation on the Ansible control machine, to git clone and install from this repo, follow these steps:
- **Clone the repo:**
```shell
```
$ git clone https://github.com/infobloxopen/infoblox-ansible.git
```
- **Build the collection:**\
- **Build the collection:**
To build a collection, run the following command from inside the
root directory of the collection:
```shell
```
$ ansible-galaxy collection build
```
This creates a tarball of the built collection in the current directory.
- **Install the collection:**
```shell
```
$ ansible-galaxy collection install infoblox-nios_modules-<version>.tar.gz -p ./collections
```
Expand All @@ -157,7 +162,7 @@ Dates TBD
Current release
---------------
1.1.1 on 7 September 2021
1.1.2 on 12 October 2021
Versioning
=========
Expand Down
2 changes: 1 addition & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ plugins:
shell: {}
strategy: {}
vars: {}
version: 1.1.1
version: 1.1.2
12 changes: 12 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,15 @@ releases:
- Modules made compatible to work with ansible-core 2.11
- Issue fixes and standardization of modules as per Ansible guidelines
release_date: '2021-09-07'
1.1.2:
changes:
bugfixes:
- Handle NoneType parsing in nios_inventory.py `#81 <https://github.com/infobloxopen/infoblox-ansible/pull/81>`_
- Check all dhcp options, not just first one `#83 <https://github.com/infobloxopen/infoblox-ansible/pull/83>`_
minor_changes:
- Changes in inventory and lookup plugins documentation `#85 <https://github.com/infobloxopen/infoblox-ansible/pull/85>`_
- Directory restructure and added integration & unit tests `#87 <https://github.com/infobloxopen/infoblox-ansible/pull/87>`_
release_summary:
- Issue fixes and standardization of inventory plugin and lookup modules as per Ansible guidelines
- Directory restructure and added integration & unit tests
release_date: '2021-10-12'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: infoblox
name: nios_modules

# The version of the collection. Must be compatible with semantic versioning
version: 1.1.1
version: 1.1.2

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down

0 comments on commit ff9e03c

Please sign in to comment.