Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating ansible core versions in guides #118

Merged
merged 3 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updating ansible core versions in guides
  • Loading branch information
JulioPDX committed Nov 28, 2023
commit ae771daa634aedee96a40551634aed844c866ce6
2 changes: 1 addition & 1 deletion workshops/avd-lab-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ AVD has been pre-installed in your lab environment. However, it may be on an old

``` bash
pip3 config set global.disable-pip-version-check true
pip3 install "ansible-core<2.15.0"
pip3 install "ansible-core==2.15.5"
ansible-galaxy collection install -r requirements.yml
export ARISTA_AVD_DIR=$(ansible-galaxy collection list arista.avd --format yaml | head -1 | cut -d: -f1)
pip3 install -r ${ARISTA_AVD_DIR}/arista/avd/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion workshops/avd.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The ATD lab environment was provisioned with Ansible and Git. First, however, we

``` bash
pip3 config set global.disable-pip-version-check true
pip3 install "ansible-core<2.15.0"
pip3 install "ansible-core==2.15.5"
ansible-galaxy collection install -r requirements.yml
export ARISTA_AVD_DIR=$(ansible-galaxy collection list arista.avd --format yaml | head -1 | cut -d: -f1)
pip3 install -r ${ARISTA_AVD_DIR}/arista/avd/requirements.txt
Expand Down
9 changes: 5 additions & 4 deletions workshops/cicd-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Throughout this section, we will use the following dual data center topology. Cl

## Getting started

This repository leverages the dual data center (DC) ATD. If you are not leveraging the ATD, you may still leverage this repository for a similar deployment. Please note that some updates may have to be made for the reachability of nodes and CloudVision (CVP) instances. This example was created with [Ansible AVD](https://avd.arista.com/4.1/index.html) version `4.1`.
This repository leverages the dual data center (DC) ATD. If you are not leveraging the ATD, you may still leverage this repository for a similar deployment. Please note that some updates may have to be made for the reachability of nodes and CloudVision (CVP) instances. This example was created with [Ansible AVD](https://avd.arista.com/4.4/index.html) version `4.4`.

### Installation external to the ATD environment (optional)

Expand All @@ -27,6 +27,7 @@ This repository leverages the dual data center (DC) ATD. If you are not leveragi
```shell
python3 -m venv venv
source venv/bin/activate
pip3 install "ansible-core==2.15.5"
ansible-galaxy collection install -r requirements.yml
export ARISTA_AVD_DIR=$(ansible-galaxy collection list arista.avd --format yaml | head -1 | cut -d: -f1)
pip3 install -r ${ARISTA_AVD_DIR}/arista/avd/requirements.txt
Expand Down Expand Up @@ -84,8 +85,8 @@ Collection Version
ansible.netcommon 4.1.0
ansible.posix 1.4.0
ansible.utils 2.8.0
arista.avd 4.1.0
arista.cvp 3.6.1
arista.avd 4.4.0
arista.cvp 3.9.0
arista.eos 6.0.0
community.general 6.2.0
➜ ci-workshops-avd git:(main)
Expand All @@ -95,7 +96,7 @@ Run the following commands to install the required packages within the ATD envir

```shell
pip3 config set global.disable-pip-version-check true
pip3 install "ansible-core<2.15.0"
pip3 install "ansible-core==2.15.5"
ansible-galaxy collection install -r requirements.yml
export ARISTA_AVD_DIR=$(ansible-galaxy collection list arista.avd --format yaml | head -1 | cut -d: -f1)
pip3 install -r ${ARISTA_AVD_DIR}/arista/avd/requirements.txt
Expand Down
Loading