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
uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
127
-
mkdir output
128
-
$(KUSTOMIZE) build config/default -o output
129
-
go run tools/minify-crd.go -v -o output
130
-
cd output &&kubectl delete --ignore-not-found=$(ignore-not-found) -f .
deploy-prerelease: install docker-prerelease ## Install CRDs, build docker image, and deploy a prerelease controller to the K8s cluster specified in ~/.kube/config.
135
121
cd config/manager &&$(KUSTOMIZE) edit set image controller=$(PRE_IMG)
undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
155
-
mkdir output
156
-
$(KUSTOMIZE) build config/default -o output
157
-
go run tools/minify-crd.go -v -o output
158
-
cd output && kubectl delete --ignore-not-found=$(ignore-not-found) -f .
0 commit comments