-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
254 additions
and
2,165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !ent | ||
// +build !ent | ||
|
||
package agent | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !ent | ||
// +build !ent | ||
|
||
package config | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !ent | ||
// +build !ent | ||
|
||
package config | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,103 @@ | ||
module github.com/hashicorp/nomad-autoscaler | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v44.0.0+incompatible | ||
github.com/Azure/go-autorest/autorest v0.11.0 | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.5.0 | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect | ||
github.com/DataDog/datadog-api-client-go v1.0.0-beta.7 | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/armon/go-metrics v0.3.7 | ||
github.com/aws/aws-sdk-go-v2 v0.23.0 | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/golang/protobuf v1.4.3 | ||
github.com/google/go-cmp v0.5.4 | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/hashicorp/consul/api v1.8.0 | ||
github.com/hashicorp/cronexpr v1.1.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-hclog v0.16.0 | ||
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect | ||
github.com/hashicorp/go-msgpack v1.1.5 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/hashicorp/go-plugin v1.0.1 | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/hcl/v2 v2.10.0 | ||
github.com/hashicorp/nomad/api v0.0.0-20210503143957-4ccada7924cf | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/mitchellh/cli v1.1.2 | ||
github.com/mitchellh/copystructure v1.1.2 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/prometheus/client_golang v1.9.0 | ||
github.com/prometheus/common v0.15.0 | ||
github.com/stretchr/testify v1.6.1 | ||
google.golang.org/api v0.36.0 | ||
google.golang.org/grpc v1.35.0 | ||
google.golang.org/protobuf v1.25.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.72.0 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.0 // indirect | ||
github.com/Azure/go-autorest/autorest/azure/cli v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.0 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/DataDog/datadog-go v3.6.0+incompatible // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/sprig v2.22.0+incompatible // indirect | ||
github.com/agext/levenshtein v1.2.3 // 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/speakeasy v0.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible // indirect | ||
github.com/circonus-labs/circonusllhist v0.1.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/dimchansky/utfbom v1.1.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.0.5 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/hashicorp/cronexpr v1.1.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.5.3 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/serf v0.9.5 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/json-iterator/go v1.1.10 // indirect | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/oklog/run v1.0.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/posener/complete v1.2.3 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/procfs v0.2.0 // indirect | ||
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect | ||
github.com/zclconf/go-cty v1.8.2 // indirect | ||
go.opencensus.io v0.22.5 // indirect | ||
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect | ||
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/api v0.36.0 | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210119180700-e258113e47cc // indirect | ||
google.golang.org/grpc v1.35.0 | ||
google.golang.org/protobuf v1.25.0 | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !ent | ||
// +build !ent | ||
|
||
package manager | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !windows | ||
// +build !windows | ||
|
||
package manager | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build windows | ||
// +build windows | ||
|
||
package manager | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,33 @@ | ||
module github.com/hashicorp/nomad-autoscaler/plugins/test/noop-apm | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/hashicorp/go-hclog v0.16.0 | ||
github.com/hashicorp/nomad-autoscaler v0.3.1 | ||
github.com/stretchr/testify v1.6.1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-plugin v1.0.1 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect | ||
github.com/oklog/run v1.0.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20210119180700-e258113e47cc // indirect | ||
google.golang.org/grpc v1.35.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) | ||
|
||
replace github.com/hashicorp/nomad-autoscaler => ../../../ |
Oops, something went wrong.