.redhat-ci.sh 959 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. set -xeuo pipefail
  3. pip install -r requirements.txt
  4. # ping the nodes to check they're responding and register their ostree versions
  5. ansible -vvv -i .redhat-ci.inventory nodes -a 'rpm-ostree status'
  6. upload_journals() {
  7. mkdir journals
  8. for node in master node1 node2; do
  9. ssh ocp-$node 'journalctl --no-pager || true' > journals/ocp-$node.log
  10. done
  11. }
  12. trap upload_journals ERR
  13. # run the actual installer
  14. ansible-playbook -vvv -i .redhat-ci.inventory playbooks/byo/config.yml
  15. # run a small subset of origin conformance tests to sanity
  16. # check the cluster NB: we run it on the master since we may
  17. # be in a different OSP network
  18. ssh ocp-master docker run --rm --net=host --privileged \
  19. -v /etc/origin/master/admin.kubeconfig:/config fedora:25 sh -c \
  20. '"dnf install -y origin-tests && \
  21. KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  22. --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'