File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 69
69
seccompProfile :
70
70
type : " RuntimeDefault"
71
71
{{- end }}
72
+ {{- with .Values.flower.nodeSelector }}
73
+ nodeSelector :
74
+ {{- tpl (toYaml .) $ | nindent 8 -}}
75
+ {{- end }}
76
+ {{- with .Values.flower.tolerations }}
77
+ tolerations :
78
+ {{- tpl (toYaml .) $ | nindent 8 -}}
79
+ {{- end }}
72
80
volumes :
73
81
- name : celery-config-volume
74
82
configMap :
Original file line number Diff line number Diff line change @@ -426,6 +426,14 @@ flower:
426
426
# name: foo
427
427
# - configMapRef:
428
428
# name: bar
429
+ # # @param flower.nodeSelector Node labels for flower pods assignment
430
+ # # Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
431
+ # #
432
+ nodeSelector : {}
433
+ # # @param flower.tolerations Tolerations for flower pods assignment
434
+ # # Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
435
+ # #
436
+ tolerations : []
429
437
430
438
postgresql :
431
439
enabled : true
You can’t perform that action at this time.
0 commit comments