#添加仓库
helm repo add $REPO_NAME $REPO_URL
#更新仓库
helm repo update $REPO_NAME
#下载chart
helm fetch $REPO_NAME/$CHART_NAME --version $VERSION
#调试模版
helm install $NAME ./ --dry-run --debug
#查看manifest
helm get manifest ${RELEASE_NAME}
#更新依赖
helm dependency update
#查看release历史(详细)
helm history --col-width 6000 RELEASE_NAME