Skip to content

Commit e14ed35

Browse files
Update distr-tracing-tempo-config-default.adoc
- One TempoStack configuration parameter is incorrectly placed - Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/distributed_tracing/distributed-tracing-platform-tempo#distr-tracing-tempo-config-default_distr-tracing-tempo-configuring - In the `Example TempoStack CR` configuration `spec.managementState` indentation is wrong. - Here is the current configuration: ~~~ apiVersion: tempo.grafana.com/v1alpha1 1 kind: TempoStack 2 metadata: 3 name: <name> 4 spec: managementState: managed 21 ~~~ - All other parameters are correctly mentioned. - We need to change the ``spec.managementState` indentation. -Here is the correct config: ~~~ apiVersion: tempo.grafana.com/v1alpha1 1 kind: TempoStack 2 metadata: 3 name: <name> 4 spec: 5 managementState: managed 21 ~~~
1 parent 72a1b78 commit e14ed35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/distr-tracing-tempo-config-default.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec: # <5>
3636
metrics: {}
3737
tracing: {}
3838
search: {} # <20>
39-
managementState: managed # <21>
39+
managementState: managed # <21>
4040
----
4141
<1> API version to use when creating the object.
4242
<2> Defines the kind of Kubernetes object to create.

0 commit comments

Comments
 (0)