.papr.sh 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/bin/bash
  2. set -xeuo pipefail
  3. # Essentially use a similar procedure other openshift-ansible PR tests use to
  4. # determine which image tag should be used. This allows us to avoid hardcoding a
  5. # specific version which quickly becomes stale.
  6. if [ -n "${PAPR_BRANCH:-}" ]; then
  7. target_branch=$PAPR_BRANCH
  8. else
  9. target_branch=$PAPR_PULL_TARGET_BRANCH
  10. fi
  11. # this is a bit wasteful, though there's no easy way to say "only clone up to
  12. # the first tag in the branch" -- ideally, PAPR could help with caching here
  13. git clone --branch $target_branch --single-branch https://github.com/openshift/origin
  14. export OPENSHIFT_IMAGE_TAG=$(git -C origin describe --abbrev=0)
  15. echo "Targeting OpenShift Origin $OPENSHIFT_IMAGE_TAG"
  16. pip install -r requirements.txt
  17. # ping the nodes to check they're responding and register their ostree versions
  18. ansible -vvv -i .papr.inventory nodes -a 'rpm-ostree status'
  19. upload_journals() {
  20. mkdir journals
  21. for node in master node1 node2; do
  22. ssh ocp-$node 'journalctl --no-pager || true' > journals/ocp-$node.log
  23. done
  24. }
  25. trap upload_journals ERR
  26. # run the actual installer
  27. # FIXME: override openshift_image_tag defined in the inventory until
  28. # https://github.com/openshift/openshift-ansible/issues/4478 is fixed.
  29. ansible-playbook -vvv -i .papr.inventory playbooks/deploy_cluster.yml -e "openshift_image_tag=$OPENSHIFT_IMAGE_TAG"
  30. ### DISABLING TESTS FOR NOW, SEE:
  31. ### https://github.com/openshift/openshift-ansible/pull/6132
  32. ### # run a small subset of origin conformance tests to sanity
  33. ### # check the cluster NB: we run it on the master since we may
  34. ### # be in a different OSP network
  35. ### ssh ocp-master docker run --rm --net=host --privileged \
  36. ### -v /etc/origin/master/admin.kubeconfig:/config \
  37. ### registry.fedoraproject.org/fedora:27 sh -c \
  38. ### '"dnf install -y origin-tests && \
  39. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  40. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'