File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ FROM golang:1.20.4
33RUN apt-get update && apt-get install -y git bzr ca-certificates curl gcc
44
55WORKDIR /workspace
6- ENV GO111MODULE=on
76ENV TEST_BINPATH=/binpath
87
98# new envs for cert-manager
@@ -14,7 +13,7 @@ ENV TEST_ASSET_KUBECTL=/binpath/kubectl
1413
1514RUN mkdir ${TEST_BINPATH}
1615
17- ENV KUBERNETES 1.22.8
16+ ENV KUBERNETES 1.25.9
1817
1918RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBERNETES}/bin/linux/amd64/kubectl && \
2019 chmod +x ./kubectl; \
@@ -24,7 +23,7 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBERN
2423 chmod +x ./kube-apiserver; \
2524 mv ./kube-apiserver ${TEST_BINPATH}
2625
27- ENV ETCD 3.3.15
26+ ENV ETCD 3.5.9
2827
2928RUN curl -LO https://github.com/etcd-io/etcd/releases/download/v${ETCD}/etcd-v${ETCD}-linux-amd64.tar.gz && \
3029 tar -xvf etcd-v${ETCD}-linux-amd64.tar.gz && \
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
2323 "github.com/gophercloud/gophercloud"
2424 "github.com/gophercloud/gophercloud/openstack"
2525
26- "sigs.k8s.io/external-dns/pkg/tlsutils"
2726 log "github.com/sirupsen/logrus"
27+ "sigs.k8s.io/external-dns/pkg/tlsutils"
2828)
2929
3030// copies environment variables to new names without overwriting existing values
You can’t perform that action at this time.
0 commit comments