Skip to content
This repository was archived by the owner on Dec 3, 2021. It is now read-only.

Commit 01a4e17

Browse files
committed
Patch to fix image locations
Signed-off-by: Matt Oswalt <[email protected]>
1 parent 5312f88 commit 01a4e17

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

lessons/lesson-12/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Network Unit Testing with JSNAPY
33
lessonId: 12
44
category: tools
5-
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-12/lessondiagram.png
5+
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-12/lessondiagram.png
66
tier: prod
77
prereqs:
88
- 14 # YAML

lessons/lesson-15/stage1/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
In this lesson, we'll explore the use of a powerful, open-source framework called StackStorm for event-driven automation within a networking context. For a primer on event-driven automation, as well as a very brief overview of the concepts in StackStorm, it's highly recommended that you start with the lesson video by clicking the button above.
88

9-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/st2.jpeg" width="100"></div>
9+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/st2.jpeg" width="100"></div>
1010

1111
In this lesson, we'll be interacting with StackStorm using its command-line utility `st2`, so in this first lab, we'll take a moment to overview this, as well
1212
as how StackStorm integrates with other systems through something called `packs`.

lessons/lesson-15/stage2/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Though it's important to understand that StackStorm is all about event-driven au
1414

1515
There are many others - and the list is growing all the time in the StackStorm [Exchange](https://exchange.stackstorm.org/). In short, Actions can be thought of simply as neatly contained bits of code to perform a task. They accept input, do work, and usually provide some output. They're the very last piece in the chain we'll be building to create an end-to-end event-driven automation solution in this lesson.
1616

17-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/actions.png"></div>
17+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/actions.png"></div>
1818

1919
Many of the `st2` subcommands we saw in the previous lab use verbs like `get`, `create`, `delete`, `list` for their corresponding resources.
2020
For instance, to list the available actions that are currently present on our system, we can run:

lessons/lesson-15/stage3/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Just like real "tasks" performed manually, or via another tool, StackStorm Actio
88

99
In StackStorm, we call these complex logical structures ["Workflows"](https://docs.stackstorm.com/workflows.html).
1010

11-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/workflows.png"></div>
11+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/workflows.png"></div>
1212

1313
There are a few options for accomplishing this in StackStorm:
1414

lessons/lesson-15/stage4/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In order for StackStorm to know when a certain "event" has taken place, it needs
1616

1717
StackStorm uses something called `sensors` to do this. These are little bits of Python code that run as separate processes within StackStorm.
1818

19-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/sensors.png"></div>
19+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/sensors.png"></div>
2020

2121
As with everything else, Sensors are distributed within Packs. We can run the following command to see the list of sensors in the `napalm` pack:
2222

lessons/lesson-15/stage5/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
And now, all of the concepts we've learned thus far come together. In this lesson we'll explore how *[Rules](https://docs.stackstorm.com/rules.html)* allow us to link the events that are reported to StackStorm via Sensors and Triggers, to the actions we want to take in response to those events in Actions and Workflows. Rules are the missing link in this chain.
88

9-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/rules.png"></div>
9+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/rules.png"></div>
1010

1111
With Rules, we are declaring to StackStorm what events we care about (in the form of Triggers), and what action we want to take in response to seeing those events. In this lab, we'll create a Rule that responds to the Triggers we saw in the previous lab (`napalm.InterfaceDown`) and replaces the interface configuration on the affected device to turn the interface back up again.
1212

lessons/lesson-15/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lessonName: Event-Driven Network Automation with StackStorm
33
lessonId: 15
44
category: tools
55
tier: prod
6-
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-15/lessondiagram.png
6+
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-15/lessondiagram.png
77
lessonVideo: https://www.youtube.com/embed/WhfAqnn2HMM
88
prereqs:
99
- 13 # NAPALM

lessons/lesson-19/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Working with REST APIs
33
lessonId: 19
44
category: fundamentals
5-
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-19/lessondiagram.png
5+
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-19/lessondiagram.png
66
tier: prod
77
prereqs:
88
- 22 # Python

lessons/lesson-21/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Automating the Troubleshooting Chain
33
lessonId: 21
44
category: workflows
5-
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-21/lessondiagram.png
5+
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-21/lessondiagram.png
66
tier: prod
77
prereqs:
88
- 22 # Python

lessons/lesson-22/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Introduction to Python
33
lessonId: 22
44
category: fundamentals
5-
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-22/lessondiagram.png
5+
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-22/lessondiagram.png
66
tier: ptr
77
prereqs:
88
- 23 # Linux

lessons/lesson-29/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Using Robot Framework for Automated Testing
33
lessonId: 29
44
category: tools
5-
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-29/lessondiagram.png
5+
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-29/lessondiagram.png
66
tier: prod
77
prereqs:
88
- 24 # PyEZ

lessons/lesson-30/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Network Automation with Salt
33
lessonId: 30
44
category: tools
5-
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-30/salt.png
5+
lessondiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-30/salt.png
66
tier: prod
77
prereqs:
88
- 22 # Python

lessons/lesson-31/stage1/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Infrastructure-as-Code Terraform resources are declarative versions of the netwo
99

1010
Don't forget your network chops in this lesson. You'll configure an interface, a BGP peer, a VLAN and a L3 interface for the VLAN. You can exercise your networking powers here and validate what Terraform does as it does it on `vqfx1`.
1111

12-
![Terraform](https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-31/stage1/terraformbasics.png)
12+
![Terraform](https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-31/stage1/terraformbasics.png)
1313

1414
*Image borrowed from the Terraform website: terraform.io*
1515

lessons/lesson-31/stage2/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ This next step creates a PNG file containing the output. However, other than cre
5353
terraform graph -type=plan | dot -Tpng > plan_graph.png
5454
```
5555

56-
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-31/stage2/plangraph.png"></div>
56+
<div style="text-align:center;"><img src="https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-31/stage2/plangraph.png"></div>
5757

5858
*The Terraform terraform-provider-junos-qfx is covered by a BSD-3-Clause license and copyrighted by Juniper Networks*

lessons/lesson-31/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Terraform & Junos
33
lessonId: 31
44
category: tools
5-
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-31/lessondiagram.png
5+
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-31/lessondiagram.png
66
description: Terraform provides a declarative way of managing resources and now you can experiment with controlling Junos resources through this exciting lesson!
77
tier: prod
88
slug: Terraform

lessons/lesson-32/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lessonName: Automated STIG Compliance Validation
33
lessonId: 32
44
category: workflows
5-
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-32/lessondiagram.png
5+
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-32/lessondiagram.png
66
tier: prod
77
prereqs:
88
- 13 # NAPALM

lessons/lesson-35/syringe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
lessonName: Device Specific Template Generation
33
lessonId: 35
4-
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/master/lessons/lesson-35/lessondiagram.png
4+
lessonDiagram: https://raw.githubusercontent.com/nre-learning/nrelabs-curriculum/v0.3.2/lessons/lesson-35/lessondiagram.png
55
category: workflows
66
tier: prod
77
prereqs:

0 commit comments

Comments
 (0)