File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,13 @@ ifneq ($(TAG:release-v%=%),$(TAG))
195
195
endif
196
196
endif
197
197
198
+ # easy-deploy can be used for building and pushing a custom image of MCAD and deploying it on your K8s cluster for development.
199
+ # Example: "make easy-deploy TAG=yourtag USERNAME=rh_ee_jdoe"
200
+ easy-deploy : images-podman
201
+ podman tag localhost/mcad-controller:${TAG} quay.io/${USERNAME} /mcad-controller:${TAG}
202
+ podman push quay.io/${USERNAME} /mcad-controller:${TAG}
203
+ cd deployment && helm install mcad-controller mcad-controller --namespace kube-system --wait --set image.repository=quay.io/${USERNAME} /mcad-controller --set image.tag=${TAG}
204
+
198
205
run-test :
199
206
$(info Running unit tests...)
200
207
go test -v -coverprofile cover.out -race -parallel 8 ./pkg/...
You can’t perform that action at this time.
0 commit comments