Questions tagged [kubernetes-ingress]

Ingress gives you a way to route requests to services based on the request host or path, centralizing a number of services into a single entrypoint.

Services and Pods have IPs only routable by the cluster network. All traffic that ends up at an edge router is either dropped or forwarded elsewhere. An Ingress is a collection of rules that allow inbound connections to reach the cluster services.

3847 questions
1
vote
1 answer

Nginx ingress configuration after migration

I have the following kubernetes ingress configuration (nginx ingress controller) which works fine. kind: Ingress metadata: annotations: nginx.ingress.kubernetes.io/rewrite-target: / name: test01-api-ingress namespace: test01 spec: …
user515576
  • 65
  • 6
1
vote
0 answers

Istio 1.8 upstream connect error or disconnect/reset before headers. reset reason: connection failure

I'm trying to learn how to use istio for canary deploy. The idea would be to use a hybrid between Istio and Traefik ingress. Unfortunately, I am having problems with the VirtualService, specifically, when I use the IP of the Traefik LoadBalancer, I…
1
vote
2 answers

Nginx Ingress "rewrite-target" annotation not rewriting target

The "nginx.ingress.kubernetes.io/rewrite-target" annotation on my ingress resource does not seem to be doing anything. Everything works just fine when I change path: /helloworld to path: /. I have tried putting the annotation's value in double…
1
vote
2 answers

Linkerd traffic split with Nginx Ingress Controller

I have deployed a Linkerd Service mesh and my Kubernetes cluster is configured with the Nginx ingress controller as a DaemonSet and all the ingresses are working fine also the Linkerd. Recently, I have added a traffic split functionality to run my…
1
vote
0 answers

k3s ingress to my app's service routing using daemonset not working

I have k3s cluster working pretty well with Grafana monitoring and traefik/klipper-lb. However my own app Ingress does not work. ingress.yaml apiVersion: extensions/v1beta1 kind: Ingress metadata: name: test-esp namespace: myapp spec: rules: …
PraveenMak
  • 326
  • 2
  • 12
1
vote
0 answers

OpenShift Ingress external service

tell me how to map an external resource as a service in openshift for use in ingress? OKD 3.11. I am creating a service type ExternalName apiVersion: v1 kind: Service metadata: name: "sso" namespace: "test" spec: type: ExternalName …
1
vote
2 answers

Nginx ingress controller rewrite-target annotation and rule to add a trailing slash to url

I'm trying to deploy a static website to a Kubernetes cluster which is using the official Nginx Ingress controller. The folder structure of the website looks somewhat like this: / ├── about │   └── index.html ├── casestudy │   ├──…
Rajshri Mohan K S
  • 1,557
  • 17
  • 30
1
vote
1 answer

Cannot create Header based external HTTPS LBS routing rules on existing Kubernetes service in Google Cloud

I'm trying to change an existing external HTTPS LBS configuration to apply advanced custom-header based routing rules on GCloud, but get the following error when updating the url-map HTTPError 400: Invalid value for field 'resource.defaultService':…
1
vote
1 answer

Kubernetes Ingress Subdomain - Cloudfare Setup

So I have my own website that I am running and I want to migrate one of my services to my current cluster under a subdomain of my actual website and I'm having some trouble. I have a website that I purchased off of NameCheap and I'm using Cloudfare…
Nikster
  • 427
  • 5
  • 14
1
vote
1 answer

kubernetessingress routing going to another service

when I hit xyz.abc.com/login it should go to test service and when I hit URL xyz.abc.com/(anything) it should go to test1 service but currently, when I hit xyz.abc.com/login it is not going there but going to test1 service random.com/login, so to go…
1
vote
2 answers

How do I get client IP addressed from HTTP requests in kubernetes services(EKS)

We are running our ms as pod behind ALB ingress (ALB load balancer). My problem is that all of the HTTP request logs show the cluster IP address instead of the IPs of the HTTP clients. Is there any other way I can make kubernetes service to pass…
1
vote
1 answer

Kubernetes ingress-nginx not returning http response header

im encountering an issue whereby ingress-nginx(reverse proxy) is not returning http response header (ETag) from application container. It works fine without ingress. Missing http response header Any help will be greatly appreciated. The following is…
user3187494
  • 13
  • 1
  • 4
1
vote
1 answer

Internal error occurred: failed calling webhook "validate.nginx.ingress.kubernetes.io"

i have ingress controller up and running in default namespace. my other namespaces have their own ingress yaml files. whenever i try to deploy that. i get the following error: Error from server (InternalError): error when creating…
Gaurav Jaitly
  • 143
  • 1
  • 3
  • 9
1
vote
1 answer

Adding custom cipher suite to Istio Gateway

I have added few custom cipher suites at the gateway like this : tls: mode: MUTUAL credentialName: sds minProtocolVersion: TLSV1_2 maxProtocolVersion: TLSV1_3 cipherSuites:…
Jim
  • 355
  • 7
  • 20
1
vote
0 answers

Ingress controller cannot find assets

I am trying to set up an Ingress controller on Microk8s to host a react (NextJS) app. The pod and service are up and running, as well as reachable internally via machine.domain.eu:31111 My goal is to make this service available via…
Marco
  • 22,856
  • 9
  • 75
  • 124
1 2 3
99
100