Add chart flowise/6.0.0

This commit is contained in:
wbsong111
2025-08-12 12:29:35 +09:00
parent 5f3614c3ce
commit 4f08cb4da0
183 changed files with 20405 additions and 1432 deletions
+27
View File
@@ -0,0 +1,27 @@
{{- if .Values.worker.enabled }}
{{- if .Values.worker.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "flowise.worker.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels:
{{- include "flowise.worker.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.worker.pdb.minAvailable }}
minAvailable: {{ .Values.worker.pdb.minAvailable }}
{{- end }}
{{- if .Values.worker.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.worker.pdb.maxUnavailable }}
{{- end }}
selector:
matchLabels:
{{- include "flowise.worker.selectorLabels" . | nindent 6 }}
{{- end }}
{{- end }}