File tree 1 file changed +5
-1
lines changed
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
16
16
FROM golang:${GOLANG_VERSION}
17
17
18
18
ARG CLIENT_GEN_VERSION=v0.26.1
19
+ ARG LISTER_GEN_VERSION=v0.26.1
20
+ ARG INFORMER_GEN_VERSION=v0.26.1
19
21
ARG CONTROLLER_GEN_VERSION=v0.9.2
20
22
ARG GOLANGCI_LINT_VERSION=v1.52.0
21
23
ARG MOQ_VERSION=v0.3.4
22
24
23
25
RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION} \
24
26
&& go install github.com/matryer/moq@${MOQ_VERSION} \
25
27
&& 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}
27
31
28
32
# We need to set the /work directory as a safe directory.
29
33
# This allows git commands to run in the container.
You can’t perform that action at this time.
0 commit comments