
Using Nginx Server for Web-Application Deployment
AWS-DevOps Project
Search for a command to run...

AWS-DevOps Project

Kubernetes Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes services, s...

Part-3

Part-2

Hello Learners, we are doing every task by creating an ec2 instance (mostly). Today let’s automate this process. How to do it? Well, Terraform is the solution. What is Terraform? Terraform is an infrastructure as code (IaC) tool that allows you to cr...

What's the difference? When it comes to the cloud, Infrastructure as Code (IaC) and Configuration Management (CM) are inseparable. With IaC, a descriptive model is used for infrastructure management. To name a few examples of infrastructure: networks...

What are Persistent Volumes in k8s? In Kubernetes, a Persistent Volume (PV) is a piece of storage in the cluster that has been provisioned by an administrator. A Persistent Volume Claim (PVC) is a request for storage by a user. The PVC references the...

What are ConfigMaps and Secrets in k8s? In Kubernetes, ConfigMaps and Secrets are used to store configuration data and secrets, respectively. ConfigMaps store configuration data as key-value pairs, while Secrets store sensitive data in an encrypted f...

What are Services in K8s? In Kubernetes, Services are objects that provide stable network identities to Pods and abstract away the details of Pod IP addresses. Services allow Pods to receive traffic from other Pods, Services, and external clients. Se...