Versions Compared

Key

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

...

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

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