k3s 安装 nfs-client 存储类
Posted gongzb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了k3s 安装 nfs-client 存储类相关的知识,希望对你有一定的参考价值。
安装 nfs 服务
mkdir /data -m 777 vi /etc/exports
/data *(rw,insecure,no_root_squash)
service nfs restart
安装 k3s 服务
curl -sfL https://get.k3s.io | sh -s - --kube-apiserver-arg "feature-gates=RemoveSelfLink=false"
如果实现已经安装过,需要手动修改启动文件
ExecStart=/usr/local/bin/k3s \\ server \\ \'--kube-apiserver-arg\' \\ \'feature-gates=RemoveSelfLink=false\' \\
安装 helm
https://github.com/helm/helm/releases
curl -O https://get.helm.sh/helm-v3.8.0-linux-amd64.tar.gz tar zxvf helm-v3.8.0-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/ export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
安装 nfs-client-provisioner
helm repo add moikot https://moikot.github.io/helm-charts helm -n kube-system install nfs-client-provisioner moikot/nfs-client-provisioner --version 1.3.0 --set nfs.server=192.168.57.11 --set nfs.path=/data
效果测试
helm repo add bitnami https://charts.bitnami.com/bitnami helm install redis bitnami/redis --set global.storageClass=nfs-client
3.5 样本分布K-S检验 ——python实战
文章目录
import tensorflow as tf
print("TensorFlow version:", tf
以上是关于k3s 安装 nfs-client 存储类的主要内容,如果未能解决你的问题,请参考以下文章