Skip to content

Commit

Permalink
k8s 1.28.x
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Oct 23, 2023
1 parent 7d90b4a commit f1c4494
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19
FROM golang:1.21

LABEL org.opencontainers.image.source https://github.com/appscodelabs/gengo-builder

Expand All @@ -14,7 +14,7 @@ RUN set -x \
&& rm -rf kube-openapi \
&& git clone https://github.com/kubernetes/kube-openapi.git \
&& cd kube-openapi \
&& git checkout 67bda5d908f1 \
&& git checkout 2695361300d9 \
&& go install ./cmd/openapi-gen/... \
&& cd /go \
&& rm -rf /go/pkg /go/src
Expand All @@ -26,7 +26,7 @@ RUN set -x \
&& rm -rf controller-tools \
&& git clone https://github.com/kmodules/controller-tools.git \
&& cd controller-tools \
&& git checkout ac-0.10.0 \
&& git checkout ac-0.13.0 \
&& go install ./cmd/controller-gen \
&& cd /go \
&& rm -rf /go/pkg /go/src
Expand All @@ -48,7 +48,7 @@ RUN mkdir -p /go/src/github.com/golang \
&& rm -rf protobuf \
&& git clone https://github.com/golang/protobuf.git \
&& cd protobuf \
&& git checkout v1.5.2 \
&& git checkout v1.5.3 \
&& go install ./... \
&& cd /go \
&& rm -rf /go/pkg /go/src
Expand All @@ -65,7 +65,7 @@ RUN set -x \
&& rm -rf code-generator \
&& git clone https://github.com/kmodules/code-generator.git \
&& cd code-generator \
&& git checkout ac-1.25.1 \
&& git checkout ac-1.28.3 \
&& go install ./... \
&& cd /go \
&& rm -rf /go/pkg \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL=/bin/bash -o pipefail
REGISTRY ?= appscode
BIN ?= gengo
IMAGE := $(REGISTRY)/$(BIN)
VERSION ?= release-1.25
VERSION ?= release-1.28
SRC_REG ?=

DOCKER_PLATFORMS := linux/amd64 linux/arm64
Expand Down

0 comments on commit f1c4494

Please sign in to comment.