2,473 questions
Tooling
0
votes
0
replies
21
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
61
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 ...
1
vote
1
answer
143
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
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:
...
0
votes
0
answers
104
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 ...
-1
votes
1
answer
98
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-...
0
votes
0
answers
70
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
1
answer
321
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 ...
0
votes
0
answers
77
views
Websockets errors with Ingress Nginx
When I try to establish connection from browser to my api. I got an error in browser **[Error] WebSocket connection to 'wss://myhost.com/socket.io/?EIO=4&transport=websocket' failed: There was a ...
0
votes
0
answers
59
views
how to determine if ingress controller is now passing error status code to c# app
I have implemented a custom backend in my ingress controller which gets deployed via a helm chart through an azure devops pipeline. The idea is to enable backend to pass error status codes to c# app ...
0
votes
1
answer
49
views
Route traffic with nginx.org Ingress to different Kubernetes services based on cookies with values
I would like to route traffic via Ingress in following scenario with 2 API Services:
kind: Service
metadata:
name: api-v1
namespace: api
spec:
ports:
- name: http
protocol: TCP
...
0
votes
0
answers
61
views
Exchange oauth_proxy cookie with acess Token
I have KeyCloak - Ingress - Oauth proxy setup.
Oauth proxy sends to resource server(My web client) oauth_proxy cookie. but backend accepts keycloak access token
I need to exchange cookie with token.
...
0
votes
0
answers
39
views
Kubenetes ingress returning 404 on Microk8s
Hello my fellow travellers
New to k8s so be nice please
I'm trying to set up an ingress server for a backend html site.
This is my directory structure:
➜ 1_DEV git:(main) tree .
.
├── Dockerfile
├── ...
1
vote
1
answer
179
views
Error uploading large file on fails using php and nginx ingress
I am currently running into an issue on PHP trying to upload a video.
It returns an error saying. I am running laravel php on GKE and using nginx-ingress.
I have updated the necessary values in php....
-1
votes
1
answer
91
views
ingress nginx error with no error in log file
i'm trying to deploy my app: front: angular and back:nestjs using docker and kubernetes ingress on my local windows machine. so locally my app is working, i push the app on docker hub locally and ...
0
votes
1
answer
100
views
ASP.NET Core MVC : static file response with prefix when using nginx ingress rewrite
I'm not a .NET developer but gotta provide a sample ASP.NET Core Web App (Model-View-Controller) to a client. But I have a problem when deploying it onto Kubernetes.
For example, when I click Privacy ...
0
votes
1
answer
209
views
how to setup nginx ingress with http proxy
Currently I have an endpoint which is internet facing, in order to access it we need to go through corp proxy. I want to be able to setup a nginx to an external name so that internal client can access ...
0
votes
0
answers
225
views
Unable to reach web applications running on AKS cluster after routing traffic through Azure Firewall
After associating the subnet where the AKS Nodes run I am unable to reach any of the hostnames stated in the ingress objects even after updating the DNS Zone records to the Public IP of the Firewall.
...
0
votes
1
answer
63
views
Exposing microservices API to my local network
I'm currently working on a Node.js project designed as a microservices API. It consists of multiple Docker containers running locally on my computer. The project's main purpose is to control ...
0
votes
1
answer
126
views
Requests over Nxing Ingress blocks other requests
I have deployed Nginx ingress controller in Kubernetes.
There are two pods running on different nodes
Furthermore, I have configured three ingresses with these three paths:
/
/dashboard
/grafana
The ...
0
votes
1
answer
430
views
Azure nginx controller: Unexpected error validating SSL certificate
Im getting the following when access my portal deployed with aks Our services aren't available right now We're working to restore all services as soon as possible. Please check back soon. with nginx ...
0
votes
1
answer
860
views
I have deploy SSL certificate in AKS cluster using ingress webapprouting
I have deploy pod, svc and ingress in AKS cluster
Issue is having with ssl certificate is not showing in browser https://dev.perfai.us/
I have created manually ssl certificate and upload in Azure Key ...
1
vote
2
answers
590
views
How to add the pod name to HTTP response headers using Ingress NGINX Controller?
I have a deployment with multiple replica pods behind a service. Sometimes, I want to know which of these pods is serving a request, i.e. to view the logs when there is some strange behaviour. Is ...
0
votes
1
answer
143
views
Kubernetes nginx Ingress rewrite-target results in double slash
I am working on creating an ingress configuration file for Kubernetes.
When I access /front/main/dashboard/3, I want to be redirected to /main/dashboard/3.
However, when I access /back/main/dashboard/...
0
votes
0
answers
35
views
Cannot run multiple ingress controllers on an on-premise Kuberenetes cluster
I am currently creating a SSO service for my ingress with this example(https://github.com/kubernetes/ingress-nginx/blob/main/docs/examples/auth/oauth-external-auth/oauth2-proxy.yaml) after I create ...