Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MLRun] Optimize probe values #1032

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stable/mlrun/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: mlrun
version: 0.9.25
appVersion: 1.6.2
version: 0.9.26
appVersion: 1.6.4
description: Machine Learning automation and tracking
sources:
- https://github.com/mlrun/mlrun
Expand Down
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