Kubernetes

Kubernetes Interview Questions – Part 2

What is the default cascade deletion strategy in Kubernetes? Kubernetes deletes dependent resources in background mode by default, which means when you delete a resource, for example, Deployment, the controller deletes the Deployment resource, returns you the result and removes ReplicaSets and Pods in the background. In the foreground mode, it waits until all dependent resources get …

Kubernetes Interview Questions – Part 2 Read More »

“Kubernetes WordPress Deployment with MySQL Cluster IP and NodePort”

Cluster IP Node Port Tier Backend —->  clusterip  db to to wordpress Frontend—-> node port or Ingress controller Cluster IP  –>mysql Nodeport–> wordpress So we will be having two deployment one is of mysql, and other is of wordpress. And in wordpress deployment we have to put cluster ip of mysql So mysql endpoint 10.99.249.125 …

“Kubernetes WordPress Deployment with MySQL Cluster IP and NodePort” Read More »

Kubernetes Course Content

ArchitechtureMaster Node InstallationWorker Node InstallationNamespaceReplication controllerlabel and selectorReplica setDeployment ControllerPod vs ContainerPod schedulingNode label and selectorTaint and ToleranceNode level Affinity and Anti AffinityPodAffinity and Anti-AffinityResource and Compute QuotaRequest and LimitKubernetes NetworkingService Ip Cluster TypeNode PortIngress ControllerCore DNSPod network policyRBACService AccountVolume static VolumePersistence Volume Dynamic ProvisioningEKS VolumeLocal VolumeSecret and Config MapHorizontal Pod AutoscalingProbesHelm ChartOpenSource Tool like …

Kubernetes Course Content Read More »

Kubernetes (Kubectl) Cheat Sheet

Kubernetes came into the picture after the Software development teams started switching from monolithic and microservices architecture to containerization because of scalability and deployment issues. Containerization does solve the issue of scalability, downtime and dependency management quite efficiently however there are still some issues that remain unsolved. Kubernetes TerminologyTerms that you should be familiar with …

Kubernetes (Kubectl) Cheat Sheet Read More »

Scroll to Top