Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-24 13:38:12 +00:00
parent 492818df01
commit e2321439fa
12 changed files with 2337 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [local-ai-0.0.1]local-ai-0.0.1 (2023-07-24)

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "1.21.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.14.6
deprecated: false
description: Self-hosted, community-driven, local OpenAI-compatible API.
home: https://truecharts.org/charts/incubator/local-ai
icon: https://truecharts.org/img/hotlink-ok/chart-icons/local-ai.png
keywords:
- local-ai
- ai
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: local-ai
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/local-ai
- https://github.com/go-skynet/LocalAI
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- ai
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1 @@
# README

View File

@ -0,0 +1,4 @@
## [local-ai-0.0.1]local-ai-0.0.1 (2023-07-24)

View File

@ -0,0 +1,8 @@
Self-hosted, community-driven, local OpenAI-compatible API.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/local-ai](https://truecharts.org/charts/incubator/local-ai)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,96 @@
image:
repository: tccr.io/truecharts/local-ai
pullPolicy: IfNotPresent
tag: v1.21.0@sha256:ab2b3e391effc9a4c5bde8add39e060e9b46558491599550bbb423da191f0461
ffmpegImage:
repository: tccr.io/truecharts/local-ai-ffmpeg
pullPolicy: IfNotPresent
tag: v1.21.0@sha256:bdf5ad52dd91f7eb45f231172c38c08716000c2a0dcdd5f029e939ac78076543
cublasCuda12Image:
repository: tccr.io/truecharts/local-ai-cublas-cuda12
pullPolicy: IfNotPresent
tag: v1.21.0-cublas@sha256:b081e33b37252b71ef5f2c1e78cbbb8530d850693cbcf853ced6d2a43c9d98be
cublasCuda12FfmpegImage:
repository: tccr.io/truecharts/local-ai-cublas-cuda12-ffmpeg
pullPolicy: IfNotPresent
tag: v1.21.0-cublas-cuda12@sha256:61f25376a200298898e8e47a2a98584fd8a1dd2206a6139cd42fa2686a7371f0
cublasCuda11Image:
repository: tccr.io/truecharts/local-ai-cublas-cuda11
pullPolicy: IfNotPresent
tag: v1.21.0-cublas@sha256:f62226611d79d7c3278ff51609d79d26f0da8aa399a2eb91a0e0e7e68e0a561b
cublasCuda11FfmpegImage:
repository: tccr.io/truecharts/local-ai-cublas-cuda11-ffmpeg
pullPolicy: IfNotPresent
tag: v1.21.0-cublas-cuda11@sha256:09935552112e52bc40fb11a106c54132c8fc8f1b534a04c4cd3580082f4339f1
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"
rebuild: false
# requires REBUILD=true | stablediffusion, tts
# stablediffusion: image generation with stablediffusion
# tts: enables text-to-speech with go-piper
go_tags: "stablediffusion"
context_size: "512"
debug: true
cors: true
cors_allow_origins: "*"
# galleries: [{"name":"model-gallery", "url":"github:go-skynet/model-gallery/index.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: http
path: /readyz
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 }}"
REBUILD: "{{ .Values.localai.rebuild }}"
GO_TAGS: "{{ .Values.localai.go_tags }}"
CONTEXT_SIZE: "{{ .Values.localai.context_size }}"
DEBUG: "{{ .Values.localai.debug }}"
CORS: "{{ .Values.localai.cors }}"
CORS_ALLOW_ORIGINS: "{{ .Values.localai.cors_allow_origins }}"
persistence:
models:
enabled: true
mountPath: "/models"
images:
enabled: true
mountPath: "/images"
portal:
open:
enabled: false

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}

View File

View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/local-ai.png
categories:
- ai
screenshots: []