Posts

Showing posts with the label Local Kubernetes Cluster

Set Up Local Kubernetes Cluster with KIND (Single node as well as multi node)

  Kind   is a tool built for running local Kubernetes clusters using Docker containers as nodes. kind was primarily designed for testing Kubernetes itself, but it is actually quite useful for creating a Kubernetes environment for local development, QA, or CI/CD A fully functioning environment using kind includes a few different components. For our purposes, we will install the following list of software. Docker: (To create KINDcontroller and worker node For k8s cluster) The kubectl tool: (To communicate with K8s Cluster) kind: (Commnad line tool by which you can create single node or multinode cluster) A local Docker registry: (To push and pull custom images) An Ingress controller. (To access deployed application to outside word) We can use these steps to create a repeatable script to setup a local Kubernetes cluster whenever you need it. DOCKER: The kind p r oject stands for “Kubernetes in Docker”. As such, you will need to install Docker to get started. This is typic...