oc_apply.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - name: Checking generation of {{file_content.kind}} {{file_content.metadata.name}}
  3. command: >
  4. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  5. get {{file_content.kind}} {{file_content.metadata.name}}
  6. -o jsonpath='{.metadata.resourceVersion}'
  7. -n {{namespace}}
  8. register: generation_init
  9. failed_when: "'not found' not in generation_init.stderr and generation_init.stdout == ''"
  10. changed_when: no
  11. - name: Applying {{file_name}}
  12. command: >
  13. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  14. apply -f {{ file_name }}
  15. -n {{ namespace }}
  16. register: generation_apply
  17. failed_when: "'error' in generation_apply.stderr"
  18. changed_when: no
  19. - name: Determine change status of {{file_content.kind}} {{file_content.metadata.name}}
  20. command: >
  21. {{ openshift.common.client_binary }} --config={{ kubeconfig }}
  22. get {{file_content.kind}} {{file_content.metadata.name}}
  23. -o jsonpath='{.metadata.resourceVersion}'
  24. -n {{namespace}}
  25. register: generation_changed
  26. failed_when: "'not found' not in generation_changed.stderr and generation_changed.stdout == ''"
  27. changed_when: generation_changed.stdout | default (0) | int > generation_init.stdout | default(0) | int
  28. when:
  29. - "'field is immutable' not in generation_apply.stderr"
  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: generation_apply.rc != 0
  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: generation_apply.rc != 0