Minikube Tutorials: Minikube Installation On EC2

Kubernets’s is a demanding technology and needs lots of hands on and through practise to master it. Luckily we have tools to bootstrap single node cluster on kubernete’s where we…

Read more »

Kubernetes Interview Questions and Answer Part – 8

What is the primary application transport mechanism for the Kubernetes API Server? Server side RPC calls Javascript over WebSockets TCP multiplexing over HTTP/S JSON Over HTTP/S (Ans) Objects in the…

Read more »

Kubernetes Interview Questions and Answer Part – 7

What is the main reason why the Ingress API has not been developed beyond its original specification? It was delivered to test ingress use cases, but annotations took over and…

Read more »

Kubernetes Interview Questions and Answer Part – 4

Which of the following best describes Kubernetes from a licensing standpoint? Proprietary technology under a subscription license from Google, Inc Open-source under the OpenStack Foundation Proprietary technology under a subscription…

Read more »

Update the taints on one or more nodes in Kubernetes

What is meaning of taint? a trace of a bad or undesirable substance or quality. What is tainted? spoiled; damaged in quality, taste, or value: Follwing are workload which run…

Read more »

Kubernetes Configmap explained using example

Content of reverseproxy.conf Commands to execute to create configmap Example pod using configmap Validating configmap inside a pod

Read more »

How to expose multiple port in services in kubernetes or Multi-Port Services

You have two options: You could have multiple services, one for each port. As you pointed out, each service will end up with a different IP address You could have…

Read more »

Top 10 best DevOps Tools and Certification to Utilize In 2020 – 2021.

Here, I am going to tell you about Top 10 best DevOps Tools and Certification to Utilize In 2019 – 2020, which will be helpful for your Bright future. 1….

Read more »
kubernetes-yaml

Generate yaml file from existing Kubernetes resources of cluster?

Read more »
kuberentes-faq

Kubernetes FAQ

Question 1 – Add containers to a Kubernetes pod on runtime or Allow containers to be added to a running pod Answer: Adding or removing containers to a pod is…

Read more »

How to delete/remove/clean existing corrupted or old kubeadm kubernetes clusters setup?

RHEL / Centos Ubuntu How to remove or cleanup kubernetes worker nodes in Centos 7? How to remove or cleanup kubernetes worker nodes in Ubuntu?

Read more »

Setting up Kubernetes Clusters using Kubeadm Manual way in RHEL 7 / Centos7

What is Kubeadm? Kubeadm helps you bootstrap a minimum viable Kubernetes cluster that conforms to best practices. Kubeadm is a tool built to provide kubeadm init and kubeadm join as…

Read more »

Setting up Kubernetes Clusters using Kubeadm Manual way in Ubuntu 16.04 Xenial

What is Kubeadm? Kubeadm helps you bootstrap a minimum viable Kubernetes cluster that conforms to best practices. Kubeadm is a tool built to provide kubeadm init and kubeadm join as…

Read more »

Kubernetes Errors: weave-net pod CrashLoopBackOff

Errors Solutions https://stackoverflow.com/questions/39872332/how-to-fix-weave-net-crashloopbackoff-for-the-second-node

Read more »

Kubernetes Errors: Kubernetes nodes are in ‘”network not ready” & “No networks found”

Errors Solutions https://stackoverflow.com/questions/47107117/how-to-debug-when-kubernetes-nodes-are-in-not-ready-state https://stackoverflow.com/questions/50085323/kubernetes-worker-node-staying-in-notready-state

Read more »

Kubernetes Error: kubeadm related errors and solutions

Error 1 Error 1 Error 2 Error 3 Solutions 3 Error 4 Solutions 4

Read more »

Kubernetes supports Windows containers

With the release of Kubernetes v1.14, Windows Server node support has officially graduated from beta to stable! This support enables developers and operators with Windows Server based applications to containerize…

Read more »

Kubernetes volume hostPath explained with examples

The hostPath volume mounts a resource from the host node filesystem. the resources could be directory, file socket, character, or block device. These resources mu A hostPath volume mounts a…

Read more »

Kubernetes volume emptyDir explained with examples

Here are the following facts for emptyDir storage type in Kubernetes An emptyDir volume is first created when a Pod is assigned to a Node and initially its empty A…

Read more »

Working with multiple virtual Kubernetes clusters aka Namespaces

Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called namespaces. Namespaces ca be used in multiple environment with many users spread across multiple…

Read more »