Skip to content

Commit 0cc7903

Browse files
authored
Merge pull request #96933 from eromanova97/OBSDOCS-1576
OBSDOCS-1576: Update any YAML blocks affected by the API change in the linked PR
2 parents 8501f36 + d0dae03 commit 0cc7903

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

modules/log-collector-http-server.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can configure your log collector to listen for HTTP connections and receive
2626
.Example `ClusterLogForwarder` CR if you are using a multi log forwarder deployment
2727
[source,yaml]
2828
----
29-
apiVersion: logging.openshift.io/v1
29+
apiVersion: observability.openshift.io/v1
3030
kind: ClusterLogForwarder
3131
metadata:
3232
# ...
@@ -56,7 +56,7 @@ spec:
5656
.Example `ClusterLogForwarder` CR if you are using a legacy deployment
5757
[source,yaml]
5858
----
59-
apiVersion: logging.openshift.io/v1
59+
apiVersion: observability.openshift.io/v1
6060
kind: ClusterLogForwarder
6161
metadata:
6262
name: instance

modules/logging-delivery-tuning.adoc

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,22 @@ The following example shows the `ClusterLogForwarder` CR options that you can mo
2020
.Example `ClusterLogForwarder` CR tuning options
2121
[source,yaml]
2222
----
23-
apiVersion: logging.openshift.io/v1
23+
apiVersion: observability.openshift.io/v1
2424
kind: ClusterLogForwarder
2525
metadata:
2626
# ...
2727
spec:
28-
tuning:
29-
delivery: AtLeastOnce # <1>
30-
compression: none # <2>
31-
maxWrite: <integer> # <3>
32-
minRetryDuration: 1s # <4>
33-
maxRetryDuration: 1s # <5>
28+
# ...
29+
outputs:
30+
- name: default-lokistack
31+
type: lokiStack
32+
lokiStack:
33+
tuning:
34+
deliveryMode: AtLeastOnce # <1>
35+
compression: none # <2>
36+
maxWrite: <integer> # <3>
37+
minRetryDuration: 1s # <4>
38+
maxRetryDuration: 1s # <5>
3439
# ...
3540
----
3641
<1> Specify the delivery mode for log forwarding.

0 commit comments

Comments
 (0)