config.yml 1.8 KB

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