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

k6 yaml file for standalone and distributed #70

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions k6_distributed.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: k6.io/v1alpha1
kind: TestRun
metadata:
name: load-test-ing1
spec:
parallelism: 1
runner:
nodeSelector:
kubernetes.io/hostname: benchmarking-rk529
env:
- name: P_URL
value: "http://parseable-ingestor-0.parseable-ingestor-headless.parseable.svc.cluster.local:8000"
- name: P_STREAM
value: "app1"
- name: P_USERNAME
value: "admin"
- name: P_PASSWORD
value: "admin"
script:
configMap:
name: load-test
file: load_batch_events.js
20 changes: 20 additions & 0 deletions k6_standalone.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apiVersion: k6.io/v1alpha1
kind: TestRun
metadata:
name: load-with-500-512-test
spec:
parallelism: 6
runner:
env:
- name: P_URL
value: "http://parseable.parseable.svc.cluster.local:80"
- name: P_STREAM
value: "app1"
- name: P_USERNAME
value: "admin"
- name: P_PASSWORD
value: "admin"
script:
configMap:
name: load-test
file: load_batch_events.js
Loading