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

22 questions
14
votes
3 answers

Accessing GCP Internal Load Balancer from another region

I need to access an internal application running on GKE Nginx Ingress service riding on Internal Load Balancer, from another GCP region. I am fully aware that it is not possible using direct Google networking and it is a huge limitation (GCP…
8
votes
1 answer

GCP internal load balancer Global access (Beta) annotation does not work?

I tried creating an internal load balancer with the following annotation as mentioned in this documentation: networking.gke.io/internal-load-balancer-allow-global-access: "true" Here is the full manifest: apiVersion: v1 kind: Service metadata: …
2
votes
4 answers

curl command : remote server is not able to respond after TLS handshake in google compute node

In a google compute node, when I run this command curl -v https://www1.nseindia.com/, the command gets stuck immediately after the TLS handshake. * Expire in 50 ms for 1 (transfer 0x562c94210f50) * Trying 23.199.139.58... * TCP_NODELAY set *…
tonyvar
  • 21
  • 1
  • 2
2
votes
1 answer

When setting up GKE internal load balancers why can I access the IP address from a separate VM but not within the cluster?

I have a K8s deployment running in GKE which is connected to an internal load balancer service which assigns an IP address to the VPC subnetwork. When I spin up an individual Compute VM in the subnetwork I am able to access the deployment using the…
1
vote
0 answers

Do GCP Internal Load Balancers support gRPC with Serverless Negs

I am running a number of Cloud Run services which all have VPC access via a VPC connector and setting all egress to run through this connector. I have an ILB set up which points to a Regional Backend Service with Serverless Network Endpoint Group…
1
vote
0 answers

routing traffic from an external load balancer to an internal load balancer on gcp

Lets assume we are laboring under the following requirements: We would like to run our code on gcp and wish to do so on kubernetes as opposed to on any of the managed solutions (app engine, cloud run...). Our services need to be exposed to the…
1
vote
1 answer

GCP HTTP Load balancer to TCP Load balancer

I am trying to figure out is how can I connect a TCP Load balancer with a http/https load balancer in GCP. I have installed kong on a GKE cluster and it creates a TCP Load balancer. Now if I have multiple GKE clusters with Kong they all will have…
1
vote
2 answers

GCP internal load balancer between two VMs (Compute instances)

Is it possible in GCP to create an internal load balancer that balances the traffic between two Compute Instances in different regions? Two instances (written NAT on them) are in different regions (e.g one in us-central1 and other in asia-south1)…
1
vote
1 answer

Where can I find the nodeport information on the ILB that sends traffic to a GKE service that is exposed using a nodeport

I have created a service in GKE exposed using an internal load balancer. The health check port for the ILB is 10256 which is kube-proxy. The port on the ILB is that of my kubernetes service port. (Not the target port). However there is no…
1
vote
2 answers

GCP health check for internal load balancer

I set up own Elasticsearch cluster in the GCP. The cluster is up and running fine. The cluster contains two client nodes which I am able to access internally and pass a health check for both of them using http://IP:9200/ and…
1
vote
1 answer

Internal load balancer : Connection refused

I am trying to setup a internal load balancer on GCP cloud , and the problem is, when i try to access the same via another instance which falls under same VPC I am facing "Connection refused" error. Firewall rules has been checked as well as cross…
1
vote
0 answers

Google Cloud Load Balancer: internalForwardingRulesLimitsExceeded

Since a couple of days, I'm facing the following error when trying to deploy a new service which uses internal load balancer on Google Cloud: Error creating load balancer (will retry): failed to ensure load balancer for service…
0
votes
0 answers

Indefinite response in GCP Internal Load Balancer

I am using an internal load balancer in GCP to route the traffic between 2 VMs which are memory sensitive. Currently for the testing purpose I am trying with only 1 VM. So all the time the traffic routed to single server. I am using javascript in…
0
votes
0 answers

MIG + TCP/UDP Load balances at instance group level or at instance level?

Context: I have below configuration A single Managed Instance Group creating VMs using Instance Template. A single TCP/UDP load balancer that refers to the above Managed Instance Group. (A single backend) In some examples, I've seen similar…
0
votes
0 answers

How to open up a service internally only from project A in GCP to a gRPC service in cloudrun in project B

Need a design idea for below scenario: I have project A and project B, I want to be able to connect to a service in project B which is a gRPC service running in cloudrun internally only. Solution: I plan to use VPC peering between project A and…
1
2