main.yml 3.0 KB

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