From 78bdbdb24029d127d906d6d896f75cac2b202d0a Mon Sep 17 00:00:00 2001 From: Federico Bertola Date: Fri, 26 Jul 2019 22:48:29 +0200 Subject: [PATCH] Added the ability to tolerate every taints. Signed-off-by: Federico Bertola --- 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, },