Questions tagged [google-cloud-internal-load-balancer]

22 questions
0
votes
1 answer

GCP Internal Load balancer - Error: Request failed with status code 431

As per our requirement, we are making GET Request, we send encoded string in url. Gradually the length of encoded string exceeds 5000 character and that is where we are getting 431 error. It seems like we are hitting this: Load Balancer quota…
0
votes
0 answers

Why can I not mention PURPOSE or Role in subnet creation "An argument named "purpose" is not expected here" in terraform

I have a subnetwork module that I call from in my main.tf. resource "google_compute_subnetwork" "vpc_sub_network" { for_each = var.subnet_info ip_cidr_range = each.value["subnet_ip_range"] name = each.value["subnet_name"] network =…
0
votes
0 answers

Google Cloud - Two clusters in the same project belong to the same VPC?

How do I set up two clusters in the same GCP project such that they share the same VPC? I created a cluster with Internal TCP/UDP Load Balancer (without Global Access) in a cluster, say C1. I then created cluster C2 in the same zone and same…
0
votes
0 answers

GCP internal load balancer idle timeout

Every time when a client sends any request (say HTTP), the request is received by a load balancer (if set up) and it will redirect the request to one of the instances. Now a connection is established between Client->LB->Server. This will persist as…
-1
votes
1 answer

Problems with deploying a load balancer in front of etcd clusters

i am trying to deployu a load balancer in front of 3 of my etcd clusters which are running on port 2379. But I am always getting a connection refused error. I ve added firewall IPs for healthchecks and added a fw rule for 0.0.0.0 on port 2379 but…
Ozzy
  • 31
  • 3
-1
votes
3 answers

GCP Internal Load Balancer with ngnix ingress controller as nodeport : Connection Refused

Background: We hosted application in a GKE cluster, the application running on the GKE cluster has an ingress resource containing the rules to point to our application services. We are using ingress-nginx as the ingress controller for this…
-5
votes
1 answer

How do you assign a static IP to a GKE Ingress?

I have a GKE cluster setup where I have a service running as an internal load balancer and an ingress for this service. Is there a way to set a static IP to the ingress controller? My reference guide is…
1
2