catalog/stable/local-ai/1.0.0/ix_values.yaml

90 lines
2.8 KiB
YAML

image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v1.40.0@sha256:3aac12d7637c905afdac67ee33351594eaa58fe77eeeb145f114f45e5f358cf3
ffmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.0.0-ffmpeg@sha256:9d3d901f1a14b6ddea7df0d9f7b21250bcf4f4f0b440494c7e2936083a7ce8eb
cublasCuda12Image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v1.40.0-cublas-cuda12@sha256:b1ce4420bb9f46cc101d1e6d0a4867da3090bb3f86c36f92bab538162f05752e
cublasCuda12FfmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v1.40.0-cublas-cuda12-ffmpeg@sha256:42fae783cbffab75c0e409b758b3cf2dbd773b8f8b04169de4e6ad02e6084ba9
cublasCuda11Image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v1.40.0-cublas-cuda11@sha256:1af527795ae1b6e04ccc02d531756710966c33e31356ddeefba88d1cae8d4e83
cublasCuda11FfmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v1.40.0-cublas-cuda11-ffmpeg@sha256:fc16b363e9071ed2dc5ec40b91c20bda764301fd4422439288bdcbb986761a28
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
port: 8080
localai:
# Specify a build type. Available: cublas, openblas, clblas.
build_type: "openblas"
debug: false
cors: true
cors_allow_origins: "*"
galleries: []
# - name: model-gallery
# url: github:go-skynet/model-gallery/index.yaml
preload_models: []
# url: github:go-skynet/model-gallery/gpt4all-j.yaml
# UPLOAD_LIMIT
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
type: http
path: /readyz
readiness:
enabled: true
type: http
path: /readyz
startup:
enabled: true
type: tcp
imageSelector: image
env:
ADDRESS: ":{{ .Values.service.main.ports.main.port }}"
MODELS_PATH: "{{ .Values.persistence.models.mountPath }}"
IMAGE_PATH: "{{ .Values.persistence.images.mountPath }}"
BUILD_TYPE: "{{ .Values.localai.build_type }}"
# breaks chart if true, keep it false.
REBUILD: false
DEBUG: "{{ .Values.localai.debug }}"
CORS: "{{ .Values.localai.cors }}"
GALLERIES: "{{ toJson .Values.localai.galleries }}"
PRELOAD_MODELS: "{{ toJson .Values.localai.preload_models }}"
CORS_ALLOW_ORIGINS: "{{ .Values.localai.cors_allow_origins }}"
persistence:
models:
enabled: true
mountPath: "/models"
images:
enabled: true
mountPath: "/images"
portal:
open:
enabled: false
updated: true