Skip to content

Commit

Permalink
Fix the config path for creating Boskos resources configmap (#3213)
Browse files Browse the repository at this point in the history
  • Loading branch information
chizhg authored Mar 31, 2022
1 parent f2110d3 commit b5dba8f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions prow/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ CLUSTER ?= prow
CLUSTER_BUILD ?= knative-prow-build-cluster
JOB_NAMESPACE ?= test-pods

BOSKOS_RESOURCES ?= prow/cluster/boskos/boskos_resources.yaml

.PHONY: deploy
deploy: get-cluster-credentials
# Apply the ProwJob CRD with --server-side=true due to its size.
Expand All @@ -33,7 +31,8 @@ deploy: get-cluster-credentials
.PHONY: deploy-build
deploy-build: get-build-cluster-credentials
kubectl apply -f ./cluster/build/
kubectl create configmap resources --from-file=config=$(BOSKOS_RESOURCES) --dry-run --save-config -o yaml | kubectl --namespace="$(JOB_NAMESPACE)" apply -f -
kubectl create configmap resources --from-file=config=./cluster/boskos/boskos_resources.yaml --dry-run --save-config -o yaml \
| kubectl --namespace="$(JOB_NAMESPACE)" apply -f -

.PHONY: deploy-monitoring
deploy-monitoring:
Expand Down

0 comments on commit b5dba8f

Please sign in to comment.