File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ help: ## Display this help.
112112
113113.PHONY : manifests
114114manifests : controller-gen # # Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects.
115- $(CONTROLLER_GEN ) rbac:roleName=manager-role crd$( CRDDESC_OVERRIDE ) webhook paths=" ./..." output:crd:artifacts:config=config/crd/bases && \
115+ $(CONTROLLER_GEN ) rbac:roleName=manager-role crd webhook paths=" ./..." output:crd:artifacts:config=config/crd/bases && \
116116 rm -f api/bases/* && cp -a config/crd/bases api/
117117
118118.PHONY : generate
@@ -188,7 +188,6 @@ ifndef ignore-not-found
188188endif
189189
190190.PHONY : install
191- install : CRDDESC_OVERRIDE=:maxDescLen=0
192191install : manifests kustomize # # Install CRDs and RBAC into the K8s cluster specified in ~/.kube/config.
193192 $(KUSTOMIZE ) build config/crd | kubectl apply -f -
194193
@@ -197,7 +196,6 @@ uninstall: manifests kustomize ## Uninstall CRDs and RBAC from the K8s cluster s
197196 $(KUSTOMIZE ) build config/crd | kubectl delete --ignore-not-found=$(ignore-not-found ) -f -
198197
199198.PHONY : deploy
200- deploy : CRDDESC_OVERRIDE=:maxDescLen=0
201199deploy : manifests kustomize # # Deploy controller to the K8s cluster specified in ~/.kube/config.
202200 cd config/manager && $(KUSTOMIZE ) edit set image controller=${IMG}
203201 $(KUSTOMIZE ) build config/default | kubectl apply -f -
You can’t perform that action at this time.
0 commit comments