Skip to content

Commit e0912fa

Browse files
committed
Add lister-gen and informer-gen to container image
Signed-off-by: Kevin Klues <[email protected]>
1 parent d2430a7 commit e0912fa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

images/devel/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@ ARG GOLANG_VERSION=x.x.x
1616
FROM golang:${GOLANG_VERSION}
1717

1818
ARG CLIENT_GEN_VERSION=v0.26.1
19+
ARG LISTER_GEN_VERSION=v0.26.1
20+
ARG INFORMER_GEN_VERSION=v0.26.1
1921
ARG CONTROLLER_GEN_VERSION=v0.9.2
2022
ARG GOLANGCI_LINT_VERSION=v1.52.0
2123
ARG MOQ_VERSION=v0.3.4
2224

2325
RUN 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.

0 commit comments

Comments
 (0)