.papr.sh 2.3 KB

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