Quick Start
https://koderover.com/tutorials-detail/codelabs/t100/index.html#0
Installation
Add Repo
helm repo add koderover-chart https://koderover.tencentcloudcr.com/chartrepo/chart
helm repo update
Get Node IP
Get K8s node ip first.
kubectl get no -o wide
If using minikube:
minikube ip
Installation Command
Created by https://koderover.com/installer.
TIP
Image pull from tencent cloud, no need to use proxy.
helm upgrade --install zadig-zadig koderover-chart/zadig \
--version=3.4.0 \
--create-namespace \
-n zadig \
--set global.extensions.extAuth.extauthzServerRef.namespace=zadig \
--set endpoint.type=IP \
--set endpoint.IP=192.168.49.2 \
--set gloo.gatewayProxies.gatewayProxy.service.type=NodePort \
--set gloo.gatewayProxies.gatewayProxy.service.httpNodePort=30080 \
--set dex.fullnameOverride=zadig-zadig-dex \
--set dex.config.issuer=http://zadig-zadig-dex:5556/dex \
--set "dex.config.staticClients[0].redirectURIs[0]=http://192.168.49.2:30080/api/v1/callback" \
--set "dex.config.staticClients[0].id=zadig" \
--set "dex.config.staticClients[0].name=zadig" \
--set "dex.config.staticClients[0].secret=ZXhhbXBsZS1hcHAtc2VjcmV0" \
--set mysql.persistence.pv=true \
--set tags.mysql=true \
--set mysql.primary.persistence.size=4Gi \
--set mongodb.persistence.pv=true \
--set tags.mongodb=true \
--set connections.mongodb.db=zadig \
--set mongodb.persistence.size=4Gi \
--set minio.persistence.pv=true \
--set tags.minio=true \
--set minio.persistence.size=4Gi
Uninstall
helm ls
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
zadig-zadig zadig 1 2025-07-27 15:17:19.476668 +0800 CST failed zadig-3.4.0 3.4.0
helm uninstall zadig-zadig