zilliztech / milvus-operator

The Kubernetes Operator of Milvus.
https://milvus.io
Apache License 2.0
33 stars 20 forks source link

How to change the Scheme of Loadbalancer #59

Closed tintrydome closed 6 months ago

tintrydome commented 6 months ago

Hello team,

I'm currently trying to spin-up milvus cluster, and I can deployed to my aws k8s (EKS), however, the loadbalancer always had scheme Internal.

I tried to set Annotation at several places however it's not working, could you please suggest me how to config for the loadbalancer change to internet-facing?

image
tintrydome commented 6 months ago

I solved this issue by adding annotation in Proxy component.

ServiceAnnotations: map[string]string{
    "service.beta.kubernetes.io/aws-load-balancer-scheme": "internet-facing",
},