Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lhercot authored Oct 15, 2020
1 parent 27b9a20 commit 98c24b1
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,46 @@ Once the collection is installed, you can use it in a playbook by specifying the
bd: prod_bd
delegate_to: localhost
```

## Update
Getting the latest/nightly collection build

### First Approach
Clone the ansible-aci repository.
```
git clone https://github.com/CiscoDevNet/ansible-aci.git
```

Go to the ansible-aci directory
```
cd ansible-aci
```

Pull the latest master on your aci
```
git pull origin master
```

Build and Install a collection from source
```
ansible-galaxy collection build --force
ansible-galaxy collection install cisco-aci-* --force
```

### Second Approach
Go to: https://github.com/CiscoDevNet/ansible-aci/actions

Select the latest CI build

Under Artifacts download collection and unzip it using Terminal or Console.

*Note: The collection file is a zip file containing a tar.gz file. We recommend using CLI because some GUI-based unarchiver might unarchive both nested archives in one go.*

Install the unarchived tar.gz file
```
ansible-galaxy collection install cisco-aci-1.0.0.tar.gz —-force
```

### See Also:

* [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details.
Expand All @@ -48,4 +88,4 @@ Once the collection is installed, you can use it in a playbook by specifying the

Ongoing development efforts and contributions to this collection are tracked as issues in this repository.

We welcome community contributions to this collection. If you find problems, need an enhancement or need a new module, please open an issue or create a PR against the [Cisco ACI collection repository](https://github.com/CiscoDevNet/ansible-aci/issues).
We welcome community contributions to this collection. If you find problems, need an enhancement or need a new module, please open an issue or create a PR against the [Cisco ACI collection repository](https://github.com/CiscoDevNet/ansible-aci/issues).

0 comments on commit 98c24b1

Please sign in to comment.