You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make kind-deploy-prom IMG=carbon-aware-keda-operator:v1
looks like it is attempting to run controller-gen with version v0.11.1 as part of a deployment script, I encountered a runtime panic caused by a nil pointer dereference. This occurred during the execution of the command controller-gen rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases. The error stopped the make process, resulting in a failed build.
I fixed this issue by running:
GOBIN=/workspaces/carbon-aware-keda-operator/bin go install sigs.k8s.io/controller-tools/cmd/controller-gen@latest
maybe we can update it in the Makefile?
The text was updated successfully, but these errors were encountered:
when I run this command:
looks like it is attempting to run controller-gen with version v0.11.1 as part of a deployment script, I encountered a runtime panic caused by a nil pointer dereference. This occurred during the execution of the command controller-gen rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases. The error stopped the make process, resulting in a failed build.
I fixed this issue by running:
maybe we can update it in the Makefile?
The text was updated successfully, but these errors were encountered: