#kubernetes
Read more stories on Hashnode
Articles with this tag
Introduction: In the world of containerized applications and dynamic orchestration, persistent storage has become a critical requirement for managing...
Cluster Management Display endpoint information about the master and services in the cluster kubectl cluster-info Display the Kubernetes version...
Upgrading kubeadm clusters apt update apt-cache madison kubeadm # find the latest 1.27 version in the list # it should look like 1.27.x-00, where x is...
Persistent Volumes In Kubernetes, a Persistent Volume (PV) is a storage abstraction that provides a way for users to access persistent storage in a...
Create a Deployment for the Web Application apiVersion: apps/v1 kind: Deployment metadata: name: web-app-deployment spec: replicas: 3 selector: ...
DEPLOYMENT A Deployment provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment, and the Deployment...