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
build: manifests generate fmt vet ## Build manager binary.
98
98
go build -o bin/manager main.go
99
99
100
+
.PHONY: run-image
101
+
run-image: docker-build kind-load install-cert-mgr install-rukpak install deploy wait ## Build the operator-controller then deploy it into an existing kind cluster.
102
+
100
103
.PHONY: run
101
-
run: docker-build kind-cluster kind-load cert-mgr rukpak install deploy wait## Build the operator-controller then deploy it into a new kind cluster.
104
+
run: kind-cluster run-image## Build the operator-controller then deploy it into a new kind cluster.
102
105
103
106
.PHONY: run-local
104
107
run-local: manifests generate fmt vet ## Run a controller from your host. Make sure that necessary CRDs are installed in the cluster.
@@ -143,16 +146,24 @@ ifndef ignore-not-found
143
146
endif
144
147
145
148
## TODO dfranz: replace cert-mgr and rukpak targets with our chosen method of distribution when available
0 commit comments