Files
learn/kubernetes/local_deployements.md
2024-06-07 22:37:18 -04:00

634 B

you can run using minicube! small open-source program where both the master and node both run on one machine

you can interact with the cluster using cubectl!

minikube can either start as a container or a virtual machine (make sure you have docker installed)

Setting it up

you can start minikube by running minikube start --driver=docker

Checking

just use minikube status

Interacting with Minikube

  1. get the node using kubectl get node

Note: when creating secrets, you can just use echo -n datahere | base64 to encode it