.papr.sh 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. #!/bin/bash
  2. set -xeuo pipefail
  3. echo "Targeting OpenShift Origin $OPENSHIFT_IMAGE_TAG"
  4. pip install -r requirements.txt
  5. # ping the nodes to check they're responding and register their ostree versions
  6. ansible -vvv -i .papr.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. # FIXME: override openshift_image_tag defined in the inventory until
  16. # https://github.com/openshift/openshift-ansible/issues/4478 is fixed.
  17. ansible-playbook -vvv -i .papr.inventory playbooks/byo/config.yml -e "openshift_image_tag=$OPENSHIFT_IMAGE_TAG"
  18. # run a small subset of origin conformance tests to sanity
  19. # check the cluster NB: we run it on the master since we may
  20. # be in a different OSP network
  21. ssh ocp-master docker run --rm --net=host --privileged \
  22. -v /etc/origin/master/admin.kubeconfig:/config \
  23. registry.fedoraproject.org/fedora:26 sh -c \
  24. '"dnf install -y origin-tests && \
  25. KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  26. --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'