Skip to content

Commit

Permalink
[MLRun] Optimize probe values (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbg authored Jul 16, 2024
1 parent 46ec1cd commit d01247b
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions stable/mlrun/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ api:
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
paths:
- pathType: ImplementationSpecific
path: /
tls: [ ]
Expand Down Expand Up @@ -84,7 +84,7 @@ api:
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
paths:
- pathType: ImplementationSpecific
path: /
tls: []
Expand Down Expand Up @@ -151,23 +151,31 @@ api:
# runAsNonRoot: true
# runAsUser: 1000

readinessProbe:
startupProbe:
httpGet:
path: /api/healthz
port: http
initialDelaySeconds: 10

timeoutSeconds: 10
periodSeconds: 15
failureThreshold: 4
failureThreshold: 40

readinessProbe:
httpGet:
path: /api/healthz
port: http
timeoutSeconds: 30
periodSeconds: 45
failureThreshold: 3

livenessProbe:
httpGet:
path: /api/healthz
port: http
initialDelaySeconds: 1000

timeoutSeconds: 60
periodSeconds: 15
failureThreshold: 4
periodSeconds: 30
failureThreshold: 30

volumes:
storageOverride: {}
Expand Down Expand Up @@ -287,7 +295,6 @@ api:
stateFileUpdateInterval: "10s"
monitoringInterval: "10s"


logLevel: debug
advancedLogLevel: 0
logFormat: text
Expand Down Expand Up @@ -527,7 +534,7 @@ ui:
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
paths:
- pathType: ImplementationSpecific
path: /
tls: []
Expand Down

0 comments on commit d01247b

Please sign in to comment.