Skip to content
Open
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
25 changes: 25 additions & 0 deletions charts/local-ai/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,31 @@ spec:
containers:
- name: {{ template "local-ai.fullname" . }}
image: {{ .Values.deployment.image }}
startupProbe:
initialDelaySeconds: 900
periodSeconds: 10
failureThreshold: 30
timeoutSeconds: 10
httpGet:
scheme: HTTP
port: 8080
path: /v1/models
readinessProbe:
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 10
httpGet:
scheme: HTTP
port: 8080
path: /v1/models
livenessProbe:
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 10
httpGet:
scheme: HTTP
port: 8080
path: /v1/models
resources:
{{- toYaml .Values.resources | nindent 12 }}
env:
Expand Down