This file contains hidden or 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
#!/usr/local/bin/bash | |
postman-to-k6 script.json -e env.json --csv data.source.csv -o k6-script.js | |
k6 run --vus 30 --duration 300s k6-script.js | |
[ $? -eq 0 ] || exit 1 |
This file contains hidden or 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: flagger.app/v1alpha3 | |
kind: Canary | |
metadata: | |
name: my-app | |
namespace: dev | |
spec: | |
targetRef: | |
apiVersion: apps/v1 | |
kind: Deployment | |
name: my-app |
OlderNewer