12345678910111213141516171819202122232425262728293031323334353637 |
- ---
- ### General logging settings
- openshift_logging_curator_image_pull_secret: "{{ openshift_hosted_logging_image_pull_secret | default('') }}"
- openshift_logging_curator_master_url: "https://kubernetes.default.svc.cluster.local"
- openshift_logging_es5_techpreview: False
- l_openshift_curator_image_replace: "{{ (openshift_logging_es5_techpreview | bool) | ternary('logging-curator5', 'logging-curator') }}"
- openshift_logging_curator_image: "{{ l_os_registry_url | regex_replace(l_openshift_logging_search | regex_escape, l_openshift_curator_image_replace) }}"
- openshift_logging_curator_namespace: logging
- ### Common settings
- openshift_logging_curator_nodeselector: ""
- openshift_logging_curator_cpu_limit: null
- openshift_logging_curator_cpu_request: 100m
- openshift_logging_curator_memory_limit: 256Mi
- openshift_logging_curator_es_host: "logging-es"
- openshift_logging_curator_es_port: 9200
- # This should not exceed 1, should check for this
- openshift_logging_curator_replicas: 1
- # this is used to determine if this is an operations deployment or a non-ops deployment
- # simply used for naming purposes
- openshift_logging_curator_ops_deployment: false
- openshift_logging_curator_default_days: 30
- openshift_logging_curator_run_hour: 3
- openshift_logging_curator_run_minute: 30
- openshift_logging_curator_run_timezone: UTC
- openshift_logging_curator_script_log_level: INFO
- openshift_logging_curator_log_level: ERROR
- openshift_logging_curator_timeout: 300
- # 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
- #curator_config_contents:
|