Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(benchmark): fail make on error #8952

Merged
merged 1 commit into from Mar 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions benchmarks/setup/default/Makefile
Expand Up @@ -5,17 +5,17 @@ all: zeebe starter timer simpleStarter worker

.PHONY: zeebe
zeebe:
-helm install --namespace $(namespace) $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml --skip-crds
helm install --namespace $(namespace) $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml --skip-crds

# Generates templates from the zeebe helm charts, useful to make some more specific changes which are not doable by the values file.
# To apply the templates use k apply -f ccsm-helm/templates/
.PHONY: template
template:
-helm template $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml --skip-crds --output-dir .
helm template $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml --skip-crds --output-dir .

.PHONY: update
update:
-helm upgrade --namespace $(namespace) $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml
helm upgrade --namespace $(namespace) $(namespace) camunda-cloud/ccsm-helm -f zeebe-values.yaml

.PHONY: starter
starter:
Expand Down