main.yml 2.9 KB

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