support-bundle-kit icon indicating copy to clipboard operation
support-bundle-kit copied to clipboard

[Feature] Support custom taints toleration in agent daemon set

Open bk201 opened this issue 2 years ago • 0 comments

The current taints toleration are only for Harvester use. It would be nice to support configuring these taints.

					Tolerations: []corev1.Toleration{
						{
							Key:      types.KubevirtDrainKey,
							Operator: corev1.TolerationOpExists,
						},
						{
							Key:      corev1.TaintNodeUnschedulable,
							Operator: corev1.TolerationOpExists,
							Effect:   corev1.TaintEffectNoSchedule,
						},
					},

bk201 avatar Nov 25 '22 09:11 bk201