validator.yml 991 B

12345678910111213141516171819202122232425
  1. ---
  2. ###############################################################################
  3. # Pre upgrade checks for known data problems, if this playbook fails you should
  4. # contact support. If you're not supported contact users@lists.openshift.com
  5. ###############################################################################
  6. - name: Verify 3.7 specific upgrade checks
  7. hosts: oo_first_master
  8. roles:
  9. - { role: lib_openshift }
  10. tasks:
  11. - name: Check for invalid namespaces and SDN errors
  12. oc_objectvalidator:
  13. # DO NOT DISABLE THIS, YOUR UPGRADE WILL FAIL IF YOU DO SO
  14. - name: Confirm OpenShift authorization objects are in sync
  15. command: >
  16. {{ openshift_client_binary }} adm migrate authorization
  17. when:
  18. - openshift_currently_installed_version is version_compare('3.7','<')
  19. - openshift_upgrade_pre_authorization_migration_enabled | default(true) | bool
  20. changed_when: false
  21. register: l_oc_result
  22. until: l_oc_result.rc == 0
  23. retries: 2
  24. delay: 15