Difference between revisions of "Kubectl: pods"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (→Clear) |
Onnowpurbo (talk | contribs) |
||
Line 38: | Line 38: | ||
==Test nginx== | ==Test nginx== | ||
− | kubectl -s http://localhost:8080 run nginx --image=nginx -replicas=3 --port=80 | + | kubectl -s http://localhost:8080 run nginx --image=nginx --replicas=3 --port=80 |
kubectl get rc | kubectl get rc | ||
kubectl get services | kubectl get services |
Revision as of 12:01, 17 October 2020
Sumber: https://kubernetes.io/docs/tutorials/hello-minikube/
Create Deployment
kubectl create deployment hello-node --image=k8s.gcr.io/echoserver:1.4 kubectl create deployment nginx --image=nginx kubectl get deployments kubectl get pods kubectl get events kubectl config view
Create Service
kubectl expose deployment hello-node --type=LoadBalancer --port=8080 kubectl expose deployment nginx --type=LoadBalancer --port=8080 kubectl get services minikube service hello-node
Enable addons
minikube addons list minikube addons enable metrics-server kubectl get pod,svc -n kube-system minikube dashboard
minikube addons disable metrics-server
Clear
kubectl delete -n default pod hello-world kubectl delete service hello-node kubectl delete deployment hello-node minikube stop minikube delete
Test nginx
kubectl -s http://localhost:8080 run nginx --image=nginx --replicas=3 --port=80 kubectl get rc kubectl get services kubectl get deployments kubectl get pods kubectl expose deployment nginx --port=80 --type=LoadBalancer kubectl get services kubectl describe svc nginx
Etc
kubectl get pods
kubectl describe pod hello-minikube-6ddfcc9757-mljlz kubectl describe pod balanced-5744b548b4-k9mch
kubectl -s http://localhost:8080 run nginx --image=nginx --replicas=3 --port=80 kubectl run nginx --image=nginx --replicas=3 --port=80