部署higress到华为云

时间:2024-06-11 07:08:26

higress 部署与上云

k3s环境准备

[root@vm ~]# curl https://releases.rancher.com/install-docker/19.03.sh | sh
[root@vm ~]# curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"

[root@vm ~]# curl -sfL https://rancher-mirror.oss-cn-beijing.aliyuncs.com/k3s/k3s-install.sh | INSTALL_K3S_MIRROR=cn sh -


[root@vm ~]# mkdir -p $HOME/.kube
[root@vm ~]# cp /etc/rancher/k3s/k3s.yaml  $HOME/.kube/config
[root@vm ~]# kubectl get pod

helm准备

[root@vm ~]# wget https://get.helm.sh/helm-v3.14.0-linux-amd64.tar.gz
[root@vm ~]# tar xf helm-v3.14.0-linu