feature: milvus pvc支持本地目录 (#105)

feature: milvus pvc支持本地目录
This commit is contained in:
hhhhsc701
2025-11-25 16:54:24 +08:00
committed by GitHub
parent fb399b74cf
commit af2a01e52d
16 changed files with 759 additions and 50 deletions

View File

@@ -320,3 +320,16 @@ rules:
- watch
{{- end -}}
{{- end -}}
{{/*
Name of image
*/}}
{{- define "kuberay.image" -}}
{{- $name := .Values.image.repository }}
{{- $tag := .Values.image.tag }}
{{- if .Values.global.image.repository }}
{{- .Values.global.image.repository | trimSuffix "/" }}/{{ $name }}:{{ $tag }}
{{- else }}
{{- $name }}:{{ $tag }}
{{- end }}
{{- end }}