Kubernetes Series : My K8S Cheatsheet

Troubleshooting See my previous article : here. POD and Container Introspection List the current pods kubectl get pods Describe pod kubectl describe pod <name> Delete pod kubectl delete pod <name> Watch nodes continuously kubectl get nodes -w Cluster Introspection Get cluster information kubectl cluster-info Get the configuration kubectl config view Get information on a node kubectl …

Kubernetes Series : My K8S Cheatsheet Read More »

Kubernetes Series : How to choose between VMs and Containers ?

Introduction As discussed several times through my articles (i.e Docker), containers are now very popular and a lot of development and programs are moved to them. You can see on this graph Docker popularity over yeards : However, in some case, using VM still makes sense ! We will try to compare both technologies and find …

Kubernetes Series : How to choose between VMs and Containers ? Read More »

Kubernetes Series : Network Policies

Introduction In this new article we discuss about Network Policies. What is a Network Policy ? A network policy is a specification of how groups of pods are allowed to communicate with each other and other network endpoints. NetworkPolicy resources use labels to select pods and define rules which specify what traffic is allowed to the selected pods. How …

Kubernetes Series : Network Policies Read More »