Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
D3Hunter committed Nov 7, 2023
1 parent 662528d commit 0bb36c7
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 0bb36c7

Please sign in to comment.