create_config.yml 3.8 KB

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