Quick Start
https://koderover.com/tutorials-detail/codelabs/t100/index.html#0
Installation
helm repo add koderover-chart https://koderover.tencentcloudcr.com/chartrepo/chart
helm repo update
helm upgrade --install zadig-kugarocks koderover-chart/zadig \
--version=3.4.0 \
--create-namespace \
-n kugarocks \
# Global configuration
--set global.extensions.extAuth.extauthzServerRef.namespace=kugarocks \
# Endpoint configuration (FQDN points to localhost)
--set endpoint.type=FQDN \
--set endpoint.FQDN=localhost:8088 \
# Dex (OIDC provider) settings
--set dex.fullnameOverride=zadig-kugarocks-dex \
--set dex.config.issuer=http://zadig-kugarocks-dex:5556/dex \
--set "dex.config.staticClients[0].redirectURIs[0]=http://localhost:8088/api/v1/callback" \
--set dex.config.staticClients[0].id=zadig \
--set dex.config.staticClients[0].name=zadig \
--set dex.config.staticClients[0].secret=ZXhhbXBsZS1hcHAtc2VjcmV0 \
# MySQL settings
--set tags.mysql=true \
--set mysql.persistence.pv=true \
--set mysql.primary.persistence.size=1Gi \
# MongoDB settings
--set tags.mongodb=true \
--set connections.mongodb.db=zadig \
--set mongodb.persistence.pv=true \
--set mongodb.persistence.size=1Gi \
# MinIO settings
--set tags.minio=true \
--set minio.persistence.pv=true \
--set minio.persistence.size=1Gi