Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

参考文档:

https://docs.koderover.com/zadig/Zadig%20v1.18Zadig%20v3.0/release-notes/v1.18.0/#%E5%8D%87%E7%BA%A7%E6%93%8D%E4%BD%9C

安装helm软件

Code Block
wget https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz
tar -zxvf helm-v3.12.0-linux-amd64.tar.gz
cp linux-amd64/helm /usr/bin
helm version

...

Code Block
helm repo add koderover-chart https://koderover.tencentcloudcr.com/chartrepo/chart
helm repo update
helm repo list

将老版本的zadig配置文件导出

Code Block
helm get values zadig-zadig -n zadig > zadig.yaml

模板如下


使用helm升级

Code Block
helm upgrade -f zadig.yaml zadig-zadig koderover-chart/zadig --namespace zadig --version=2.0.0

...