Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. export ORCHESTRATION_HOST="localhost"
  2. export ORCHESTRATION_USER=root
  3. export WORKLOAD_JOB_NODE_SELECTOR=false
  4. export WORKLOAD_JOB_TAINT=false
  5. export WORKLOAD_JOB_PRIVILEGED=false
  6. export KUBECONFIG_FILE='~/.kube/config'
  7.  
  8. # adapt PUBLIC_KEY and PRIVATE_KEY to your needs
  9.  
  10. export PBENCH_SSH_PRIVATE_KEY_FILE='~/.ssh/id_rsa'
  11. export PBENCH_SSH_PUBLIC_KEY_FILE='~/.ssh/id_rsa.pub'
  12.  
  13. export ENABLE_PBENCH_AGENTS=false
  14. export PBENCH_SERVER=pbench.dev.openshift.com
  15. export SCALE_CI_RESULTS_TOKEN=
  16. export PVCSCALE_TEST_PREFIX=pvcscale
  17. export PVCSCALE_CLEANUP=false
  18. export PVCSCALE_BASENAME=pvcscale
  19. export PVCSCALE_MAXPODS=1
  20. export PVCSCALE_POD_IMAGE="quay.io/openshift-scale/scale-ci-workload"
  21. export PVCSCALE_STEPSIZE=1
  22. export PVCSCALE_PAUSE=0
  23. export PVCSCALE_STORAGE_SIZE="1Gi"
  24. export PVCSCALE_STORAGECLASS="gp2"
  25. export ACCESS_MODES="ReadWriteOnce"
  26. env
  27. set -o pipefail
  28. set -eux
  29.  
  30. # adapt PUBLIC_KEY and PRIVATE_KEY to your needs
  31.  
  32. export PUBLIC_KEY=~/.ssh/id_rsa.pub
  33. export PRIVATE_KEY=~/.ssh/id_rsa
  34. echo "[orchestration]" > inventory
  35. echo "${ORCHESTRATION_HOST}" >> inventory
  36. export ANSIBLE_FORCE_COLOR=true
  37. time ansible-playbook -v -i inventory workloads/workloads/pvcscale.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement