diff options
author | Rich Megginson <rmeggins@redhat.com> | 2017-04-19 15:16:03 -0600 |
---|---|---|
committer | Rich Megginson <rmeggins@redhat.com> | 2017-04-19 15:16:03 -0600 |
commit | 5bb31fda251fc930cd83842fcf06afb7cc77c1c7 (patch) | |
tree | cceeec7992be8061789c3ad301c31b58899d6936 /roles/openshift_logging/defaults | |
parent | 9ace041daaf1bca509f21499b812f4f3e96fdd80 (diff) | |
download | openshift-5bb31fda251fc930cd83842fcf06afb7cc77c1c7.tar.gz openshift-5bb31fda251fc930cd83842fcf06afb7cc77c1c7.tar.bz2 openshift-5bb31fda251fc930cd83842fcf06afb7cc77c1c7.tar.xz openshift-5bb31fda251fc930cd83842fcf06afb7cc77c1c7.zip |
mux does not require privileged, only hostmount-anyuid
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: |