main.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. ### General logging settings
  3. openshift_logging_fluentd_image_pull_secret: "{{ openshift_logging_image_pull_secret }}"
  4. openshift_logging_fluentd_master_url: "https://kubernetes.default.svc.{{ openshift.common.dns_domain }}"
  5. openshift_logging_fluentd_namespace: openshift-logging
  6. ### Common settings
  7. # map_from_pairs is a custom filter plugin in role lib_utils
  8. openshift_logging_fluentd_nodeselector:
  9. logging-infra-fluentd: 'true'
  10. openshift_logging_fluentd_cpu_limit: null
  11. openshift_logging_fluentd_cpu_request: 100m
  12. openshift_logging_fluentd_memory_limit: 756Mi
  13. openshift_logging_fluentd_hosts: ['--all']
  14. # float time in seconds to wait between node labelling
  15. openshift_logging_fluentd_label_delay: '0.5'
  16. # Fluentd deployment type
  17. openshift_logging_fluentd_deployment_type: "hosted"
  18. ### Used by "hosted" and "secure-host" deployments
  19. # Destination for the application based logs
  20. openshift_logging_fluentd_app_host: "logging-es"
  21. openshift_logging_fluentd_app_port: 9200
  22. # Destination for the operations based logs
  23. openshift_logging_fluentd_ops_host: "{{ openshift_logging_fluentd_app_host }}"
  24. openshift_logging_fluentd_ops_port: "{{ openshift_logging_fluentd_app_port }}"
  25. ### Used by "hosted" and "secure-aggregator" deployments
  26. openshift_logging_fluentd_journal_source: ""
  27. openshift_logging_fluentd_journal_read_from_head: ""
  28. openshift_logging_fluentd_app_client_cert: /etc/fluent/keys/cert
  29. openshift_logging_fluentd_app_client_key: /etc/fluent/keys/key
  30. openshift_logging_fluentd_app_ca: /etc/fluent/keys/ca
  31. openshift_logging_fluentd_ops_client_cert: /etc/fluent/keys/ops-cert
  32. openshift_logging_fluentd_ops_client_key: /etc/fluent/keys/ops-key
  33. openshift_logging_fluentd_ops_ca: /etc/fluent/keys/ops-ca
  34. # used by "secure-host" and "secure-aggregator" deployments
  35. openshift_logging_fluentd_shared_key: "{{ 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' | random_word(128) }}"
  36. openshift_logging_fluentd_aggregating_port: 24284
  37. openshift_logging_fluentd_aggregating_host: "${HOSTNAME}"
  38. openshift_logging_fluentd_aggregating_secure: "no"
  39. openshift_logging_fluentd_aggregating_strict: "no"
  40. openshift_logging_fluentd_aggregating_cert_path: none
  41. openshift_logging_fluentd_aggregating_key_path: none
  42. openshift_logging_fluentd_aggregating_passphrase: none
  43. # set openshift_logging_use_mux=maximal by default.
  44. # if the cluster is not configured with mux, this default value is going to be ignored.
  45. openshift_logging_mux_client_mode: "maximal"
  46. ### Deprecating in 3.6
  47. # 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
  48. #fluentd_config_contents:
  49. #fluentd_throttle_contents:
  50. #fluentd_secureforward_contents:
  51. openshift_logging_fluentd_file_buffer_limit: 256Mi
  52. # Configure fluentd to tail audit log file and filter out container engine's logs from there
  53. # These logs are then stored in ES operation index
  54. openshift_logging_fluentd_audit_container_engine: False