Skip to content

Commit 1b118bf

Browse files
author
Jakob Kartschall
committed
fix make check
1 parent 6183ba9 commit 1b118bf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Dockerfile_test

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ FROM golang:1.20.4
33
RUN apt-get update && apt-get install -y git bzr ca-certificates curl gcc
44

55
WORKDIR /workspace
6-
ENV GO111MODULE=on
76
ENV TEST_BINPATH=/binpath
87

98
# new envs for cert-manager
@@ -14,7 +13,7 @@ ENV TEST_ASSET_KUBECTL=/binpath/kubectl
1413

1514
RUN mkdir ${TEST_BINPATH}
1615

17-
ENV KUBERNETES 1.22.8
16+
ENV KUBERNETES 1.25.9
1817

1918
RUN 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

2928
RUN 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 && \

designate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)