Fari Qodri Andana
Fari Qodri Andana

Reputation: 37

GKE load balancer can only be accessed from cloud shell

I created a MariaDB deployment and service using bitnami/mariadb helm chart. Here's the service settings for the master pod:

service:
  type: LoadBalancer
  port: 3306
  nodePort: ""
  clusterIP: ""
  loadBalancerIP: ""
  loadBalancerSourceRanges: []
  annotations: {}

After the helm chart is installed, a GCP LoadBalancer is created and I can get the external IP. I checked the load balancer firewall rules and the IP ranges is 0.0.0.0/0

I can access the load balancer from the cloud shell just fine, but when I try to access it from my laptop it just won't stop loading and eventually fails. Is there any way to let this load balancer be accessed from anywhere?

Thanks!

Update:

  1. My company has a VPN that lives in a GCE VM. When I am connected to that VPN, I can access the load balancer.

Upvotes: 0

Views: 129

Answers (1)

Fari Qodri Andana
Fari Qodri Andana

Reputation: 37

Turns out there's something wrong with my ISP. When I change to a different ISP it works perfectly. Thanks for the help!

Upvotes: 1

Related Questions