Terraform Module

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Write a 2 Module in Terraform. One Local Module, Second remote module. – Local Module Spec – in Ubuntu – Setup a webserver – Remote module – Setup VPC

Read more

Terraform Provisioner

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Write a Terraform script which create a ubuntu ec2-instance and copy a ansible playbook, install ansible and run it. Step 1 – Create ec2-instance with key and group Step 2 – COpy playbook using file prov* Step 3 – Install Ansible using remote prov* Step 4 – RUn Ansinle playbook command using remote prv*

Read more

Working With Terraform Variables

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Write a terraform script using aws ec2 instance and github and apply following kind of variables Types of Terraform variable – Number Types of Terraform variable – String Types of Terraform variable – List Types of Terraform variable – Map Types of Terraform variable – Boolean and Decare variables in – Terraform file –

Read more

Working With Terraform

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Write a comparison between Ansible Vs Docker Vs Terraform Write a terraform script where you create a linux ec2 instance with Security group and key defined so you should be able to use key to login to ec2 instance. Terraform VS Ansible Terraform focus on infrastructure provisioning where as ansible fits well in traditional

Read more

Jenkins

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Introduction to Jenkins Open Source Automation Tool Written in Java with plug ins built for continuous integration purposes Allows Continuous Delivery Of Software Software Integrating with large number of testing and deployment technologies Accelerate the software development process through automation Plugins allow the integration of Various DevOps stages  Has 1000+ plugins to ease the

Read more

Working With Prometheus

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What is Time Series database? How prometheus is good for time series metrix? What are components of prometheus? How prometheus works? Time Series Database Time series data is the sequence of data points collected at a regular intervals over a period of time (metrics). For eg:- device data, weather data, etc. The data require

Read more

Ansible Playbook Programs

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Write a Ansible Playbook to create a group called “deploy” Program 2 – Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “deploy” and with /bin/bash shell. 3.Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos. Program 4 – Write a Ansible Adhoc commands

Read more

Ansible Adhoc Commands Lab & Excercise

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Program 1 – Write a Ansible Adhoc Commands to create a group called “deploy“ Program 2 – Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “deploy” and with /bin/bash shell. Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos. Program 4 – Write

Read more

Services In Kubernetes

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Services in Kubernetes are logical abstraction for a deployed group of pod in cluster. A service is responsible for exposing an interface to those pods, which enables network access from either within the cluster or between external processes and the service. Types Of Services In Kubernetes ClusterIP – exposes a service which is only accessible

Read more

Declarative Languages Ruling the Cloud Environment

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now So, How does Declarative Language differ from compiled and interpreted language? Declarative languages, also called nonprocedural or very high level, are programming languages in which (ideally) a program specifies what is to be done rather than how to do it. In such languages there is less difference between the specification of a program and

Read more

POD – Kubernetes Life Line

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A POD is basically an executing unit containing one or more containers . Even if one container inside the POD fails the entire POD fails. Types Of POD- POD in kuberenetes are generally used in two ways that is:- 1.POD that run Single Container 2. POD that run multiple Container Inside the POD The

Read more

Kubernetes : A boon for engineers

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now So, What exactly is Kubernetes ??? Born in google and later donated to CNCF as an open source system, Kubernetes is an open-source container-orchestration system which is used for automating computer application deployment, scaling, and management. Kubernetes a necessity ? So why do we need kubernetes if we have docker and containers . Generally

Read more