Skip to content

Commit

Permalink
Merge pull request #51 from jetstack/bump_deps
Browse files Browse the repository at this point in the history
Bump cas issuer dependencies to cert-manager v1.5.1, k8s 1.21.3
  • Loading branch information
jakexks authored Aug 18, 2021
2 parents 787f8dc + 1f3147c commit 38289b0
Show file tree
Hide file tree
Showing 4 changed files with 661 additions and 190 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ e2e: kind kustomize ginkgo kubectl docker-build
$(KIND) create cluster --name casissuer-e2e
$(KIND) export kubeconfig --name casissuer-e2e --kubeconfig kubeconfig.yaml
$(KIND) load docker-image --name casissuer-e2e ${IMG}
$(KUBECTL) --kubeconfig kubeconfig.yaml apply -f https://github.com/jetstack/cert-manager/releases/download/v1.3.1/cert-manager.yaml
$(KUBECTL) --kubeconfig kubeconfig.yaml apply -f https://github.com/jetstack/cert-manager/releases/download/v1.5.1/cert-manager.yaml
$(KUSTOMIZE) build config/crd | $(KUBECTL) --kubeconfig kubeconfig.yaml apply -f -
cd config/manager; $(KUSTOMIZE) edit set image controller=${IMG}
$(KUSTOMIZE) build config/default | $(KUBECTL) --kubeconfig kubeconfig.yaml apply -f -
Expand Down Expand Up @@ -113,7 +113,7 @@ ifeq (, $(shell which kind))
set -e ;\
TEMPDIR=$(mktemp -d);\
cd $$TEMPDIR ;\
GO111MODULE=on go get sigs.k8s.io/[email protected].0 ;\
GO111MODULE=on go get sigs.k8s.io/[email protected].1 ;\
}
KIND=$(GOBIN)/kind
else
Expand Down
40 changes: 20 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ module github.com/jetstack/google-cas-issuer
go 1.16

require (
cloud.google.com/go v0.82.0
filippo.io/age v1.0.0-rc.2
github.com/go-logr/logr v0.3.0
cloud.google.com/go/security v0.1.0
filippo.io/age v1.0.0-rc.3
github.com/go-logr/logr v0.4.0
github.com/golang/protobuf v1.5.2
github.com/google/uuid v1.1.2
github.com/jetstack/cert-manager v1.3.1
github.com/olekukonko/tablewriter v0.0.4
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.6.1
google.golang.org/api v0.47.0
google.golang.org/genproto v0.0.0-20210601170153-0befbe3492e2
google.golang.org/protobuf v1.26.0
k8s.io/api v0.20.1
k8s.io/apimachinery v0.20.1
k8s.io/cli-runtime v0.20.1
k8s.io/client-go v0.20.1
k8s.io/klog/v2 v2.4.0
sigs.k8s.io/controller-runtime v0.8.0
github.com/google/uuid v1.3.0
github.com/jetstack/cert-manager v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.14.0
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/stretchr/testify v1.7.0
google.golang.org/api v0.54.0
google.golang.org/genproto v0.0.0-20210813162853-db860fec028c
google.golang.org/protobuf v1.27.1
k8s.io/api v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/cli-runtime v0.21.3
k8s.io/client-go v0.21.3
k8s.io/klog/v2 v2.8.0
sigs.k8s.io/controller-runtime v0.9.6
)
Loading

0 comments on commit 38289b0

Please sign in to comment.