.papr.sh 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. target_branch_in=${target_branch}
  12. if [[ "${target_branch}" =~ ^release- ]]; then
  13. target_branch="${target_branch/release-/}"
  14. else
  15. dnf install -y sed
  16. target_branch="$( git describe | sed 's/^openshift-ansible-\([0-9]*\.[0-9]*\)\.[0-9]*-.*/\1/' )"
  17. fi
  18. export target_branch
  19. # Need to define some git variables for rebase.
  20. git config --global user.email "ci@openshift.org"
  21. git config --global user.name "OpenShift Atomic CI"
  22. # Rebase existing branch on the latest code locally, as PAPR running doesn't do merges
  23. git fetch origin ${target_branch_in} && git rebase origin/${target_branch_in}
  24. pip install -r requirements.txt
  25. PAPR_INVENTORY=${PAPR_INVENTORY:-.papr.inventory}
  26. PAPR_RUN_UPDATE=${PAPR_RUN_UPDATE:-0}
  27. # ping the nodes to check they're responding and register their ostree versions
  28. ansible -vvv -i $PAPR_INVENTORY nodes -a 'rpm-ostree status'
  29. upload_journals() {
  30. mkdir journals
  31. ansible -vvv -i $PAPR_INVENTORY all \
  32. -m shell -a 'journalctl --no-pager > /tmp/journal'
  33. ansible -vvv -i $PAPR_INVENTORY all \
  34. -m fetch -a "src=/tmp/journal dest=journals/{{ inventory_hostname }}.log flat=yes"
  35. }
  36. trap upload_journals ERR
  37. # Store ansible log separately
  38. export ANSIBLE_LOG_PATH=ansible.log
  39. # run the prerequisites play
  40. ansible-playbook -v -i $PAPR_INVENTORY playbooks/prerequisites.yml
  41. # run the actual installer
  42. ansible-playbook -v -i $PAPR_INVENTORY playbooks/deploy_cluster.yml
  43. # Run upgrade playbook (to a minor version)
  44. if [[ "${PAPR_RUN_UPDATE:-0}" != "0" ]]; then
  45. update_version="$(echo $target_branch | sed 's/\./_/')"
  46. ansible-playbook -v -i $PAPR_INVENTORY playbooks/byo/openshift-cluster/upgrades/v${update_version}/upgrade.yml
  47. fi
  48. ### DISABLING TESTS FOR NOW, SEE:
  49. ### https://github.com/openshift/openshift-ansible/pull/6132
  50. ### # run a small subset of origin conformance tests to sanity
  51. ### # check the cluster NB: we run it on the master since we may
  52. ### # be in a different OSP network
  53. ### ssh ocp-master docker run --rm --net=host --privileged \
  54. ### -v /etc/origin/master/admin.kubeconfig:/config \
  55. ### registry.fedoraproject.org/fedora:27 sh -c \
  56. ### '"dnf install -y origin-tests && \
  57. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  58. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'