oc_apply.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - oc_obj:
  3. kind: "{{ file_content.kind }}"
  4. name: "{{ file_content.metadata.name }}"
  5. state: present
  6. namespace: "{{ namespace }}"
  7. files:
  8. - "{{ file_name }}"
  9. when: file_content.kind not in ["Service", "Route"]
  10. ## still need to do this for services until the template logic is replaced by oc_*
  11. - block:
  12. - name: Checking generation of {{file_content.kind}} {{file_content.metadata.name}}
  13. command: >
  14. {{ openshift.common.client_binary }}
  15. --config={{ kubeconfig }}
  16. get {{file_content.kind}} {{file_content.metadata.name}}
  17. -o jsonpath='{.metadata.resourceVersion}'
  18. -n {{namespace}}
  19. register: generation_init
  20. failed_when: "'not found' not in generation_init.stderr and generation_init.stdout == ''"
  21. changed_when: no
  22. - name: Applying {{file_name}}
  23. command: >
  24. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  25. apply -f {{ file_name }}
  26. -n {{ namespace }}
  27. register: generation_apply
  28. failed_when: "'error' in generation_apply.stderr"
  29. changed_when: no
  30. - name: Removing previous {{file_name}}
  31. command: >
  32. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  33. delete -f {{ file_name }}
  34. -n {{ namespace }}
  35. register: generation_delete
  36. failed_when: "'error' in generation_delete.stderr"
  37. changed_when: generation_delete.rc == 0
  38. when: "'field is immutable' in generation_apply.stderr"
  39. - name: Recreating {{file_name}}
  40. command: >
  41. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  42. apply -f {{ file_name }}
  43. -n {{ namespace }}
  44. register: generation_apply
  45. failed_when: "'error' in generation_apply.stderr"
  46. changed_when: generation_apply.rc == 0
  47. when: "'field is immutable' in generation_apply.stderr"
  48. when: file_content.kind in ["Service", "Route"]