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

90 lines
2.8 KiB
YAML

image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0@sha256:26cebbe29c20738663dad050557f72b4f74769722466ba988f82b17a02aa72e5
ffmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0-ffmpeg@sha256:eb63b1ad478fd0fd284c2c2ed8c44eeecd04ab1ced67f227d184b71d16e2c5d8
cublasCuda12Image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0-cublas-cuda12@sha256:c2f9e9c7bd8fb6172a753fa4aab2fef9ae6eee025df78d87ac2cc95868c2e7ba
cublasCuda12FfmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0-cublas-cuda12-ffmpeg@sha256:f0b3afa9e6c0f2d661516103e8ae0b8a388936ca240541198c80346f43d3bfeb
cublasCuda11Image:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0-cublas-cuda11@sha256:b6d705709ad186158d1d3d26751c328f53aa6dcd977f4ca0222ad26ffc250334
cublasCuda11FfmpegImage:
repository: quay.io/go-skynet/local-ai
pullPolicy: IfNotPresent
tag: v2.1.0-cublas-cuda11-ffmpeg@sha256:0400c00c4753af9975d2ed35c3dd50d16e724c32ca68f2b48bd60ff2eaa1df2c
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