config.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. # Normally we only collect this information for our master group entries
  16. # we want to also collect this for nodes so we can match group entries to nodes
  17. - name: Get common IP facts when necessary
  18. hosts: oo_nodes_to_config:!oo_masters
  19. gather_facts: false
  20. tasks:
  21. - name: Gather Cluster facts
  22. openshift_facts:
  23. role: common
  24. local_facts:
  25. ip: "{{ openshift_ip | default(None) }}"
  26. - name: Verify and collect ES hosts
  27. hosts: oo_first_master
  28. gather_facts: false
  29. tasks:
  30. - when: openshift_logging_install_logging | default(false) | bool
  31. block:
  32. - assert:
  33. that: openshift_logging_es_nodeselector is defined
  34. msg: "A node selector is required for Elasticsearch pods, please specify one with openshift_logging_es_nodeselector"
  35. - name: Ensure that ElasticSearch has nodes to run on
  36. import_role:
  37. name: openshift_control_plane
  38. tasks_from: ensure_nodes_matching_selector.yml
  39. vars:
  40. openshift_master_ensure_nodes_selector: "{{ openshift_logging_es_nodeselector | map_to_pairs }}"
  41. openshift_master_ensure_nodes_service: Elasticsearch
  42. - command: >
  43. {{ openshift_client_binary }}
  44. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  45. get nodes
  46. -l {{ openshift_logging_es_nodeselector | map_to_pairs }}
  47. -o jsonpath={.items[*].status.addresses[?(@.type==\"InternalIP\")].address}
  48. register: openshift_logging_es_hosts
  49. - when: openshift_logging_use_ops | default(false) | bool
  50. block:
  51. - assert:
  52. that: openshift_logging_es_ops_nodeselector is defined
  53. msg: "A node selector is required for Elasticsearch Ops pods, please specify one with openshift_logging_es_ops_nodeselector"
  54. - name: Ensure that ElasticSearch Ops has nodes to run on
  55. import_role:
  56. name: openshift_control_plane
  57. tasks_from: ensure_nodes_matching_selector.yml
  58. vars:
  59. openshift_master_ensure_nodes_selector: "{{ openshift_logging_es_ops_nodeselector | map_to_pairs }}"
  60. openshift_master_ensure_nodes_service: "Elasticsearch Ops"
  61. - command: >
  62. {{ openshift_client_binary }}
  63. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  64. get nodes
  65. -l {{ openshift_logging_es_ops_nodeselector | map_to_pairs }}
  66. -o jsonpath={.items[*].status.addresses[?(@.type==\"InternalIP\")].address}
  67. register: openshift_logging_es_ops_hosts
  68. - set_fact:
  69. openshift_logging_elasticsearch_hosts: "{{ ( openshift_logging_es_hosts.stdout.split(' ') | default([]) + (openshift_logging_es_ops_hosts.stdout.split(' ') if openshift_logging_es_ops_hosts.stdout is defined else []) ) | unique }}"
  70. # Check to see if the collected ip from the openshift facts above matches our node back to a
  71. # group entry in our inventory so we can maintain our group variables when updating the sysctl
  72. # files for specific nodes based on <node>.status.addresses[@.type==InternalIP].address
  73. - name: Evaluate oo_elasticsearch_nodes
  74. add_host:
  75. name: "{{ item }}"
  76. groups: oo_elasticsearch_nodes
  77. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  78. ansible_become: "{{ g_sudo | default(omit) }}"
  79. with_items: "{{ groups['oo_nodes_to_config'] }}"
  80. changed_when: no
  81. run_once: true
  82. delegate_to: localhost
  83. connection: local
  84. when: hostvars[item]['openshift']['common']['ip'] in openshift_logging_elasticsearch_hosts
  85. - name: Update vm.max_map_count for ES 5.x
  86. hosts: oo_elasticsearch_nodes
  87. gather_facts: false
  88. tasks:
  89. - when: openshift_logging_install_logging | default(false) | bool
  90. block:
  91. - name: Checking vm max_map_count value
  92. command:
  93. cat /proc/sys/vm/max_map_count
  94. register: _vm_max_map_count
  95. - name: Updating vm.max_map_count value
  96. sysctl:
  97. name: vm.max_map_count
  98. value: 262144
  99. sysctl_file: "/etc/sysctl.d/99-elasticsearch.conf"
  100. reload: yes
  101. when:
  102. - _vm_max_map_count.stdout | default(0) | int < 262144 | int
  103. - name: Remove created 99-elasticsearch sysctl
  104. hosts: all
  105. gather_facts: false
  106. tasks:
  107. - when: not openshift_logging_install_logging | default(false) | bool
  108. file:
  109. state: absent
  110. name: /etc/sysctl.d/99-elasticsearch.conf
  111. - name: OpenShift Aggregated Logging
  112. hosts: oo_first_master
  113. roles:
  114. - openshift_logging
  115. - name: Logging Install Checkpoint End
  116. hosts: all
  117. gather_facts: false
  118. tasks:
  119. - name: Set Logging install 'Complete'
  120. run_once: true
  121. set_stats:
  122. data:
  123. installer_phase_logging:
  124. status: "Complete"
  125. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"