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:
Kubernetes Prow Robot 2022-05-08 04:41:17 -07:00 committed by GitHub
commit 5352ab6a48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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
}