当前位置:首页 > linux > 正文内容

helm的更新部署命令

root2年前 (2022-08-08)linux982

helm list -n test 

查看test 空间下有那些helm安装的程序


helm uninstall -n test mysql

卸载mysql


helm  -n test install mysql  ./mysql  -f  ./mysql/values.yaml --debug --dry-run

安装mysql


helm  -n test upgrade mysql   ./mysql   -f ./mysql/values.yaml --debug --dry-run

更新mysql


helm package . --version=v1.1

将helm部署的char打包

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=241

分享给朋友:

相关文章

tcpdump 抓包命令

网络数据包截获分析工具。支持针对网络层、协议、主机、网络或端口的过滤。并提供and、or、not等逻辑语句帮助去除无用的信息。tcpdump tcp -i eth1 -t -s 0 -c 100 and dst port ! 22 and...

一行 Python 实现并行化 -- 日常多线程操作的新思路

一行 Python 实现并行化 -- 日常多线程操作的新思路

Python 在程序并行化方面多少有些声名狼藉。撇开技术上的问题,例如线程的实现和 GIL1,我觉得错误的教学指导才是主要问题。常见的经典 Python 多线程、多进程教程多显得偏“重”。而且往往隔靴搔痒,没有深入探讨日常工作中最有用的内容...

linux 服务器时间校准

Linux 时间矫正sudo ntpdate -u ntp.api.bz第一使用可能提示ntpdate没安装,用以下命令安装即可ubuntu系统sudo apt install ntpdatecent...

centos 开启docker 服务无法被外界访问(centos是虚拟机)

现象:centos 能够被ssh 登录访问。但是用docker开启的服务就是访问不了,centos 自己可访问。开启的一个python -m SimpleHTTPServer 能够访问;原因:linux 的ip_forward设置限制了,c...

启动脚本将pid输出到文本中

启动脚本如下nohup java -jar testapi.jar --server.port=8080 & echo $! > pid...

How to Enable FTP Passive Mode

How to Enable FTP Passive Mode

OverviewThis document explains how to use the active or passive mode to connect to a File Transfer Protocol (FTP) server...