mirror of https://github.com/kubernetes/kops.git
Merge pull request #13617 from seh/accommodate-resolv-conf-for-flatcar
Avoid "/etc/resolv.conf" file loopback for Flatcar Container Linux distribution
This commit is contained in:
commit
5352ab6a48
|
@ -99,6 +99,9 @@ func (d *Distribution) HasLoopbackEtcResolvConf() bool {
|
|||
// Ubuntu > 16.04 has it
|
||||
return d.version > 16.04
|
||||
}
|
||||
if d.project == "flatcar" {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue