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 Terraform Ansible D Tool category Orchestration Configuration management Approach Immutable infrastructure Mutable infrastructure Language Declarative Imperative Provisioning Specializes in infrastructure provisioning Limited support for infrastructure provisioning LIfecycle management Lifecycle aware.  Maintains state of deployments. No lifecycle awareness Command line operation Yes Yes Agentless Yes Yes

Read more

Selfnotes/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 “What is jenkins”? Jenkins is a free and open source automation server. It helps automate the parts of software development related to building,trsting,and deploying,facilitating continuous integration and continuous delivery. It is a server-based system that runs in servlet containers such as Apache Tomcat Advantages of Jenkins include: It is an open-source tool with great

Read more

Introduction To 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 Prometheus: Prometheus is an open-source systems monitoring and alerting toolkit. 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 aggregation and analysis. How prometheus is good for time series metrix? Prometheus is

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 1.Write a Ansible Playbook to create a group called “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. 3.Write a Ansible Playbook to install package named “httpd” in RHEL/centos 4.Write a Ansible Playbook to start and enable the service named “httpd”

Read more

Self-notes/Ansible Commands

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 “deployProgram create group deploy name=deploy 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 create user deploy-user name=deploy-user shell=/bin/bashcreate group deploy name=deploy Program 3 – 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 – This helps in restricting the service within

Read more