.redhat-ci.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. cluster:
  3. hosts:
  4. - name: ocp-master
  5. distro: fedora/25/atomic
  6. - name: ocp-node1
  7. distro: fedora/25/atomic
  8. - name: ocp-node2
  9. distro: fedora/25/atomic
  10. container:
  11. image: fedora:25
  12. packages:
  13. - gcc
  14. - python-pip
  15. - python-devel
  16. - openssl-devel
  17. - redhat-rpm-config
  18. context: 'fedora/25/atomic | origin/v1.5.0-rc.0'
  19. env:
  20. OPENSHIFT_IMAGE_TAG: v1.5.0-rc.0
  21. tests:
  22. - pip install ansible==2.2.2.0 # F25 currently has 2.2.1, so install from pypi
  23. - ansible -vvv -i .redhat-ci.inventory nodes -a 'rpm-ostree status'
  24. - ansible-playbook -vvv -i .redhat-ci.inventory playbooks/byo/config.yml
  25. # run a small subset of origin conformance tests to sanity check the cluster
  26. # NB: we run it on the master since we may be in a different OSP network
  27. - ssh ocp-master docker run --rm --net=host --privileged
  28. -v /etc/origin/master/admin.kubeconfig:/config fedora:25 sh -c
  29. '"dnf install -y origin-tests &&
  30. KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1
  31. --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'
  32. ---
  33. inherit: true
  34. context: 'fedora/25/atomic | origin/v3.6.0-alpha.0'
  35. env:
  36. OPENSHIFT_IMAGE_TAG: v3.6.0-alpha.0