Skip to content

Commit

Permalink
fix(envoy): add readiness probe to Envoy (#5158)
Browse files Browse the repository at this point in the history
  • Loading branch information
SDJustus authored Nov 2, 2023
1 parent 7f56fb3 commit d350206
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1353,6 +1353,13 @@ spec:
name: http
- containerPort: 9003
name: envoy-admin
readinessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: envoy-admin
initialDelaySeconds: 10
periodSeconds: 5
resources:
limits:
memory: '{{ .Values.envoy.resources.memory }}'
Expand Down
7 changes: 7 additions & 0 deletions k8s/yaml/components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,13 @@ spec:
name: http
- containerPort: 9003
name: envoy-admin
readinessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: envoy-admin
initialDelaySeconds: 10
periodSeconds: 5
resources:
limits:
memory: '128Mi'
Expand Down
7 changes: 7 additions & 0 deletions operator/config/seldonconfigs/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ spec:
requests:
cpu: 100m
memory: 128Mi
readinessProbe:
httpGet:
path: /ready
port: envoy-admin
initialDelaySeconds: 10
periodSeconds: 5
failureThreshold: 3
terminationGracePeriodSeconds: 5
- name: hodometer
replicas: 1
Expand Down

0 comments on commit d350206

Please sign in to comment.