|
1 | 1 | [id="cluster-logging-release-notes"]
|
2 |
| -= Release notes for Red Hat OpenShift Logging 5.2 |
| 2 | += Release notes for Red Hat OpenShift Logging 5.3 |
3 | 3 | include::modules/common-attributes.adoc[]
|
4 | 4 | :context: cluster-logging-release-notes-v5x
|
5 | 5 |
|
6 | 6 | toc::[]
|
7 | 7 |
|
8 |
| -[id="openshift-logging-supported-versions"] |
9 |
| -== Supported versions |
10 |
| - |
11 |
| -.{product-title} version support for Red Hat OpenShift Logging (RHOL) |
12 |
| -[options="header"] |
13 |
| -|==== |
14 |
| -| |4.7 |4.8 |4.9 |
15 |
| -|RHOL 5.0|X |X | |
16 |
| -|RHOL 5.1|X |X | |
17 |
| -|RHOL 5.2|X |X |X |
18 |
| -|==== |
19 |
| - |
20 | 8 | include::modules/making-open-source-more-inclusive.adoc[leveloffset=+1]
|
21 | 9 |
|
| 10 | +[id="cluster-logging-supported-versions"] |
| 11 | +== Supported Versions |
| 12 | +include::modules/cluster-logging-supported-versions.adoc[leveloffset=+1] |
| 13 | + |
22 | 14 | // Release Notes by version
|
| 15 | +[id="cluster-logging-release-notes-5-3-0"] |
| 16 | +== OpenShift Logging 5.3.0 |
| 17 | +The following advisories are available for OpenShift Logging 5.3.x: |
| 18 | + |
| 19 | +[id="openshift-logging-5-3-0-new-features-and-enhancements"] |
| 20 | +=== New features and enhancements |
| 21 | +* With this update, authorization requirements for Log Forwarding have been relaxed. Outputs may now be configured with SASL, username/password, or TLS. |
| 22 | + |
| 23 | +[id="openshift-logging-5-3-0-bug-fixes"] |
| 24 | +=== Bug fixes |
| 25 | +* Before this update, application logs were not correctly configured to forward to the proper Cloudwatch stream with multi-line error detection enabled. (link:https://issues.redhat.com/browse/LOG-1939[LOG-1939]) |
| 26 | + |
| 27 | +* Before this update, a name change of the deployed collector in the 5.3 release caused the alert 'fluentnodedown' to generate. (link:https://issues.redhat.com/browse/LOG-1918[LOG-1918]) |
| 28 | + |
| 29 | +* Before this update, a regression introduced in a prior release configuration caused the collector to flush its buffered messages before shutdown, creating a delay the termination and restart of collector Pods. With this update, fluentd no longer flushes buffers at shutdown, resolving the issue. (link:https://issues.redhat.com/browse/LOG-1735[LOG-1735]) |
| 30 | + |
| 31 | +* Before this update, a regression introduced in a prior release intentionally disabled JSON message parsing. With this update, a log entry's "level" value is set based on: a parsed JSON message that has a "level" field or by applying a regex against the message field to extract a match. (link:https://issues.redhat.com/browse/LOG-1199[LOG-1199]) |
| 32 | + |
| 33 | +[id="openshift-logging-5-3-0-known-issues"] |
| 34 | +=== Known issues |
| 35 | +* If you forward logs to an external Elasticsearch server and then change a configured value in the pipeline secret, such as the username and password, the Fluentd forwarder loads the new secret but uses the old value to connect to an external Elasticsearch server. This issue happens because the Red Hat OpenShift Logging Operator does not currently monitor secrets for content changes. (link:https://issues.redhat.com/browse/LOG-1652[LOG-1652]) |
| 36 | ++ |
| 37 | +As a workaround, if you change the secret, you can force the Fluentd pods to redeploy by entering: |
| 38 | ++ |
| 39 | +[source,terminal] |
| 40 | +---- |
| 41 | +$ oc delete pod -l component=fluentd |
| 42 | +---- |
| 43 | + |
| 44 | +[id="openshift-logging-5-3-0-deprecated-removed-features"] |
| 45 | +== Deprecated and removed features |
| 46 | +Some features available in previous releases have been deprecated or removed. |
| 47 | + |
| 48 | +Deprecated functionality is still included in OpenShift Logging and continues to be supported; however, it will be removed in a future release of this product and is not recommended for new deployments. |
| 49 | + |
| 50 | +[id="openshift-logging-5-3-0-legacy-forwarding"] |
| 51 | +=== Forwarding logs using the legacy Fluentd and legacy syslog methods have been removed |
| 52 | + |
| 53 | +In OpenShift Logging 5.3, the legacy methods of forwarding logs to Syslog and Fluentd are removed. Bug fixes and support are provided through the end of the OpenShift Logging 5.2 life cycle. After which, no new feature enhancements are made. |
| 54 | + |
| 55 | +Instead, use the following non-legacy methods: |
| 56 | + |
| 57 | +* xref:../logging/cluster-logging-external.adoc#cluster-logging-collector-log-forward-fluentd_cluster-logging-external[Forwarding logs using the Fluentd forward protocol] |
| 58 | +* xref:../logging/cluster-logging-external.adoc#cluster-logging-collector-log-forward-syslog_cluster-logging-external[Forwarding logs using the syslog protocol] |
| 59 | + |
| 60 | +[id="openshift-logging-5-3-0-legacy-forwarding-config"] |
| 61 | +=== Configuration mechanisms for legacy forwarding methods have been removed |
| 62 | + |
| 63 | +In OpenShift Logging 5.3, the legacy configuration mechanism for log forwarding is removed: You cannot forward logs using the legacy Fluentd method and legacy Syslog method. Use the standard log forwarding methods instead. |
23 | 64 |
|
24 | 65 | [id="cluster-logging-release-notes-5-2-0"]
|
25 | 66 | == OpenShift Logging 5.2.0
|
@@ -104,7 +145,7 @@ As a workaround, if you change the secret, you can force the Fluentd pods to red
|
104 | 145 | +
|
105 | 146 | [source,terminal]
|
106 | 147 | ----
|
107 |
| -$ oc delete pod -l component=fluentd |
| 148 | +$ oc delete pod -l component=collector |
108 | 149 | ----
|
109 | 150 |
|
110 | 151 | [id="openshift-logging-5-2-0-deprecated-removed-features"]
|
|
0 commit comments