.papr.sh 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. # Human-readable output
  28. export ANSIBLE_STDOUT_CALLBACK=debug
  29. # ping the nodes to check they're responding and register their ostree versions
  30. ansible -vvv -i $PAPR_INVENTORY nodes -a 'rpm-ostree status'
  31. upload_journals() {
  32. mkdir journals
  33. ansible -vvv -i $PAPR_INVENTORY all \
  34. -m shell -a 'journalctl --no-pager > /tmp/journal'
  35. ansible -vvv -i $PAPR_INVENTORY all \
  36. -m fetch -a "src=/tmp/journal dest=journals/{{ inventory_hostname }}.log flat=yes"
  37. # Split large files into parts, extracting a basename and preserving extention
  38. find . -iname "*.log" -execdir sh -c 'split -b 4m --numeric-suffixes --additional-suffix=.log {} $(basename {} .log)_' \; -execdir rm -rf {} \;
  39. }
  40. trap upload_journals ERR
  41. # run the prerequisites play
  42. ansible-playbook -vvv -i $PAPR_INVENTORY playbooks/prerequisites.yml
  43. # run the actual installer
  44. ansible-playbook -vvv -i $PAPR_INVENTORY playbooks/deploy_cluster.yml
  45. # Run upgrade playbook (to a minor version)
  46. if [[ "${PAPR_RUN_UPDATE}" != "0" ]]; then
  47. update_version="$(echo $target_branch | sed 's/\./_/')"
  48. ansible-playbook -vvv -i $PAPR_INVENTORY playbooks/byo/openshift-cluster/upgrades/v${update_version}/upgrade.yml
  49. fi
  50. upload_journals
  51. ### DISABLING TESTS FOR NOW, SEE:
  52. ### https://github.com/openshift/openshift-ansible/pull/6132
  53. ### # run a small subset of origin conformance tests to sanity
  54. ### # check the cluster NB: we run it on the master since we may
  55. ### # be in a different OSP network
  56. ### ssh ocp-master docker run --rm --net=host --privileged \
  57. ### -v /etc/origin/master/admin.kubeconfig:/config \
  58. ### registry.fedoraproject.org/fedora:27 sh -c \
  59. ### '"dnf install -y origin-tests && \
  60. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  61. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'