TrueChartsClone/charts/stable/local-ai/values.yaml

90 lines
2.8 KiB
YAML

image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1@sha256:d3ca9c6ad6cc93f367171c0307d4103af2a192d642f92cc9f149bb1c7884cc16
ffmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1-ffmpeg-core@sha256:05bff88e58a40a776938ba72791bae046b14bf779d4ec95ddcb7791f6af558a2
cublasCuda12Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1-cublas-cuda12-core@sha256:581d1d1c9193e85f8ba794e76dd7d542886776d933505810333a1458fc9f8345
cublasCuda12FfmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1-cublas-cuda12-ffmpeg-core@sha256:cb6575204e76e9c306fb1b1f24506030d11fbc382f7105072bd3241c92a871ff
cublasCuda11Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1-cublas-cuda11-core@sha256:663368139cd83464430db064e3e3bb920a196584179637267f76a10bbc55753a
cublasCuda11FfmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.6.1-cublas-cuda11-ffmpeg-core@sha256:4bdd943ac1effa57c02de31aa1d490040388058b54abfa8d1fc474f5c7ea827e
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