Skip to content

Commit

Permalink
merge: #8952
Browse files Browse the repository at this point in the history
8952: feat(benchmark): fail make on error r=Zelldon a=falko

## Description

Remove suppression of errors from benchmark Makefile for installation tasks. For cleanup tasks they are necessary.



Co-authored-by: Falko Menge <falko.menge@camunda.com>
  • Loading branch information
zeebe-bors-cloud[bot] and falko committed Mar 22, 2022
2 parents 5065b08 + 174bf5e commit 988a40d
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 988a40d

Please sign in to comment.