k8s helm

命令

添加新仓库

helm repo add [NAME] [URL] [flags]

列出所添加的仓库

helm repo list
helm list
在hub中也就是helm的官方仓库,https://hub.helm.sh
helm search hub etcd

在已添加的仓库中搜索etcd, 类似centos包含第三方yum源中搜索rpm包

helm search repo etcd

指定某些设置

helm install etcd bitnami/etcd 
  --set statefulset.replicaCount=3 
  --set persistence.enabled=true 
  --set persistence.size=8Gi 
  --set service.type=NodePort
本人水平有限,还在不断学习中 难免有很多错误或者遗漏,望见谅
原文地址:https://www.cnblogs.com/faberbeta/p/14311853.html