Sandeep Dhungana
Sanux

Sanux

Follow
homebadges

Replication Controller and Replica Set in K8S

Jan 6, 20234 min read

Kubernetes was designed to orchestrate multiple containers and replication. There are lots of advantages to having multiple containers and replicas....

Replication Controller and Replica Set in K8S

Labels and Node Selector in Kubernetes

Jan 5, 20234 min read

Labels in Kubernetes are the key-value pair that does not have any predefined meaning and that can be attached to any objects or any resources such as...

Labels and Node Selector in Kubernetes

Creating the first pod in Kubernetes

Jan 4, 20233 min read

To create the pod let's first install the Minikube from here. Let's start with the basic pod. vi first-pod.yml kind: Pod apiVersion: v1 metadata: ...

Creating the first pod in Kubernetes

What are objects in Kubernetes?

Jan 3, 20233 min read

An object in Kubernetes is a component that represents a particular aspect of the cluster's desired state. Pods, nodes, and services are just a few...

What are objects in Kubernetes?

Setting Up Kubernetes in AWS ubuntu 20.04 with kubeadm

Jan 3, 20233 min read

Log in to AWS After login into the AWS. Create 3 instances. 1 for the Master node and the other 2 for the worker Node Make sure that the Master node...

Setting Up Kubernetes in AWS ubuntu 20.04 with kubeadm

Installation Of Minikube on AWS ubuntu 20.04

Jan 2, 20232 min read

We will be exploring how to install minikube in AWS ubuntu 20.04. Before that, we need to understand what is minikube and what it does. Minikube is a...

Installation Of Minikube on AWS ubuntu 20.04