forked from kpettijohn/cwlogstream_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update depedencies and use NewSession to generate aws sessions
Due to the way the AWS's pod identity webhook provides authentication tokens to pods, we need to upgrade `aws-sdk-go` as per https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-minimum-sdk.html and use replace the deprecated New func with NewSession to properly load the identity file as detailed in this issue: kubernetes/autoscaler#2428
- Loading branch information
1 parent
bb1573e
commit 2bc03ea
Showing
4 changed files
with
379 additions
and
11 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,12 +1,13 @@ | ||
module github.com/kpettijohn/cwlogstream_exporter | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.19.36 | ||
github.com/prometheus/client_golang v0.9.3 | ||
github.com/prometheus/common v0.4.1 | ||
github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1 // indirect | ||
github.com/sirupsen/logrus v1.2.0 | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect | ||
github.com/aws/aws-sdk-go v1.34.12 | ||
github.com/prometheus/client_golang v1.7.1 | ||
github.com/prometheus/common v0.13.0 | ||
github.com/prometheus/tsdb v0.7.1 // indirect | ||
github.com/sirupsen/logrus v1.6.0 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
golang.org/x/sys v0.0.0-20200828161417-c663848e9a16 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
Oops, something went wrong.