Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
wget https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz
tar -zxvf helm-v3.12.0-linux-amd64.tar.gz
cp linux-amd64/helm /usr/bin
helm version

搭建nfs-server

Code Block
yum install nfs* -y
vi /etc/exports
/data/nfs *(rw,sync,no_subtree_check,no_root_squash)
systemctl enable --now nfs


提前设置storage class,下面nfs服务器地址修改下,default名称空间自定

...