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))
195195endif
196196endif
197197
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+
198205run-test :
199206 $(info Running unit tests...)
200207 go test -v -coverprofile cover.out -race -parallel 8 ./pkg/...
You can’t perform that action at this time.
0 commit comments