create_config.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ---
  2. # This file is looped over, must use include_tasks, not import_tasks
  3. - include_tasks: fetch_config.yml
  4. - name: create a temp dir for this work
  5. command: mktemp -d /tmp/openshift_node_config-XXXXXX
  6. register: mktempout
  7. run_once: true
  8. - name: create node config template
  9. template:
  10. src: node-config.yaml.j2
  11. dest: "{{ mktempout.stdout }}/node-config.yaml"
  12. when:
  13. - configout.results.results.0 == {}
  14. run_once: true
  15. - name: lay down the config from the existing configmap
  16. copy:
  17. content: "{{ configout.results.results.0.data['node-config.yaml'] }}"
  18. dest: "{{ mktempout.stdout }}/node-config.yaml"
  19. when:
  20. - configout.results.results.0 != {}
  21. run_once: true
  22. - name: "specialize the generated configs for {{ l_openshift_node_group_name }}"
  23. yedit:
  24. content:
  25. src: "{{ mktempout.stdout }}/node-config.yaml"
  26. edits: "{{ l_openshift_node_group_all_edits }}"
  27. register: yeditout
  28. run_once: true
  29. vars:
  30. l_openshift_node_group_all_edits: "{{ l_openshift_node_group_edits | union(openshift_node_labels_edit) }}"
  31. when: l_openshift_node_group_all_edits != []
  32. - name: show the yeditout debug var
  33. debug:
  34. var: yeditout
  35. run_once: true
  36. - name: create volume config template
  37. template:
  38. src: volume-config.yaml.j2
  39. dest: "{{ mktempout.stdout }}/volume-config.yaml"
  40. when:
  41. - "'data' not in configout['results']['results'][0] or 'volume-config.yaml' not in configout['results']['results'][0]['data']"
  42. - l_openshift_node_group_name != ""
  43. - openshift_node_local_quota_per_fsgroup is defined
  44. - openshift_node_local_quota_per_fsgroup != ""
  45. run_once: true
  46. - name: lay down the volume config from the existing configmap
  47. copy:
  48. content: "{{ configout.results.results.0.data['volume-config.yaml'] }}"
  49. dest: "{{ mktempout.stdout }}/volume-config.yaml"
  50. when:
  51. - "'data' in configout['results']['results'][0]"
  52. - "'volume-config.yaml' in configout['results']['results'][0]['data']"
  53. - l_openshift_node_group_name != ""
  54. - openshift_node_local_quota_per_fsgroup is defined
  55. - openshift_node_local_quota_per_fsgroup != ""
  56. run_once: true
  57. - name: "specialize the volume config for {{ l_openshift_node_group_name }}"
  58. yedit:
  59. content:
  60. src: "{{ mktempout.stdout }}/volume-config.yaml"
  61. key: localQuota.perFSGroup
  62. value: "{{ openshift_node_local_quota_per_fsgroup }}"
  63. register: volume_yeditout
  64. when:
  65. - openshift_node_local_quota_per_fsgroup is defined
  66. - openshift_node_local_quota_per_fsgroup != ""
  67. run_once: true
  68. - name: show the volume_yeditout debug var
  69. debug:
  70. var: volume_yeditout
  71. run_once: true
  72. - name: create node-config.yaml configmap
  73. oc_configmap:
  74. name: "{{ l_openshift_node_group_name }}"
  75. namespace: "{{ openshift_node_group_namespace }}"
  76. from_file:
  77. node-config.yaml: "{{ mktempout.stdout }}/node-config.yaml"
  78. when:
  79. - openshift_node_local_quota_per_fsgroup is undefined or openshift_node_local_quota_per_fsgroup == ""
  80. run_once: true
  81. - name: create node-config.yaml and volume-config.yaml configmap
  82. oc_configmap:
  83. name: "{{ l_openshift_node_group_name }}"
  84. namespace: "{{ openshift_node_group_namespace }}"
  85. from_file:
  86. node-config.yaml: "{{ mktempout.stdout }}/node-config.yaml"
  87. volume-config.yaml: "{{ mktempout.stdout }}/volume-config.yaml"
  88. when:
  89. - openshift_node_local_quota_per_fsgroup is defined and openshift_node_local_quota_per_fsgroup != ""
  90. run_once: true
  91. - name: remove templated files
  92. file:
  93. dest: "{{ mktempout.stdout }}/"
  94. state: absent
  95. run_once: true