-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
33 lines (27 loc) · 1.55 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
DATE ?= $(shell date +%FT%T%z)
REMOTE = 127.0.0.1
TAG = latest
RUNTIME = docker
fetch-payload: ## Update tektoncd operator payloads and bundle manifests
@./hack/operator-fetch-payload.sh
update-reference: ## Update references in the generate clusterserviceversion.yaml
@./hack/operator-update-images.sh
# update/version/update-payload:
# @./hack/update-version.sh
# @./hack/operator-fetch-payload.sh
# bundle: container/openshift-pipelines-operator-bundle/digest ## Build the operator bundle image
# bundle/push: bundle container/openshift-pipelines-operator-bundle/push ## Build and push the bundle image
# bundle/run: ## Run the pushed bundle (needs to run bundle/push target prior)
# operator-sdk run bundle -n openshift-operators ${REMOTE}/openshift-pipelines-operator-bundle:${TAG}
# bundle/cleanup: ## Clean up a bundle installed in your cluster
# operator-sdk cleanup -n openshift-operators openshift-pipelines-operator-rh
#
# index: bundle/push ## Create an index image for this bundle
# ./hack/build-index.sh index/openshift-pipelines-operator-rh/package.yaml ${REMOTE} ${REMOTE}/openshift-pipelines-operator-bundle:${TAG} ${REMOTE}/openshift-pipelines-operator-index:${TAG} ${RUNTIME} ${DOCKER_BUILD_ARGS}
# index/push: index ## Build and push the index image for this bundle
# ${RUNTIME} ${DOCKER_BUILD_ARGS} push ${REMOTE}/openshift-pipelines-operator-index:${TAG}
FORCE:
.PHONY: help
help:
@grep -hE '^[ a-zA-Z0-9/_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-32s\033[0m %s\n", $$1, $$2}'