k8s的storageclass
k8s的storageclass
·
1,添加helm库helm repo add stable https://kubernetes-charts.storage.googleapis.com
2,安装nfs-client-provisionerhelm install nfs-client-provisioner stable/nfs-client-provisioner --set nfs.server={你的NFS服务IP地址} --set nfs.path={你的NFS目录}
或者 helm install nfs-subdir-external-provisioner --namespace kube-system . --set nfs.server=10.68.60.193 --set nfs.path=/data/nfs/k8s/
3,安装成功后会自动创建名为“nfs-client”的storageclass,将这个sc设为默认sckubectl patch storageclass nfs-client -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
4,进行查看
kubectl get storageclass
更多推荐
已为社区贡献1条内容
所有评论(0)