6e59596285
- Indicate the success or failure of the cluster signing key strategy - Also introduce the concept of "capabilities" of an integration test cluster to allow the integration tests to be run against clusters that do or don't allow the borrowing of the cluster signing key - Tests that are not expected to pass on clusters that lack the borrowing of the signing key capability are now ignored by calling the new library.SkipUnlessClusterHasCapability test helper - Rename library.Getenv to library.GetEnv - Add copyrights where they were missing
25 lines
908 B
Modula-2
25 lines
908 B
Modula-2
module github.com/suzerain-io/pinniped/test
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/suzerain-io/pinniped v0.0.0-20200819182107-1b9a70d089f4
|
|
github.com/suzerain-io/pinniped/kubernetes/1.19/api v0.0.0-00010101000000-000000000000
|
|
github.com/suzerain-io/pinniped/kubernetes/1.19/client-go v0.0.0-00010101000000-000000000000
|
|
github.com/suzerain-io/pinniped/pkg/client v0.0.0-00010101000000-000000000000
|
|
k8s.io/api v0.19.0-rc.0
|
|
k8s.io/apimachinery v0.19.0-rc.0
|
|
k8s.io/client-go v0.19.0-rc.0
|
|
k8s.io/kube-aggregator v0.19.0-rc.0
|
|
)
|
|
|
|
replace (
|
|
github.com/suzerain-io/pinniped => ../
|
|
github.com/suzerain-io/pinniped/kubernetes/1.19/api => ../kubernetes/1.19/api
|
|
github.com/suzerain-io/pinniped/kubernetes/1.19/client-go => ../kubernetes/1.19/client-go
|
|
github.com/suzerain-io/pinniped/pkg/client => ../pkg/client
|
|
)
|