.papr.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. - findutils
  33. context: 'fedora/27/atomic'
  34. tests:
  35. - ./.papr.sh
  36. artifacts:
  37. - journals/
  38. pulls: false
  39. required: false
  40. ---
  41. inherit: true
  42. context: 'fedora/27/atomic/upgrade_minor'
  43. cluster:
  44. hosts:
  45. - name: ocp-master
  46. distro: fedora/27/atomic
  47. specs:
  48. ram: 4096
  49. container:
  50. image: registry.fedoraproject.org/fedora:27
  51. env:
  52. PAPR_INVENTORY: .papr.all-in-one.inventory
  53. PAPR_RUN_UPDATE: "yes"
  54. ---
  55. inherit: true
  56. context: 'fedora/27/atomic/upgrade_major'
  57. cluster:
  58. hosts:
  59. - name: ocp-master
  60. distro: fedora/27/atomic
  61. specs:
  62. ram: 4096
  63. container:
  64. image: registry.fedoraproject.org/fedora:27
  65. env:
  66. PAPR_INVENTORY: .papr.all-in-one.inventory
  67. PAPR_UPGRADE_FROM: "3.10"
  68. PAPR_RUN_UPDATE: "yes"
  69. ---
  70. inherit: true
  71. context: 'fedora/27/atomic/master-ha'
  72. cluster:
  73. hosts:
  74. - name: ocp-master1
  75. distro: fedora/27/atomic
  76. specs:
  77. ram: 4096
  78. - name: ocp-master2
  79. distro: fedora/27/atomic
  80. - name: ocp-master3
  81. distro: fedora/27/atomic
  82. container:
  83. image: registry.fedoraproject.org/fedora:27
  84. env:
  85. PAPR_INVENTORY: .papr-master-ha.inventory