mirror of https://github.com/kubernetes/kops.git
Merge pull request #3231 from chrislovecnm/rhel-socat
Automatic merge from submit-queue adding socat with rhel family Socat is not installed by default with RHEL, and k8s needs it.
This commit is contained in:
commit
a08b19a02e
|
@ -39,6 +39,7 @@ func (b *PackagesBuilder) Build(c *fi.ModelBuilderContext) error {
|
|||
} else if b.Distribution.IsRHELFamily() {
|
||||
c.AddTask(&nodetasks.Package{Name: "ebtables"})
|
||||
c.AddTask(&nodetasks.Package{Name: "ethtool"})
|
||||
c.AddTask(&nodetasks.Package{Name: "socat"})
|
||||
} else {
|
||||
// Hopefully it's already installed
|
||||
glog.Infof("ebtables package not known for distro %q", b.Distribution)
|
||||
|
|
Loading…
Reference in New Issue