今天看文档,Helm的文档写的真的是不敢恭维啊
https://helm.sh/docs/intro/quickstart/
https://helm.sh/docs/intro/install/
首先第一个问题: mac os 安装:
1 |
brew install helm |
需要修改为:
1 |
brew install kubernetes-helm |
第二个问题:
初始化repository
1 |
helm repo add stable https://kubernetes-charts.storage.googleapis.com/ |
安装完成直接运行会报错Error: Couldn’t load repositories file,需要先执行
1 |
helm init --client-only |
第三个问题: stable search 无结果
解决方案: https://www.jianshu.com/p/fa4b1bca913a
第四个问题,无法安装mysql按照文档(Error: could not find tiller)
需要执行helm init –wait
这个看了一下是因为我们的k8s里边的没有安装相应的tiller-deploy 的deployments
我们重新安装就行拉
Latest posts by Zhiming Zhang (see all)
- aws eks node 自动化扩展工具 Karpenter - 8月 10, 2022
- ReplicationController and ReplicaSet in Kubernetes - 12月 20, 2021
- public key fingerprint - 5月 27, 2021