d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
125 lines
4.4 KiB
YAML
125 lines
4.4 KiB
YAML
{{- if .Values.ollama.enabled }}
|
|
---
|
|
# PersistentVolumeClaim for Ollama data
|
|
{{- if .Values.ollama.persistence.enabled }}
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: {{ include "sim.fullname" . }}-ollama-data
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "sim.ollama.labels" . | nindent 4 }}
|
|
spec:
|
|
{{- if .Values.ollama.persistence.storageClass }}
|
|
{{- if (eq "-" .Values.ollama.persistence.storageClass) }}
|
|
storageClassName: ""
|
|
{{- else }}
|
|
storageClassName: {{ .Values.ollama.persistence.storageClass | quote }}
|
|
{{- end }}
|
|
{{- else if .Values.global.storageClass }}
|
|
storageClassName: {{ .Values.global.storageClass | quote }}
|
|
{{- end }}
|
|
accessModes:
|
|
{{- range .Values.ollama.persistence.accessModes }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.ollama.persistence.size | quote }}
|
|
{{- end }}
|
|
|
|
---
|
|
# Deployment for Ollama
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "sim.fullname" . }}-ollama
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "sim.ollama.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: {{ .Values.ollama.replicaCount }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "sim.ollama.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
{{- with .Values.podAnnotations }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "sim.ollama.selectorLabels" . | nindent 8 }}
|
|
{{- with .Values.podLabels }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.global.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ include "sim.serviceAccountName" . }}
|
|
automountServiceAccountToken: false
|
|
{{- include "sim.podSecurityContext" .Values.ollama | nindent 6 }}
|
|
{{- include "sim.nodeSelector" .Values.ollama | nindent 6 }}
|
|
{{- include "sim.tolerations" .Values.ollama | nindent 6 }}
|
|
{{- include "sim.affinity" .Values | nindent 6 }}
|
|
containers:
|
|
- name: ollama
|
|
image: {{ include "sim.image" (dict "imageRoot" .Values.ollama.image "global" .Values.global "chartAppVersion" .Chart.AppVersion) }}
|
|
imagePullPolicy: {{ .Values.ollama.image.pullPolicy }}
|
|
command: ["ollama", "serve"]
|
|
ports:
|
|
- name: http
|
|
containerPort: {{ .Values.ollama.service.targetPort }}
|
|
protocol: TCP
|
|
env:
|
|
{{- range $key, $value := .Values.ollama.env }}
|
|
- name: {{ $key }}
|
|
value: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- with .Values.extraEnvVars }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.ollama.startupProbe }}
|
|
startupProbe:
|
|
{{- toYaml .Values.ollama.startupProbe | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.ollama.livenessProbe }}
|
|
livenessProbe:
|
|
{{- toYaml .Values.ollama.livenessProbe | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.ollama.readinessProbe }}
|
|
readinessProbe:
|
|
{{- toYaml .Values.ollama.readinessProbe | nindent 12 }}
|
|
{{- end }}
|
|
{{- include "sim.resources" .Values.ollama | nindent 10 }}
|
|
{{- include "sim.containerSecurityContext" .Values.ollama | nindent 10 }}
|
|
{{- if or .Values.ollama.persistence.enabled .Values.extraVolumeMounts .Values.ollama.extraVolumeMounts }}
|
|
volumeMounts:
|
|
{{- if .Values.ollama.persistence.enabled }}
|
|
- name: ollama-data
|
|
mountPath: /data
|
|
{{- end }}
|
|
{{- with .Values.extraVolumeMounts }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.ollama.extraVolumeMounts }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if or .Values.ollama.persistence.enabled .Values.extraVolumes .Values.ollama.extraVolumes }}
|
|
volumes:
|
|
{{- if .Values.ollama.persistence.enabled }}
|
|
- name: ollama-data
|
|
persistentVolumeClaim:
|
|
claimName: {{ include "sim.fullname" . }}-ollama-data
|
|
{{- end }}
|
|
{{- with .Values.extraVolumes }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.ollama.extraVolumes }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }} |