基于helm-dify 0.23.0 版本初始化

This commit is contained in:
2025-03-21 10:00:02 +08:00
parent d773ead144
commit 67b42e3e1c
196 changed files with 26165 additions and 0 deletions
@@ -0,0 +1,23 @@
{{ if not .Values.custom_config_map.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: weaviate-config
labels:
app.kubernetes.io/name: weaviate
app.kubernetes.io/managed-by: helm
data:
conf.yaml: |-
---
authentication:
{{ toYaml .Values.authentication | nindent 6 | trim }}
authorization:
{{ toYaml .Values.authorization | nindent 6 | trim }}
{{ if index .Values "modules" "text2vec-contextionary" "enabled" }}
contextionary:
url: {{ index .Values "modules" "text2vec-contextionary" "fullnameOverride" }}.{{ .Release.Namespace }}.svc.cluster.local:9999
{{ end }}
query_defaults:
{{ toYaml .Values.query_defaults | nindent 6 | trim }}
debug: {{ .Values.debug }}
{{ end }}