Add flowise chart 3.10.2

This commit is contained in:
wbsong111
2025-01-10 14:36:02 +09:00
parent eb48889e9e
commit 96f41551cc
163 changed files with 18089 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
apiVersion: v1
kind: Pod
metadata:
name: {{ include "flowise.tests.fullname" . }}
labels:
{{- include "flowise.tests.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: test
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.tests.image ) "global" .Values.global ) | nindent 2 }}
containers:
- name: tests
image: {{ include "common.images.image" ( dict "imageRoot" .Values.tests.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.tests.image.pullPolicy }}
volumeMounts:
- name: tests
mountPath: /tests
readOnly: true
workingDir: /tests
restartPolicy: Never
volumes:
- name: tests
configMap:
name: {{ include "flowise.tests.fullname" . }}