mirror of
https://github.com/truenas/charts.git
synced 2026-04-14 10:40:31 +08:00
immich-env-vars (#2532)
This commit is contained in:
@@ -4,7 +4,7 @@ description: Immich is a self-hosted photo and video backup solution directly fr
|
||||
annotations:
|
||||
title: Immich
|
||||
type: application
|
||||
version: 3.0.24
|
||||
version: 3.0.25
|
||||
apiVersion: v2
|
||||
appVersion: 1.105.1
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
|
||||
@@ -56,6 +56,31 @@ questions:
|
||||
description: Cuda Machine Learning Image
|
||||
- value: mlOpenvinoImage
|
||||
description: Openvino Machine Learning Image
|
||||
- variable: logLevel
|
||||
label: Log Level
|
||||
description: |
|
||||
The log level to use for Machine Learning.
|
||||
schema:
|
||||
type: string
|
||||
default: log
|
||||
enum:
|
||||
- value: verbose
|
||||
description: Verbose
|
||||
- value: debug
|
||||
description: Debug
|
||||
- value: log
|
||||
description: Log
|
||||
- value: warn
|
||||
description: Warn
|
||||
- value: error
|
||||
description: Error
|
||||
- variable: huggingFaceEndpoint
|
||||
label: Hugging Face Endpoint (Optional)
|
||||
description: |
|
||||
The Hugging Face endpoint to use for Machine Learning.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: immichNetwork
|
||||
label: ""
|
||||
group: Network Configuration
|
||||
|
||||
@@ -65,14 +65,14 @@ configmap:
|
||||
server-config:
|
||||
enabled: true
|
||||
data:
|
||||
LOG_LEVEL: log
|
||||
LOG_LEVEL: {{ .Values.immichConfig.logLevel | default "log" }}
|
||||
NODE_ENV: production
|
||||
SERVER_PORT: {{ .Values.immichNetwork.webuiPort | quote }}
|
||||
|
||||
micro-config:
|
||||
enabled: true
|
||||
data:
|
||||
LOG_LEVEL: log
|
||||
LOG_LEVEL: {{ .Values.immichConfig.logLevel | default "log" }}
|
||||
NODE_ENV: production
|
||||
MICROSERVICES_PORT: {{ .Values.immichNetwork.microservicesPort | quote }}
|
||||
REVERSE_GEOCODING_DUMP_DIRECTORY: /microcache
|
||||
@@ -82,6 +82,10 @@ configmap:
|
||||
enabled: true
|
||||
data:
|
||||
NODE_ENV: production
|
||||
LOG_LEVEL: {{ .Values.immichConfig.logLevel | default "log" }}
|
||||
{{- if .Values.immichConfig.huggingFaceEndpoint }}
|
||||
HF_ENDPOINT: {{ .Values.immichConfig.huggingFaceEndpoint }}
|
||||
{{- end }}
|
||||
MACHINE_LEARNING_PORT: {{ .Values.immichNetwork.machinelearningPort | quote }}
|
||||
MACHINE_LEARNING_CACHE_FOLDER: /mlcache
|
||||
TRANSFORMERS_CACHE: /mlcache
|
||||
|
||||
@@ -34,9 +34,11 @@ immichGPUContainers:
|
||||
machinelearning: true
|
||||
|
||||
immichConfig:
|
||||
publicLoginMessage: ''
|
||||
publicLoginMessage: ""
|
||||
enableML: true
|
||||
mlImageType: mlImage
|
||||
logLevel: log
|
||||
huggingFaceEndpoint: ""
|
||||
|
||||
immichNetwork:
|
||||
webuiPort: 30041
|
||||
|
||||
Reference in New Issue
Block a user