From 80ffa5e4fd40f0846abf94f39f0977b7e5e3f92b Mon Sep 17 00:00:00 2001 From: "d.viti" Date: Wed, 8 Oct 2025 18:48:20 +0200 Subject: [PATCH] Fix API7 Enterprise admin URL to use HTTPS on port 7443 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed adminUrl to use HTTPS instead of HTTP: - Before: http://api7ee3-0-1759339083-dashboard:7080 - After: https://api7ee3-0-1759339083-dashboard:7443 Also enabled tlsSkipVerify for the dashboard's self-signed certificate. Testing revealed that: - Port 7080 HTTP doesn't work (pod listens on 7081 localhost only) - Port 7443 HTTPS is the correct admin API endpoint - Self-signed certificate requires TLS verification skip This fixes the ADC sync job 404 errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- helm/api7ee-demo-k8s/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/api7ee-demo-k8s/values.yaml b/helm/api7ee-demo-k8s/values.yaml index 4ec729b..d9ab5f4 100644 --- a/helm/api7ee-demo-k8s/values.yaml +++ b/helm/api7ee-demo-k8s/values.yaml @@ -213,12 +213,12 @@ api7: image: ghcr.io/api7/adc:latest imagePullPolicy: IfNotPresent verbose: true - tlsSkipVerify: false # Set to true for self-signed certificates + tlsSkipVerify: true # Required for dashboard self-signed certificate # API7 Gateway connection gateway: - # Use the Dashboard service for API7 Enterprise admin API - adminUrl: http://api7ee3-0-1759339083-dashboard:7080 + # Use the Dashboard service for API7 Enterprise admin API (HTTPS required) + adminUrl: https://api7ee3-0-1759339083-dashboard:7443 adminKey: "" # Change this! group: default # Gateway service for traffic routing