From 892f469250b389e747854e840f62bf6756719229 Mon Sep 17 00:00:00 2001 From: ysicing Date: Wed, 11 Sep 2024 09:36:29 +0800 Subject: [PATCH] * [feat]: configure zentaopaas tls logging and adjust helm arguments --- pkg/quickon/quickon.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/quickon/quickon.go b/pkg/quickon/quickon.go index 7dec5e74..2cef0ed2 100644 --- a/pkg/quickon/quickon.go +++ b/pkg/quickon/quickon.go @@ -329,8 +329,9 @@ func (m *Meta) Init() error { } hostdomain := m.Domain if kutil.IsLegalDomain(hostdomain) && m.DomainType == "api" { - helmargs = append(helmargs, "--set", "ingress.tls.enabled=true") - helmargs = append(helmargs, "--set", "ingress.tls.secretName=tls-haogs-cn") + m.Log.Debugf("use tls cert for domain %s", hostdomain) + // helmargs = append(helmargs, "--set", "ingress.tls.enabled=true") + // helmargs = append(helmargs, "--set", "ingress.tls.secretName=tls-haogs-cn") } else { if m.DevopsMode { hostdomain = fmt.Sprintf("zentao.%s", hostdomain)