Skip to content

Commit

Permalink
util/cgroup: fix InContainer for cgroup v2 (#48344)
Browse files Browse the repository at this point in the history
close #48342
  • Loading branch information
D3Hunter authored Nov 7, 2023
1 parent 662528d commit 6020ede
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkg/util/cgroup/cgroup_cpu_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ func CPUQuotaToGOMAXPROCS(minValue int) (int, CPUQuotaStatus, error) {

// InContainer returns true if the process is running in a container.
func InContainer() bool {
v, err := os.ReadFile(procPathCGroup)
// for cgroup V1, check /proc/self/cgroup, for V2, check /proc/self/mountinfo
return inContainer(procPathCGroup) || inContainer(procPathMountInfo)
}

func inContainer(path string) bool {
v, err := os.ReadFile(path)
if err != nil {
return false
}
Expand Down

0 comments on commit 6020ede

Please sign in to comment.