full_container_scheme/deploy-kubernetes-helm/常用命令.md

27 lines
456 B
Markdown

<!--
* @Author: admin@attacker.club
* @Date: 2022-12-30 20:41:37
* @LastEditTime: 2022-12-30 20:43:16
* @Description:
-->
# 命令
## nfs 命令行
```bash
mkdir /data/nfs -p
helm install test-storageclass \
Microsoft/nfs-client-provisioner \
--set nfs.server=192.168.66.161 \
--set nfs.path=/data/nfs
```
## 单机 minio
```bash
helm install stable/minio
helm install minio --namespace minio \
--set mode=distributed,replicas=3 stable/minio
```