Minikube : Basic Usage2020/08/05 |
This is the basic operation on Single Node Kubernetes Cluster on Minikube.
|
[1] | Create or Delete Pods. |
# run [test-nginx] pods ubuntu@dlp:~$ kubectl create deployment test-nginx --image=nginx deployment.apps/test-nginx created kubectl get pods NAME READY STATUS RESTARTS AGE test-nginx-7b7d9954bd-8wwsp 1/1 Running 0 15s # show environment variable for [test-nginx] pod ubuntu@dlp:~$ kubectl exec test-nginx-7b7d9954bd-8wwsp -- env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin HOSTNAME=test-nginx-7b7d9954bd-8wwsp KUBERNETES_SERVICE_HOST=10.96.0.1 KUBERNETES_SERVICE_PORT=443 KUBERNETES_SERVICE_PORT_HTTPS=443 KUBERNETES_PORT=tcp://10.96.0.1:443 KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443 KUBERNETES_PORT_443_TCP_PROTO=tcp KUBERNETES_PORT_443_TCP_PORT=443 KUBERNETES_PORT_443_TCP_ADDR=10.96.0.1 NGINX_VERSION=1.19.1 NJS_VERSION=0.4.2 PKG_RELEASE=1~buster HOME=/root # shell access to [test-nginx] pod ubuntu@dlp:~$ kubectl exec -it test-nginx-7b7d9954bd-8wwsp -- bash
hostname test-nginx-7b7d9954bd-8wwsp
root@test-nginx-7b7d9954bd-8wwsp:/#
exit
# show logs of [test-nginx] pod ubuntu@dlp:~$ kubectl logs test-nginx-7b7d9954bd-8wwsp /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh 10-listen-on-ipv6-by-default.sh: Getting the checksum of /etc/nginx/conf.d/default.conf 10-listen-on-ipv6-by-default.sh: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh /docker-entrypoint.sh: Configuration complete; ready for start up # scale out pods ubuntu@dlp:~$ kubectl scale deployment test-nginx --replicas=3 deployment.apps/test-nginx scaled ubuntu@dlp:~$ kubectl get pods NAME READY STATUS RESTARTS AGE test-nginx-7b7d9954bd-8vb2j 1/1 Running 0 26s test-nginx-7b7d9954bd-8wwsp 1/1 Running 0 2m46s test-nginx-7b7d9954bd-ldmm4 1/1 Running 0 26s # set service ubuntu@dlp:~$ kubectl expose deployment test-nginx --type="NodePort" --port 80 service/test-nginx exposed ubuntu@dlp:~$ kubectl get services test-nginx NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE test-nginx NodePort 10.102.1.143 <none> 80:32128/TCP 5subuntu@dlp:~$ minikube service test-nginx --url http://192.168.39.80:32128 ubuntu@dlp:~$ curl http://192.168.39.80:32128 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> ..... ..... <p><em>Thank you for using nginx.</em></p> </body> </html> # delete service ubuntu@dlp:~$ kubectl delete services test-nginx service "test-nginx" deleted # delete pods ubuntu@dlp:~$ kubectl delete deployment test-nginx deployment.extensions "test-nginx" deleted |
Sponsored Link |