How to ensure data persistence for Simple WordPress Website with Persistent MySQL Storage in Kubernetes?Oct 28, 2023·2 min read
Linux commands for DevOps EngineerDevOps engineers often work with various Linux commands to manage servers, deploy applications, and automate tasks. Here is a list of commonly used Linux commands for DevOps: File and Directory Management: ls: List files and directories. cd: Chang...Nov 24, 2023·2 min read
Deployments, StatefulSets, DaemonSets, Jobs, and CronJobsKubernetes Deployments are a powerful tool in the Kubernetes platform that enable users to manage multiple replicas of an application, while automating deployment, scaling, and updating operations. Deployments ensure the consistent availability and o...May 13, 2023·7 min read
Kubernetes Ingress, Network Policies, DNS,CNI (Container Network Interface)Ingress In Kubernetes, an Ingress is a Kubernetes API object that defines rules for how incoming HTTP and HTTPS traffic should be routed to services within a cluster. An Ingress object defines the rules for how incoming requests to a particular host ...May 1, 2023·6 min read
Types of Kubernetes ServicesIn Kubernetes, there are different types of Services that you can use to specify how you want the Service to behave. By default, the ServiceType is set to ClusterIP. Four main types of Services that you can use to define how you want to expose your a...Apr 30, 2023·4 min read
Kubernetes Architecture and ComponentsTo run containerized applications, a Kubernetes cluster requires worker nodes. At least one worker node is mandatory for every cluster. These nodes are responsible for hosting the Pods that make up the application workload. The control plane manages ...Apr 23, 2023·3 min read