Here are some things you should know to crack a Kubernetes job interview: By having a good understanding of these topics, you should be well-prepared to answer questions and demonstrate...
What is Helm? Helm is an open-source package manager for Kubernetes. It helps you define, install, and upgrade complex applications and services on your Kubernetes clusters. Helm packages these applications...
What is Helm and why is it used in Kubernetes? Helm is a package manager for Kubernetes that makes it easier to manage and deploy applications. It provides a set...
The easiest way to create Helm chart for a simple app with services and ingress controller is to use the Helm CLI and chart templates. Here are the steps: By...
For people starting with docker and kubernetes, here’s simple example to understand it. Imagine you are a farmer and you have a farm with different types of animals. Each animal...
Taints and tolerations are two important concepts in Kubernetes that allow you to control how pods are scheduled on nodes. Taints are used to repel pods from nodes, while tolerations...
Kubernetes is a powerful container orchestration platform that allows you to easily manage and scale your containerized applications. One of the key features of Kubernetes is the ability to use...
One option is to use feature flagging with Kubernetes, which allows you to gradually roll out new versions of your application to a small percentage of users before rolling it...
In Helm charts, loops can be written using the Go template language. Helm uses the Go template engine to generate Kubernetes manifests from chart templates. Here is an example of...
Kubernetes is a powerful and widely-used container orchestration platform that allows users to easily scale their applications. Scaling in Kubernetes refers to the process of increasing or decreasing the number...
Init containers are used quite often in Kubernetes and Azure Kubernetes Service. They are not very different from your regular containers. You need to remember only two things – initContainers...
One of the most common scenarios that we come across is managing Kubernetes rolling updates. In this post we will cover how to do it and the changes required in...