Change Node password
export KUBECONFIG=/home/guyluz/Documents/kuber/test-kubeconfig.yaml kubectl delete configmap nginx-config kubectl delete deployment nginx-deployment kubectl create configmap nginx-config --from-file=nginx.conf kubectl apply -f backend_service_and_pod.yaml kubectl apply -f nginx_deployment.yaml kubectl apply -f load_balancer.yaml
https://www.youtube.com/watch?v=7bA0gTroJjw
Create prod namespace
kubectl logs
kubectl -n prod get pods
kubectl -n prod apply -f home_service.yaml
kubectl get pods --all-namespaces
kubectl create namespace prod
kubectl get pods -o wide
kubectl get services
kubectl describe services $serviceName
kubectl describe pods
kubectl -n prod delete --all pods
kubectl -n prod delete --all svc
master - controll the worker nodes orcastra
worker nodes - machine that being controled by the master, hosting multiple pods
pods - running on worker node
kubectl get pods
kubectl delete deployment nginx-deployment kubectl delete configmap nginx-config kubectl delete pods nginx-deployment-5f8fc79b6f-64pmw
kubectl create configmap nginx-config --from-file=nginx.conf kubectl apply -f ngnix_deployment.yaml