config.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---
  2. - name: Logging Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Logging install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_logging:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Update vm.max_map_count for ES 5.x
  14. hosts: all
  15. gather_facts: false
  16. tasks:
  17. - when:
  18. - openshift_logging_es5_techpreview | default(false) | bool
  19. - openshift_deployment_type in ['origin']
  20. block:
  21. - name: Checking vm max_map_count value
  22. command:
  23. cat /proc/sys/vm/max_map_count
  24. register: _vm_max_map_count
  25. - stat:
  26. path: /etc/sysctl.d/99-elasticsearch.conf
  27. register: _99_es_conf
  28. - name: Check for current value of vm.max_map_count in 99-elasticsearch.conf
  29. command: >
  30. sed /etc/sysctl.d/99-elasticsearch.conf -e 's/vm.max_map_count=\(.*\)/\1/'
  31. register: _curr_vm_max_map_count
  32. when: _99_es_conf.stat.exists
  33. - name: Updating vm.max_map_count value
  34. sysctl:
  35. name: vm.max_map_count
  36. value: 262144
  37. sysctl_file: "/etc/sysctl.d/99-elasticsearch.conf"
  38. reload: yes
  39. when:
  40. - _vm_max_map_count.stdout | default(0) | int < 262144 | int or _curr_vm_max_map_count.stdout | default(0) | int < 262144
  41. - name: OpenShift Aggregated Logging
  42. hosts: oo_first_master
  43. roles:
  44. - openshift_logging
  45. - name: Logging Install Checkpoint End
  46. hosts: all
  47. gather_facts: false
  48. tasks:
  49. - name: Set Logging install 'Complete'
  50. run_once: true
  51. set_stats:
  52. data:
  53. installer_phase_logging:
  54. status: "Complete"
  55. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"