diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-04-24 20:36:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 20:36:58 -0500 |
commit | db492e0e8458006c8b2f67025198b8456ee88a84 (patch) | |
tree | ed77d74025232010b3227551392696b483454ed8 /roles/openshift_logging/defaults | |
parent | 080fd457230028d3515f3cee361f016fdeab1573 (diff) | |
parent | 8e9453047b317c3723a5bcf6e5901aaa783f5f43 (diff) | |
download | openshift-db492e0e8458006c8b2f67025198b8456ee88a84.tar.gz openshift-db492e0e8458006c8b2f67025198b8456ee88a84.tar.bz2 openshift-db492e0e8458006c8b2f67025198b8456ee88a84.tar.xz openshift-db492e0e8458006c8b2f67025198b8456ee88a84.zip |
Merge pull request #3932 from richm/mux
Merged by openshift-bot
Diffstat (limited to 'roles/openshift_logging/defaults')
-rw-r--r-- | roles/openshift_logging/defaults/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/openshift_logging/defaults/main.yml b/roles/openshift_logging/defaults/main.yml index 96ed44011..5ee8d1e2a 100644 --- a/roles/openshift_logging/defaults/main.yml +++ b/roles/openshift_logging/defaults/main.yml @@ -119,6 +119,15 @@ openshift_logging_es_ops_number_of_replicas: 0 # storage related defaults openshift_logging_storage_access_modes: "{{ openshift_hosted_logging_storage_access_modes | default(['ReadWriteOnce']) }}" +# mux - secure_forward listener service +openshift_logging_mux_allow_external: False +openshift_logging_use_mux: "{{ openshift_logging_mux_allow_external | default(False) }}" +# this tells the fluentd node agent to use mux instead of sending directly to Elasticsearch +openshift_logging_use_mux_client: False +openshift_logging_mux_hostname: "{{ 'mux.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}" +openshift_logging_mux_port: 24284 +openshift_logging_mux_cpu_limit: 100m +openshift_logging_mux_memory_limit: 512Mi # 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 #es_logging_contents: @@ -127,3 +136,5 @@ openshift_logging_storage_access_modes: "{{ openshift_hosted_logging_storage_acc #fluentd_config_contents: #fluentd_throttle_contents: #fluentd_secureforward_contents: +#fluentd_mux_config_contents: +#fluentd_mux_secureforward_contents: |