Questions tagged [haproxy-ingress]

86 questions
0
votes
1 answer

Understanding timeouts in haproxy ingress controller

I am using HAProxy as an ingress controller in my GKE cluster. This is what my configurations look like, for a service which I want to timeout in X milliseconds: --- apiVersion: v1 kind: Service metadata: name: dummy-app-service annotations: …
kadamb
  • 1,532
  • 3
  • 29
  • 55
0
votes
2 answers

Parse namespace to values file

I'm trying to add the {{ .Release.Namespace }} to a string, but it's parsed literally as just {{ .Release.Namespace }} and not as the namespace itself. I've tried using quotes (") and using tpl, but nothing did the job. I'm using Helm v3.5.4. In…
Bart Versluijs
  • 186
  • 1
  • 8
0
votes
0 answers

502 bad gateway error observed intermittently in Openshift 4.5

I am using openshift 4.5. I used service and routes and it is externally accessible. Application is working fine, but sometimes i am getting 502 error. I am using ingress haproxy route. Appreciate your thoughts on resolving this issue.
arunkum96
  • 1
  • 2
0
votes
1 answer

kubernetes apply changes of existing service from json

I need help to understand how can I update my svc configuration using a json file : my svc is up and runing but it is not the type i want, it is a cluster ip and I'd like to change it to a ingress kind and type load balancer: curently here is the…
Ait Zaid
  • 129
  • 12
0
votes
1 answer

What component is resolving domain in OpenShift router

I am using OpenShift router, by default the router is based on haproxy. When I create a domain such as aa.bb.cc, then I can access my service via this route. I saw router (haproxy) pods are running my cluster, my question is, when I curl…
Joe
  • 623
  • 7
  • 16
0
votes
0 answers

TCP whitelist for custom TCP port does not work in haproxy ingress

Hi I was able to configure the haproxy ingress for a custom TCP port (RabbitMQ), using helm with custom values: # ha-values.yaml controller: ingressClass: haproxy config: whitelist-source-range: 251.161.180.161 # use-proxy-protocol:…
StefanoV
  • 485
  • 1
  • 4
  • 9
0
votes
1 answer

Issue Accessing Docker Registry from Inside Kubernetes

I have setup a private docker registry inside my Kubernetes Cluster. The deployment is as follows apiVersion: apps/v1 kind: Deployment metadata: name: registry labels: app: registry spec: replicas: 1 selector: matchLabels: …
echappy
  • 533
  • 5
  • 13
0
votes
1 answer

Haproxy Too Many Redirects

I want to route trafic outside of Turkey to another domain, I write acl into haproxy so in Turkey it works as planned but outside of Turkey traffic redirects but shows too many redirects. What I am missing in this configuration. My traffic comes…
Meth
  • 1
0
votes
0 answers

K8s haproxy ingress controller close keep alive connection after 100 request

I have a ingress controller (haproxy) and 2 Microservice. MS2 is calling MS1. MS1 has config keepAliveRequest=-1 (unlimited) and keep alive timeout = 50 min. When MS2 is calling MS1 via kube-proxy (NodePort type Service), it's ok when MS2 only…
user3611168
  • 335
  • 1
  • 6
  • 27
0
votes
1 answer

Ingress for Nexus Docker repository hosted on Kubernetes

I just deploy a nexus repository to a kubernetes cluster. This nexus have 3 docker repository. One proxy of docker hub, one private and one that group both previous. I use haproxy as ingress controller. Is it possible to deploy an ingress that match…
Scandinave
  • 1,388
  • 1
  • 17
  • 41
0
votes
0 answers

HAProxy redirect request from HAProxy load balancer to another load balancer

I have a GCP external load balancer that is only exposed to port 443 and I have HAProxy load balancer that is exposed to many ports. How can I redirect the traffic coming from the HAProxy load balancer to another load balancer so that I dont have to…
0
votes
0 answers

Is it possible or right to configure Nginx Ingress Controller on Openshift cluster?

I have Kubernetes cluster setup available on my system. I have verified that my definitions for Ingress controller and Ingress resources working over it as I am able to invoke services inside my K8 cluster from outside the cluster. Now, I have to…
0
votes
1 answer

How to configure haproxy-ingress for serving GRPC

Has anyone successful in configuring Haproxy ingress controller for serving a GRPC server in the backend GRPC Client ----> Ingress----> GRPC Server (k8s Service) --> GRPC Server( Pod) I tried configuring as per the documentation here…
Alex Punnen
  • 5,287
  • 3
  • 59
  • 71
0
votes
1 answer

haproxy-ingress multiple backend rules

I am trying to play with multiple rules on one of my ingress statements: apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: ingress.kubernetes.io/balance-algorithm: roundrobin ingress.kubernetes.io/maxconn-server: "10" …
0
votes
1 answer

haproxy-ingress load balance http on non standard port

I need to scrape a Prometheus exporter running in a pod. It runs on port 9098, the exporter is working fine and i can manually scrape it from the host it is running on. The issue is with the ingress. I am trying to get the ingress to allow…