apiVersion: apps/v1 kind: Deployment metadata: name: nginx-ingress-controller spec: template: spec: containers: - name: nginx-ingress-controller livenessProbe: failureThreshold: 3 httpGet: path: /healthz port: 10254 scheme: HTTP initialDelaySeconds: 5 periodSeconds: 5 successThreshold: 1 timeoutSeconds: 10 readinessProbe: failureThreshold: 3 httpGet: path: /healthz port: 10254 scheme: HTTP periodSeconds: 5 successThreshold: 1 timeoutSeconds: 5