.papr.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ---
  2. # This YAML file is used by PAPR. It details the test
  3. # environment to provision and the test procedure. For more
  4. # information on PAPR, see:
  5. #
  6. # https://github.com/projectatomic/papr
  7. #
  8. # The PAPR YAML specification detailing allowed fields can
  9. # be found at:
  10. #
  11. # https://github.com/projectatomic/papr/blob/master/sample.papr.yml
  12. cluster:
  13. hosts:
  14. - name: ocp-master
  15. distro: fedora/27/atomic
  16. specs:
  17. ram: 4096
  18. - name: ocp-node1
  19. distro: fedora/27/atomic
  20. - name: ocp-node2
  21. distro: fedora/27/atomic
  22. container:
  23. image: registry.fedoraproject.org/fedora:27
  24. packages:
  25. - gcc
  26. - git
  27. - python-pip
  28. - python-devel
  29. - libffi-devel
  30. - openssl-devel
  31. - redhat-rpm-config
  32. context: 'fedora/27/atomic'
  33. tests:
  34. - ./.papr.sh
  35. artifacts:
  36. - journals/
  37. - ansible.log
  38. ---
  39. inherit: true
  40. context: 'fedora/27/atomic/update'
  41. cluster:
  42. hosts:
  43. - name: ocp-master
  44. distro: fedora/27/atomic
  45. specs:
  46. ram: 4096
  47. container:
  48. image: registry.fedoraproject.org/fedora:27
  49. env:
  50. PAPR_INVENTORY: .papr.all-in-one.inventory
  51. PAPR_RUN_UPDATE: "yes"
  52. ---
  53. inherit: true
  54. context: 'fedora/27/atomic/master-ha'
  55. cluster:
  56. hosts:
  57. - name: ocp-master1
  58. distro: fedora/27/atomic
  59. specs:
  60. ram: 4096
  61. - name: ocp-master2
  62. distro: fedora/27/atomic
  63. - name: ocp-master3
  64. distro: fedora/27/atomic
  65. container:
  66. image: registry.fedoraproject.org/fedora:27
  67. env:
  68. PAPR_INVENTORY: .papr-master-ha.inventory