我在私有(private)子网中运行 EKS,因此无法创建面向 Internet 的负载均衡器,但能够创建内部负载均衡器。

有什么方法可以在公共(public)子网中创建 Loadbalancer(可能手动)并指向在私有(private)子网中的 EKS 中运行的 Pod。

我正在考虑创建负载均衡器链,其中外部负载均衡器将指向内部负载均衡器,但这也是不可能的,因为内部负载均衡器的 IP 地址是保留 IP。

我可以尝试其他方式将流量从互联网路由到 pod 吗?

最佳答案

我遇到了同样的问题,这是因为我没有正确标记 VPC 子网:
https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html

我必须添加 key :kubernetes.io/cluster/{eks-cluster-name} value: shared tag to the VPC

然后,您可以使用 LoadBalancer 类型的服务创建 LB

apiVersion: v1
kind: Service
metadata:
  name: helloworld
  labels:
    app: helloworld
spec:
  ports:
  - port: 80
    targetPort: 8080
  selector:
    app: helloworld
  type: LoadBalancer

这可能有助于创建服务:https://blog.giantswarm.io/load-balancer-service-use-cases-on-aws/

关于kubernetes-ingress - 私有(private)子网中的 EKS,公共(public)子网中的负载均衡器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54027386/

10-15 22:15