Created
August 1, 2021 21:03
-
-
Save tolleiv/5d101ac1381988e62a01e66b56926415 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v2 | |
actions: | |
- name: "Run hey" | |
events: | |
- name: "sh.keptn.event.test.triggered" | |
tasks: | |
- name: "Run hey smoke tests" | |
image: "tolleiv/rakyll-hey:v0.1.4" # just the official Dockerfile build | |
cmd: | |
- /hey | |
args: | |
- '-n' | |
- 100 | |
- '-c' | |
- 20 | |
- '-m' | |
- 'GET' | |
- '-h2' | |
- $(HOST) | |
env: | |
- name: HOST | |
value: "$.data.deployment.deploymentURIsLocal[0]" | |
valueFrom: event |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment