Skip to content

Commit

Permalink
Merge pull request #11 from ProZachJ/main
Browse files Browse the repository at this point in the history
Update Dependencies, Add Tests
  • Loading branch information
alenkacz committed Jan 4, 2023
2 parents e2e0c79 + 965b9ad commit 0753364
Show file tree
Hide file tree
Showing 35 changed files with 186,642 additions and 19,457 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ hack/manifest-gen
hack/controller-gen
test/.git-credentials
reports/
kuttl
config/manager_image_patch.yaml-e
# created by /hack/generate_krew.sh during release
kind-logs-*
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build:

.PHONY: e2e-test
e2e-test: build
./hack/run-e2e-tests.sh
./test/run-e2e-tests.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Helps you properly wait for [cert-manager](https://github.com/jetstack/cert-manager) installation to be ready to use.

All versions of cert-manager are supported down to 0.12.
All versions of cert-manager are supported down to 1.0

## Motivation

Expand Down
56 changes: 50 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,55 @@ module github.com/alenkacz/cert-manager-verifier
go 1.15

require (
github.com/PuerkitoBio/purell v1.2.0 // indirect
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
github.com/blang/semver v3.5.0+incompatible // indirect
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96 // indirect
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/spec v0.19.3 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/gnostic v0.6.9 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/gnostic v0.4.1 // indirect
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect
github.com/novln/docker-parser v1.0.0
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.1.1
k8s.io/apimachinery v0.19.4
k8s.io/cli-runtime v0.19.4
k8s.io/client-go v0.19.4
k8s.io/kubectl v0.19.4
github.com/russross/blackfriday v1.6.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.5.0
github.com/spf13/viper v1.7.0 // indirect
github.com/ugorji/go v1.1.4 // indirect
github.com/xlab/handysort v0.0.0-20150421192137-fb3537ed64a1 // indirect
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
go.starlark.net v0.0.0-20220928063852-5fccb4daaf6d // indirect
golang.org/x/net v0.0.0-20221004154528-8021a29435af // indirect
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/term v0.0.0-20220919170432-7a66f970e087 // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
google.golang.org/protobuf v1.28.1 // indirect
gotest.tools v2.2.0+incompatible // indirect
k8s.io/apimachinery v0.25.2
k8s.io/cli-runtime v0.25.2
k8s.io/client-go v0.25.2
k8s.io/kube-openapi v0.0.0-20220928191237-829ce0c27909 // indirect
k8s.io/kubectl v0.25.2
k8s.io/utils v0.0.0-20220922133306-665eaaec4324 // indirect
sigs.k8s.io/kustomize v2.0.3+incompatible // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc // indirect
)
704 changes: 704 additions & 0 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 0753364

Please sign in to comment.