main.yml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ---
  2. ### General logging settings
  3. openshift_logging_mux_image_prefix: "{{ openshift_logging_image_prefix | default(__openshift_logging_image_prefix) }}"
  4. openshift_logging_mux_image_version: "{{ openshift_logging_image_version | default('latest') }}"
  5. openshift_logging_mux_image_pull_secret: "{{ openshift_hosted_logging_image_pull_secret | default('') }}"
  6. openshift_logging_mux_master_url: "https://kubernetes.default.svc.{{ openshift.common.dns_domain }}"
  7. openshift_logging_mux_master_public_url: "{{ openshift_hosted_logging_master_public_url | default('https://' + openshift.common.public_hostname + ':' ~ (openshift_master_api_port | default('8443', true))) }}"
  8. openshift_logging_mux_namespace: logging
  9. ### Common settings
  10. openshift_logging_mux_nodeselector: "{{ openshift_hosted_logging_mux_nodeselector_label | default('') | map_from_pairs }}"
  11. openshift_logging_mux_cpu_limit: null
  12. openshift_logging_mux_cpu_request: 100m
  13. openshift_logging_mux_memory_limit: 512Mi
  14. openshift_logging_mux_buffer_queue_limit: 32
  15. openshift_logging_mux_buffer_size_limit: 8m
  16. openshift_logging_mux_replicas: 1
  17. # Destination for the application based logs
  18. openshift_logging_mux_app_host: "logging-es"
  19. openshift_logging_mux_app_port: 9200
  20. # Destination for the operations based logs
  21. openshift_logging_mux_ops_host: "{{ openshift_logging_mux_app_host }}"
  22. openshift_logging_mux_ops_port: "{{ openshift_logging_mux_app_port }}"
  23. ### Used by "hosted" and "secure-aggregator" deployments
  24. openshift_logging_mux_journal_source: "{{ openshift_hosted_logging_journal_source | default('') }}"
  25. openshift_logging_mux_journal_read_from_head: "{{ openshift_hosted_logging_journal_read_from_head | default('') }}"
  26. openshift_logging_mux_allow_external: False
  27. openshift_logging_use_mux: "{{ openshift_logging_mux_allow_external | default(False) }}"
  28. openshift_logging_mux_hostname: "{{ 'mux.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  29. openshift_logging_mux_port: 24284
  30. # the namespace to use for undefined projects should come first, followed by any
  31. # additional namespaces to create by default - users will typically not need to set this
  32. openshift_logging_mux_default_namespaces: ["mux-undefined"]
  33. # extra namespaces to create for mux clients - users will need to set this
  34. openshift_logging_mux_namespaces: []
  35. openshift_logging_mux_app_client_cert: /etc/fluent/keys/cert
  36. openshift_logging_mux_app_client_key: /etc/fluent/keys/key
  37. openshift_logging_mux_app_ca: /etc/fluent/keys/ca
  38. openshift_logging_mux_ops_client_cert: /etc/fluent/keys/cert
  39. openshift_logging_mux_ops_client_key: /etc/fluent/keys/key
  40. openshift_logging_mux_ops_ca: /etc/fluent/keys/ca
  41. # 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
  42. #mux_config_contents:
  43. #mux_throttle_contents:
  44. #mux_secureforward_contents:
  45. # One of ['emptydir', 'pvc', 'hostmount']
  46. openshift_logging_mux_file_buffer_storage_type: "emptydir"
  47. # pvc options
  48. # the name of the PVC we will bind to -- create it if it does not exist
  49. openshift_logging_mux_file_buffer_pvc_name: "logging-mux-pvc"
  50. # required if the PVC does not already exist
  51. openshift_logging_mux_file_buffer_pvc_size: 1Gi
  52. openshift_logging_mux_file_buffer_pvc_dynamic: false
  53. openshift_logging_mux_file_buffer_pvc_pv_selector: {}
  54. openshift_logging_mux_file_buffer_pvc_access_modes: ['ReadWriteOnce']
  55. openshift_logging_mux_file_buffer_storage_group: '65534'
  56. openshift_logging_mux_file_buffer_pvc_prefix: "logging-mux"
  57. openshift_logging_mux_file_buffer_limit: 256Mi