Pangolin runs three servers: - Dashboard API on port 3000 - Internal API on port 3001 - Web UI on port 3002 The current configuration was routing traffic to port 3001 (Internal API), which returns 404 for the root path, causing health probe failures and restart loops. Changes: - Update containerPort from 3001 to 3002 - Update livenessProbe to check port 3002 - Update readinessProbe to check port 3002 - Update Service to expose port 3002 - Update Ingress to route to port 3002 This allows health probes to pass (port 3002 returns 200 for /) and routes web traffic to the correct Web UI server. Co-Authored-By: Paperclip <noreply@paperclip.ing> |
||
|---|---|---|
| .. | ||
| .gitkeep | ||
| namespace.yaml | ||
| pangolin-config.yaml | ||
| pangolin-deployment.yaml | ||
| pangolin-secrets-sealed.yaml | ||