安装helm
参考文章:https://blog.51cto.com/u_12099683/4538065 官网:https://helm.sh/docs/intro/install/
下载及安装
wget https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz
tar -zxvf helm-v3.5.4-linux-amd64.tar.gz
cd linux-amd64/
cp helm /usr/bin/helm
查看版本
helm version
添加仓库
helm repo add stable http://mirror.azure.cn/kubernetes/charts
helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
helm repo add flink-operator-repo https://archive.apache.org/dist/flink/flink-kubernetes-operator-0.1.0/
helm repo update
查看仓库
helm repo list
简单测试
#生成chart文件
helm create one
#打包
helm package one
#安装
helm install one one-0.1.0.tgz