.papr.sh 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. if [[ "${target_branch}" =~ ^release- ]]; then
  12. target_branch="${target_branch/release-/}"
  13. else
  14. dnf install -y sed
  15. target_branch="$( git describe | sed 's/^openshift-ansible-\([0-9]*\.[0-9]*\)\.[0-9]*-.*/\1/' )"
  16. fi
  17. export target_branch
  18. pip install -r requirements.txt
  19. # ping the nodes to check they're responding and register their ostree versions
  20. ansible -vvv -i .papr.inventory nodes -a 'rpm-ostree status'
  21. upload_journals() {
  22. mkdir journals
  23. for node in master node1 node2; do
  24. ssh ocp-$node 'journalctl --no-pager || true' > journals/ocp-$node.log
  25. done
  26. }
  27. trap upload_journals ERR
  28. # run the actual installer
  29. ansible-playbook -v -i .papr.inventory playbooks/deploy_cluster.yml
  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\""'