Fading Coder

One Final Commit for the Last Sprint

Managing Microservice Traffic Distribution via Kubernetes Ingress

While NodePort services provide basic external acccess, they are often unsuitable for production due to port range limitations and management overhead. Similarly, creating a dedicated LoadBalancer service for every microservice can become prohibitively expensive and difficult to scale. Kubernetes In...

Debugging K8s Ingress Challenges with OpenVSCode Server: 302, 404, 503, and WebSocket Issues

Phase 1: Path Mismatch Causes 404 Initial Ingress configuration routes traffic from /vscode to the backend service: spec: rules: - http: paths: - backend: service: name: vscode-01 port: number: 8888 path: /vscode pathType: Prefix Accessing /vscode returns a 404. The backend receives a request for /v...