-
Notifications
You must be signed in to change notification settings - Fork 423
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
3,030 changed files
with
351,817 additions
and
176,495 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/_output | ||
|
||
# For testing | ||
test_artifacts | ||
test-artifacts | ||
|
||
# == kubernetes .gitignore == | ||
|
||
|
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,23 +1,24 @@ | ||
module sigs.k8s.io/aws-iam-authenticator | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.37.1 | ||
github.com/aws/aws-sdk-go v1.38.49 | ||
github.com/gofrs/flock v0.7.0 | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/prometheus/client_golang v1.1.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/viper v1.4.0 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/viper v1.7.0 | ||
go.hein.dev/go-version v0.1.0 | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 | ||
gopkg.in/yaml.v2 v2.2.8 | ||
k8s.io/api v0.16.8 | ||
k8s.io/apimachinery v0.16.8 | ||
k8s.io/client-go v0.16.8 | ||
k8s.io/code-generator v0.16.8 | ||
k8s.io/component-base v0.16.8 | ||
k8s.io/sample-controller v0.16.8 | ||
sigs.k8s.io/yaml v1.1.0 | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.22.1 | ||
k8s.io/apiextensions-apiserver v0.22.1 // indirect | ||
k8s.io/apimachinery v0.22.1 | ||
k8s.io/client-go v0.22.1 | ||
k8s.io/code-generator v0.22.1 | ||
k8s.io/component-base v0.22.1 | ||
k8s.io/sample-controller v0.22.1 | ||
sigs.k8s.io/yaml v1.2.0 | ||
) |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
module sigs.k8s.io/aws-iam-authenticator/tests/integration | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.38.49 | ||
github.com/sirupsen/logrus v1.8.1 | ||
k8s.io/api v0.22.1 | ||
k8s.io/apimachinery v0.22.1 | ||
k8s.io/client-go v0.22.1 | ||
k8s.io/kubernetes v1.22.1 | ||
sigs.k8s.io/aws-iam-authenticator v0.0.0-00010101000000-000000000000 | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.22.1 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.22.1 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.22.1 | ||
k8s.io/apiserver => k8s.io/apiserver v0.22.1 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.22.1 | ||
k8s.io/client-go => k8s.io/client-go v0.22.1 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.22.1 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.22.1 | ||
k8s.io/code-generator => k8s.io/code-generator v0.22.1 | ||
k8s.io/component-base => k8s.io/component-base v0.22.1 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.22.1 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.22.1 | ||
k8s.io/cri-api => k8s.io/cri-api v0.22.1 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.22.1 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.22.1 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.22.1 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.22.1 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.22.1 | ||
k8s.io/kubectl => k8s.io/kubectl v0.22.1 | ||
k8s.io/kubelet => k8s.io/kubelet v0.22.1 | ||
k8s.io/kubernetes => ../../test-artifacts/k8s.io/kubernetes | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.22.1 | ||
k8s.io/metrics => k8s.io/metrics v0.22.1 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.22.1 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.22.1 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.22.1 | ||
k8s.io/sample-controller => k8s.io/sample-controller v0.22.1 | ||
sigs.k8s.io/aws-iam-authenticator => ../.. | ||
) |
Oops, something went wrong.