PinnedKubernetes end-to-end project with deployment of Django notes applicationProject Overview In this Kubernetes project, the goal is to deploy and manage an application using the ojasjawale/notes-app:latest image within a dedicated namespace, notes-app on minikube cluster. This deployment will incorporate a wide range of K...Aug 16, 2024·6 min read
Kubernetes Deployment GuideWhat is Deployment in k8s A Kubernetes Deployment tells Kubernetes how to create or modify instances of the pods that hold a containerized application. Deployments can help to efficiently scale the number of replica pods, enable the rollout of up...Aug 18, 2024·2 min read
Kubernetes namespaces and ServicesKubenetes namespaces In Kubernetes, namespaces provide a mechanism for isolating groups of resources within a single cluster. Names of resources need to be unique within a namespace, but not across namespaces. Namespace-based scoping is applicabl...Aug 18, 2024·7 min read
Working with Services in KubernetesWhat are Services in K8s? In Kubernetes, a service is an entity that represents a set of pods running an application or functional component. The service holds access policies, and is responsible for enforcing these policies for incoming requests....Aug 18, 2024·6 min read
Kubernetes TroubleshootingUsing kubectl Commands kubectl is the command-line tool used to interact with your Kubernetes cluster. It's the first step in troubleshooting to gather information about the cluster's state, Check Cluster Nodes: This command lists all nodes in th...Aug 17, 2024·3 min read
Kubernetes Cluster MaintenanceUpgrading the Kubernetes Cluster Upgrading a Kubernetes cluster is crucial to ensure it remains secure, stable, and up-to-date with the latest features. Follow these steps to upgrade your Minikube cluster, Check Current Version, First, verify the...Aug 16, 2024·2 min read
Kubernetes Storage & Kubernetes SecurityPersistent Volumes & Persistent Volume Claim (PV & PVC) A PersistentVolume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage Classes. It is a resource in the cluster j...Aug 15, 2024·5 min read