Skip to content

Commit 97196f3

Browse files
authored
Merge pull request #52108 from bergerhoffer/updating-admonition-syntax
Fixing admonition syntax
2 parents da9d49f + 9cc5a0a commit 97196f3

13 files changed

+69
-21
lines changed

logging/troubleshooting/cluster-logging-troubleshooting-for-critical-alerts.adoc

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,15 @@ If the used disk percentage is above 85%, the node has exceeded the low watermar
239239
oc -n openshift-logging get es elasticsearch -o jsonpath='{.spec.redundancyPolicy}'
240240
----
241241
+
242-
NOTE: If you are using a `ClusterLogging` CR, enter:
243-
+
242+
[NOTE]
243+
====
244+
If you are using a `ClusterLogging` CR, enter:
245+
244246
[source,terminal]
245247
----
246248
oc -n openshift-logging get cl -o jsonpath='{.items[*].spec.logStore.elasticsearch.redundancyPolicy}'
247249
----
250+
====
248251

249252
.. If the cluster `redundancyPolicy` is higher than `SingleRedundancy`, set it to `SingleRedundancy` and save this change.
250253

@@ -319,12 +322,15 @@ The shards relocate to a node with low disk usage that has not crossed any water
319322
oc -n openshift-logging get es elasticsearch -o jsonpath='{.spec.redundancyPolicy}'
320323
----
321324
+
322-
NOTE: If you are using a `ClusterLogging` CR, enter:
323-
+
325+
[NOTE]
326+
====
327+
If you are using a `ClusterLogging` CR, enter:
328+
324329
[source,terminal]
325330
----
326331
oc -n openshift-logging get cl -o jsonpath='{.items[*].spec.logStore.elasticsearch.redundancyPolicy}'
327332
----
333+
====
328334

329335
.. If the cluster `redundancyPolicy` is higher than `SingleRedundancy`, set it to `SingleRedundancy` and save this change.
330336

@@ -386,12 +392,15 @@ Check the `nodes.node_name.fs` field to determine the free disk space on that no
386392
oc -n openshift-logging get es elasticsearch -o jsonpath='{.spec.redundancyPolicy}'
387393
----
388394
+
389-
NOTE: If you are using a `ClusterLogging` CR, enter:
390-
+
395+
[NOTE]
396+
====
397+
If you are using a `ClusterLogging` CR, enter:
398+
391399
[source,terminal]
392400
----
393401
oc -n openshift-logging get cl -o jsonpath='{.items[*].spec.logStore.elasticsearch.redundancyPolicy}'
394402
----
403+
====
395404

396405
.. If the cluster `redundancyPolicy` is higher than `SingleRedundancy`, set it to `SingleRedundancy` and save this change.
397406

@@ -482,12 +491,15 @@ for pod in `oc -n openshift-logging get po -l component=elasticsearch -o jsonpat
482491
oc -n openshift-logging get es elasticsearch -o jsonpath='{.spec.redundancyPolicy}'
483492
----
484493
+
485-
NOTE: If you are using a `ClusterLogging` CR, enter:
486-
+
494+
[NOTE]
495+
====
496+
If you are using a `ClusterLogging` CR, enter:
497+
487498
[source,terminal]
488499
----
489500
oc -n openshift-logging get cl -o jsonpath='{.items[*].spec.logStore.elasticsearch.redundancyPolicy}'
490501
----
502+
====
491503

492504
.. If the cluster `redundancyPolicy` is higher than `SingleRedundancy`, set it to `SingleRedundancy` and save this change.
493505

modules/developer-cli-odo-creating-and-deploying-a-nodejs-application-with-odo.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ $ cd <directory_name>
6060
$ odo create nodejs
6161
----
6262
+
63-
NOTE: By default, the latest image is used. You can also explicitly specify an image version by using `odo create openshift/nodejs:8`.
63+
[NOTE]
64+
====
65+
By default, the latest image is used. You can also explicitly specify an image version by using `odo create openshift/nodejs:8`.
66+
====
6467

6568
. Push the initial source code to the component:
6669
+

modules/developer-cli-odo-deploying-a-java-application-using-a-devfile.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ The previous command produces the following output:
6868
To apply the URL configuration changes, please use odo push
6969
----
7070
+
71-
NOTE: You must use your cluster host domain name when creating the URL.
71+
[NOTE]
72+
====
73+
You must use your cluster host domain name when creating the URL.
74+
====
7275

7376
. Push the component to the cluster:
7477
+

modules/installation-rhv-customizing-install-config-yaml.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ Here, you use three Python scripts to override some of the installation program'
1515
1616
* By default, the installation program sets the platform to `ovirt`. However, installing a cluster on user-provisioned infrastructure is more similar to installing a cluster on bare metal. Therefore, you delete the ovirt platform section from `install-config.yaml` and change the platform to `none`. Instead, you use `inventory.yml` to specify all of the required settings.
1717
18-
NOTE: These snippets work with Python 3 and Python 2.
18+
[NOTE]
19+
====
20+
These snippets work with Python 3 and Python 2.
21+
====
1922

2023
// TBD - https://issues.redhat.com/browse/OCPRHV-414
2124
// Please discuss with engineering whether these three scripts can/should be combined into a single script.

modules/ipi-install-configure-multiple-cluster-nodes.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@ hosts:
3636
networkConfig: *BOND
3737
----
3838

39-
NOTE: Configuration of multiple cluster nodes is only available for initial deployments on installer-provisioned infrastructure.
39+
[NOTE]
40+
====
41+
Configuration of multiple cluster nodes is only available for initial deployments on installer-provisioned infrastructure.
42+
====

modules/nw-kube-proxy-config.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88
You can modify the following `kubeProxyConfig` parameters.
99

10-
IMPORTANT: Because of performance improvements introduced in {product-title} 4.3 and greater, adjusting the `iptablesSyncPeriod` parameter is no longer necessary.
10+
[NOTE]
11+
====
12+
Because of performance improvements introduced in {product-title} 4.3 and greater, adjusting the `iptablesSyncPeriod` parameter is no longer necessary.
13+
====
1114

1215
.Parameters
1316
[cols="30%,30%,30%,10%",options="header"]

modules/nw-multus-host-device-object.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
[id="nw-multus-host-device-object_{context}"]
66
= Configuration for a host device additional network
77

8-
IMPORTANT: Specify your network device by setting only one of the
8+
[NOTE]
9+
====
10+
Specify your network device by setting only one of the
911
following parameters: `device`, `hwaddr`, `kernelpath`, or `pciBusID`.
12+
====
1013

1114
The following object describes the configuration parameters for the host-device CNI plug-in:
1215

modules/nw-operator-cr.adoc

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,10 @@ endif::operator[]
216216
|====
217217

218218
ifdef::operator[]
219-
NOTE: You can only change the configuration for your cluster network provider during cluster installation.
219+
[NOTE]
220+
====
221+
You can only change the configuration for your cluster network provider during cluster installation.
222+
====
220223
endif::operator[]
221224

222225
.Example OpenShift SDN configuration
@@ -348,7 +351,10 @@ If you set this field to `true`, you do not receive the performance benefits of
348351
|====
349352

350353
ifdef::operator[]
351-
NOTE: You can only change the configuration for your cluster network provider during cluster installation, except for the `gatewayConfig` field that can be changed at runtime as a post-installation activity.
354+
[NOTE]
355+
====
356+
You can only change the configuration for your cluster network provider during cluster installation, except for the `gatewayConfig` field that can be changed at runtime as a post-installation activity.
357+
====
352358
endif::operator[]
353359

354360
.Example OVN-Kubernetes configuration with IPSec enabled

modules/ossm-mixer-policy-1x.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ In previous versions of {SMProductName}, Mixer's policy enforcement was enabled
1111
.Prerequisites
1212
* Access to the OpenShift CLI (`oc`).
1313
14-
NOTE: The examples use `<istio-system>` as the control plane namespace. Replace this value with the namespace where you deployed the Service Mesh Control Plane (SMCP).
14+
[NOTE]
15+
====
16+
The examples use `<istio-system>` as the control plane namespace. Replace this value with the namespace where you deployed the Service Mesh Control Plane (SMCP).
17+
====
1518

1619
.Procedure
1720

modules/ossm-threescale-metrics.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
= 3scale Adapter metrics
88
The adapter, by default reports various Prometheus metrics that are exposed on port `8080` at the `/metrics` endpoint. These metrics provide insight into how the interactions between the adapter and 3scale are performing. The service is labeled to be automatically discovered and scraped by Prometheus.
99

10-
NOTE: There are incompatible changes in the 3scale Istio Adapter metrics since the previous releases in Service Mesh 1.x.
10+
[NOTE]
11+
====
12+
There are incompatible changes in the 3scale Istio Adapter metrics since the previous releases in Service Mesh 1.x.
13+
====
1114

1215
In Prometheus, metrics have been renamed with one addition for the backend cache, so that the following metrics exist as of Service Mesh 2.0:
1316

0 commit comments

Comments
 (0)