-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies and add a system test
Signed-off-by: Rajat Jindal <rajatjindal83@gmail.com>
- Loading branch information
1 parent
2377e82
commit 74344e2
Showing
18 changed files
with
875 additions
and
241 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test Pull Request | ||
on: [pull_request] | ||
jobs: | ||
TestPR: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
cache: true | ||
|
||
- name: Run unit tests | ||
run: | | ||
go test ./... -cover | ||
# for certutil | ||
# https://packages.ubuntu.com/xenial/libnss3-tools | ||
- run: sudo apt update | ||
- run: sudo apt install -y libnss3-tools | ||
- run: mkdir -p ~/.pki/nssdb | ||
|
||
- run: echo '127.0.0.1 dex-server' | sudo tee -a /etc/hosts | ||
|
||
- run: make -C system_test -j3 | ||
|
||
- run: make -C system_test logs | ||
if: always() |
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,62 +1,71 @@ | ||
module github.com/rajatjindal/kubectl-whoami | ||
|
||
go 1.17 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/spf13/cobra v0.0.5 | ||
k8s.io/api v0.17.0 | ||
k8s.io/apimachinery v0.17.0 | ||
k8s.io/cli-runtime v0.17.0 | ||
k8s.io/client-go v0.17.0 | ||
github.com/chromedp/chromedp v0.9.1 | ||
github.com/spf13/cobra v1.6.1 | ||
k8s.io/api v0.26.3 | ||
k8s.io/apimachinery v0.26.3 | ||
k8s.io/cli-runtime v0.26.3 | ||
k8s.io/client-go v0.26.3 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.38.0 // indirect | ||
github.com/Azure/go-autorest/autorest v0.9.0 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.5.0 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.1.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.1.0 // indirect | ||
github.com/Azure/go-autorest/tracing v0.5.0 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/chromedp/cdproto v0.0.0-20230220211738-2b1ec77315c9 // indirect | ||
github.com/chromedp/sysutil v1.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/emicklei/go-restful v2.9.5+incompatible // indirect | ||
github.com/evanphx/json-patch v4.2.0+incompatible // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.3 // indirect | ||
github.com/go-openapi/jsonreference v0.19.3 // indirect | ||
github.com/go-openapi/spec v0.19.3 // indirect | ||
github.com/go-openapi/swag v0.19.5 // indirect | ||
github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d // indirect | ||
github.com/golang/protobuf v1.3.2 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/google/gofuzz v1.0.0 // indirect | ||
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d // indirect | ||
github.com/gophercloud/gophercloud v0.1.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.9.0 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/gobwas/ws v1.1.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/gnostic v0.5.7-v3refs // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/imdario/mergo v0.3.5 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.8 // indirect | ||
github.com/imdario/mergo v0.3.6 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586 // indirect | ||
golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 // indirect | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect | ||
golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect | ||
google.golang.org/appengine v1.5.0 // indirect | ||
github.com/xlab/treeprint v1.1.0 // indirect | ||
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/term v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
k8s.io/klog v1.0.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a // indirect | ||
k8s.io/utils v0.0.0-20191114184206-e782cd3c129f // indirect | ||
sigs.k8s.io/kustomize v2.0.3+incompatible // indirect | ||
sigs.k8s.io/yaml v1.1.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.80.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect | ||
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/kustomize/api v0.12.1 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) |
Oops, something went wrong.