Working with kinD (Kubernetes-in-Docker) and minikube

·

1 min read

Working with kinD (Kubernetes-in-Docker) and minikube

NOTE: If you havn't installed kinD or minikube in your system, go and check my installation blog here

kinD

  • Create your first cluster using:
    kind create cluster
    
    To know more about kind create cluster commands just type:
    kind create cluster --help
    
    Specifying your own name to the cluster using:
    kind create cluster --name <name_of_cluster>
    
    Deleting a cluster using
    kind delete <cluster_name>
    
    Getting created clusters using
    kind get clusters
    

minikube

  • Start your minikube cluster by using
    minikube start
    
    Check status of your minikube cluster using
    minikube status