【以下的问题经过翻译处理】 你好!
我创建了一个简单的集群和一个带有服务的简单部署(见下文)。
eksctl create cluster --name artem-cluster --region eu-west-1 --fargate --profile mfa
apiVersion: apps/v1
kind: Deployment
metadata:
name: sample-app
spec:
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: public.ecr.aws/nginx/nginx:1.19.6
ports:
- name: http
containerPort: 80
apiVersion: v1
kind: Service
metadata:
name: sample-service
annotations:
service.beta.kubernetes.io/aws-load-balancer-type: nlb-ip
spec:
ports:
- port: 80
targetPort: 80
protocol: TCP
type: LoadBalancer
selector:
app: nginx
但服务停留在 <pending> 状态 -
示例服务 LoadBalancer 10.100.5.193 <pending> 80:31505/TCP 5h57m
在“描述”中,我看到了唯一的字符串:
Type Reason Age From Message
Normal EnsuringLoadBalancer 29m service-controller Ensuring load balancer
顺便说一下,如果我在没有“service.beta.kubernetes.io/aws-load-balancer-type: nlb-ip”的情况下创建服务,它创建成功,但是
curl <external_ip>:80 返回空响应,所以我在文档中发现我应该使用“nlb-ip”,现在坚持使用它。