Assignment 4 by Nallagatla Sarvani [26-05-2022]

What is Terraform? Terraform is a tool to write a code & it allows to programmatically provision the physical resources to an application requires to run. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language.  Example Terraform program resources.tf resource “github_repository” “Sample” {name = “terraform1”description = “My first terraform project” visibility = “public”} terraform.tf provider github { token=”ghp_CpzDx9BrikaSXBsOVJ4t90NoK0FZQH3AkrzP” owner=”Organization” Terraform commands and its

Read more

Assignment 3 by Nallagatla Sarvani [25-05-2022]

What is Kubernetes? Kubernetes is an open-source container for automating software deployment, scaling, and management. Kubernetes originally designed by Google, Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services. Kubernetes is a system that manages containers where a container could be explained as a lightweight virtual machine. To build an application you need to build a bunch of containers and then use Kubernetes to manage those containers. Kubernetes provides an easy way to scale your application, compared

Read more

Assignment 2 by Nallagatla Sarvani [ 24-05-2022]

What is Docker ? Docker is a container that communicate and configure files with each other through some defined channels, it is used in automation projects. Docker reduces time in deployment and make easy for the developer to build, run and test the process. What is Container? Container is a set of packages used to run the application quickly and reliable. Containers make sure that it works uniformly even there might be some variations in instances between developing. Containers are

Read more

Assignment 1 by Nallagatla Sarvani [23-05-2022]

WHAT IS DEVOPS DEVOPS = AGILE + OPERATIONS AGILE Includes Business and Development therefore, DEVOPS = DEVELOPMENT & TESTERS + IT OPERATIONS Development includes plan, code, build, test Operations includes release, deploy, operate, monitor DevOps is a combination of tools and it’s effort that make automation and increases the organizations ability and delivers the software with more quality and error free. ADVANTAGES OF DEVOPS Speed of Delivering the Project Correctness Reliable High velocity Continuous Monitoring and Security Costs Reduction Collaboration,

Read more