.papr.sh 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. PAPR_INVENTORY=${PAPR_INVENTORY:-.papr.inventory}
  25. PAPR_RUN_UPDATE=${PAPR_RUN_UPDATE:-0}
  26. PAPR_UPGRADE_FROM=${PAPR_UPGRADE_FROM:-0}
  27. PAPR_EXTRAVARS=""
  28. # Replace current branch with PAPR_UPGRADE_FROM
  29. if [[ "${PAPR_UPGRADE_FROM}" != "0" ]]; then
  30. git branch new-code
  31. git checkout release-${PAPR_UPGRADE_FROM}
  32. git clean -fdx
  33. PAPR_EXTRAVARS="-e openshift_release=${PAPR_UPGRADE_FROM}"
  34. fi
  35. pip install -r requirements.txt
  36. # Human-readable output
  37. export ANSIBLE_STDOUT_CALLBACK=debug
  38. # ping the nodes to check they're responding and register their ostree versions
  39. ansible -vv -i $PAPR_INVENTORY nodes -a 'rpm-ostree status'
  40. # Make sure hostname -f returns correct node name
  41. ansible -vv -i $PAPR_INVENTORY nodes -m setup
  42. ansible -vv -i $PAPR_INVENTORY nodes -a "hostnamectl set-hostname {{ ansible_default_ipv4.address }}"
  43. ansible -vv -i $PAPR_INVENTORY nodes -m setup -a "gather_subset=min"
  44. upload_journals() {
  45. mkdir journals
  46. ansible -vvv -i $PAPR_INVENTORY all \
  47. -m shell -a 'journalctl --no-pager > /tmp/journal'
  48. ansible -vvv -i $PAPR_INVENTORY all \
  49. -m fetch -a "src=/tmp/journal dest=journals/{{ inventory_hostname }}.log flat=yes"
  50. # Split large files into parts, extracting a basename and preserving extention
  51. find . -iname "*.log" -execdir sh -c 'split -b 4m --numeric-suffixes --additional-suffix=.log {} $(basename {} .log)_' \; -execdir rm -rf {} \;
  52. }
  53. trap upload_journals ERR
  54. # run the prerequisites play
  55. ansible-playbook -vvv -i $PAPR_INVENTORY $PAPR_EXTRAVARS playbooks/prerequisites.yml
  56. # run the actual installer
  57. ansible-playbook -vvv -i $PAPR_INVENTORY $PAPR_EXTRAVARS playbooks/deploy_cluster.yml
  58. # Restore the branch if needed
  59. if [[ "${PAPR_UPGRADE_FROM}" != "0" ]]; then
  60. git checkout new-code
  61. git clean -fdx
  62. fi
  63. # Run upgrade playbook
  64. if [[ "${PAPR_RUN_UPDATE}" != "0" ]]; then
  65. update_version="$(echo $target_branch | sed 's/\./_/')"
  66. # Create basic node-group configmaps for upgrade
  67. ansible-playbook -vvv -i $PAPR_INVENTORY $PAPR_EXTRAVARS playbooks/openshift-master/openshift_node_group.yml
  68. ansible-playbook -vvv -i $PAPR_INVENTORY playbooks/byo/openshift-cluster/upgrades/v${update_version}/upgrade.yml
  69. fi
  70. upload_journals
  71. ### DISABLING TESTS FOR NOW, SEE:
  72. ### https://github.com/openshift/openshift-ansible/pull/6132
  73. ### # run a small subset of origin conformance tests to sanity
  74. ### # check the cluster NB: we run it on the master since we may
  75. ### # be in a different OSP network
  76. ### ssh ocp-master docker run --rm --net=host --privileged \
  77. ### -v /etc/origin/master/admin.kubeconfig:/config \
  78. ### registry.fedoraproject.org/fedora:27 sh -c \
  79. ### '"dnf install -y origin-tests && \
  80. ### KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 \
  81. ### --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""'