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

0 commit comments

Comments
 (0)