-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into antrea-connectivity-tests
- Loading branch information
Showing
250 changed files
with
4,963 additions
and
5,263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ FROM ubuntu:22.04 as protoc | |
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends wget ca-certificates unzip | ||
|
||
RUN PROTOBUF_VERSION=3.0.2; ZIPNAME="protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"; \ | ||
RUN PROTOBUF_VERSION=26.0; ZIPNAME="protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"; \ | ||
mkdir /tmp/protoc && cd /tmp/protoc && \ | ||
wget "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/${ZIPNAME}" && \ | ||
unzip "${ZIPNAME}" && \ | ||
|
@@ -32,11 +32,11 @@ LABEL description="A Docker image based on the golang image, which includes code | |
|
||
ENV GO111MODULE=on | ||
|
||
ARG K8S_VERSION=1.26.4 | ||
ARG K8S_VERSION=1.29.2 | ||
# The k8s.io/kube-openapi repo does not have tag, using a workable commit hash. | ||
# We use the version that is referenced in the Kubernetes go.mod (for the | ||
# correct K8s version). | ||
ARG KUBEOPENAPI_VERSION=v0.0.0-20221012153701-172d655c2280 | ||
ARG KUBEOPENAPI_VERSION=v0.0.0-20231010175941-2dd684a91f00 | ||
|
||
RUN go install k8s.io/code-generator/cmd/client-gen@kubernetes-$K8S_VERSION && \ | ||
go install k8s.io/code-generator/cmd/deepcopy-gen@kubernetes-$K8S_VERSION && \ | ||
|
@@ -47,7 +47,8 @@ RUN go install k8s.io/code-generator/cmd/client-gen@kubernetes-$K8S_VERSION && \ | |
go install k8s.io/code-generator/cmd/go-to-protobuf@kubernetes-$K8S_VERSION && \ | ||
go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo@kubernetes-$K8S_VERSION && \ | ||
go install go.uber.org/mock/[email protected] && \ | ||
go install github.com/golang/protobuf/[email protected] && \ | ||
go install google.golang.org/protobuf/cmd/[email protected] && \ | ||
go install google.golang.org/grpc/cmd/[email protected] && \ | ||
go install golang.org/x/tools/cmd/goimports@latest && \ | ||
go install sigs.k8s.io/controller-tools/cmd/[email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.