Commit e14ed35
authored
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
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
0 commit comments