Versions Compared

Key

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

sealos一键安装:

https://docs.koderover.com/zadig/Zadig%20v2.0.0/install/all-in-one-sealos/#%E5%85%B6%E4%BB%96

官方文档:

https://docs.koderover.com/zadig/

官方脚本部署


Code Block
export IP=<IP> # 集群任一节点公网 IP,用于访问 Zadig 系统
export PORT=<PORT> # 随机填写 30000 - 32767 区间的任一端口,如果安装过程中,发现端口占用,换一个端口再尝试
curl -SsL https://download.koderover.com/install?type=standard| bash

注意事项

提前安装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
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  annotations:
    nginx.ingress.kubernetes.io/ssl-redirect: 'true'
  name: zadig-web
  namespace: zadig
spec:
  ingressClassName: nginx
  rules:
    - host: zadig.uenpay.com
      http:
        paths:
          - backend:
              service:
                name: gateway-proxy
                port:
                  number: 80
            path: /
            pathType: ImplementationSpecific
  tls:
    - hosts:
        - zadig.uenpay.com
      secretName: uenpay.com


卸载zadig

#根据实际安装的 namespace 修改

#根据实际安装的版本,选择对应版本的卸载脚本
export NAMESPACE=zadig
curl -SsL https://github.com/koderover/zadig/releases/download/v1.18.0/uninstall.sh |bash

export NAMESPACE=zadig

curl -SsL https://download.koderover.com/install?type=uninstall | bash