.redhat-ci.sh 980 B

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