Skip to content

Commit

Permalink
Merge pull request #1309 from cw-Guo/fix/too-long-annotations
Browse files Browse the repository at this point in the history
fix annotations too long issue
  • Loading branch information
benjaminhuo authored Aug 19, 2024
2 parents e470969 + 56e50c8 commit 9e72908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ push-amd64:
##@ Deployment

install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
$(KUSTOMIZE) build config/crd/bases/ | kubectl apply -f -
$(KUSTOMIZE) build config/crd/bases/ | kubectl create -f -

uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config.
$(KUSTOMIZE) build config/crd/bases/ | kubectl delete -f -

deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in ~/.kube/config.
kubectl apply -f manifests/setup/setup.yaml
kubectl create -f manifests/setup/setup.yaml

undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config.
kubectl delete -f manifests/setup/setup.yaml
Expand Down

0 comments on commit 9e72908

Please sign in to comment.