When I create a GCE ingress, Google Load Balancer does not set the health check from the readiness probe. According to the docs (Ingress GCE health checks) it should pick it up.
Expose an arbitrary URL as a readiness probe on the pods backing the Service.
Any ideas why?
Deployment:
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: frontend-prod labels: app: frontend-prod spec: selector: matchLabels: app: frontend-prod replicas: 3 strategy: rollingUpdate: maxSurge: 1 maxUnavailable: 1 type: RollingUpdate template: metadata: labels: app: frontend-prod spec: imagePullSecrets: - name: regcred containers: - image: app:latest readinessProbe: httpGet: path: /healthcheck port: 3000 initialDelaySeconds: 15 periodSeconds: 5 name: frontend-prod-app - env: - name: PASSWORD_PROTECT value: "1" image: nginx:latest readinessProbe: httpGet: path: /health port: 80 initialDelaySeconds: 5 periodSeconds: 5 name: frontend-prod-nginx
Service:
apiVersion: v1 kind: Service metadata: name: frontend-prod labels: app: frontend-prod spec: type: NodePort ports: - port: 80 targetPort: 80 protocol: TCP name: http selector: app: frontend-prod
Ingress:
apiVersion: extensions/v1beta1 kind: Ingress metadata: name: frontend-prod-ingress annotations: kubernetes.io/ingress.global-static-ip-name: frontend-prod-ip spec: tls: - secretName: testsecret backend: serviceName: frontend-prod servicePort: 80