Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Updating paths and requirements line
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioPDX committed Oct 15, 2024
1 parent 900cb80 commit bb80603
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions workshops/cicd-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ TODO Rewrite the following section to leverage the makefile option

## Step 3 - Fast-forward the main brach

We need to update our group variable files to enable all of our L2LS configurations.
We must update our group variable files to enable our L2LS configurations.

!!! warning
You can skip this step if you are continuing from the AVD workshop.

Move to the following directory within your terminal.

```shell
cd labs/L2LS/
cd /home/coder/project/labfiles/ci-workshops-avd/labs/L2LS
```

Run the following Make command to update your group variable files for site 1 and site 2.
Expand Down Expand Up @@ -303,6 +303,7 @@ jobs:
To get started with pre-commit, run the following commands in your ATD IDE terminal.
```shell
cd /home/coder/project/labfiles/ci-workshops-avd/
pip3 install pre-commit
pre-commit install
```
Expand Down Expand Up @@ -501,7 +502,7 @@ At this point, make sure both workflow files (`dev.yml` and `prod.yml`) within t
uses: actions/setup-python@v5
- name: Install Python requirements
run: pip3 install "pyavd[ansible]==4.10.0"
run: pip3 install requirements.txt
- name: Run pre-commit on files
uses: pre-commit/action@v3.0.0
Expand Down Expand Up @@ -590,6 +591,7 @@ This example workflow will add two new VLANs to our sites. Site 1 will add VLAN
The pipeline will run the build and deploy steps for us with these relevant changes. We can also run the build steps locally to see all our pending updates.
```shell
cd /home/coder/project/labfiles/ci-workshops-avd/labs/L2LS
make build-site-1
```
Expand Down Expand Up @@ -761,7 +763,7 @@ jobs:
uses: actions/setup-python@v5
- name: Install Python requirements
run: pip3 install "pyavd[ansible]==4.10.0"
run: pip3 install requirements.txt
- name: Run pre-commit on files
uses: pre-commit/action@v3.0.0
Expand Down

0 comments on commit bb80603

Please sign in to comment.