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

Default Cipher Suites for Istio Ingress-Gateway for Min TLS1.2

Is there a way to check the default cipher suites being used by the Ingress gateway? My gateway has MTLS enabled with minimum TLS version as 1.2.
Jim
  • 355
  • 7
  • 20
1
vote
1 answer

Is it ok to install multiple nginx-ingress controllers in a single Kubernetes namespace?

In AKS, we have a requirement to install two nginx controllers inside a single Kubernetes namespace. In fact, we need to assign each controller a dedicated IP and DNS address. Does it bring any conflict between controllers? Is there any best…
Ehsan Mirsaeedi
  • 6,924
  • 1
  • 41
  • 46
1
vote
1 answer

How to configure Ingress Controller on Kubernetes Cluster installed with kubeadm

I installed a Kubernetes cluster with "kubeadm" on Hetzner Cloud. After successful installation, I installed the Ingress Controller with Helm. The EXTERNAL-IP of the ingress controller service is in the pending state. The default type is…
El Mundo
  • 11
  • 2
1
vote
1 answer

Kubernetes Ingress path: allow all exept for /blog/

I have a service running on Kubernetes available on a domain like example.com. I'm trying to add a path which should redirect to a wordpress blog. So I need to add a rule: everithing that goes in /blog/ should redirect to wordpress, otherwise use…
Liviu
  • 452
  • 1
  • 5
  • 14
1
vote
0 answers

Adding websockets/port 6001 to Kubernetes Ingress deployed via Helm - Connection Refused

We currently have a multi-tenant backend laravel application set up, with pusher websockets enabled on the same app. This application is built into a docker image and hosted on Digital Ocean container registry, and deployed via HELM to our…
1
vote
1 answer

Can't prevent Kubernetes Ingress to send path down to target pod

This might look like a duplicate but it isn't as the solution in the linked thread doesn't work for me. I have Ingress configured to dispatch requests to different pods based on the path Desired behavior: public_ip/app1 ->…
1
vote
1 answer

How to write an ingress-controller target-rewrite rule in my example?

I am not very familiar with ingress but I am playing around with it. My goal is to write a target-rewrite policy that redirects all traffic for the /application path to the correct / path were the service is listening. I came up with the following…
ripclawbr
  • 11
  • 2
1
vote
1 answer

Kubernetes Ingress routing not working with regex

I have a situation like this: internet | [ IngressController -namespace:kube-sustem ] | | [ Ingress A -namespace:ocelot-ns] [ Ingress B…
user1598696
  • 550
  • 1
  • 4
  • 22
1
vote
1 answer

one ingress name having multiple rules

I would like to use multiple rules under the one ingress name. { "kind": "Ingress", "spec": { "rules": [ { "host": "gke-service-xyz.com", "http": { "paths": [ …
Hushen
  • 427
  • 1
  • 4
  • 15
1
vote
1 answer

Unable to access the nginx through Kubernetes LoadBalancer service

I'm using k8s provided with docker desktop (windows). My deployment.yml file is apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment labels: app: nginx-app spec: replicas: 1 selector: matchLabels: app:…
Rajeev
  • 183
  • 2
  • 10
1
vote
0 answers

Ingress problem with prometheus-community helm chart

I am deploying the prometheus-community helm chart to one of my EKS clusters and I'm having a problem with the ingress settings. On the cluster I am using Amazon ALB controllers to provision a load balancer in AWS, I do this for many different apps…
Molenpad
  • 833
  • 2
  • 14
  • 34
1
vote
2 answers

GKE ingress modify existing hosts/paths

Is it possible to modify (add/remove) existing hosts from command line/ by a script? I want to add new applications dynamically when they are deployed for the first time. I currently ended up with this script: #!/bin/bash APP_NAME=$1 if [[ -z…
1
vote
2 answers

Unable to deploy a second ingress controller using helm in Azure Kubernetes Cluster ( AKS )

I deployed one ingress controller in a namespace by running the command: helm install nginx-ingress ingress-nginx/ingress-nginx \ --namespace kk \ --set controller.replicaCount=2 \ --set…
notageek27
  • 101
  • 1
  • 6
1
vote
1 answer

Bind K8s ingress/load balancer to 127.0.0.1 instead of 0.0.0.0

When I run a local cluster using Docker for Window's built-in Kubernetes server, and install the Nginx ingress, the server is accessible on the entire local network. How can I bind the server to the loopback address (127.0.0.1) only so that it is…
Code
  • 6,041
  • 4
  • 35
  • 75
1
vote
1 answer

How to setup basic auth in ingress for included url rules?

I have a project on k8s with 3 services, that I want to cover with basic auth, and 1 service that I'd like to be public. In ingress 4 services devided by url rules, that have different prefixes. I had found tutorial about basic auth setup in ingress…
1 2 3
99
100