k8s-----19、Helm

Helm

  • 1、引入
  • 2、概述
    • 2.1 重点
    • 2.2 V3版本的Helm
      • 2.2.1 与之前版本的不同之处
      • 2.2.2 V3版本的运行流程
  • 3、安装和配置仓库、一些附带操作
    • 3.1 安装
    • 3.2 配置仓库
    • 3.3 常用命令
    • 3.4 添加helm的自动补齐
  • 4、快速部署应用(weave应用)
  • 5、 自行创建Chart
    • 5.1 Chart目录内容解析
    • 5.2 简单安装部署
    • 5.3 应用升级回退
  • 6、Chart模板实现高效复用
    • 6.1 在values.yaml文件中定义全局变量
    • 6.2 在templates中的yaml文件中定义变量

1、引入

  • K8S 上的应用对象,都是由特定的资源描述组成,包括 deployment、service 等。都保存 各自文件中或者集中写到一个配置文件。然后 kubectl apply –f 部署。如果应用只由一 个或几个这样的服务组成,上面部署方式足够了。而对于一个复杂的应用,会有很多类似 上面的资源描述文件,例如微服务架构应用,组成应用的服务可能多达十个,几十个。如 果有更新或回滚应用的需求,可能要修改和维护所涉及的大量资源文件,而这种组织和管 理应用的方式就显得力不从心了。且由于缺少对发布过的应用版本管理和控制,使 Kubernetes 上的应用维护和更新等面临诸多的挑战,主要面临以下问题:(1)如何将这 些服务作为一个整体管理 (2)这些资源文件如何高效复用 (3)不支持应用级别的版本管理

2、概述

2.1 重点

  • Helm 是一个 Kubernetes 的包管理工具,就像 Linux 下的包管理器,如 yum/apt 等,可以 很方便的将之前打包好的 yaml 文件部署到 kubernetes 上。
  • Helm 有 3 个重要概念: (1)helm:一个命令行客户端工具,主要用于 Kubernetes 应用 chart 的创建、打包、发 布和管理。 (2)Chart:简单理解就是把yaml文件进行打包,是yaml文件的集合。官方描述为应用描述,一系列用于描述 k8s 资源相关文件的集合。 (3)Release:基于 Chart 的部署实体。一个 chart 被 Helm 运行后将会生成对应的一个 release;将在 k8s 中创建出真实运行的资源对象。通俗来说,每次部署后都会对应一个版本,也是所说的release。主要是为了进行版本管理。

2.2 V3版本的Helm

2.2.1 与之前版本的不同之处

  • 删除了Tiller
  • release可以在不同命名空间中进行重用
  • 可以将Chart直接推送到docker镜像仓库中

2.2.2 V3版本的运行流程

在这里插入图片描述

3、安装和配置仓库、一些附带操作

3.1 安装

官网下载V3版本Helm

 [root@master helm]# tar zxvf helm-v3.8.2-linux-amd64.tar.gz 
linux-amd64/
linux-amd64/helm
linux-amd64/LICENSE
linux-amd64/README.md
[root@master helm]# ls
helm-v3.0.0-linux-amd64.tar.gz  helm-v3.8.2-linux-amd64.tar.gz  linux-amd64
[root@master helm]# cd linux-amd64/
[root@master linux-amd64]# ls
helm  LICENSE  README.md
[root@master linux-amd64]# mv helm /usr/bin/  #移动 

3.2 配置仓库

##添加仓库: helm repo add 自己起仓库名字   仓库地址 
[root@master ~]# helm repo add stable http://mirror.azure.cn/kubernetes/charts  ##添加微软仓库
"stable" has been added to your repositories
[root@master ~]# helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts 添加阿里云仓库
"aliyun" has been added to your repositories
[root@master ~]# helm repo update  ##更新仓库[root@master ~]# helm repo list  ##列出仓库信息
NAME  	URL                                                   
stable	http://mirror.azure.cn/kubernetes/charts              
aliyun	https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts[root@master ~]# helm repo remove stable   ##删除仓库
"stable" has been removed from your repositories
[root@master ~]# helm repo list
NAME  	URL                                                   
aliyun	https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts

3.3 常用命令

命令描述
dependency管理 chart 依赖
get下载一个 release。可用子命令:all、hooks、manifest、notes、values
history获取 release 历史
install安装一个 chart
list列出 release
package将 chart 目录打包到 chart 存档文件中
pull从远程仓库中下载 chart 并解压到本地 # helm pull stable/mysql – untar
repo添加,列出,移除,更新和索引 chart 仓库。可用子命令:add、index、 list、remove、update
rollback从之前版本回滚
search根据关键字搜索 chart。可用子命令:hub、repo
show查看 chart 详细信息。可用子命令:all、chart、readme、values
status显示已命名版本的状态
template本地呈现模板
uninstall卸载一个 release
upgrade更新一个 release
version查看 helm 客户端版本

3.4 添加helm的自动补齐

[root@master bash_completion.d]# echo "source <(helm completion bash)" >>  ~/.bash_profile
[root@master bash_completion.d]# source ~/.bash_profile [root@master bash_completion.d]# helm completion bash > /usr/share/bash-completion/completions/helm

4、快速部署应用(weave应用)

[root@master ~]# helm install ui aliyun/weave-scope  #出现下面错误是因为仓库的问题,阿里云可能没事实时匹配到k8s,换成微软源可以解决
Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: [unable to recognize "": no matches for kind "DaemonSet" in version "extensions/v1beta1", unable to recognize "": no matches for kind "Deployment" in version "apps/v1beta1"][root@master ~]# helm repo add stable http://mirror.azure.cn/kubernetes/charts/   ##添加微软仓库
[root@master ~]# helm repo update
[root@master ~]# helm repo list
NAME  	URL                                                   
aliyun	https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
stable	http://mirror.azure.cn/kubernetes/charts/  ##部署           
[root@master ~]# helm search repo weave   ##部署的是一个ui界面应用,所以需要对外暴露端口,需要查看SVC的状态是否为NodePort
NAME              	CHART VERSION	APP VERSION	DESCRIPTION                                       
aliyun/weave-cloud	0.1.2        	           	Weave Cloud is a add-on to Kubernetes which pro...
aliyun/weave-scope	0.9.2        	1.6.5      	A Helm chart for the Weave Scope cluster visual...
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@master ~]# helm install ui stable/weave-scope
WARNING: This chart is deprecated
W0514 11:23:29.545784   20101 warnings.go:70] rbac.authorization.k8s.io/v1beta1 ClusterRole is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRole
W0514 11:23:29.546481   20101 warnings.go:70] rbac.authorization.k8s.io/v1beta1 ClusterRoleBinding is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRoleBinding
W0514 11:23:29.567192   20101 warnings.go:70] rbac.authorization.k8s.io/v1beta1 ClusterRole is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRole
W0514 11:23:29.569900   20101 warnings.go:70] rbac.authorization.k8s.io/v1beta1 ClusterRoleBinding is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRoleBinding
NAME: ui
LAST DEPLOYED: Sat May 14 11:23:29 2022
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:4040then 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/[root@master ~]# helm list   ##查看部署的应用
NAME	NAMESPACE	REVISION	UPDATED                                	STATUS  	CHART             	APP VERSION
ui  	default  	1       	2022-05-14 11:23:29.478377222 +0800 CST	deployed	weave-scope-1.1.12	1.12.0     
[root@master ~]# helm status ui      #查看部署应用的状态
NAME: ui
LAST DEPLOYED: Sat May 14 11:23:29 2022
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/##查看部署情况
[root@master ~]# kubectl get pods   ##查看部署的pod
NAME                                            READY   STATUS    RESTARTS   AGE
weave-scope-agent-ui-d7fv8                      1/1     Running   0          9m21s
weave-scope-agent-ui-mrnb5                      1/1     Running   0          9m21s
weave-scope-agent-ui-nrtrn                      1/1     Running   0          9m21s
weave-scope-cluster-agent-ui-5cbc84db49-fzf7f   1/1     Running   0          9m21s
weave-scope-frontend-ui-6698fd5545-pn8tc        1/1     Running   0          9m21s
web-96d5df5c8-zcshb                             1/1     Running   1          15h
[root@master ~]# kubectl get svc   ##ui-weave-scope的svc状态没有暴露端口
NAME             TYPE        CLUSTER-IP      EXTERNAL-IP   PORT(S)        AGE
kubernetes       ClusterIP   10.96.0.1       <none>        443/TCP        65d
ui-weave-scope   ClusterIP   10.101.125.54   <none>        80/TCP         9m25s
web              NodePort    10.96.63.223    <none>        80:31281/TCP   15h      
[root@master ~]# kubectl edit svc ui-weave-scope   ## 编辑内部yaml文件,将状态换为NodePort
service/ui-weave-scope edited
[root@master ~]# kubectl describe svc ui-weave-scope
Name:                     ui-weave-scope
Namespace:                default
Labels:                   app=weave-scopeapp.kubernetes.io/managed-by=Helmchart=weave-scope-frontend-1.1.10component=frontendheritage=Helmrelease=ui
Annotations:              cloud.weave.works/launcher-info:{"server-version": "master-4fe8efe","original-request": {"url": "/k8s/v1.7/scope.yaml"},"email-address": "support@weave.works","source-app": "weave-scope","weave-cloud-component": "scope"}meta.helm.sh/release-name: uimeta.helm.sh/release-namespace: default
Selector:                 app=weave-scope,component=frontend,release=ui
Type:                     NodePort   ##状态已经修改
IP Families:              <none>
IP:                       10.101.125.54
IPs:                      10.101.125.54
Port:                     http  80/TCP
TargetPort:               http/TCP
NodePort:                 http  31055/TCP
Endpoints:                10.244.2.36:4040
Session Affinity:         None
External Traffic Policy:  Cluster
Events:                   <none>
[root@master ~]# kubectl get svc
NAME             TYPE        CLUSTER-IP      EXTERNAL-IP   PORT(S)        AGE
kubernetes       ClusterIP   10.96.0.1       <none>        443/TCP        65d
ui-weave-scope   NodePort    10.101.125.54   <none>        80:31055/TCP   15m
web              NodePort    10.96.63.223    <none>        80:31281/TCP   15h
  • 最终布置效果
    在这里插入图片描述

5、 自行创建Chart

5.1 Chart目录内容解析

  • chart.yaml 指当前chart属性配置信息
  • templates 编写的yaml文件放到当前目录
  • values.yaml yaml文件可以使用全局变量

5.2 简单安装部署

[root@master ~]# helm create mychart   ##创建Chart[root@master ~]# cd mychart/
[root@master mychart]# ls
charts  Chart.yaml  templates  values.yaml
[root@master mychart]# cd templates/
[root@master templates]# ls
deployment.yaml  hpa.yaml      NOTES.txt            service.yaml  
_helpers.tpl     ingress.yaml  serviceaccount.yaml  tests[root@master mychart]# kubectl create deployment web1 --image=nginx --dry-run -o yaml >
deployment.yaml[root@master mychart]# kubectl create deployment web1 --image=nginx   ##后续创建svc需要web1存在
[root@master templates]# kubectl expose deployment web1 --port=80 --target-port=80 --type=NodePort --dry-run -o yaml > service.yaml   ##创建service.yaml
[root@master ~]# kubectl delete deployments.apps web1    ##删除,一会通过helm进行安装
[root@master templates]# ls
deployment.yaml  service.yaml# helm安装
[root@master ~]# helm install web1 mychart/   ##install+ 自己起名称+ Chart目录
NAME: web1
LAST DEPLOYED: Sat May 14 20:15:51 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
[root@master ~]# kubectl get svc
NAME             TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)        AGE
kubernetes       ClusterIP   10.96.0.1        <none>        443/TCP        66d
ui-weave-scope   NodePort    10.101.125.54    <none>        80:31055/TCP   8h
web              NodePort    10.96.63.223     <none>        80:31281/TCP   24h
web1             NodePort    10.108.249.102   <none>        80:30502/TCP   7s
[root@master ~]# kubectl get pod 
NAME                                            READY   STATUS              RESTARTS   AGE
web1-6fbb48567f-pdgxv                           1/1     Running   0          13s

5.3 应用升级回退

[root@master ~]# helm history web1 
REVISION	UPDATED                 	STATUS    	CHART        	APP VERSION	DESCRIPTION     
1       	Sat May 14 20:15:51 2022	superseded	mychart-0.1.0	1.16.0     	Install complete
2       	Sat May 14 20:18:18 2022	superseded	mychart-0.1.0	1.16.0     	Upgrade complete
3       	Sat May 14 20:18:31 2022	deployed  	mychart-0.1.0	1.16.0     	Rollback to 1   
[root@master ~]# helm upgrade web1 mychart/   ##升级
Release "web1" has been upgraded. Happy Helming!
NAME: web1
LAST DEPLOYED: Sat May 14 20:18:18 2022
NAMESPACE: default
STATUS: deployed
REVISION: 2
TEST SUITE: None
[root@master ~]# helm rollback web1   ##回退到上一版本
Rollback was a success! Happy Helming!
[root@master ~]# helm rollback web1 2  ##回退到指定版本

6、Chart模板实现高效复用

  • 通过传递参数,动态渲染模板,yaml文件内容动态传入参数生成。主要是通过value.yaml文件

  • 实现主要分为两步:1、通过values.yaml文件定义变量和值;2、在具体的模板下的yaml文件中进行获取变量

  • 一般情况下,yaml文件中不同的有name、label、replicas、tag、port

6.1 在values.yaml文件中定义全局变量

[root@master ~]# cd mychart/
[root@master mychart]# ls
charts  Chart.yaml  templates  values.yaml
[root@master mychart]# vim values.yaml 
[root@master mychart]# cat values.yaml    ##主要修改的变量信息
image: nginx
replicas: 1
tag: 1.16
label: nginx
port: 80

6.2 在templates中的yaml文件中定义变量

  • 通过表达式形式定义变量 {{ .Values.变量名称}} 还有一种常用的定义名字的{{ .Release.Name}}
[root@master templates]# pwd
/root/mychart/templates[root@master templates]# cat deployment.yaml 
apiVersion: apps/v1
kind: Deployment
metadata:creationTimestamp: nulllabels:app: {{ .Values.label}}name: {{ .Release.Name}}-deploy
spec:replicas: {{ .Values.replicas}}selector:matchLabels:app: {{ .Values.label}}strategy: {}template:metadata:creationTimestamp: nulllabels:app: {{ .Values.label}}spec:containers:- image: {{ .Values.image}}name: {{ .Values.label}}resources: {}
status: {}[root@master templates]# cat service.yaml 
apiVersion: v1
kind: Service
metadata:creationTimestamp: nulllabels:app: {{ .Values.label}}name: {{ .Release.Name}}-svc
spec:ports:- port: {{ .Values.port}}protocol: TCPtargetPort: {{ .Values.port}}selector:app: {{ .Release.Name}}-svctype: NodePort
status:loadBalancer: {}[root@master ~]# helm install web2 mychart/ --dry-run   ##生成说明成功了
NAME: web2
LAST DEPLOYED: Sat May 14 21:33:23 2022
NAMESPACE: default
STATUS: pending-install
REVISION: 1
TEST SUITE: None
HOOKS:
MANIFEST:
---
# Source: mychart/templates/service.yaml
apiVersion: v1
kind: Service
metadata:creationTimestamp: nulllabels:app: nginxname: web2-svc
spec:ports:- port: 80protocol: TCPtargetPort: 80selector:app: web2-svctype: NodePort
status:loadBalancer: {}
---
# Source: mychart/templates/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:creationTimestamp: nulllabels:app: nginxname: web2-deploy
spec:replicas: 1selector:matchLabels:app: nginxstrategy: {}template:metadata:creationTimestamp: nulllabels:app: nginxspec:containers:- image: nginxname: nginxresources: {}
status: {}
[root@master ~]# helm install web2 mychart/ 
NAME: web2
LAST DEPLOYED: Sat May 14 21:35:06 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
[root@master ~]# kubectl get pods
NAME                                            READY   STATUS    RESTARTS   AGE
web2-deploy-6799fc88d8-8khvj                    1/1     Running   0          25s
[root@master ~]# kubectl get svc
NAME             TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)        AGE
web2-svc         NodePort    10.101.45.10     <none>        80:30704/TCP   30s

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/117983.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

codeforces (C++ Haunted House)

题目&#xff1a; 翻译&#xff1a; 思路&#xff1a; 1、由题目可知&#xff0c;他想让我们判断交换相邻字符位置后将二进制转为十进制后&#xff0c;能否整除2的次方。能整除即输出需要交换的次数&#xff0c;不能则输出-1。&#xff08;例&#xff1a;输入3和010这组数据就…

WebDAV之π-Disk派盘 +Polaris Office

推荐一款可以实现在Windows桌面PC,Mac,Android设备和iOS设备上同步的移动办公软件,还支持通过WebDAV添加葫芦儿派盘。Polaris Office是一款功能全面的办公自动化套件,软件集成了Word、Excel、幻灯片(PPT)、ODT等文档格式,并且可以完美兼容任何Microsoft Office,PDF,TXT或…

html web前端 登录,短信验证码登录

html web前端 登录&#xff0c;短信验证码登录 1&#xff0c;手机号码格式校验 2&#xff0c;按钮点击60秒倒计时&#xff0c;按钮限制点击 3&#xff0c;验证码/或密码长度校验&#xff08;被注释&#xff0c;公司发的验证码长度不一致&#xff0c;不一定是6位&#xff09; 4…

虹科培训 | 虹科携手PLCopen开展IEC 61131-3国际工程师培训

文章来源&#xff1a;虹科工业控制 阅读原文&#xff1a;https://mp.weixin.qq.com/s/MLYhBWiWx7qQSApx_3xhmA &#xff08;一&#xff09;课程背景 什么是IEC 61131-3&#xff1f; IEC 61131-3 是工业自动化行业唯一得到大量应用的组态编程语言国际标准&#xff1b;主导制定…

xcode15一直显示正在连接iOS17真机问题解决

前言 更新xcode15之后&#xff0c;出现了各种报错问题&#xff0c;可谓是一路打怪啊&#xff0c;解决一个报错问题又来一个。没想到到了最后还能出现一个一直显示正在连接iOS17真机的问题 一直显示正在连接iOS17真机的问题 问题截图如下&#xff1a; 解决方法 1. 打开De…

apple-app-site-association nginx

项目里面配置 applinks: 域名 eg: baidu.com 2. 创建 apple-app-site-association 文件&#xff0c;无json等后缀名 eg&#xff1a; appID 构成 teamId bundleId {"applinks": {"apps": [],"details": [{"appID": "2TEAM6D5.…

mysql查询最近7天 每天销售额 统计销售额

sql统计每一天的支出数目&#xff0c;支出金额&#xff0c;收入数目&#xff0c;收入金额 finance_type0&#xff1a;收入 finance_type1&#xff1a;支出 部分建表语句&#xff1a; CREATE TABLE finance (finance_id int(11) NOT NULL AUTO_INCREMENT COMMENT ID,finance_u…

Anaconda安装教程(Windows环境下)

下面的步骤是根据一个大佬的博文操作的&#xff0c;然后自己写了操作步骤和遇到的一些问题&#xff0c; 大佬博客在这&#xff1a; 【精选】Anaconda超详细安装教程&#xff08;Windows环境下&#xff09;_conda安装-CSDN博客 1、 Anaconda的下载&#xff1a; 一般两个选择&a…

05、Python -- 爬取ts文件格式视频思路

目录 第一步:爬取一段5秒视频找url代码结果第二步:下载整个视频的所有片段代码:结果:第三步:合成视频安装模块代码:结果简洁代码代码:结果:最终代码简洁前代码简洁后代码思路: 1、爬取视频,但是每次只能爬取一段5秒的视频。 2、一个视频有很多秒,所以需要爬取很多片…

用户需求深层挖掘的6大注意事项

在竞争日趋激烈的市场环境中&#xff0c;我们通过深入挖掘用户需求&#xff0c;更好地理解用户需求和痛点&#xff0c;从而有针对性的改进产品的使用体验&#xff0c;增强产品竞争力&#xff0c;尽可能地满足用户的需求和期望&#xff0c;提高用户满意度&#xff0c;避免产品开…

Pytorch:model.train()和model.eval()用法和区别,以及model.eval()和torch.no_grad()的区别

1 model.train() 和 model.eval()用法和区别 1.1 model.train() model.train()的作用是启用 Batch Normalization 和 Dropout。 如果模型中有BN层(Batch Normalization&#xff09;和Dropout&#xff0c;需要在训练时添加model.train()。model.train()是保证BN层能够用到每一…

【JavaEE重点知识归纳】第11节:认识异常

目录 一&#xff1a;异常的概念和体系结构 1.概念 2.体系结构 3.异常分类 二&#xff1a;异常的处理 1.防御式编程 2.异常的抛出 3.异常的捕获 4.异常的处理流程 三&#xff1a;自定义异常 一&#xff1a;异常的概念和体系结构 1.概念 &#xff08;1&#xff09;在…

vue3使用Element ui plus中MessageBox消息框+radio框配合使用

想要达到的效果 首先安装element ui plus 省略~~ 官网地址&#xff1a; https://element-plus.gitee.io/zh-CN/component/message-box.htmlhttps://element-plus.gitee.io/zh-CN/component/message-box.html 需要用到的 引入 import { h } from "vue"; import {E…

为什么需要山洪灾害监测预警系统?

在山洪高发地区&#xff0c;安装山洪灾害监测预警系统能够通过实时监测&#xff0c;预警山洪信息&#xff0c;对于保障我们的生命财产安全具有重要意义。 监测山洪不仅需要对山体进行监测&#xff0c;还要监测降雨量以及水位上升情况。山洪灾害监测预警系统是由GNSS监测站和水…

天锐绿盾加密软件——企业数据透明加密、防泄露系统

天锐绿盾是一种企业级数据透明加密、防泄密系统&#xff0c;旨在保护企业的核心数据&#xff0c;防止数据泄露和恶意攻击。它采用内核级透明加密技术&#xff0c;可以在不影响员工正常工作的前提下&#xff0c;对需要保护的数据进行加密操作。 PC访问地址&#xff1a; https:/…

选择工业交换机时,需要关注哪些方面的性能?

在工业自动化、能源、交通等领域的网络通信中&#xff0c;工业交换机是一种非常重要的网络设备。它的性能和可靠性直接影响到整个网络的稳定性和安全性。因此&#xff0c;在选择工业交换机时&#xff0c;我们需要关注以下几个方面的性能&#xff1a; 1. 抗干扰性能&#xff1a;…

如何将Linux上部署的5.7MySql数据库编码修改utf8(最新版)

如何将Linux&#xff08;服务器&#xff09;上部署的5.7MySql数据库编码修改utf8&#xff08;最新版&#xff09; 一、解决办法步骤1步骤2&#xff08;此处为问题描述吐槽&#xff0c;可以直接跳过该步骤到步骤三&#xff09;步骤3步骤4步骤5 二、结果 # 前言 提示&#xff1a…

【实战】Kubernetes安装持久化工具NFS-StorageClass

文章目录 前言技术积累存储类&#xff08;storage class&#xff09;什么是NFS什么是PV\PVC为什么要用NFS-StorageClass 安装NFS-StorageClass保证N8S集群正常投用安装NFS工具与客户端NFS安装常见错误安装NFS-StorageClass存储器 前言 前面的博文我们介绍了如何用kuberadmin的…

交流会|合同交付类业务的项目管理方法和实践分享

10月19日&#xff0c;由深圳市软件行业协会、易趋&#xff08;深圳蓝云软件&#xff09;、上海清晖、宁波银行深圳分行联合主办的第八期“项目管理技术与实践交流会议”在深圳成功举办。 本期沙龙邀请了易趋&#xff08;蓝云软件&#xff09;资深咨询顾问刘苗老师、协会特聘专…

推荐一款可以识别m3u8格式ts流批量下载并且合成mp4视频的chrome插件——猫抓

https://chrome.google.com/webstore/detail/%E7%8C%AB%E6%8A%93/jfedfbgedapdagkghmgibemcoggfppbb?utm_sourceext_app_menuhttps://chrome.google.com/webstore/detail/%E7%8C%AB%E6%8A%93/jfedfbgedapdagkghmgibemcoggfppbb?utm_sourceext_app_menu 网页媒体嗅探工具 一…