glusterfs_upgrade.yml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. - import_tasks: heketi_get_key.yml
  3. when: glusterfs_heketi_admin_key is undefined
  4. - name: Delete heketi resources
  5. oc_obj:
  6. namespace: "{{ glusterfs_namespace }}"
  7. kind: "{{ item.kind }}"
  8. name: "{{ item.name | default(omit) }}"
  9. selector: "{{ item.selector | default(omit) }}"
  10. state: absent
  11. with_items:
  12. - kind: "template,svc,route,dc,secret,sa"
  13. selector: "heketi"
  14. - kind: "template,svc,route,dc,secret,sa"
  15. selector: "deploy-heketi"
  16. failed_when: False
  17. - name: Wait for heketi pod to delete
  18. oc_obj:
  19. namespace: "{{ glusterfs_namespace }}"
  20. kind: pod
  21. state: list
  22. selector: "heketi"
  23. register: heketi_pod_wait
  24. until:
  25. - "heketi_pod_wait.results.results[0]['items'] | count == 0"
  26. delay: 10
  27. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  28. - name: Delete other glusterfs resources
  29. oc_obj:
  30. namespace: "{{ glusterfs_namespace }}"
  31. kind: "{{ item.kind }}"
  32. name: "{{ item.name | default(omit) }}"
  33. selector: "{{ item.selector | default(omit) }}"
  34. state: absent
  35. with_items:
  36. - kind: "template,svc,route,clusterrole,sa,dc"
  37. selector: "glusterfs"
  38. - kind: "clusterrolebinding"
  39. name: "glusterblock-provisioner"
  40. - kind: "clusterrolebinding"
  41. name: "glusterblock-{{ glusterfs_name }}-provisioner"
  42. failed_when: False
  43. # oc delete --cascade=false seems broken for DaemonSets.
  44. # Using curl to talk to the API directly.
  45. - name: Delete glusterfs daemonset w/o cascade
  46. shell: "curl -k -X DELETE https://localhost:8443/apis/extensions/v1beta1/namespaces/glusterfs/daemonsets/glusterfs-storage -d '{\"kind\":\"DeleteOptions\",\"apiVersion\":\"v1\",\"propagationPolicy\":\"Orphan\"}' -H \"Accept: application/json\" -H \"Content-Type: application/json\" --cert {{ openshift.common.config_base }}/master/admin.crt --key {{ openshift.common.config_base }}//master/admin.key"
  47. #shell: "{{ first_master_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig delete ds --namespace={{ glusterfs_namespace }} --cascade=false --selector=glusterfs"
  48. delegate_to: "{{ groups.oo_first_master.0 }}"
  49. failed_when: False
  50. - name: Get old-style GlusterFS pods
  51. oc_obj:
  52. namespace: "{{ glusterfs_namespace }}"
  53. kind: pod
  54. state: list
  55. selector: "glusterfs=pod"
  56. register: glusterfs_pods
  57. - name: Relabel old-style GlusterFS pods
  58. oc_label:
  59. name: "{{ item.['metadata']['name'] }}"
  60. kind: node
  61. state: add
  62. labels: "[ { 'key': 'glusterfs', 'value': '{{ glusterfs_name }}'-pod } ]"
  63. with_items: "{{ glusterfs_pods.results.results[0]['items'] | default([]) }}"
  64. - import_tasks: glusterfs_common.yml