Commit 5b7bcab Mengqi Yu
committed
1 parent 3b35bcb commit 5b7bcab Copy full SHA for 5b7bcab
File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,10 @@ run: generate fmt vet manifests
71
71
72
72
# Install CRDs into a cluster
73
73
install: manifests
74
- kubectl apply -f config/crd/bases
74
+ kustomize build config/crd | kubectl apply -f -
75
75
76
76
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
77
77
deploy: manifests
78
- kubectl apply -f config/crd/bases
79
78
cd config/manager && kustomize edit set image controller=${IMG}
80
79
kustomize build config/default | kubectl apply -f -
81
80
Original file line number Diff line number Diff line change @@ -27,11 +27,10 @@ run: generate fmt vet manifests
27
27
28
28
# Install CRDs into a cluster
29
29
install : manifests
30
- kubectl apply -f config/crd/bases
30
+ kustomize build config/crd | kubectl apply -f -
31
31
32
32
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
33
33
deploy : manifests
34
- kubectl apply -f config/crd/bases
35
34
cd config/manager && kustomize edit set image controller=${IMG}
36
35
kustomize build config/default | kubectl apply -f -
37
36
You can’t perform that action at this time.
0 commit comments