kubernetes helm安装与使用
Helm是K8s的包管理器,类似于yum、pip,能快速查找、下载和安装软件包。
1、部署应用的基本过程
a)编写yaml文件
b)deployment
c)暴露端口(service)
d)Ingress
特点是部署单一应用、少数服务应用比较合适。
但是:部署微服务项目,可能有几十个服务,每个服务都头一套yaml文件,如果有版本管理就会比较麻烦,如版本回滚的问题。
使用Helm可以解决问题:
1)使用helm可以把这些yaml作为一个整体管理
2)实现yaml高效复用
3)使用helm应用级别的版本管理
helm三个基本概念:
1)helm
一个命令行的客户端工具,主要用于k8s应用chart创建、打包、发布、管理
2)chart
把yaml打包,是yaml集合。一系列资源相关文件的集合
3)Release
基于chart部署的实体,应用级别的版本管理
Helm v3以后的版本,架构中将Tiller删除了,release可以在不同的命名空间中重复使用,将chart推送到docker镜像仓库中
Helm安装
(1)Helm版本与kubernetes版本兼容性
https://helm.sh/docs/topics/version_skew/
序号 | Helm | k8s |
---|---|---|
1 | 3.11.x | 1.26.x-1.23.x |
2 | 3.10.x | 1.25.x-1.22.x |
我这里kubernetes版本为1.26.4,所以选择helm版本为3.12.x 。
安装方式选择二进制版本安装。
(2)下载二进制文件
下载地址
https://github.com/helm/helm/releases
选择:Linux amd64 (checksum )
wget https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz
(3)解压配置
tar -zxvf helm-v3.12.0-linux-amd64.tar.gz
#移动执行脚本到系统环境
mv linux-amd64/helm /usr/local/bin/helm
#执行helm命令
helm version
备注:
Helm 3 中移除了Tiller 之后,不存在此命令。不再需要在集群中安装 Tiller 即可使用 Helm。
3、配置helm仓库
helm repo add 仓库 地址
helm repo add stable http://mirror.azure.cn/kubernetes/charts
helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
helm repo update
helm repo list
[root@master linux-amd64]# helm repo list
NAME URL
stable http://mirror.azure.cn/kubernetes/charts
删除存储库:
helm repo remove aliyun
使用chart快速部署
第一步: 使用命令搜索应用
helm search repo 名称 (weave)
helm search repo weave
[root@master linux-amd64]# helm search repo weave
NAME CHART VERSION APP VERSION DESCRIPTION
stable/weave-cloud 0.3.9 1.4.0 DEPRECATED - Weave Cloud is a add-on to Kuberne...
stable/weave-scope 1.1.12 1.12.0 DEPRECATED - A Helm chart for the Weave Scope c...
第二步:根据搜索内容选择安装
helm install 安装之后名称 搜索之后应用名称
[root@k8s-master0 ~]# helm install ui weave-scope
WARNING: This chart is deprecated
NAME: ui
LAST DEPLOYED: Fri Jun 2 15:26:41 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
NOTES:
You should now be able to access the Scope frontend in your web browser, by
using kubectl port-forward:
kubectl -n default port-forward $(kubectl -n default get endpoints \
ui-weave-scope -o jsonpath='{.subsets[0].addresses[0].targetRef.name}') 8080:4040
then browsing to http://localhost:8080/.
For more details on using Weave Scope, see the Weave Scope documentation:
https://www.weave.works/docs/scope/latest/introducing/
查看安装后的状态
helm list
[root@k8s-master0 ~]# helm list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
ui default 2 2023-06-02 15:29:08.427030609 +0800 CST deployed weave-scope-1.1.12 1.12.0
helm status 安装之后名称
[root@k8s-master0 ~]# helm status ui
NAME: ui
LAST DEPLOYED: Fri Jun 2 15:29:08 2023
NAMESPACE: default
STATUS: deployed
REVISION: 2
NOTES:
You should now be able to access the Scope frontend in your web browser, by
going to the address or hostname of any node in the cluster, using http
and the port given by:
SCOPE_PORT=$(kubectl -n default get svc ui-weave-scope \
-o jsonpath='{.spec.ports[?(@.name==http)].nodePort}'); echo $SCOPE_PORT
Most likely one or more of the URLs given by this pipeline will work:
SCOPE_PORT=$(kubectl -n default get svc \
-o jsonpath='{.spec.ports[?(@.name==http)].nodePort}'); \
kubectl get nodes -o jsonpath='{.items[0].status.addresses[*].address}' | \
xargs -I{} -d" " echo http://{}:$SCOPE_PORT
For more details on using Weave Scope, see the Weave Scope documentation:
https://www.weave.works/docs/scope/latest/introducing/
第三步
helm基本使用
更新chart
[root@k8s-master0 ~]# helm upgrade ui weave-scope
WARNING: This chart is deprecated
Release "ui" has been upgraded. Happy Helming!
NAME: ui
LAST DEPLOYED: Fri Jun 2 15:29:08 2023
NAMESPACE: default
STATUS: deployed
REVISION: 2
NOTES:
You should now be able to access the Scope frontend in your web browser, by
going to the address or hostname of any node in the cluster, using http
and the port given by:
SCOPE_PORT=$(kubectl -n default get svc ui-weave-scope \
-o jsonpath='{.spec.ports[?(@.name==http)].nodePort}'); echo $SCOPE_PORT
Most likely one or more of the URLs given by this pipeline will work:
SCOPE_PORT=$(kubectl -n default get svc \
-o jsonpath='{.spec.ports[?(@.name==http)].nodePort}'); \
kubectl get nodes -o jsonpath='{.items[0].status.addresses[*].address}' | \
xargs -I{} -d" " echo http://{}:$SCOPE_PORT
For more details on using Weave Scope, see the Weave Scope documentation:
https://www.weave.works/docs/scope/latest/introducing/
由于没有对外暴露端口,修改为对外暴露端口
kubectl edit svc ui-weave-scope
ports:
- name: http
port: 80
protocol: TCP
targetPort: http
type: NodePort
自己创建Chart
1、使用命令创建chart
[root@k8s-master0 ~]# cd zh/
[root@k8s-master0 zh]# ls
charts Chart.yaml templates values.yaml
其中chart.yaml当前chart属性配置信息
templates编写yaml文件放到这个目录中
values.yaml可以用的全局变量
2、在templates文件夹中创建两个yaml文件:deployment.yaml、service.yaml
[root@k8s-master0 zh]# kubectl create deployment nginx-zh --image=nginx --dry-run=client -oyaml > templates/deployment.yaml
[root@k8s-master0 zh]# kubectl create svc nodeport nginx-zh --tcp=80:80 --dry-run=client -oyaml > templates/service.yaml
3、安装zh
[root@k8s-master0 ~]# helm install nginx-zh zh/
检查自己安装的情况
yaml文件高效互动:应用升级(动态)
1、通过传递参数,动态渲染模板,yaml内容动态传入参数生成。
修改values.yaml文件,定义变量和值
2、具体yaml文件中获取变量值
replicas: 1
image: nginx
label: nginx
port: 80
在deployment.yaml和service.yaml文件采用表达式修改
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: {{ .Release.Name }}
name: {{ .Release.Name }}
spec:
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: {{ .Release.Name }}
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: {{ .Release.Name }}
spec:
containers:
- image: {{ .Values.image }}
name: {{ .Release.Name }}
resources: {}
status: {}
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
app: {{ .Release.Name }}
name: {{ .Release.Name }}
spec:
ports:
- name: 80-80
port: 80
protocol: TCP
targetPort: 80
selector:
app: {{ .Release.Name }}
type: NodePort
status:
loadBalancer: {}
[root@k8s-master0 ~]# helm install nginx-zh zh/
NAME: nginx-zh
LAST DEPLOYED: Fri Jun 2 15:49:04 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
其中:{{ .Release.Name}} 生成名字
{{ .Values.port}} 取得的value中的值
文章评论