1) How much does it cost to join the course? A: It’s absolutely free! There is no cost associated with joining the course. NOTE: Please note that there is a …
Why do Kubernetes Pods fail? The two most common reasons for Kubernetes pod failure is The container inside the pod doesn’t start, which we also call a startup failure. The …
WARNING: Before reading this doc 🙂 🙂 1: As everyone needs to sign NDA with CNCF, I can’t tell you the exact question asked during the exam neither I have GB of …
As per the official Github link Krew is a tool that makes it easy to use kubectl plugins. Krew helps you discover plugins, install and manage them on your machine. It …
As per the official github link kubewatch is a Kubernetes watcher that publishes notifications to Slack/hipchat/mattermost/flock channels. It watches the cluster for resource changes and notifies them through webhooks. Basically kubewatch …
Helm is a package manager for Kubernetes. Similar to yum but for Kubernetes. It bundles all related manifests(such as deployment, service, etc.) into a chart. When installing chart, helm creates …
What is MetalLB? As per official documentation MetalLB is a load-balancer implementation for bare metal Kubernetes clusters, using standard routing protocols. Now the question is, why do we need it? In cases where …
Reference: https://kind.sigs.k8s.io/ As per official documentation kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be …
Reference https://k9scli.io/ What is k9s? As per official documentation K9s is a terminal-based UI to interact with your Kubernetes clusters. K9s is an open-source project and is written in GO …