install.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - name: Create a temporary directory for doing work in the target host
  3. command: mktemp -d -p '' openshift-autoheal-XXXXXX
  4. register: tmpdir
  5. changed_when: False
  6. - name: Copy the template to the temporary directory
  7. copy:
  8. src: template.yml
  9. dest: "{{ tmpdir.stdout }}"
  10. - name: Generate the proxy secret
  11. command: openssl rand -base64 32
  12. register: secret
  13. changed_when: False
  14. - name: Create the namespace
  15. oc_obj:
  16. kind: Namespace
  17. name: openshift-autoheal
  18. content:
  19. path: "{{ tmpdir.stdout }}/namespace.yml"
  20. data:
  21. apiVersion: v1
  22. kind: Namespace
  23. metadata:
  24. name: openshift-autoheal
  25. - name: Create the template
  26. oc_obj:
  27. namespace: openshift-autoheal
  28. name: autoheal-template
  29. kind: Template
  30. files:
  31. - "{{ tmpdir.stdout }}/template.yml"
  32. - name: Apply the template
  33. oc_process:
  34. namespace: openshift-autoheal
  35. template_name: autoheal-template
  36. params:
  37. IMAGE: "{{ openshift_autoheal_image }}"
  38. CONFIG: "{{ openshift_autoheal_config | b64encode }}"
  39. SECRET: "{{ secret.stdout }}"
  40. - name: Delete the temporary directory
  41. file:
  42. name: "{{ tmpdir.stdout }}"
  43. state: absent
  44. changed_when: False