2020-05-30 14:29:47 +00:00
|
|
|
module github.com/hashicorp/nomad
|
|
|
|
|
2023-08-14 13:43:27 +00:00
|
|
|
go 1.21
|
2020-05-30 14:29:47 +00:00
|
|
|
|
2022-01-12 16:25:54 +00:00
|
|
|
// Pinned dependencies are noted in github.com/hashicorp/nomad/issues/11826
|
2020-05-30 14:29:47 +00:00
|
|
|
replace (
|
|
|
|
github.com/Microsoft/go-winio => github.com/endocrimes/go-winio v0.4.13-0.20190628114223-fb47a8b41948
|
2020-10-21 14:21:13 +00:00
|
|
|
github.com/hashicorp/hcl => github.com/hashicorp/hcl v1.0.1-0.20201016140508-a07e7d50bbee
|
2020-05-30 14:29:47 +00:00
|
|
|
)
|
|
|
|
|
2023-12-08 13:47:02 +00:00
|
|
|
// Pin dependency with additional logs and defensive code to workaround panic
|
|
|
|
// described in https://github.com/hashicorp/nomad/issues/15861.
|
|
|
|
replace github.com/armon/go-metrics => github.com/armon/go-metrics v0.0.0-20230509193637-d9ca9af9f1f9
|
|
|
|
|
2022-01-12 16:25:54 +00:00
|
|
|
// Nomad is built using the current source of the API module
|
|
|
|
replace github.com/hashicorp/nomad/api => ./api
|
|
|
|
|
2020-05-30 14:29:47 +00:00
|
|
|
require (
|
|
|
|
github.com/LK4D4/joincontext v0.0.0-20171026170139-1724345da6d5
|
2022-10-27 16:05:45 +00:00
|
|
|
github.com/Microsoft/go-winio v0.6.0
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e
|
2023-12-08 13:47:02 +00:00
|
|
|
github.com/armon/go-metrics v0.4.1
|
2023-01-26 00:04:56 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.44.184
|
2022-12-20 17:19:50 +00:00
|
|
|
github.com/container-storage-interface/spec v1.7.0
|
2023-06-26 15:47:20 +00:00
|
|
|
github.com/containerd/go-cni v1.1.9
|
2022-08-08 20:48:29 +00:00
|
|
|
github.com/containernetworking/cni v1.1.2
|
2023-02-13 18:35:50 +00:00
|
|
|
github.com/containernetworking/plugins v1.2.0
|
2022-01-24 14:40:30 +00:00
|
|
|
github.com/coreos/go-iptables v0.6.0
|
2022-04-04 14:25:02 +00:00
|
|
|
github.com/creack/pty v1.1.18
|
2023-10-10 08:37:13 +00:00
|
|
|
github.com/docker/cli v24.0.6+incompatible
|
2023-10-10 07:46:09 +00:00
|
|
|
github.com/docker/distribution v2.8.3+incompatible
|
2023-04-12 19:13:36 +00:00
|
|
|
github.com/docker/docker v23.0.3+incompatible
|
2022-09-26 14:30:17 +00:00
|
|
|
github.com/docker/go-units v0.5.0
|
2023-06-05 15:17:04 +00:00
|
|
|
github.com/dustin/go-humanize v1.0.1
|
2023-05-31 14:19:59 +00:00
|
|
|
github.com/elazarl/go-bindata-assetfs v1.0.1
|
2023-02-16 15:40:21 +00:00
|
|
|
github.com/fsouza/go-dockerclient v1.7.9
|
2023-05-03 18:17:38 +00:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.0.0
|
2023-11-27 09:34:03 +00:00
|
|
|
github.com/golang/protobuf v1.5.3
|
2021-10-27 13:39:16 +00:00
|
|
|
github.com/golang/snappy v0.0.4
|
2022-10-07 13:09:28 +00:00
|
|
|
github.com/google/go-cmp v0.5.9
|
2022-01-12 21:17:16 +00:00
|
|
|
github.com/gorilla/handlers v1.5.1
|
2022-07-12 23:49:31 +00:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
2021-05-20 23:19:39 +00:00
|
|
|
github.com/gosuri/uilive v0.0.4
|
2023-05-23 13:01:26 +00:00
|
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
|
2023-01-13 13:16:20 +00:00
|
|
|
github.com/hashicorp/cap v0.2.0
|
2023-11-09 15:30:55 +00:00
|
|
|
github.com/hashicorp/consul-template v0.35.0
|
|
|
|
github.com/hashicorp/consul/api v1.26.1
|
|
|
|
github.com/hashicorp/consul/sdk v0.15.0
|
2023-06-27 12:58:20 +00:00
|
|
|
github.com/hashicorp/cronexpr v1.1.2
|
2023-10-16 07:47:57 +00:00
|
|
|
github.com/hashicorp/go-bexpr v0.1.13
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/hashicorp/go-checkpoint v0.0.0-20171009173528-1545e56e46de
|
2021-06-17 20:30:00 +00:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
2020-11-13 23:18:36 +00:00
|
|
|
github.com/hashicorp/go-connlimit v0.3.0
|
2020-10-21 14:21:13 +00:00
|
|
|
github.com/hashicorp/go-cty-funcs v0.0.0-20200930094925-2721b1e36840
|
2022-06-28 08:28:32 +00:00
|
|
|
github.com/hashicorp/go-discover v0.0.0-20220621183603-a413e131e836
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/hashicorp/go-envparse v0.0.0-20180119215841-310ca1881b22
|
2023-02-14 15:28:39 +00:00
|
|
|
github.com/hashicorp/go-getter v1.7.0
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/hashicorp/go-hclog v1.5.0
|
2022-12-19 17:56:28 +00:00
|
|
|
github.com/hashicorp/go-immutable-radix/v2 v2.0.0
|
2023-11-27 09:05:19 +00:00
|
|
|
github.com/hashicorp/go-kms-wrapping/v2 v2.0.15
|
2022-10-20 15:34:52 +00:00
|
|
|
github.com/hashicorp/go-memdb v1.3.4
|
2023-05-01 21:18:34 +00:00
|
|
|
github.com/hashicorp/go-msgpack v1.1.5
|
2021-07-27 20:33:18 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2023-06-12 13:22:33 +00:00
|
|
|
github.com/hashicorp/go-plugin v1.4.10
|
2022-02-24 14:34:54 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/listenerutil v0.1.4
|
2022-04-05 18:18:10 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
|
2023-08-17 14:04:46 +00:00
|
|
|
github.com/hashicorp/go-set v0.1.14
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/hashicorp/go-sockaddr v1.0.2
|
|
|
|
github.com/hashicorp/go-syslog v1.0.0
|
2022-09-26 14:55:40 +00:00
|
|
|
github.com/hashicorp/go-uuid v1.0.3
|
2022-09-01 09:55:42 +00:00
|
|
|
github.com/hashicorp/go-version v1.6.0
|
2023-02-08 21:20:33 +00:00
|
|
|
github.com/hashicorp/golang-lru/v2 v2.0.1
|
2022-03-16 23:33:20 +00:00
|
|
|
github.com/hashicorp/hcl v1.0.1-vault-3
|
2022-05-16 23:15:41 +00:00
|
|
|
github.com/hashicorp/hcl/v2 v2.9.2-0.20220525143345-ab3cae0737bc
|
2023-01-10 15:08:08 +00:00
|
|
|
github.com/hashicorp/hil v0.0.0-20210521165536-27a72121fd40
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/hashicorp/logutils v1.0.0
|
2022-10-31 13:44:27 +00:00
|
|
|
github.com/hashicorp/memberlist v0.5.0
|
2023-05-01 21:18:34 +00:00
|
|
|
github.com/hashicorp/net-rpc-msgpackrpc v0.0.0-20151116020338-a14192a58a69
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/hashicorp/nomad/api v0.0.0-20230103221135-ce00d683f9be
|
2023-06-05 14:03:02 +00:00
|
|
|
github.com/hashicorp/raft v1.5.0
|
2022-09-01 18:27:10 +00:00
|
|
|
github.com/hashicorp/raft-autopilot v0.1.6
|
2022-09-26 14:49:46 +00:00
|
|
|
github.com/hashicorp/raft-boltdb/v2 v2.2.2
|
2022-10-31 13:48:34 +00:00
|
|
|
github.com/hashicorp/serf v0.10.1
|
2023-11-09 15:30:55 +00:00
|
|
|
github.com/hashicorp/vault/api v1.10.0
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/hashicorp/yamux v0.1.1
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/hpcloud/tail v1.0.1-0.20170814160653-37f427138745
|
2022-10-27 16:58:00 +00:00
|
|
|
github.com/kr/pretty v0.3.1
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/kr/text v0.2.0
|
2022-10-07 13:09:28 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13
|
|
|
|
github.com/miekg/dns v1.1.50
|
2022-11-29 19:00:46 +00:00
|
|
|
github.com/mitchellh/cli v1.1.5
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/mitchellh/colorstring v0.0.0-20150917214807-8631ce90f286
|
2022-01-25 16:43:36 +00:00
|
|
|
github.com/mitchellh/copystructure v1.2.0
|
2021-07-23 15:27:47 +00:00
|
|
|
github.com/mitchellh/go-glint v0.0.0-20210722152315-6515ceb4a127
|
2023-03-16 17:22:25 +00:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/mitchellh/go-ps v0.0.0-20190716172923-621e5597135b
|
2023-03-20 23:32:32 +00:00
|
|
|
github.com/mitchellh/go-testing-interface v1.14.2-0.20210821155943-2d9075ca8770
|
2022-03-16 23:33:20 +00:00
|
|
|
github.com/mitchellh/hashstructure v1.1.0
|
2022-07-13 18:57:16 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2022-01-25 16:43:36 +00:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2
|
2022-08-15 14:53:54 +00:00
|
|
|
github.com/moby/sys/mount v0.3.3
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/moby/sys/mountinfo v0.6.2
|
2022-06-26 13:38:16 +00:00
|
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
|
2023-08-03 19:37:04 +00:00
|
|
|
github.com/opencontainers/runc v1.1.8
|
2023-06-26 13:03:50 +00:00
|
|
|
github.com/opencontainers/runtime-spec v1.1.0-rc.3
|
2020-08-07 01:54:15 +00:00
|
|
|
github.com/posener/complete v1.2.3
|
2022-12-20 17:21:00 +00:00
|
|
|
github.com/prometheus/client_golang v1.14.0
|
2023-01-19 17:01:28 +00:00
|
|
|
github.com/prometheus/common v0.39.0
|
2023-01-19 16:31:55 +00:00
|
|
|
github.com/rs/cors v1.8.3
|
2022-10-27 16:34:27 +00:00
|
|
|
github.com/ryanuber/columnize v2.1.2+incompatible
|
2020-05-30 14:29:47 +00:00
|
|
|
github.com/ryanuber/go-glob v1.0.0
|
2023-06-02 23:30:59 +00:00
|
|
|
github.com/shirou/gopsutil/v3 v3.23.4
|
2023-02-13 14:26:30 +00:00
|
|
|
github.com/shoenig/go-landlock v0.1.5
|
2023-06-12 11:08:16 +00:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6
|
2023-08-09 14:25:32 +00:00
|
|
|
github.com/shoenig/test v0.6.7
|
2023-06-19 07:21:45 +00:00
|
|
|
github.com/stretchr/testify v1.8.4
|
2021-03-31 14:57:02 +00:00
|
|
|
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
|
2022-11-29 18:45:58 +00:00
|
|
|
github.com/zclconf/go-cty v1.12.1
|
2022-11-07 12:57:23 +00:00
|
|
|
github.com/zclconf/go-cty-yaml v1.0.3
|
2023-06-05 15:19:14 +00:00
|
|
|
go.etcd.io/bbolt v1.3.7
|
2023-03-13 16:23:56 +00:00
|
|
|
go.uber.org/goleak v1.2.1
|
2023-10-12 07:43:51 +00:00
|
|
|
golang.org/x/crypto v0.14.0
|
2023-11-27 09:05:19 +00:00
|
|
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
|
|
|
|
golang.org/x/sync v0.4.0
|
2023-11-09 15:30:55 +00:00
|
|
|
golang.org/x/sys v0.14.0
|
2023-05-03 13:15:17 +00:00
|
|
|
golang.org/x/time v0.3.0
|
2023-11-27 09:34:03 +00:00
|
|
|
google.golang.org/grpc v1.59.0
|
2023-10-09 11:12:11 +00:00
|
|
|
google.golang.org/protobuf v1.31.0
|
2020-05-30 14:29:47 +00:00
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
|
|
|
|
gopkg.in/tomb.v2 v2.0.0-20140626144623-14b3d72120e8
|
2022-08-15 15:12:03 +00:00
|
|
|
oss.indeed.com/go/libtime v1.6.0
|
2021-11-05 19:34:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-11-27 09:34:03 +00:00
|
|
|
cloud.google.com/go v0.110.7 // indirect
|
|
|
|
cloud.google.com/go/compute v1.23.0 // indirect
|
2023-02-13 18:34:55 +00:00
|
|
|
cloud.google.com/go/compute/metadata v0.2.3 // indirect
|
2023-11-27 09:34:03 +00:00
|
|
|
cloud.google.com/go/iam v1.1.1 // indirect
|
|
|
|
cloud.google.com/go/storage v1.30.1 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/Azure/azure-sdk-for-go v56.3.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/Azure/go-autorest/autorest v0.11.20 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.15 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.5.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/azure/cli v0.4.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
2023-11-09 15:30:55 +00:00
|
|
|
github.com/BurntSushi/toml v1.3.2 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/DataDog/datadog-go v3.2.0+incompatible // indirect
|
2022-03-16 23:33:20 +00:00
|
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/Masterminds/semver/v3 v3.2.0 // indirect
|
|
|
|
github.com/Masterminds/sprig/v3 v3.2.3
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/VividCortex/ewma v1.1.1 // indirect
|
|
|
|
github.com/agext/levenshtein v1.2.1 // indirect
|
|
|
|
github.com/apparentlymart/go-cidr v1.0.1 // indirect
|
|
|
|
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
|
|
|
|
github.com/armon/go-radix v1.0.0 // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
|
|
|
|
github.com/bgentry/speakeasy v0.1.0 // indirect
|
|
|
|
github.com/bmatcuk/doublestar v1.1.5 // indirect
|
2022-02-23 20:15:12 +00:00
|
|
|
github.com/boltdb/bolt v1.3.1 // indirect
|
2023-01-30 15:06:08 +00:00
|
|
|
github.com/brianvoe/gofakeit/v6 v6.20.1
|
2022-03-16 23:33:20 +00:00
|
|
|
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
|
2023-02-13 18:34:55 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
client: enable support for cgroups v2
This PR introduces support for using Nomad on systems with cgroups v2 [1]
enabled as the cgroups controller mounted on /sys/fs/cgroups. Newer Linux
distros like Ubuntu 21.10 are shipping with cgroups v2 only, causing problems
for Nomad users.
Nomad mostly "just works" with cgroups v2 due to the indirection via libcontainer,
but not so for managing cpuset cgroups. Before, Nomad has been making use of
a feature in v1 where a PID could be a member of more than one cgroup. In v2
this is no longer possible, and so the logic around computing cpuset values
must be modified. When Nomad detects v2, it manages cpuset values in-process,
rather than making use of cgroup heirarchy inheritence via shared/reserved
parents.
Nomad will only activate the v2 logic when it detects cgroups2 is mounted at
/sys/fs/cgroups. This means on systems running in hybrid mode with cgroups2
mounted at /sys/fs/cgroups/unified (as is typical) Nomad will continue to
use the v1 logic, and should operate as before. Systems that do not support
cgroups v2 are also not affected.
When v2 is activated, Nomad will create a parent called nomad.slice (unless
otherwise configured in Client conifg), and create cgroups for tasks using
naming convention <allocID>-<task>.scope. These follow the naming convention
set by systemd and also used by Docker when cgroups v2 is detected.
Client nodes now export a new fingerprint attribute, unique.cgroups.version
which will be set to 'v1' or 'v2' to indicate the cgroups regime in use by
Nomad.
The new cpuset management strategy fixes #11705, where docker tasks that
spawned processes on startup would "leak". In cgroups v2, the PIDs are
started in the cgroup they will always live in, and thus the cause of
the leak is eliminated.
[1] https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html
Closes #11289
Fixes #11705 #11773 #11933
2022-02-28 22:24:01 +00:00
|
|
|
github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/cheggaaa/pb/v3 v3.0.5 // indirect
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/cilium/ebpf v0.9.1 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible // indirect
|
|
|
|
github.com/circonus-labs/circonusllhist v0.1.3 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/containerd/console v1.0.3 // indirect
|
2023-02-16 15:40:21 +00:00
|
|
|
github.com/containerd/containerd v1.6.18 // indirect
|
2023-01-13 13:16:20 +00:00
|
|
|
github.com/coreos/go-oidc/v3 v3.1.0 // indirect
|
2023-02-13 18:35:50 +00:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
2023-10-02 07:49:05 +00:00
|
|
|
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
|
2023-08-03 19:01:34 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba // indirect
|
|
|
|
github.com/digitalocean/godo v1.10.0 // indirect
|
|
|
|
github.com/dimchansky/utfbom v1.1.0 // indirect
|
2023-10-10 07:46:09 +00:00
|
|
|
github.com/distribution/reference v0.5.0 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/docker/docker-credential-helpers v0.6.4 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
|
|
github.com/docker/go-metrics v0.0.1 // indirect
|
|
|
|
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
|
2023-06-12 09:44:18 +00:00
|
|
|
github.com/fatih/color v1.15.0
|
2023-05-22 15:45:31 +00:00
|
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
2023-11-09 15:30:55 +00:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
2022-01-27 18:30:35 +00:00
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
client: enable support for cgroups v2
This PR introduces support for using Nomad on systems with cgroups v2 [1]
enabled as the cgroups controller mounted on /sys/fs/cgroups. Newer Linux
distros like Ubuntu 21.10 are shipping with cgroups v2 only, causing problems
for Nomad users.
Nomad mostly "just works" with cgroups v2 due to the indirection via libcontainer,
but not so for managing cpuset cgroups. Before, Nomad has been making use of
a feature in v1 where a PID could be a member of more than one cgroup. In v2
this is no longer possible, and so the logic around computing cpuset values
must be modified. When Nomad detects v2, it manages cpuset values in-process,
rather than making use of cgroup heirarchy inheritence via shared/reserved
parents.
Nomad will only activate the v2 logic when it detects cgroups2 is mounted at
/sys/fs/cgroups. This means on systems running in hybrid mode with cgroups2
mounted at /sys/fs/cgroups/unified (as is typical) Nomad will continue to
use the v1 logic, and should operate as before. Systems that do not support
cgroups v2 are also not affected.
When v2 is activated, Nomad will create a parent called nomad.slice (unless
otherwise configured in Client conifg), and create cgroups for tasks using
naming convention <allocID>-<task>.scope. These follow the naming convention
set by systemd and also used by Docker when cgroups v2 is detected.
Client nodes now export a new fingerprint attribute, unique.cgroups.version
which will be set to 'v1' or 'v2' to indicate the cgroups regime in use by
Nomad.
The new cpuset management strategy fixes #11705, where docker tasks that
spawned processes on startup would "leak". In cgroups v2, the PIDs are
started in the cgroup they will always live in, and thus the cause of
the leak is eliminated.
[1] https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html
Closes #11289
Fixes #11705 #11773 #11933
2022-02-28 22:24:01 +00:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2022-01-31 20:49:05 +00:00
|
|
|
github.com/gojuno/minimock/v3 v3.0.6 // indirect
|
2023-05-03 18:17:38 +00:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
|
2021-11-17 16:14:44 +00:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2023-08-03 19:01:34 +00:00
|
|
|
github.com/google/btree v1.0.1 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect
|
2023-11-27 09:34:03 +00:00
|
|
|
github.com/google/s2a-go v0.1.4 // indirect
|
|
|
|
github.com/google/uuid v1.3.1 // indirect
|
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
|
|
|
|
github.com/googleapis/gax-go/v2 v2.11.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/gookit/color v1.3.1 // indirect
|
|
|
|
github.com/gophercloud/gophercloud v0.1.0 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2022-12-19 17:56:28 +00:00
|
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
|
|
github.com/hashicorp/go-safetemp v1.0.0 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
|
2022-02-24 14:34:54 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/reloadutil v0.1.1 // indirect
|
2022-11-23 15:07:36 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/tlsutil v0.1.2 // indirect
|
2023-02-08 21:20:33 +00:00
|
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
2022-02-24 22:34:56 +00:00
|
|
|
github.com/hashicorp/mdns v1.0.4 // indirect
|
2023-11-09 15:30:55 +00:00
|
|
|
github.com/hashicorp/vault/api/auth/kubernetes v0.5.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/hashicorp/vic v1.5.1-0.20190403131502-bbfe86ec9443 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/huandu/xstrings v1.4.0 // indirect
|
2022-08-03 20:56:30 +00:00
|
|
|
github.com/imdario/mergo v0.3.13 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/ishidawataru/sctp v0.0.0-20191218070446-00ab2ac2db07 // indirect
|
2022-02-24 14:34:54 +00:00
|
|
|
github.com/jefferai/isbadcipher v0.0.0-20190226160619-51d2077c035f // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
|
|
github.com/joyent/triton-go v0.0.0-20190112182421-51ffac552869 // indirect
|
2023-02-14 15:28:39 +00:00
|
|
|
github.com/klauspost/compress v1.15.11 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/linode/linodego v0.7.1 // indirect
|
2022-01-27 18:30:35 +00:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
2022-08-15 17:43:29 +00:00
|
|
|
github.com/mattn/go-runewidth v0.0.12 // indirect
|
2023-01-13 15:22:41 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
2023-01-10 15:08:08 +00:00
|
|
|
github.com/mitchellh/pointerstructure v1.2.1
|
2023-04-12 19:13:36 +00:00
|
|
|
github.com/moby/patternmatcher v0.5.0 // indirect
|
|
|
|
github.com/moby/sys/sequential v0.5.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
|
|
github.com/mrunalp/fileutils v0.5.0 // indirect
|
2022-08-15 17:43:29 +00:00
|
|
|
github.com/muesli/reflow v0.3.0
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/nicolai86/scaleway-sdk v1.10.2-0.20180628010248-798f60e20bb2 // indirect
|
2022-03-16 23:33:20 +00:00
|
|
|
github.com/oklog/run v1.1.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2022-08-15 14:53:54 +00:00
|
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/opencontainers/selinux v1.10.1 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/packethost/packngo v0.1.1-0.20180711074735-b9cb5096f54c // indirect
|
2022-04-02 00:24:02 +00:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-08-03 19:01:34 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2022-01-27 18:30:35 +00:00
|
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
2022-12-20 17:21:00 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
2022-10-07 13:09:28 +00:00
|
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/renier/xmlrpc v0.0.0-20170708154548-ce4a1a486c03 // indirect
|
2022-09-22 14:36:02 +00:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
2023-08-03 19:01:34 +00:00
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2023-02-07 15:19:38 +00:00
|
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/seccomp/libseccomp-golang v0.10.0 // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/softlayer/softlayer-go v0.0.0-20180806151055-260589d94c7d // indirect
|
2023-05-03 13:15:17 +00:00
|
|
|
github.com/spf13/cast v1.5.0 // indirect
|
2022-10-26 15:51:45 +00:00
|
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/tencentcloud/tencentcloud-sdk-go v1.0.162 // indirect
|
|
|
|
github.com/tj/go-spin v1.1.0 // indirect
|
2022-12-20 17:22:29 +00:00
|
|
|
github.com/tklauser/go-sysconf v0.3.11 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.6.0 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect
|
2021-11-17 16:14:44 +00:00
|
|
|
github.com/ulikunitz/xz v0.5.10 // indirect
|
2022-08-04 13:56:40 +00:00
|
|
|
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
|
|
|
|
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
|
|
|
|
github.com/vmihailenco/tagparser v0.1.1 // indirect
|
|
|
|
github.com/vmware/govmomi v0.18.0 // indirect
|
2022-01-27 18:30:35 +00:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.2 // indirect
|
2023-02-13 18:34:55 +00:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2023-11-27 09:05:19 +00:00
|
|
|
golang.org/x/mod v0.13.0 // indirect
|
2023-10-12 07:43:51 +00:00
|
|
|
golang.org/x/net v0.17.0 // indirect
|
2023-11-27 09:34:03 +00:00
|
|
|
golang.org/x/oauth2 v0.11.0 // indirect
|
2023-10-12 07:43:51 +00:00
|
|
|
golang.org/x/term v0.13.0 // indirect
|
2023-11-09 15:30:55 +00:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2023-11-27 09:05:19 +00:00
|
|
|
golang.org/x/tools v0.14.0 // indirect
|
2023-01-19 16:30:29 +00:00
|
|
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
2023-11-27 09:34:03 +00:00
|
|
|
google.golang.org/api v0.126.0 // indirect
|
2021-11-17 16:14:44 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-11-27 09:34:03 +00:00
|
|
|
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
|
2021-11-05 19:34:24 +00:00
|
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
|
|
gopkg.in/resty.v1 v1.12.0 // indirect
|
2022-03-16 23:33:20 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
2022-01-14 15:46:06 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-06-24 15:33:57 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-12-07 22:02:25 +00:00
|
|
|
kernel.org/pub/linux/libs/security/libcap/psx v1.2.66 // indirect
|
2020-05-30 14:29:47 +00:00
|
|
|
)
|