google-cloud-platform - 带有 NEG 的 GKE Ingress : backend healthcheck doesn't pass

标签 google-cloud-platform google-kubernetes-engine kubernetes-ingress

我创建了 GKE Ingress,如下所示:

apiVersion: cloud.google.com/v1beta1 #tried cloud.google.com/v1 as well
kind: BackendConfig
metadata:
  name: backend-config
  namespace: prod
spec:
  healthCheck:
    checkIntervalSec: 30
    port: 8080
    type: HTTP #case-sensitive
    requestPath: /healthcheck
  connectionDraining:
    drainingTimeoutSec: 60

---
apiVersion: v1
kind: Service
metadata:
  name: web-engine-service
  namespace: prod
  annotations:
    cloud.google.com/neg: '{"ingress": true}' # Creates a NEG after an Ingress is created.
    cloud.google.com/backend-config: '{"ports": {"web-engine-port":"backend-config"}}' #https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#associating_backendconfig_with_your_ingress
spec:
  selector:
    app: web-engine-pod
  ports:
    - name: web-engine-port
      protocol: TCP
      port: 8080
      targetPort: 5000

---
apiVersion: apps/v1
kind: Deployment
metadata:
  annotations:
    deployment.kubernetes.io/revision: "1"
  labels:
    app: web-engine-deployment
    environment: prod
  name: web-engine-deployment
  namespace: prod
spec:
  progressDeadlineSeconds: 600
  replicas: 1
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      app: web-engine-pod
  strategy:
    rollingUpdate:
      maxSurge: 25%
      maxUnavailable: 25%
    type: RollingUpdate
  template:
    metadata:
      name: web-engine-pod
      labels:
        app: web-engine-pod
        environment: prod
    spec:
      containers:
        - image: my-image:my-tag
          imagePullPolicy: Always
          name: web-engine-1
          resources: {}
          ports:
            - name: flask-port
              containerPort: 5000
              protocol: TCP
          readinessProbe:
            httpGet:
              path: /healthcheck
              port: 5000
            initialDelaySeconds: 30
            periodSeconds: 100
      restartPolicy: Always
      terminationGracePeriodSeconds: 30
---
apiVersion: networking.gke.io/v1beta2
kind: ManagedCertificate
metadata:
  name: my-certificate
  namespace: prod
spec:
  domains:
    - api.mydomain.com #https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#renewal

---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
  name: prod-ingress
  namespace: prod
  annotations:
    kubernetes.io/ingress.allow-http: "false"
    kubernetes.io/ingress.global-static-ip-name: load-balancer-ip
    networking.gke.io/managed-certificates: my-certificate
spec:
  rules:
    - http:
        paths:
          - path: /model
            backend:
              serviceName: web-engine-service
              servicePort: 8080

我不知道我做错了什么,因为我的健康检查不正常。根据我添加到应用程序中的周边日志记录,甚至没有任何东西试图攻击该 Pod。

我已针对 80805000 尝试过 BackendConfig
顺便说一句,根据文档,并不能 100% 明确负载均衡器是否应配置为相应 Pod 或服务的 targetPorts

运行状况检查已注册到 HTTP 负载均衡器和 Compute Engine: enter image description here

后端服务IP好像有点不对劲。

对应的后端服务配置:

$ gcloud compute backend-services describe k8s1-85ef2f9a-prod-web-engine-service-8080-b938a707
...

affinityCookieTtlSec: 0
backends:
- balancingMode: RATE
  capacityScaler: 1.0
  group: https://www.googleapis.com/compute/v1/projects/wnd/zones/europe-west3-a/networkEndpointGroups/k8s1-85ef2f9a-prod-web-engine-service-8080-b938a707
  maxRatePerEndpoint: 1.0
connectionDraining:
  drainingTimeoutSec: 60
creationTimestamp: '2020-08-01T11:14:06.096-07:00'
description: '{"kubernetes.io/service-name":"prod/web-engine-service","kubernetes.io/service-port":"8080","x-features":["NEG"]}'
enableCDN: false
fingerprint: 5Vkqvg9lcRg=
healthChecks:
- https://www.googleapis.com/compute/v1/projects/wnd/global/healthChecks/k8s1-85ef2f9a-prod-web-engine-service-8080-b938a707
id: '2233674285070159361'
kind: compute#backendService
loadBalancingScheme: EXTERNAL
logConfig:
  enable: true
  sampleRate: 1.0
name: k8s1-85ef2f9a-prod-web-engine-service-8080-b938a707
port: 80
portName: port0
protocol: HTTP
selfLink: https://www.googleapis.com/compute/v1/projects/wnd/global/backendServices/k8s1-85ef2f9a-prod-web-engine-service-8080-b938a707
sessionAffinity: NONE
timeoutSec: 30

(端口 80 看起来确实很可疑,但我想也许它只是作为默认值留在那里,并且在配置 NEG 时并未使用)。

最佳答案

想通了。默认情况下,即使创建最新的 GKE 集群也不支持 IP 别名。它也称为VPC 原生。我一开始甚至懒得去检查,因为:

  • NEG 是开箱即用的,而且在我拥有的 GKE 版本 (1.17.8-gke.17) 上使用时,它们似乎是默认的,不需要显式注释。默认情况下不启用 IP 别名是没有意义的,因为这基本上意味着集群默认处于非功能状态。
  • 我最初没有检查 VPC-Native 支持,因为该功能的这个名称很容易产生误导。我之前在 AWS 方面拥有丰富的经验,我的错误假设是 VPC-Native 就像 EC2-VPC,而不是 EC2-Classic,后者是遗留的。

关于google-cloud-platform - 带有 NEG 的 GKE Ingress : backend healthcheck doesn't pass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63209060/

相关文章:

apache - GCP HTTP(S) 负载平衡器会将 HTTP/1.1 header 名称转换为小写,我的代码会受到影响吗?

java - 在 Java 11 App Engine 项目中配置静态文件 (CSS)

python - 在Jupyter notebook中设置环境变量的不同方式

java - 如何使用java将 "ACL"设置为google存储文件夹下的所有文件

https - 运行 dockerised FastAPI 应用程序时的 CORS 问题

google-app-engine - GCP内部负载平衡器

kubernetes - 解析 templates/deployment.yaml 时出错 : json: line 1: invalid character '{' looking for beginning of object key string

kubernetes - 如何在 YAML 文件中指定 GKE 节点池配置,而不是使用 gcloud 容器节点池创建?

azure - Istio Ingress 不起作用 - 仅端口转发起作用

azure - Kubernetes 内部唯一入口