Skip to content

Commit 054c190

Browse files
authored
Merge branch 'devel' into devel
2 parents 79a8e7e + 8635afb commit 054c190

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+510
-15699
lines changed

README.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@
2626
</span>
2727
<div id="lab_powered_by">Red Hat Demo Platform</div>
2828
</a>
29-
3029
<!-- lab -->
31-
<a target="_blank" href="./exercises/ansible_rhel_90" class="data-card">
32-
<h3>RHEL 90</h3>
33-
<h4>Ansible Red Hat Enterprise Linux Workshop</h4>
34-
<p>Focused on automating Linux platforms like Red Hat Enterprise Linux</p>
30+
<a target="_new" href="https://rhpds.github.io/showroom-virt-aap-day-2/modules/index.html" class="data-card">
31+
<h3>Day 2 Ops</h3>
32+
<h4>Automation with OpenShift Virtualization</h4>
33+
<p>Activities we can perform with OpenShift Virtualization and AAP</p>
3534
<span class="link-text">
3635
Lab Page
3736
<svg width="25" height="16" viewBox="0 0 25 16" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -91,7 +90,21 @@
9190
</span>
9291
<div id="lab_powered_by">Red Hat Demo Platform</div>
9392
</a>
94-
<a target="_blank" href="exercises/instruqt/servicenow" class="data-card">
93+
<!-- lab -->
94+
<a target="_new" href="./exercises/ansible_rhel_90" class="data-card">
95+
<h3>RHEL 90</h3>
96+
<h4>Ansible Red Hat Enterprise Linux Workshop</h4>
97+
<p>Focused on automating Linux platforms like Red Hat Enterprise Linux</p>
98+
<span class="link-text">
99+
Lab Page
100+
<svg width="25" height="16" viewBox="0 0 25 16" fill="none" xmlns="http://www.w3.org/2000/svg">
101+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8631 0.929124L24.2271 7.29308C24.6176 7.68361 24.6176 8.31677 24.2271 8.7073L17.8631 15.0713C17.4726 15.4618 16.8394 15.4618 16.4489 15.0713C16.0584 14.6807 16.0584 14.0476 16.4489 13.657L21.1058 9.00019H0.47998V7.00019H21.1058L16.4489 2.34334C16.0584 1.95281 16.0584 1.31965 16.4489 0.929124C16.8394 0.538599 17.4726 0.538599 17.8631 0.929124Z" fill="#000000"/>
102+
</svg>
103+
</span>
104+
<div id="lab_powered_by">Red Hat Demo Platform</div>
105+
</a>
106+
<!-- lab -->
107+
<a target="_new" href="exercises/instruqt/servicenow" class="data-card">
95108
<h3>ServiceNow</h3>
96109
<h4>Getting Started with ServiceNow Automation</h4>
97110
<p>Focused on using Ansible Automation in conjunction with an IT Service Management (ITSM) tool</p>

exercises/ansible_rhel/1.4-variables/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Review the output to confirm the user existence check is correctly using the var
164164
<br>
165165

166166
{% if page.url contains 'ansible_rhel_90' %}
167-
[Previous Exercise](../3-playbook) - [Next Exercise](../5-surveys)
167+
[Previous Exercise](../3-playbook) - [Next Exercise](../5-projects)
168168
{% else %}
169169
[Previous Exercise](../1.3-playbook) - [Next Exercise](../1.5-handlers)
170170
{% endif %}

exercises/ansible_rhel/1.5-handlers/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ Handlers are used for tasks that should only run when notified by another task.
8383

8484
Let's say we want to ensure the firewall is configured correctly on all web servers and then reload the firewall service to apply any new settings. We'll define a handler that reloads the firewall service and is notified by a task ^that ensures the desired firewall rules are in place. Add the following tasks to the existing playbook to install firewalld and enable firewalld and reload the service with the help of handlers.
8585

86+
{% raw %}
8687

8788
```yaml
8889
---
@@ -141,6 +142,8 @@ Let's say we want to ensure the firewall is configured correctly on all web serv
141142
142143
```
143144

145+
{% endraw %}
146+
144147
The handler "Reload Firewall" is triggered only if the task “Allow HTTP traffic on web servers” makes any changes.
145148

146149

exercises/ansible_rhel/2.3-projects/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,12 @@ Verify that the output result is as expected.
250250
---
251251
**Navigation**
252252
<br>
253+
254+
{% if page.url contains 'ansible_rhel_90' %}
255+
[Previous Exercise](../4-variables) - [Next Exercise](../6-surveys)
256+
{% else %}
253257
[Previous Exercise](../2.2-cred) - [Next Exercise](../2.4-surveys)
258+
{% endif %}
259+
<br><br>
260+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)
254261

255-
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md#section-2---ansible-tower-exercises)

exercises/ansible_rhel/2.4-surveys/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,10 @@ Verify that the output result is as expected.
136136
<br>
137137

138138
{% if page.url contains 'ansible_rhel_90' %}
139-
[Previous Exercise](../4-variables) - [Next Exercise](../../ansible_rhel_90/6-system-roles/)
140-
{% else %}
139+
[Previous Exercise](../5-projects) - [Next Exercise](../7-system-roles)
140+
{% else %}
141141
[Previous Exercise](../2.3-projects) - [Next Exercise](../2.5-rbac)
142-
{% endif %}
142+
{% endif %}
143+
<br><br>
144+
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)
145+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ansible_rhel/2.3-projects/
File renamed without changes.
File renamed without changes.

exercises/ansible_rhel_90/6-system-roles/README.md renamed to exercises/ansible_rhel_90/7-system-roles/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,12 @@ You have completed lab exercise
194194
----
195195
**Navigation**
196196
<br>
197-
[Previous Exercise](../5-surveys)
198-
<br><br>
197+
198+
{% if page.url contains 'ansible_rhel_90' %}
199+
[Previous Exercise](../6-surveys)
200+
{% else %}
201+
[Previous Exercise](../2.4-surveys)
202+
{% endif %}
203+
<br><br>
199204
[Click here to return to the Ansible for Red Hat Enterprise Linux Workshop](../README.md)
205+

0 commit comments

Comments
 (0)