This commit is contained in:
2020-08-17 12:06:41 -04:00
parent 9fa09f26bd
commit 6eb48873e6
455 changed files with 45184 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
<section data-state="title alt" id="RedIntro-InstallingAnsible">
<h1>INSTALLING ANSIBLE</h1>
<img src="<?=$workshop_image?>" style="background-color: transparent; border: none;" height="250">
<p>It Could Not Be Simpler.</p>
<aside class="notes">
<p>Ansible</p>
</aside>
</section>

View File

@@ -0,0 +1,26 @@
<section id="InstallingAnsibleTerminal">
<div class="terminal space shadow">
<div class="top">
<div class="title">Ansible Terminal</div>
</div>
<pre class="bodyl">
<font color="silver"># RHEL "extras" repo or CentOS EPEL:</font>
$ sudo yum install ansible
<font color="silver"># you will need the PPA repo configured on
# Debian or Ubuntu</font>
$ sudo apt-get install ansible
<font color="silver"># from your MacBook:</font>
$ brew install ansible
<font color="silver"># For bleeding edge python versions,</font>
$ sudo pip install ansible
</pre>
</div>
</section>

View File

@@ -0,0 +1,22 @@
<section id="InstallingAnsibleVideo">
<h3>Simple: Installing Ansible</a></h3>
<script>
document.getElementById('YumInstallAnsible').play();
</script>
<video autoplay muted id="YumInstallAnsible" controls>
<source src="video/yuminstallansible.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<aside class="notes">
<p>The diagram on this slide shows the relationship between all the key components of Ansible starting with the user who writes an Ansible playbook.</p>
</aside>
</section>