我是Kubernetes的新手,我正在尝试使用TLS在Google容器引擎上进行HTTP负载平衡(使用附带的GCE Ingress控制器)。即使在Google's official tutorial之后,我所遇到的错误也是可重复的。为了便于阅读,我总结了config.yaml
中的过程:
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: nginx
spec:
replicas: 1
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: nginx
labels:
name: nginx
spec:
type: NodePort
ports:
- port: 80
targetPort: 80
selector:
name: nginx
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: basic-ingress
spec:
backend:
serviceName: nginx
servicePort: 80
然后:
kubectl create -f config.yaml
export NODE_PORT=$(kubectl get -o jsonpath="{.spec.ports[0].nodePort}" services nginx)
gcloud compute firewall-rules create allow-130-211-0-0-22 --source-ranges 130.211.0.0/22 --allow tcp:$NODE_PORT
curl <ip_of_load_balancer>
(我删除了防火墙规则上的标签,因此它将适用于所有标签。)
但是我得到了一个502 Server Error
,according to the docs意味着它可能会自举(但它始终保持这样)。我可以在控制台上看到后端不健康。
在文档中,要避免这个需要:
nginx
图像,并通过一般的Load Balancer测试服务,工作正常)那么这个错误的原因是什么?我该如何进一步调试呢?
答案 0 :(得分:1)
我一夜之间离开集群,现在正在运作。它似乎需要一些引导程序或者在Google Cloud端修复了一些内容。