Kubernetes(k8s)-Helm
发布时间: 2023-6-30
文章作者: myluzh
分类名称: Kubernetes
朗读文章
0x01 安装Helm
1.github安装helm
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
2.国内加速源安装helm
wget https://mirrors.huaweicloud.com/helm/v3.9.4/helm-v3.9.4-linux-amd64.tar.gz
tar -zxvf helm-v3.9.4-linux-amd64.tar.gz
sudo cp linux-amd64/helm /usr/local/bin/
helm version
0x02 添加Chart仓库
# 配置helm源地址
helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
helm repo add huaweicloud https://mirrors.huaweicloud.com/helm/
helm repo add bitnami https://charts.bitnami.com/bitnami
# 查看仓库
helm repo list
# 更新仓库
helm repo update
# 删除仓库
helm repo remove aliyun
0x03 使用helm安装mysql
helm search repo mysql
helm install my-mysql bitnami/mysql
标签: k8s kubernetes helm
手机扫一扫访问
发表评论