Files
nomad/client/lib/cgroupslib/mode.go
2023-08-10 17:27:15 -05:00

15 lines
264 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package cgroupslib
// Mode indicates whether the Client node is configured with cgroups v1 or v2,
// or is not configured with cgroups enabled.
type Mode byte
const (
OFF = iota
CG1
CG2
)