其他分享
首页 > 其他分享> > helm命令随记

helm命令随记

作者:互联网

安装

github release

https://github.com/helm/helm/releases

压缩包里有helm文件,解压后将所在路径加入PATH环境变量。或者mv到/usr/bin目录下

仓库配置

添加存储库

helm repo add stable [url]
helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
helm repo update

查看配置的存储库

helm repo list
helm search repo stable

删除

helm repo remove aliyun

基本使用

helm 快速部署应用

  1. 搜索应用

helm search repo weave

  1. 根据搜索内容选择安装

helm install ui stable/weave-scope

  1. 查看安装状态
helm list
helm status ui
kubectl get svc
kubectl edit svc ui-weave-scope

创建自己的chart

  1. 命令创建chart

helm create chartname

  1. template创建yaml

kubectl create deployment web1 --image=nginx --dry-run yaml > deploymnet.yaml
kubectl expose deployment web1 --port=80 --target-port=80 --type=NodePort --dry-run -o yaml > service.yaml

  1. 安装

helm install web1 mychart

  1. 升级

helm upgrage mychart

标签:kubectl,yaml,--,chart,repo,命令,helm,随记
来源: https://www.cnblogs.com/pusidun/p/16611510.html