Skip to content

Commit 386403d

Browse files
committed
sycning new exercises
1 parent 1494669 commit 386403d

File tree

10 files changed

+45
-19
lines changed

10 files changed

+45
-19
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ The Red Hat Ansible Automation Workshops project is intended for effectively dem
99

1010
# Instructor-led Workshops
1111

12+
6 hour workshops:
13+
1214
| Workshop | Presentation Deck | Exercises | Workshop Type Var |
1315
|---|---|---|---|
1416
| **Ansible Red Hat Enterprise Linux Workshop** <br> focused on automating Linux platforms like Red Hat Enterprise Linux | [Deck](./decks/ansible_rhel.pdf) | [Exercises](./exercises/ansible_rhel) | `workshop_type: rhel` |
@@ -17,6 +19,12 @@ The Red Hat Ansible Automation Workshops project is intended for effectively dem
1719
| **Ansible Security Automation** <br> focused on automation of security tools like Check Point Firewall, IBM QRadar and the IDS Snort | [Deck](./decks/ansible_security.pdf) | [Exercises](./exercises/ansible_security) | `workshop_type: security` |
1820
| **Ansible Windows Automation Workshop** <br> focused on automation of Microsoft Windows | [Deck](./decks/ansible_windows.pdf) | [Exercises](./exercises/ansible_windows) | `workshop_type: windows` |
1921

22+
90 minute abbreviated versions:
23+
24+
| Workshop | Presentation Deck | Exercises | Workshop Type Var |
25+
|---|---|---|---|
26+
| **Ansible Red Hat Enterprise Linux Workshop** <br> focused on automating Linux platforms like Red Hat Enterprise Linux | [Deck](./decks/ansible_rhel_90.pdf) | [Exercises](./exercises/ansible_rhel_90) | `workshop_type: rhel_90` |
27+
2028
## Lab Provisioner
2129
- [AWS Lab Provisioner](provisioner) - playbook that spins up instances on AWS for students to perform the exercises provided above.
2230

exercises/ansible_rhel/1.1-setup/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ You will soon discover that many chapters in this lab guide come with a "Challen
9595
**Navigation**
9696
<br>
9797
[Next Exercise](../1.2-adhoc)
98-
99-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-1---ansible-engine-exercises)
98+
<br><br>
99+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)

exercises/ansible_rhel/1.4-variables/README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,11 @@ node3 : ok=2 changed=0 unreachable=0 failed=0
251251
----
252252
**Navigation**
253253
<br>
254-
[Previous Exercise](../1.3-playbook) - [Next Exercise](../1.5-handlers)
255254

256-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-1---ansible-engine-exercises)
255+
{% if page.url contains 'ansible_rhel_90' %}
256+
[Previous Exercise](../3-playbook) - [Next Exercise](../5-surveys)
257+
{% else %}
258+
[Previous Exercise](../1.3-playbook) - [Next Exercise](../1.5-handlers)
259+
{% endif %}
260+
<br><br>
261+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)

exercises/ansible_rhel/2.4-surveys/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,10 @@ Note how the two variables where used by the playbook to create the content of t
184184
**Navigation**
185185
<br>
186186

187-
{{page.url}}
188187
{% if page.url contains 'ansible_rhel_90' %}
189-
[Previous Exercise](../2.2-cred) - [Next Exercise](../../ansible_rhel_90/5-surveys/)
188+
[Previous Exercise](../1.4-variables) - [Next Exercise](../../ansible_rhel_90/6-system-roles/)
190189
{% else %}
191190
[Previous Exercise](../2.2-cred) - [Next Exercise](../2.4-surveys)
192191
{% endif %}
193-
194-
195-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-2---ansible-tower-exercises)
192+
<br><br>
193+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)

exercises/ansible_rhel_90/3-playbook

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ansible_rhel/1.3-playbook

exercises/ansible_rhel_90/4-roles

-1
This file was deleted.
File renamed without changes.

exercises/ansible_rhel_90/6-system-roles/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,8 @@ System clock synchronized: yes
186186
You have completed lab exercise
187187

188188
----
189-
190-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-2---ansible-tower-exercises)
189+
**Navigation**
190+
<br>
191+
[Previous Exercise](../5-surveys) - [Next Exercise](../7-insights)
192+
<br><br>
193+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)

exercises/ansible_rhel_90/7-insights/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,8 @@ You now have a Red Hat account, and an active subscription to use Red Hat Insigh
108108
You have completed lab exercise
109109

110110
----
111-
112-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-2---ansible-tower-exercises)
111+
**Navigation**
112+
<br>
113+
[Previous Exercise](../6-system-roles)
114+
<br><br>
115+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)

provisioner/roles/aws_workshop_login_page/templates/index.html.j2

+14-5
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ $("document").ready(function(){
219219
$click.click(function () {
220220
221221
$clicked = $(this);
222-
222+
223223
$expand = $(this).parent('.header').next(); // Expand and collapse content selector
224224
225225
//open up the content needed - toggle the slide- if visible, slide up, if not slidedown.
@@ -231,13 +231,13 @@ $("document").ready(function(){
231231
$('html, body').animate({
232232
scrollTop: 1000
233233
}, 500);
234-
234+
235235
});
236236
237237
});
238238
$("a[href='" + window.location.hash + "']").parent(".studentinfo").click();
239-
240-
239+
240+
241241
});
242242
</script>
243243

@@ -310,7 +310,16 @@ $("document").ready(function(){
310310
<a target=_blank class="btn btn-secondary btn-block" href="https://ansible.github.io/workshops/exercises/ansible_rhel/">Ansible RHEL Exercises</a>
311311
</div>
312312
<div class="col-sm-4">
313-
<a target=_blank class="btn btn-secondary btn-block" href="https://ansible.github.io/workshops/decks/ansible_rhel.pdf">Ansible Technical Deck</a>
313+
<a target=_blank class="btn btn-secondary btn-block" href="https://ansible.github.io/workshops/decks/ansible_rhel.pdf">Ansible Workshop Deck</a>
314+
</div>
315+
</div>
316+
{% elif workshop_type == "rhel_90" %}
317+
<div class="row">
318+
<div class="col-sm-4">
319+
<a target=_blank class="btn btn-secondary btn-block" href="https://ansible.github.io/workshops/exercises/ansible_rhel_90/">Ansible RHEL Exercises</a>
320+
</div>
321+
<div class="col-sm-4">
322+
<a target=_blank class="btn btn-secondary btn-block" href="https://ansible.github.io/workshops/decks/ansible_rhel_90.pdf">Ansible Workshop Deck</a>
314323
</div>
315324
</div>
316325
{% elif workshop_type == "security" %}

0 commit comments

Comments
 (0)