main.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ---
  2. - name: create the namespace
  3. oc_project:
  4. state: present
  5. name: "{{ openshift_daemonset_config_namespace }}"
  6. - name: add a sa
  7. oc_serviceaccount:
  8. name: "{{ openshift_daemonset_config_sa_name }}"
  9. namespace: "{{ openshift_daemonset_config_namespace }}"
  10. - name: add sa to privileged scc
  11. oc_adm_policy_user:
  12. namespace: "{{ openshift_daemonset_config_namespace }}"
  13. resource_kind: scc
  14. resource_name: privileged
  15. state: present
  16. user: "system:serviceaccount:{{ openshift_daemonset_config_namespace }}:{{ openshift_daemonset_config_sa_name }}"
  17. - name: copy template to disk
  18. template:
  19. dest: "/tmp/{{ item.name }}"
  20. src: "{{ item.name }}.j2"
  21. with_items:
  22. - name: daemonset.yml
  23. - name: create files from contents
  24. copy:
  25. content: "{{ item.contents }}"
  26. dest: "{{ item.path }}"
  27. with_items: "{{ openshift_daemonset_config_configmap_contents_to_files }}"
  28. no_log: true
  29. - name: copy files to disk
  30. copy:
  31. src: "{{ item.key }}"
  32. dest: "{{ item.value }}"
  33. with_dict: "{{ openshift_daemonset_config_configmap_files }}"
  34. no_log: true
  35. - name: lay down secrets
  36. oc_secret:
  37. state: present
  38. name: "{{ openshift_daemonset_config_secret_name }}"
  39. namespace: "{{ openshift_daemonset_config_namespace }}"
  40. delete_after: true
  41. contents: "{{ openshift_daemonset_config_secrets }}"
  42. when:
  43. - openshift_daemonset_config_secrets != {}
  44. register: secout
  45. - name: create the configmap
  46. oc_configmap:
  47. state: present
  48. name: "{{ openshift_daemonset_config_configmap_name }}"
  49. namespace: "{{ openshift_daemonset_config_namespace }}"
  50. from_literal: "{{ openshift_daemonset_config_configmap_literals }}"
  51. from_file: "{{ openshift_daemonset_config_configmap_contents_to_files | odc_join_files_from_dict(openshift_daemonset_config_configmap_files) }}"
  52. register: cmout
  53. - name: deploy daemonset
  54. oc_obj:
  55. state: present
  56. namespace: "{{ openshift_daemonset_config_namespace }}" # openshift-node??
  57. name: "{{ openshift_daemonset_config_daemonset_name }}"
  58. kind: daemonset
  59. files:
  60. - /tmp/daemonset.yml
  61. force: "{{ True if cmout.changed or secout.changed else False | bool }}"
  62. - name: clean up files generated from contents
  63. file:
  64. state: absent
  65. path: "{{ item.path }}"
  66. with_items: "{{ openshift_daemonset_config_configmap_contents_to_files }}"
  67. no_log: true
  68. - name: clean up copied files
  69. file:
  70. state: absent
  71. path: "{{ item.value }}"
  72. with_dict: "{{ openshift_daemonset_config_configmap_files }}"
  73. no_log: true
  74. - name: clean up daemonset template
  75. file:
  76. state: absent
  77. path: /tmp/daemonset.yml