From aeafd8c035d2585521763e2bbbf07ab86957b623 Mon Sep 17 00:00:00 2001 From: "d.viti" Date: Wed, 8 Oct 2025 18:40:46 +0200 Subject: [PATCH] Add TLS skip verify support to ADC sync job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added conditional --tls-skip-verify flag to ADC sync job arguments. This flag is controlled by .Values.api7.adc.tlsSkipVerify and allows ADC to connect to API7 Enterprise dashboard with self-signed certificates. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- helm/api7ee-demo-k8s/templates/job-adc-sync.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm/api7ee-demo-k8s/templates/job-adc-sync.yaml b/helm/api7ee-demo-k8s/templates/job-adc-sync.yaml index 24e2929..047b260 100644 --- a/helm/api7ee-demo-k8s/templates/job-adc-sync.yaml +++ b/helm/api7ee-demo-k8s/templates/job-adc-sync.yaml @@ -37,6 +37,9 @@ spec: - $(API7_ADMIN_KEY) - --gateway-group - $(API7_GATEWAY_GROUP) + {{- if .Values.api7.adc.tlsSkipVerify }} + - --tls-skip-verify + {{- end }} {{- if .Values.api7.adc.verbose }} - --verbose {{- end }}