Kubernetes (K8s in short) is an open-source container orchestration platform introduced by Google in 2014. It is a successor of Borg, Google’s in-house orchestration system that accumulated over a decade of the tech giant’s experience of running large enterprise workloads in production. In 2014, Google decided to …
Read MoreCluster Info Get clusters 1kubectl config get-clusters Get cluster info. 1kubectl cluster-info 2Kubernetes master is running at https://172.17.0.58:8443 Contexts A context is a cluster, namespace and user. Get a list of contexts. 1kubectl config get-contexts Get the current context. 1kubectl config current-context …
Read MoreMinikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster. Installation of Minikube on Ubuntu 1curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube 2sudo cp minikube /usr/local/bin && rm …
Read More