Commit c36c2539 authored by Taylor Thomas's avatar Taylor Thomas Committed by GitHub

Merge pull request #2544 from thomastaylor312/fix/tiller_linux_host

fix(helm): Ensures tiller pod lands on a linux node
parents d2a4c40f 8a0e051c
...@@ -166,6 +166,9 @@ func generateDeployment(opts *Options) *extensions.Deployment { ...@@ -166,6 +166,9 @@ func generateDeployment(opts *Options) *extensions.Deployment {
}, },
}, },
}, },
NodeSelector: map[string]string{
"beta.kubernetes.io/os": "linux",
},
SecurityContext: &api.PodSecurityContext{ SecurityContext: &api.PodSecurityContext{
HostNetwork: opts.EnableHostNetwork, HostNetwork: opts.EnableHostNetwork,
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment