File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ ARG GOLANG_VERSION=x.x.x
1616FROM golang:${GOLANG_VERSION}
1717
1818ARG CLIENT_GEN_VERSION=v0.26.1
19+ ARG LISTER_GEN_VERSION=v0.26.1
20+ ARG INFORMER_GEN_VERSION=v0.26.1
1921ARG CONTROLLER_GEN_VERSION=v0.9.2
2022ARG GOLANGCI_LINT_VERSION=v1.52.0
2123ARG MOQ_VERSION=v0.3.4
2224
2325RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION} \
2426 && go install github.com/matryer/moq@${MOQ_VERSION} \
2527 && go install sigs.k8s.io/controller-tools/cmd/controller-gen@${CONTROLLER_GEN_VERSION} \
26- && go install k8s.io/code-generator/cmd/client-gen@${CLIENT_GEN_VERSION}
28+ && go install k8s.io/code-generator/cmd/client-gen@${CLIENT_GEN_VERSION} \
29+ && go install k8s.io/code-generator/cmd/lister-gen@${LISTER_GEN_VERSION} \
30+ && go install k8s.io/code-generator/cmd/informer-gen@${INFORMER_GEN_VERSION}
2731
2832# We need to set the /work directory as a safe directory.
2933# This allows git commands to run in the container.
You can’t perform that action at this time.
0 commit comments