无法连接到AKS服务端点

时间:2019-02-14 19:36:47

标签: kubernetes azure-kubernetes

从我的问题here开始,我现在遇到了无法连接到外部端点的问题。我的YAML文件在这里:

apiVersion: v1
kind: Pod
spec: 
  containers:
    - name: dockertest20190205080020
      image: dockertest20190205080020.azurecr.io/dockertest
      ports:
      - containerPort: 443
metadata: 
  name: my-test
  labels: 
    app: app-label
---
kind: Service
apiVersion: v1
metadata:
  name: test-service
spec:
  selector:
    app: app-label
  type: LoadBalancer
  ports:
  - protocol: TCP
    port: 443    

发出命令后,我现在可以看到一个外部IP:

kubectl get service test-service --watch

但是,如果我尝试连接到该IP,则会收到超时异常。我试过运行仪表板,它说一切正常。接下来我该如何诊断这个问题?

1 个答案:

答案 0 :(得分:0)

在这种情况下,该问题通过将容器暴露在端口80上并从外部端口6666路由到该端口而得以解决。