Reputation: 37
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:
Upvotes: 0
Views: 129
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