wuzy-cn / tech

0 stars 0 forks source link

Hello World - Eternal Sunshine #1

Open ESWZY opened 1 year ago

ESWZY commented 1 year ago

https://tech.wuzy.cn/p/hello-world/

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick

ESWZY commented 1 year ago

Hello world!

Deploy my tech blog

ESWZY commented 1 year ago
# Install Go
wget https://go.dev/dl/go1.20.5.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin

# Install Docker
sudo snap refresh
sudo snap install docker

# Install and start local Kubernetes
sudo snap install kubectl --classic
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
sudo minikube start --kubernetes-version=1.26.6 --force