2,472 questions
Tooling
0
votes
0
replies
22
views
Open resty kubernetes frontend
User-->Load abalancer-Frontend VPC-Openresty Nginx --->Router-->Priv LB -->Kubernetes
I want to ask about Openresty in Kubernetes. I am using it now as reverse Proxy as Tasks in AWS and ...
0
votes
1
answer
60
views
How to translate caddy to ingress nginx controller
I'm having this config from Caddy and I want to migrate it to ingress nginx controller
@restrictAccess {
path /path1/loc1/*
path /path2/loc3/*
}
route @restrictAccess {
...
0
votes
1
answer
65
views
My django API “next” link uses a stale hostname only when receiving requests from GKE services (Like Cloud Run)
What are the details of your problem?
I have a application in Django that is deployed using GKE. It uses an ingress to deploy it...
Those manifests.yml that are used for deploying applications on ...
0
votes
0
answers
70
views
Python Socket.IO with FastAPI in Kubernetes 499 and 426 error
I am trying to setup a socketio server, but having issues with client connection either getting 499 or 426 error -
I have tried port forwarding from the pod to my local and run curl command that also ...
1
vote
1
answer
156
views
Ingress-NGINX consistent-hash for WebSocket routing across multiple controller pods is inconsistent (hash by query param)
I’m trying to route WebSocket connections deterministically to the same backend pod(in a k8s deployment) based on a query parameter (room/league id). This works with a single ingress-nginx pod, but ...
0
votes
1
answer
137
views
Websockets on GKE with Nginx Ingress
I am trying to get websockets to work on GKE. Seems very trivial, but I am failing to get this to work, I just continuously keep getting 400 at Nginx Ingress.
The manifest is like this:
apiVersion: v1
...
0
votes
0
answers
63
views
Two ingress controller have issues and not able to split traffic in Kubernetes
I have two ingress setup on my Kubernetes cluster one for internal traffic called nginx-ingress and it has default setting and with values of
root@k8s-master-1:~/Ingress# cat values.yaml
controller:
...
1
vote
1
answer
443
views
upstream sent duplicate header line: "Transfer-Encoding: chunked"
I have upgraded ingress-nginx-controller from v1.9.4 to v1.11.5 and kubewebhook from v20231011-8b53cabe0 to v20231226-1a7112e06. I am able to hit urls of api and can see them in logs but when I am ...
0
votes
0
answers
107
views
Forwarding CF-IPCountry Header to Backend with NGINX Ingress and Cloudflare
I’m currently running a GKE cluster with the NGINX Ingress Controller to manage incoming traffic. My domain is proxied through Cloudflare with IP Geolocation enabled, which adds the CF-IPCountry ...
0
votes
1
answer
69
views
Broken nginx-ingress redirect flow from external Github OAuth provider
After upgrading the ingress-nginx controller from v1.8.0 to v1.12.1 to adresss CVE-2025-1974, I'm now getting a 401 Unauthorized response from Github external OAuth provider.
Here are my k8s ...
-1
votes
1
answer
102
views
How to access internal loadbalancer dns within the vpc in aws
I deployed an internal nginx-ingress-controller in my eks cluster with nodes deployed on a private network.
controller:
ingressClassByName: true
ingressClassResource:
name: nginx-ingress-...
2
votes
1
answer
203
views
How to expose resources under /.well-known/ with K8s?
I need to expose some resources under https://app.my-domain.net/.well-known/ using Kubernetes (Android assetlinks.json and apple-app-site-association).
These resources are packaged in a Nginx ...
0
votes
0
answers
76
views
Socket.io Client Not Connecting to AKS-Deployed Socket.io Server (Only Receiving 40 Without sid)
I’m facing an issue where my Socket.io client fails to fully connect to a Socket.io server deployed on AKS.
When running Socket.io locally, the client correctly receives the 40{"sid":"&...
0
votes
0
answers
58
views
Web socket connection disconnected automatically
I'm using a Node.js server application for the backend and an Angular application for the frontend WebSocket connection.
Server Side Code
var io = require('socket.io')(app.listen(port));
io.sockets....
0
votes
1
answer
354
views
Using ingress controller with local kind deployment: is it feasible to access all services under one root URL?
I have a local kind deployment which deploys 3 services, MLflow, Katib and a K8s dashboard. I can deploy these as services and access them via port forwarding to each service and visiting the url in ...