Oreilly - Ultimate Ansible Bootcamp by School of Devops® - 9781789345131
Oreilly - Ultimate Ansible Bootcamp by School of Devops®
by Gourav Shah | Publisher: Packt Publishing | Release Date: May 2018 | ISBN: 9781789345131


The unofficial guide to becoming an EX407 Redhat certified specialist in Ansible automationAbout This VideoSet up an inventory of a group of servers and configure Ansible to manage those.Write playbooks for base systems configuration.Create roles for automating web server provisioning and configurations.Use galaxy roles to set up a load balancer.Customise roles using group_vars to define your database and application configuration. Secure database passwords with Ansible vault.Deploy applications in a rolling manner with zero downtimeIn DetailAnsible is set to be the standard in the world of IT infrastructure management. It's a rare combination of simplicity meeting sophistication. Its core principle is simple is reflected in all its design choices such as an agentless setup, small footprint, push model, YAML as a language to define infrastructure state and so on. It's easy to setup, easy to write code with, and easy to extend while writing custom modules. At the same time, it offers everything an IT system, networks or a operations/DevOps person needs. Once you set up the environment with the code spaces tool, you start diving into the simple and sophisticated world of Ansible one concept at a time. By the end of this course, you will have mastered Ansible and should be able to use it to automate servers, applications, and understand all the primitives that Ansible offers.
  1. Chapter 1 : Course Introduction
    • How to navigate this course 00:04:11
    • EX407: Red Hat Certified Specialist in Ansible Automation 00:05:56
    • Have Question, Find Help and Support 00:03:44
  2. Chapter 2 : Introduction to Ansible
    • What is Ansible Part I: Why Ansible? 00:06:34
    • What is Ansible Part II: Simplicity, YAML, Push Model, Custom Modules? 00:06:57
    • What is Ansible Part III: Batteries Included Approach? 00:03:15
    • What is Ansible Part IV: Scripts vs Ansible 00:03:37
    • What is Ansible Part V: Infrastructure as a Code? 00:02:12
    • What is Ansible Part VI: Code vs Data? 00:03:05
    • What is Ansible Part VII: Idempotence and State Management? 00:05:52
    • What is Ansible Part VIII: The Ansible Story? 00:04:30
  3. Chapter 3 : Path to Automation with Ansible
    • Section Introduction 00:00:52
    • Tasks, Modules, Roles 00:06:45
    • Inventories and Playbooks 00:05:11
    • Book Recommendation: Ansible Playbook Essentials 00:01:08
    • Code Organization Strategies 00:04:27
    • Introducing Use Case - Devops Demo App 00:04:02
    • Approach to automate Devops Demo App 00:04:42
  4. Chapter 4 : Setting up the Environment
    • Section Introduction 00:01:17
    • Introduction to codespaces 00:06:47
    • Setting up codespaces locally with docker 00:07:11
    • Launching codespaces on digital ocean cloud 00:04:49
    • Managing codespaces 00:04:48
  5. Chapter 5 : Ad Hoc Server Management with Ansible
    • Section Introduction 00:01:34
    • Configuring Ansible 00:06:02
    • Defining a static Inventory 00:05:50
    • Host Patterns and Ad Hoc Commands 00:08:54
    • Modules and Desired State Configuration 00:04:59
    • Invoking Modules, Idempotence 00:06:00
    • Using common modules 00:07:33
    • Command Modules and Idempotence 00:07:44
    • Using ansible-console REPL Shell 00:03:57
  6. Chapter 6 : Playbooks
    • Section Introduction 00:01:05
    • YAML Primer 00:05:19
    • Anatomy of a Playbook 00:06:58
    • Writing your first Play 00:05:09
    • Validating and applying Ansible Playbook 00:05:30
    • Troubleshooting playbook failures 00:04:43
    • Adding another play for app servers 00:03:37
    • Nano Project: Create a playbook to deploy a Static Site 00:02:02
  7. Chapter 7 : Roles
    • Section Introduction 00:01:08
    • Why do you need roles? 00:03:30
    • Anatomy of a Role 00:03:36
    • Code Organization Strategies 00:03:46
    • Generating Roles Scaffold and Ansible Galaxy 00:02:50
    • Creating a role for Apache 00:05:22
    • Writing and applying playbook for app servers 00:03:15
    • Copying config file, notifications and handlers 00:07:55
    • Creating a role for PHP 00:05:45
    • Nested roles and site wide playbook 00:04:54
    • Nano project: Deploy DevOps Demo App 00:02:15
  8. Chapter 8 : Vars and Templates
    • Section Introduction 00:01:13
    • Need to separate data from code 00:03:21
    • Diving into Jinja2 templates 00:05:14
    • Understanding Ansible vars, Precedence Levels and Best Practices 00:06:57
    • Advanced vars concepts 00:06:31
    • Dynamically defining app version with vars and tasks 00:05:53
    • Managing app configs with templates and vars 00:09:14
    • Playing with vars precedence 00:08:14
    • Registered variables and conditional execution 00:04:52
    • Discovering facts with setup module 00:04:45
  9. Chapter 9 : Ansible Galaxy
    • Section Introduction 00:00:39
    • Tour of Ansible Galaxy 00:08:28
    • Selecting role for HAProxy 00:05:24
    • Applying HAProxy role with custom properties 00:04:08
    • Troubleshooting HAProxy Issues 00:05:29
    • Nano Project: Setup MySQL database using a galaxy role 00:02:45
    • Setting up MySQL 00:05:56
    • Connecting app with the database 00:02:10
    • Checking in the galaxy roles 00:02:42
    • Tagging tasks, roles, plays and playbooks 00:04:14
  10. Chapter 10 : Controlling Execution Flow
    • Overview of Conditionals 00:04:30
    • Overview of Iterators 00:05:02
    • Iterating over a list to install packages 00:02:41
    • Iterating over a dictionary to create users 00:04:16
    • Using conditionals in tasks and templates 00:03:39
    • Adding Ubuntu support by conditionally including vars 00:08:17
    • Making application compatible with Ubuntu 00:06:16
  11. Chapter 11 : Auto Disovery and Manging Multiple Environments
    • Enabling Facts Caching 00:06:11
    • Using Magic Variables for Service Discovery 00:06:57
    • Creating staging environment 00:09:23
    • Rolling back changes with contra playbooks 00:04:53
  12. Chapter 12 : Vault
    • Section Introduction 00:01:00
    • Encrypting a file and using it in a playbook 00:06:09
    • Using a password file and Rekeying 00:03:57
    • Vault 1.2 and multiple Vault IDs 00:06:08
    • Changing Vault IDs and Encrypting Strings in File 00:05:07
    • Encrypting MySQL passwords with Vault 00:05:26
  13. Chapter 13 : Application Deployments
    • Section Introduction 00:00:56
    • Writing tasks for importing database schema 00:05:41
    • Applying schema updates and Troubleshooting 00:04:47
    • Creating strategy for rolling updates 00:04:17
    • Adding pre and post tasks, Tasks delegation, testing with wait_for 00:06:06
  14. Oreilly - Ultimate Ansible Bootcamp by School of Devops®

    9781789345131.Ultimate.Ansible.Bootcamp.by.School.of.Devops.part1.OR.rar

    9781789345131.Ultimate.Ansible.Bootcamp.by.School.of.Devops.part2.OR.rar

    9781789345131.Ultimate.Ansible.Bootcamp.by.School.of.Devops.part3.OR.rar

    9781789345131.Ultimate.Ansible.Bootcamp.by.School.of.Devops.part4.OR.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss