Skip to content

Commit 024f3bf

Browse files
committed
update to go 1.13 since k8s requires 1.13
1 parent 4c672e3 commit 024f3bf

File tree

5 files changed

+3
-10
lines changed

5 files changed

+3
-10
lines changed

artifacts/images/agent-build.Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the proxy-agent binary
2-
FROM golang:1.12.1 as builder
2+
FROM golang:1.13.4 as builder
33

44
# Copy in the go src
55
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
@@ -9,7 +9,6 @@ COPY go.mod go.mod
99
COPY go.sum go.sum
1010

1111
# Cache dependencies
12-
ENV GO111MODULE=on
1312
RUN go mod download
1413

1514
# Copy the sources

artifacts/images/client-build.Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the client binary
2-
FROM golang:1.12.1 as builder
2+
FROM golang:1.13.4 as builder
33

44
# Copy in the go src
55
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
@@ -9,7 +9,6 @@ COPY go.mod go.mod
99
COPY go.sum go.sum
1010

1111
# Cache dependencies
12-
ENV GO111MODULE=on
1312
RUN go mod download
1413

1514
# Copy the sources

artifacts/images/server-build.Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the proxy-server binary
2-
FROM golang:1.12.1 as builder
2+
FROM golang:1.13.4 as builder
33

44
# Copy in the go src
55
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
@@ -9,7 +9,6 @@ COPY go.mod go.mod
99
COPY go.sum go.sum
1010

1111
# Cache dependencies
12-
ENV GO111MODULE=on
1312
RUN go mod download
1413

1514
# Copy the sources

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ go 1.12
44

55
require (
66
github.com/beorn7/perks v1.0.0 // indirect
7-
github.com/golang/lint v0.0.0-20180702182130-06c8688daad7 // indirect
87
github.com/golang/protobuf v1.3.2
98
github.com/inconshreveable/mousetrap v1.0.0 // indirect
109
github.com/prometheus/client_golang v0.9.2

go.sum

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me
1616
github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
1717
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=
1818
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
19-
github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E=
2019
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
2120
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
2221
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
@@ -38,8 +37,6 @@ github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXP
3837
github.com/prometheus/client_golang v0.9.2 h1:awm861/B8OKDd2I/6o1dy3ra4BamzKhYOiGItCeZ740=
3938
github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM=
4039
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
41-
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE=
42-
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
4340
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM=
4441
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
4542
github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=

0 commit comments

Comments
 (0)