Terraform script

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.

Read more

Terraform notes

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 1.write a comparison between Ansible vs Docker vs Terraform? A) Ansible Ansible is a configuration management tool which is used to create infrastructure as code that can be used to deploy repeatable environments. Terraform A)Terraform is an orchestration tool which stores the state of the environment and if anything is out of order it

Read more

Jenkins easy understanding

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 1.what is jenkins? jenkins is a self-contained java based program . Ready to run out of the box with packages for windows, linux, macos and other unix -like operating systems. jenkins is a free and open source automation server. it helps automate the parts of software development related to building ,testing , deploying. it

Read more

prometheus notes

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 1.what is time series database? A) A time series database is a software system that is used for storing and serving time series through associated pairs of time and value. 2.How prometheus is good for time series metrix? A)prometheus fundamentally stores all data as time series streams of timestamped values belonging to the same

Read more

Ansible playbooks

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”. $ ansible to create a playbook name = deploy 2.write a ansible playbook to create a user called “deploy user” which is part of group called ” deploy” and with/bin/bash/shell. $ ansible to create user =”deploy user” group = “deploy” src=/bin/bash/shell 3.write a ansible

Read more

services easy understanding

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 a service? service provides the same functionality to all the pods such as webservices, image processing . a service is responsible for exposing an interface to the pods . -what is the types of service? There are four types of service namely: 1.clusterIP – Exposes a service which is accessible only inside

Read more

What is declarative language

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 -DIFFERENCE BETWEEN COMPILED LANG Vs INTERPRETED LANG Vs DECLARATIVE LANG? 1.A compiled language is a programming language whose implementations are typically compilers and not interpreters 2.An interpreted language is a programming language whose implementations execute instructions directly and freely ,without previously compiling a program in to machine language instructions. 3.Declarative language is also called

Read more

Explanation about pods and usage 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 what is pod? pods can contain one or more containers such as docker containers. containers always run on pods. pods can have multiple containers. Types of pods ? Namely there are some types of pods: 1.Remote learning pod 2.Nanny share 3.Microschool 4.Hybrid pod what pod contains? -pods have multiple containers -all containers in pod

Read more

KUBERNETES EASY UNDERSTANDING

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 Define what is Kubernetes with image? 1.Kubernetes is an open source platform which is developed by google. 2.kubernetes is a combination of API server, controller, scheduler and etcd which is used by the developer/operator. 3.kubernetes node is a combination of kubelet and kube-proxy which is called as kubernetes node. Why Kubernetes ? 1.kubernetes is

Read more