mirror of
https://github.com/status-im/consul.git
synced 2025-01-25 05:00:32 +00:00
b4151780d6
1. Upgraded agent can inherit the persisted token and join the cluster 2. Agent token prior to upgrade is still valid after upgrade 3. Enable ACL in the agent configuration
85 lines
3.7 KiB
Modula-2
85 lines
3.7 KiB
Modula-2
module github.com/hashicorp/consul/test/integration/consul-container
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/avast/retry-go v3.0.0+incompatible
|
|
github.com/docker/docker v20.10.22+incompatible
|
|
github.com/docker/go-connections v0.4.0
|
|
github.com/hashicorp/consul/api v1.18.0
|
|
github.com/hashicorp/consul/sdk v0.13.0
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/hashicorp/go-uuid v1.0.2
|
|
github.com/hashicorp/go-version v1.2.1
|
|
github.com/hashicorp/serf v0.10.1
|
|
github.com/itchyny/gojq v0.12.9
|
|
github.com/mitchellh/copystructure v1.2.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/stretchr/testify v1.8.1
|
|
github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569
|
|
github.com/testcontainers/testcontainers-go v0.15.0
|
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
|
|
gotest.tools v2.2.0+incompatible
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
|
github.com/Microsoft/hcsshim v0.9.4 // indirect
|
|
github.com/armon/go-metrics v0.3.10 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
github.com/containerd/cgroups v1.0.4 // indirect
|
|
github.com/containerd/containerd v1.6.8 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/docker/distribution v2.8.1+incompatible // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/fatih/color v1.13.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/btree v1.0.0 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-hclog v1.2.1 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/go-msgpack v1.1.5 // indirect
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/hashicorp/memberlist v0.5.0 // indirect
|
|
github.com/itchyny/timefmt-go v0.1.4 // indirect
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/miekg/dns v1.1.41 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/moby/sys/mount v0.3.3 // indirect
|
|
github.com/moby/sys/mountinfo v0.6.2 // indirect
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
|
|
github.com/opencontainers/runc v1.1.4 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/net v0.4.0 // indirect
|
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
|
|
golang.org/x/sys v0.3.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20220921223823-23cae91e6737 // indirect
|
|
google.golang.org/grpc v1.49.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace github.com/hashicorp/consul/api => ../../../api
|
|
|
|
replace github.com/hashicorp/consul/sdk => ../../../sdk
|
|
|
|
replace github.com/hashicorp/consul => ../../..
|