Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to install Kubernetes on arch linux distro follow this step by step, before install Kubernetes on local computer, you need Docker in your local computer.
- 1. sudo pacman -S minikube kubectl kube-proxy
- 2. after installing success, put minikube start in your terminal
- 3. check installing success or not and put minikube status or kubectl version in your terminal,
- for make sure installing success
- 4. testing kubernetes is work or not, pull nginx image from docker hub, docker pull nginx
- 5. kubectl create deployment webserver --image=nginx --port=80 --replicas=3
- 6. kubectl expose deployment webserver --name=webserver --type=LoadBalancer --port=8080 --target-port=80
- 7. after create deployment and service success, put minikube service --all
- 8. copy ip address webserver and put into browser
- 9. done nginx is running on kubernetes
Add Comment
Please, Sign In to add comment