.papr.sh 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. PAPR_INVENTORY=${PAPR_INVENTORY:-.papr.inventory}
  20. PAPR_RUN_UPDATE=${PAPR_RUN_UPDATE:-0}
  21. # ping the nodes to check they're responding and register their ostree versions
  22. ansible -vvv -i $PAPR_INVENTORY nodes -a 'rpm-ostree status'
  23. upload_journals() {
  24. mkdir journals
  25. ansible -vvv -i $PAPR_INVENTORY all \
  26. -m shell -a 'journalctl --no-pager > /tmp/journal'
  27. ansible -vvv -i $PAPR_INVENTORY all \
  28. -m fetch -a "src=/tmp/journal dest=journals/{{ inventory_hostname }}.log flat=yes"
  29. }
  30. trap upload_journals ERR
  31. # Store ansible log separately
  32. export ANSIBLE_LOG_PATH=ansible.log
  33. # run the prerequisites play
  34. ansible-playbook -v -i $PAPR_INVENTORY playbooks/prerequisites.yml
  35. # run the actual installer
  36. ansible-playbook -v -i $PAPR_INVENTORY playbooks/deploy_cluster.yml
  37. # Run upgrade playbook (to a minor version)
  38. if [[ "${PAPR_RUN_UPDATE:-0}" != "0" ]]; then
  39. update_version="$(echo $target_branch | sed 's/\./_/')"
  40. ansible-playbook -v -i $PAPR_INVENTORY playbooks/byo/openshift-cluster/upgrades/v${update_version}/upgrade.yml
  41. fi
  42. ### DISABLING TESTS FOR NOW, SEE:
  43. ### https://github.com/openshift/openshift-ansible/pull/6132
  44. ### # run a small subset of origin conformance tests to sanity
  45. ### # check the cluster NB: we run it on the master since we may
  46. ### # be in a different OSP network
  47. ### ssh ocp-master docker run --rm --net=host --privileged \
  48. ### -v /etc/origin/master/admin.kubeconfig:/config \
  49. ### registry.fedoraproject.org/fedora:27 sh -c \
  50. ### '"dnf install -y origin-tests && \
  51. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  52. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'