migrate_cassandra_pvcs.yaml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. ---
  2. - name: Check to see if PVC exists in an old namespace
  3. oc_obj:
  4. state: list
  5. kind: pvc
  6. name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  7. namespace: "{{openshift_metrics_old_project}}"
  8. register: openshift_metrics_cassandra_old_pvc
  9. - name: Set PVC vars
  10. set_fact:
  11. pvc_name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  12. pvc_exists: "{{ openshift_metrics_cassandra_old_pvc.results.results[0] | length > 0 }}"
  13. - name: Set fact if we need to move to another namespace
  14. set_fact:
  15. openshift_metrics_migrate_namespace: "{{ pvc_exists and openshift_metrics_cassandra_old_pvc.results.results[0]['metadata']['name'] == pvc_name }}"
  16. - name: Migrate cassandra PV and PVC to another namespace
  17. when: openshift_metrics_migrate_namespace
  18. block:
  19. - name: Get PV name attached to cassandra PVC
  20. set_fact:
  21. openshift_metrics_pv_name: "{{ openshift_metrics_cassandra_old_pvc['results']['results'][0]['spec']['volumeName'] }}"
  22. - name: Get PV object attached to cassandra PVC.
  23. oc_obj:
  24. state: list
  25. kind: pv
  26. name: "{{ openshift_metrics_pv_name }}"
  27. namespace: "{{ openshift_metrics_old_project }}"
  28. register: metrics_pv
  29. - name: Get PV persistent policy attached to cassandra PVC.
  30. set_fact:
  31. openshift_metrics_cassandra_pvc_persistent_policy: "{{ metrics_pv['results']['results'][0]['spec']['persistentVolumeReclaimPolicy'] }}"
  32. - name: Set PV persistent volume reclaim policy to Retain
  33. command: >
  34. {{ openshift_client_binary }} -n {{ openshift_metrics_old_project }}
  35. --config={{ mktemp.stdout }}/admin.kubeconfig
  36. patch pv {{ openshift_metrics_pv_name }} -p '{"spec": {"persistentVolumeReclaimPolicy": "Retain"}}'
  37. - name: Generate persistent volume claim templates for namespace {{ openshift_metrics_project }}
  38. template:
  39. src: pvc.j2
  40. dest: "{{ mktemp.stdout }}/templates/hawkular-cassandra-pvc{{ metrics_pvc_index }}.yaml"
  41. vars:
  42. obj_name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  43. labels:
  44. metrics-infra: hawkular-cassandra
  45. access_modes: "{{ openshift_metrics_cassandra_pvc_access | list }}"
  46. size: "{{ openshift_metrics_cassandra_pvc_size }}"
  47. pv_selector: "{{ openshift_metrics_cassandra_pv_selector }}"
  48. storage_class_name: "{{ openshift_metrics_cassanda_pvc_storage_class_name | default('', true) }}"
  49. volume_name: "{{ openshift_metrics_pv_name }}"
  50. - name: Create PVC persistent volume claim {{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }} for {{ openshift_metrics_project }}
  51. oc_obj:
  52. state: present
  53. name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  54. namespace: "{{ openshift_metrics_project }}"
  55. kind: persistentvolumeclaim
  56. files:
  57. - "{{ mktemp.stdout }}/templates/hawkular-cassandra-pvc{{ metrics_pvc_index }}.yaml"
  58. delete_after: true
  59. - name: Wait for Cassandra persistent volume claim to be created on {{ openshift_metrics_project }}
  60. oc_obj:
  61. state: list
  62. kind: pvc
  63. name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  64. namespace: "{{openshift_metrics_project}}"
  65. register: openshift_metrics_new_pvc
  66. until: openshift_metrics_new_pvc.results.results[0] | length > 0
  67. - set_fact:
  68. openshift_metrics_pvc_uuid: "{{openshift_metrics_new_pvc['results']['results'][0]['metadata']['uid']}}"
  69. - name: Attach PV to the new PVC
  70. command: >
  71. {{ openshift_client_binary }} -n {{ openshift_metrics_project }}
  72. --config={{ mktemp.stdout }}/admin.kubeconfig
  73. patch pv {{ openshift_metrics_pv_name }} -p '{"spec": {"claimRef": { "namespace": "{{ openshift_metrics_project }}", "name": "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}", "uid": "{{ openshift_metrics_pvc_uuid }}" }}}'
  74. - name: Wait until the PV is attached to new PVC
  75. oc_obj:
  76. state: list
  77. kind: pvc
  78. name: "{{ openshift_metrics_cassandra_pvc_prefix }}-{{ metrics_pvc_index }}"
  79. namespace: "{{openshift_metrics_project}}"
  80. register: openshift_metrics_new_pvc
  81. until: openshift_metrics_new_pvc.results.results[0].spec.volumeName == openshift_metrics_pv_name
  82. - name: Restore persistent volume reclaim policy
  83. command: >
  84. {{ openshift_client_binary }} -n {{ openshift_metrics_old_project }}
  85. --config={{ mktemp.stdout }}/admin.kubeconfig
  86. patch pv {{ openshift_metrics_pv_name }} -p '{"spec": {"persistentVolumeReclaimPolicy": "{{openshift_metrics_cassandra_pvc_persistent_policy}}"}}'