Skip to content

Commit f63b944

Browse files
author
Michael Burke
committed
[enterprise-4.19] Need to add colon and remove bold object names from documentation
1 parent 437a8a6 commit f63b944

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

observability/logging/logging-6.0/log6x-upgrading-to-6.adoc

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,40 +24,41 @@ include::modules/log6x-oc-explain.adoc[leveloffset=+1]
2424

2525
== Log Storage
2626

27-
The only managed log storage solution available in this release is a Lokistack, managed by the *loki-operator*. This solution, previously available as the preferred alternative to the managed Elasticsearch offering, remains unchanged in its deployment process.
27+
The only managed log storage solution available in this release is a Lokistack, managed by the Loki-operator. This solution, previously available as the preferred alternative to the managed Elasticsearch offering, remains unchanged in its deployment process.
2828

2929
[IMPORTANT]
3030
====
31-
To continue using an existing Red Hat managed Elasticsearch or Kibana deployment provided by the *elasticsearch-operator*, remove the owner references from the `Elasticsearch` resource named `elasticsearch`, and the `Kibana` resource named `kibana` in the `openshift-logging` namespace before removing the `ClusterLogging` resource named `instance` in the same namespace.
31+
To continue using an existing Red Hat managed Elasticsearch or Kibana deployment provided by the Elasticsearch Operator, remove the owner references from the `Elasticsearch` resource named `elasticsearch`, and the `Kibana` resource named `kibana` in the `openshift-logging` namespace before removing the `ClusterLogging` resource named `instance` in the same namespace.
3232
====
3333

3434

35-
. Temporarily set *ClusterLogging* to state `Unmanaged`
35+
. Temporarily set `ClusterLogging` resource to the `Unmanaged` state by running the following command:
3636
+
3737
[source,terminal]
3838
----
3939
$ oc -n openshift-logging patch clusterlogging/instance -p '{"spec":{"managementState": "Unmanaged"}}' --type=merge
4040
----
4141

42-
. Remove *ClusterLogging* `ownerReferences` from the *Elasticsearch* resource
42+
. Remove the `ownerReferences` parameter from the `Elasticsearch` resource by running the following command:
4343
+
44-
The following command ensures that *ClusterLogging* no longer owns the *Elasticsearch* resource. Updates to the *ClusterLogging* resource's `logStore` field will no longer affect the *Elasticsearch* resource.
44+
The following command ensures that Cluster Logging no longer owns the `Elasticsearch` resource. Updates to the `ClusterLogging` resource's `logStore` field will no longer affect the `Elasticsearch` resource.
4545
+
4646
[source,terminal]
4747
----
4848
$ oc -n openshift-logging patch elasticsearch/elasticsearch -p '{"metadata":{"ownerReferences": []}}' --type=merge
4949
----
5050

51-
. Remove *ClusterLogging* `ownerReferences` from the *Kibana* resource
51+
. Remove the `ownerReferences` parameter from the `Kibana` resource.
5252
+
53-
The following command ensures that *ClusterLogging* no longer owns the *Kibana* resource. Updates to the *ClusterLogging* resource's `visualization` field will no longer affect the *Kibana* resource.
53+
The following command ensures that Cluster Logging no longer owns the `Kibana` resource. Updates to the `ClusterLogging` resource's `visualization` field will no longer affect the `Kibana` resource.
5454
+
5555
[source,terminal]
5656
----
5757
$ oc -n openshift-logging patch kibana/kibana -p '{"metadata":{"ownerReferences": []}}' --type=merge
5858
----
5959

60-
. Set *ClusterLogging* to state `Managed`
60+
. Set the `ClusterLogging` resource to the `Managed` state by running the following command:
61+
6162
+
6263
[source,terminal]
6364
----

0 commit comments

Comments
 (0)