main.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ---
  2. ### Common settings
  3. openshift_logging_elasticsearch_image_pull_secret: "{{ openshift_hosted_logging_image_pull_secret | default('') }}"
  4. openshift_logging_elasticsearch_namespace: logging
  5. openshift_logging_elasticsearch_nodeselector: "{{ openshift_logging_es_nodeselector | default('') }}"
  6. openshift_logging_elasticsearch_cpu_limit: "{{ openshift_logging_es_cpu_limit | default('') }}"
  7. openshift_logging_elasticsearch_cpu_request: "{{ openshift_logging_es_cpu_request | default('1000m') }}"
  8. openshift_logging_elasticsearch_memory_limit: "{{ openshift_logging_es_memory_limit | default('1Gi') }}"
  9. openshift_logging_elasticsearch_recover_after_time: "{{ openshift_logging_es_recover_after_time | default('5m') }}"
  10. openshift_logging_elasticsearch_replica_count: 1
  11. # ES deployment type
  12. openshift_logging_elasticsearch_deployment_type: "data-master"
  13. # ES deployment name
  14. openshift_logging_elasticsearch_deployment_name: ""
  15. # One of ['emptydir', 'pvc', 'hostmount']
  16. openshift_logging_elasticsearch_storage_type: "emptydir"
  17. # hostmount options
  18. openshift_logging_elasticsearch_hostmount_path: ""
  19. # pvc options
  20. # the name of the PVC we will bind to -- create it if it does not exist
  21. openshift_logging_elasticsearch_pvc_name: ""
  22. # required if the PVC does not already exist
  23. openshift_logging_elasticsearch_pvc_size: ""
  24. openshift_logging_elasticsearch_pvc_dynamic: false
  25. openshift_logging_elasticsearch_pvc_pv_selector: {}
  26. openshift_logging_elasticsearch_pvc_storage_class_name: ""
  27. openshift_logging_elasticsearch_pvc_access_modes: ['ReadWriteOnce']
  28. openshift_logging_elasticsearch_storage_group: ['65534']
  29. openshift_logging_es_pvc_prefix: "{{ openshift_hosted_logging_elasticsearch_pvc_prefix | default('logging-es') }}"
  30. # config the es plugin to write kibana index based on the index mode
  31. openshift_logging_elasticsearch_kibana_index_mode: 'unique'
  32. openshift_logging_elasticsearch_proxy_cpu_request: "100m"
  33. openshift_logging_elasticsearch_proxy_memory_limit: "64Mi"
  34. openshift_logging_elasticsearch_prometheus_sa: "system:serviceaccount:{{openshift_prometheus_namespace | default('prometheus')}}:prometheus"
  35. # this is used to determine if this is an operations deployment or a non-ops deployment
  36. # simply used for naming purposes
  37. openshift_logging_elasticsearch_ops_deployment: false
  38. openshift_logging_elasticsearch_ops_allow_cluster_reader: false
  39. # following can be uncommented to provide values for configmaps -- take care when providing file contents as it may cause your cluster to not operate correctly
  40. #es_logging_contents:
  41. #es_config_contents:
  42. openshift_logging_master_url: "https://kubernetes.default.svc.{{ openshift.common.dns_domain }}"
  43. openshift_logging_master_public_url: "{{ openshift_hosted_logging_master_public_url | default('https://' + openshift.common.public_hostname + ':' ~ (openshift_master_api_port | default('8443', true))) }}"
  44. openshift_logging_es_host: logging-es
  45. openshift_logging_es_port: 9200
  46. openshift_logging_es_ca: /etc/fluent/keys/ca
  47. openshift_logging_es_client_cert: /etc/fluent/keys/cert
  48. openshift_logging_es_client_key: /etc/fluent/keys/key