kubernetes

Kubernetes PVC Reclaim Policy Tutorial

Kubernetes PVC Reclaim Policy Tutorial Reclaim Policy The reclaim policy is responsible for what happens to the data in persistent volume when the kubernetes persistent volume claim has been deleted. Reclaim Policies A Persistent...

Kubernetes Persistent Volumes Tutorial

Kubernetes Persistent Volumes Tutorial Kubernetes Persistent Volume: Kubernetes Persistent Volumes is nothing but a storage in the kubernetes cluster. We can use this storage for pods, So the pods data will be persisted in...

Kubernetes Scale Up/Down Replica set

Kubernetes Scale Up/Down Replica set Creat Replicaset Create replicates with below manifest yml file cat myrs.yml apiVersion: apps/v1 kind: ReplicaSet metadata: name: frontend labels: app: guestbook tier: frontend spec: # modify replicas according to...

Kubernetes Hostpath Volume Example

A Kubernetes hostPath volume mounts a file or directory from the host node’s filesystem into your Pod. Kubernetes supports hostPath for development and testing on a single-node cluster. In a production cluster we would not use...

Kubernetes Namespace Tutorial

Kubernetes Namespace Tutorial What is kubernetes Kubernetes namespace will provide the feature of dividing the cluster into multiple virtual clusters. Let’s say that you have 2 teams working in project like dev and prod....

Kubernetes ConfigMap Tutorial with Examples

Kubernetes ConfigMap Tutorial with Examples A ConfigMap is a dictionary of key-value pairs that store configuration settings for your application. We can mount this configmaps in container as files or volumes or environment variables....