Add TLS skip verify support to ADC sync job
All checks were successful
Helm Chart Build / lint-only (push) Has been skipped
Helm Chart Build / build-helm (push) Successful in 26s
Build and Deploy / build-api (push) Successful in 1m8s
Build and Deploy / build-web (push) Successful in 1m31s

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 <noreply@anthropic.com>
This commit is contained in:
d.viti
2025-10-08 18:40:46 +02:00
parent a82f9d81d1
commit aeafd8c035

View File

@@ -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 }}