Created
March 22, 2018 14:57
-
-
Save a-robinson/893d68096194970138db1fc97a4dae1c to your computer and use it in GitHub Desktop.
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: v1 | |
kind: Pod | |
metadata: | |
name: loadgen-kv | |
labels: | |
app: loadgen-kv | |
spec: | |
containers: | |
- name: loadgen-kv | |
image: cockroachdb/loadgen-kv:0.2 | |
imagePullPolicy: IfNotPresent | |
command: | |
- /kv | |
- --splits=16 | |
- --read-percent=95 | |
- --concurrency=60 | |
- --max-rate=200 | |
- --tolerate-errors | |
- "postgres://root@cockroachdb-public:26257/photos?sslmode=disable" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment