Kubernetes 包管理器 Helm
Kubernetes Helm 评论 1 大约 804 字下载
https://github.com/helm/helm/releases
配置 Helm
第一步
解压压缩包
tar -zxvf helm-v3.8.0-linux-amd64.tar.gz
第二步
移动到系统bin
目录下(这样就可以直接使用helm
命令了)
mv linux-amd64/helm /usr/local/bin/helm
添加仓库
helm repo add 仓库名称 仓库地址
Bitnami
helm repo add bitnami https://charts.bitnami.com/bitnami
阿里
已停止同步更新。
helm repo add cloudnativeapp https://cloudnativeapp.github.io/charts/curated
微软
已停止同步更新。
helm repo add azure https://mirror.azure.cn/kubernetes/charts
查看仓库
helm repo list
删除仓库
helm repo remove azure
更新仓库
helm repo update
搜索容器
helm search repo nginx
安装容器
helm install test-nginx bitnami/nginx --version 12.0.0 -n dev
安装本地tgz
helm install ingress-nginx ./ingress-nginx-4.0.16.tgz -n dev
卸载容器
helm uninstall test-nginx
查看 list
helm list
查看 status
helm status test-nginx
开源网址
阅读 1025 · 发布于 2022-03-26
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称:
-
fHLvlxbf 1楼
e
Chrome | Windows 10 2023-07-24
随便看看
换一批
-
PHP 序列化与反序列化阅读 2073
-
Spring 创建 IOC 容器步骤阅读 940
-
HTTP Bad chunk header 和 Illegal or missing hexadecimal sequence in chunked-encoding 解决方法阅读 597
-
Spring Boot JPA 设置字段 unsigned阅读 3649
-
软件-系统架构设计师:软件过程改进 - CMMI阅读 2557
-
MongoDB 命令阅读 1957
-
软考-系统架构设计师:处理流程设计阅读 1996
-
Go 加密算法之 md5阅读 1695
-
算法:数组中的第 K 个最大元素阅读 995
-
Linux grep 转义特殊符号阅读 11063