File tree Expand file tree Collapse file tree 5 files changed +2074
-19
lines changed Expand file tree Collapse file tree 5 files changed +2074
-19
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.15.2
1+ FROM golang:1.17.7
22
33RUN apt-get update && apt-get install -y git bzr ca-certificates curl gcc
44
55WORKDIR /workspace
66ENV GO111MODULE=on
77ENV TEST_BINPATH=/binpath
88
9+ # new envs for cert-manager
10+ ENV TEST_ASSET_ETCD=/binpath/etcd
11+ ENV TEST_ASSET_KUBE_APISERVER=/binpath/kube-apiserver
12+ ENV TEST_ASSET_KUBECTL=/binpath/kubectl
13+
14+
915RUN mkdir ${TEST_BINPATH}
1016
11- ENV KUBERNETES 1.15.3
17+ ENV KUBERNETES 1.22.8
1218
1319RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBERNETES}/bin/linux/amd64/kubectl && \
1420 chmod +x ./kubectl; \
Original file line number Diff line number Diff line change @@ -3,20 +3,12 @@ module github.com/syseleven/designate-certmanager-webhook
33go 1.15
44
55require (
6+ github.com/cert-manager/cert-manager v1.8.0
67 github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
7- github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7 // indirect
8- github.com/google/go-cmp v0.3.1 // indirect
98 github.com/gophercloud/gophercloud v0.14.0
10- github.com/imdario/mergo v0.3.7 // indirect
11- github.com/jetstack/cert-manager v0.16.1
129 github.com/kubernetes-incubator/external-dns v0.5.12
13- github.com/sirupsen/logrus v1.7.0
14- golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
15- golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
16- google.golang.org/appengine v1.6.5 // indirect
17- google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb // indirect
18- k8s.io/client-go v0.18.8
19- k8s.io/utils v0.0.0-20200729134348-d5654de09c73 // indirect
10+ github.com/sirupsen/logrus v1.8.1
11+ k8s.io/client-go v0.23.4
2012)
2113
2214replace git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
You can’t perform that action at this time.
0 commit comments