Document URL: ============= https://access.redhat.com/documentation/en-us/openshift_container_platform/3.10/html/configuring_clusters/install-config-aggregate-logging Section Number and Name: ======================== 33.12. Changing the Aggregated Logging Driver Describe the issue: =================== I can read the next text: ~~~ For each node, remove the label and turn off Fluentd: $ oc label node $node logging-infra-fluentd- ~~~ The command doesn't work giving the next error: ~~~ $ oc label node master-0.ocasalsa311.lab.pnq2.cee.redhat.com logging-infra-fluentd- label "logging-infra-fluentd" not found. node/master-0.ocasalsa311.lab.pnq2.cee.redhat.com not labeled ~~~ And the logging-infra-fluentd label is not deleted. Suggestions for improvement: ============================ The command should be like this: ~~~ $ oc label node master-0.ocasalsa311.lab.pnq2.cee.redhat.com logging-infra-fluentd=false node/master-0.ocasalsa311.lab.pnq2.cee.redhat.com labeled $ oc get node master-0.ocasalsa311.lab.pnq2.cee.redhat.com --show-labels NAME STATUS ROLES AGE VERSION LABELS master-0.ocasalsa311.lab.pnq2.cee.redhat.com Ready master 11d v1.11.0+d4cacc0 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=master-0.ocasalsa311.lab.pnq2.cee.redhat.com,logging-infra-fluentd=false,node-role.kubernetes.io/master=true ~~~