diff options
| author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-08-02 03:58:02 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-02 03:58:02 -0400 | 
| commit | beb5deaedb105acd113807597858069a38553952 (patch) | |
| tree | d2c08851aaa3a332d9f5acc1f7384c91224662d7 /roles/openshift_logging | |
| parent | 4b8e77af233a13eef17aaab13a0f0ff06cb423f4 (diff) | |
| parent | ace4a6cf7c5f9e3abea46a1811d04f4d5a03505f (diff) | |
| download | openshift-beb5deaedb105acd113807597858069a38553952.tar.gz openshift-beb5deaedb105acd113807597858069a38553952.tar.bz2 openshift-beb5deaedb105acd113807597858069a38553952.tar.xz openshift-beb5deaedb105acd113807597858069a38553952.zip | |
Merge pull request #4916 from richm/mux-client-mode
Merged by openshift-bot
Diffstat (limited to 'roles/openshift_logging')
| -rw-r--r-- | roles/openshift_logging/README.md | 15 | ||||
| -rw-r--r-- | roles/openshift_logging/defaults/main.yml | 2 | 
2 files changed, 11 insertions, 6 deletions
| diff --git a/roles/openshift_logging/README.md b/roles/openshift_logging/README.md index 97650e2ce..84ead3548 100644 --- a/roles/openshift_logging/README.md +++ b/roles/openshift_logging/README.md @@ -135,16 +135,23 @@ Elasticsearch OPS too, if using an OPS cluster:    secure_forward forwarder for the node agent Fluentd daemonsets running in the    cluster.  This can be used to reduce the number of connections to the    OpenShift API server, by using `mux` and configuring each node Fluentd to -  send raw logs to mux and turn off the k8s metadata plugin. +  send raw logs to mux and turn off the k8s metadata plugin.  This requires the +  use of `openshift_logging_mux_client_mode` (see below).  - `openshift_logging_mux_allow_external`: Default `False`.  If this is `True`,    the `mux` service will be deployed, and it will be configured to allow    Fluentd clients running outside of the cluster to send logs using    secure_forward.  This allows OpenShift logging to be used as a central    logging service for clients other than OpenShift, or other OpenShift    clusters. -- `openshift_logging_use_mux_client`: Default `False`.  If this is `True`, the -  node agent Fluentd services will be configured to send logs to the mux -  service rather than directly to Elasticsearch. +- `openshift_logging_mux_client_mode`: Values - `minimal`, `maximal`. +  Default is unset.  Setting this value will cause the Fluentd node agent to +  send logs to mux rather than directly to Elasticsearch.  The value +  `maximal` means that Fluentd will do as much processing as possible at the +  node before sending the records to mux.  This is the current recommended +  way to use mux due to current scaling issues. +  The value `minimal` means that Fluentd will do *no* processing at all, and +  send the raw logs to mux for processing.  We do not currently recommend using +  this mode, and ansible will warn you about this.  - `openshift_logging_mux_hostname`: Default is "mux." +    `openshift_master_default_subdomain`.  This is the hostname *external*_    clients will use to connect to mux, and will be used in the TLS server cert diff --git a/roles/openshift_logging/defaults/main.yml b/roles/openshift_logging/defaults/main.yml index 1c243f934..8b0f4cb62 100644 --- a/roles/openshift_logging/defaults/main.yml +++ b/roles/openshift_logging/defaults/main.yml @@ -157,8 +157,6 @@ openshift_logging_storage_access_modes: "{{ openshift_hosted_logging_storage_acc  # 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: 500m | 
