From 745297c1c8051f742a2b9478feb1fc0f069371d6 Mon Sep 17 00:00:00 2001 From: Federico Bertola Date: Fri, 26 Jul 2019 22:28:26 +0200 Subject: [PATCH] Added the ability to tolerate every taints. --- cmd/helm/installer/install.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/helm/installer/install.go b/cmd/helm/installer/install.go index 42c7132db..4dd9cb95e 100644 --- a/cmd/helm/installer/install.go +++ b/cmd/helm/installer/install.go @@ -256,6 +256,9 @@ func generateDeployment(opts *Options) (*v1beta1.Deployment, error) { }, }, }, + Tolerations: []v1.Toleration{ + {Operator: v1.TolerationOpExists} + }, HostNetwork: opts.EnableHostNetwork, NodeSelector: nodeSelectors, },