Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

kubernetes archlinux install

How to install kubernetes on arch linux distro, 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
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
Comment

PREVIOUS NEXT
Code Example
Shell :: how to remove file changes in git 
Shell :: aws cli download multiple files s3 
Shell :: ubuntu install webstorm 
Shell :: php curl skip ssl verification 
Shell :: installing dolphin on ubuntu 
Shell :: lollypop music player install ubuntu 
Shell :: react-native clean and rebuild 
Shell :: how to install openssl on windows 10 
Shell :: Failed to fetch platform cordova-android@^8.0.0 
Shell :: install babel loader 
Shell :: org.apache.spark.api.python.PythonUtils.getPythonAuthSocketTimeout ubuntu 
Shell :: add all files in directory to git 
Shell :: yarn global package not found 
Shell :: Port 80 in use by "Unable to open process" with PID 4! 
Shell :: how to uninstall neovim on linux 
Shell :: apt install postgres client 
Shell :: fatal: unable to access Could not resolve host wsl 
Shell :: how to push code to github forcefully 
Shell :: command to find Server’s Public IP Address 
Shell :: install node 12 linux 
Shell :: reactjs capacitor init 
Shell :: docker run ubuntu image 
Shell :: centos 7 install ifconfig 
Shell :: bash for loop one line 
Shell :: bash view the contents of a sqfs file 
Shell :: git remove all local changes 
Shell :: notepad++ linux 
Shell :: yum add proxy 
Shell :: count occurrences of word in file linux 
Shell :: wsl file to unix format 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =