fix: move to httpcheck probe

This commit is contained in:
Julien Cabillot 2021-12-30 16:05:21 -05:00
parent 4e4a8b15ba
commit 0d1c44aa18
2 changed files with 21 additions and 3 deletions

View File

@ -9,7 +9,7 @@ appVersion: "latest"
description: Helm chart for cv description: Helm chart for cv
name: cv name: cv
version: 0.0.9 version: 0.0.10
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- cv - cv

View File

@ -35,10 +35,28 @@ ingress:
probes: probes:
liveness: liveness:
enabled: true enabled: true
initialDelaySeconds: 2 custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readiness: readiness:
enabled: true enabled: true
initialDelaySeconds: 2 custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startup: startup:
enabled: false enabled: false