.papr.sh 1.8 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. 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. pip install -r requirements.txt
  18. # ping the nodes to check they're responding and register their ostree versions
  19. ansible -vvv -i .papr.inventory nodes -a 'rpm-ostree status'
  20. upload_journals() {
  21. mkdir journals
  22. for node in master node1 node2; do
  23. ssh ocp-$node 'journalctl --no-pager || true' > journals/ocp-$node.log
  24. done
  25. }
  26. trap upload_journals ERR
  27. # make all nodes ready for bootstrapping
  28. ansible-playbook -vvv -i .papr.inventory playbooks/openshift-node/private/image_prep.yml
  29. # run the actual installer
  30. ansible-playbook -vvv -i .papr.inventory playbooks/deploy_cluster.yml -e "openshift_release=${target_branch}"
  31. ### DISABLING TESTS FOR NOW, SEE:
  32. ### https://github.com/openshift/openshift-ansible/pull/6132
  33. ### # run a small subset of origin conformance tests to sanity
  34. ### # check the cluster NB: we run it on the master since we may
  35. ### # be in a different OSP network
  36. ### ssh ocp-master docker run --rm --net=host --privileged \
  37. ### -v /etc/origin/master/admin.kubeconfig:/config \
  38. ### registry.fedoraproject.org/fedora:27 sh -c \
  39. ### '"dnf install -y origin-tests && \
  40. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  41. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'