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

helm的更新部署命令

root4年前 (2022-08-08)linux1739

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

分享给朋友:

相关文章

How to remotely monitor hosts over Telnet and SSH [Tutorial]

python ssh登录服务器In this tutorial, you will learn how to carry out basic configurations on a server with Telnet and SSH co...

linux 慎用 kill -9 干掉程序

 kill -9 强制结束某程序的时候,如果程序的有退出信号触发处理回收子进程的,将失效。会造成僵尸进程。...

supervisor的安装使用

一、supervisor简介Supervisor是用Python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台daemon,并监控进程状态,异常退出时能自动重启。它是通过fork/exec的方式把这些被管理的进程当作supe...

Ubuntu 16.04 RabbitMq 安装与运行

Ubuntu 16.04 RabbitMq 安装与运行

准备工作一台服务器:Ubuntu Server 16.04.1 LTS 64位安装RabbitMq可以参照RabbitMq官网的安装教程(Installing on Debian and Ubuntu),来进行安装。这里我们使用apt-ge...

Cannot uninstall 'ipaddress'. It is a distutils installed project and thus

强制升级:sudo pip install --ignore-installed +模块名...

服务查看启动

服务启动、停止和重启service   xxx  start  service   xxx  stopservice   xxx ...