Skip to content

Commit 4c64eb9

Browse files
authored
Merge pull request #50852 from ShaunaDiaz/BZ1982550_f
BZ1982550_f fixing footnote numbering for Customer Portal
2 parents 75b3d55 + a6a236b commit 4c64eb9

7 files changed

+136
-136
lines changed

modules/configuring-ovs-log-level-permanently.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apiVersion: machineconfiguration.openshift.io/v1
2525
kind: MachineConfig
2626
metadata:
2727
labels:
28-
machineconfiguration.openshift.io/role: master <.>
28+
machineconfiguration.openshift.io/role: master <1>
2929
name: 99-change-ovs-loglevel
3030
spec:
3131
config:
@@ -36,13 +36,13 @@ spec:
3636
- dropins:
3737
- contents: |
3838
[Service]
39-
ExecStartPost=-/usr/bin/ovs-appctl vlog/set syslog:dbg <.>
39+
ExecStartPost=-/usr/bin/ovs-appctl vlog/set syslog:dbg <2>
4040
ExecReload=-/usr/bin/ovs-appctl vlog/set syslog:dbg
4141
name: 20-ovs-vswitchd-restart.conf
4242
name: ovs-vswitchd.service
4343
----
44-
<.> After you perform this procedure to configure control plane nodes, repeat the procedure and set the role to `worker` to configure worker nodes.
45-
<.> Set the `syslog:<log_level>` value. Log levels are `off`, `emer`, `err`, `warn`, `info`, or `dbg`. Setting the value to `off` filters out all log messages.
44+
<1> After you perform this procedure to configure control plane nodes, repeat the procedure and set the role to `worker` to configure worker nodes.
45+
<2> Set the `syslog:<log_level>` value. Log levels are `off`, `emer`, `err`, `warn`, `info`, or `dbg`. Setting the value to `off` filters out all log messages.
4646

4747
. Apply the machine config:
4848
+

modules/developer-cli-odo-ref-build-images.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ components:
1212
- image:
1313
imageName: quay.io/myusername/myimage
1414
dockerfile:
15-
uri: ./Dockerfile <.>
16-
buildContext: ${PROJECTS_ROOT} <.>
15+
uri: ./Dockerfile <1>
16+
buildContext: ${PROJECTS_ROOT} <2>
1717
name: component-built-from-dockerfile
1818
----
19-
<.> The `uri` field indicates the relative path of the Dockerfile to use, relative to the directory containing the `devfile.yaml`. The devfile specification indicates that `uri` could also be an HTTP URL, but this case is not supported by odo yet.
20-
<.> The `buildContext` indicates the directory used as build context. The default value is `+${PROJECTS_ROOT}+`.
19+
<1> The `uri` field indicates the relative path of the Dockerfile to use, relative to the directory containing the `devfile.yaml`. The devfile specification indicates that `uri` could also be an HTTP URL, but this case is not supported by odo yet.
20+
<2> The `buildContext` indicates the directory used as build context. The default value is `+${PROJECTS_ROOT}+`.
2121

2222
For each image component, odo executes either `podman` or `docker` (the first one found, in this order), to build the image with the specified Dockerfile, build context, and arguments.
2323

modules/developer-cli-odo-ref-catalog.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ $ odo catalog describe component nodejs
4949
.Example output
5050
[source,terminal]
5151
----
52-
* Registry: DefaultDevfileRegistry <.>
52+
* Registry: DefaultDevfileRegistry <1>
5353
54-
Starter Projects: <.>
54+
Starter Projects: <2>
5555
---
5656
name: nodejs-starter
5757
attributes: {}
@@ -68,8 +68,8 @@ projectsource:
6868
zip: null
6969
custom: null
7070
----
71-
<.> _Registry_ is the registry from which the devfile is retrieved.
72-
<.> _Starter projects_ are sample projects in the same language and framework of the devfile, that can help you start a new project.
71+
<1> _Registry_ is the registry from which the devfile is retrieved.
72+
<2> _Starter projects_ are sample projects in the same language and framework of the devfile, that can help you start a new project.
7373

7474

7575
See `odo create` for more information on creating a project from a starter project.

modules/migration-mtc-cr-manifests.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -132,20 +132,20 @@ metadata:
132132
labels:
133133
migplan: <migplan>
134134
spec:
135-
analyzeImageCount: true <.>
136-
analyzeK8SResources: true <.>
137-
analyzePVCapacity: true <.>
138-
listImages: false <.>
139-
listImagesLimit: 50 <.>
135+
analyzeImageCount: true <1>
136+
analyzeK8SResources: true <2>
137+
analyzePVCapacity: true <3>
138+
listImages: false <4>
139+
listImagesLimit: 50 <5>
140140
migPlanRef:
141141
name: <migplan>
142142
namespace: openshift-migration
143143
----
144-
<.> Optional: Returns the number of images.
145-
<.> Optional: Returns the number, kind, and API version of the Kubernetes resources.
146-
<.> Optional: Returns the PV capacity.
147-
<.> Returns a list of image names. The default is `false` so that the output is not excessively long.
148-
<.> Optional: Specify the maximum number of image names to return if `listImages` is `true`.
144+
<1> Optional: Returns the number of images.
145+
<2> Optional: Returns the number, kind, and API version of the Kubernetes resources.
146+
<3> Optional: Returns the PV capacity.
147+
<4> Returns a list of image names. The default is `false` so that the output is not excessively long.
148+
<5> Optional: Specify the maximum number of image names to return if `listImages` is `true`.
149149

150150
[id="migcluster_{context}"]
151151
== MigCluster

modules/nw-egress-router-pod-ovn.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ kind: Pod
3131
metadata:
3232
name: egress-router-pod
3333
annotations:
34-
k8s.v1.cni.cncf.io/networks: egress-router-redirect <.>
34+
k8s.v1.cni.cncf.io/networks: egress-router-redirect <1>
3535
spec:
3636
containers:
3737
- name: egress-router-pod
3838
image: {egress-pod-image-name}
3939
----
40-
<.> The specified network must match the name of the network attachment definition. You can specify a namespace, interface name, or both, by replacing the values in the following pattern: `<namespace>/<network>@<interface>`. By default, Multus adds a secondary network interface to the pod with a name such as `net1`, `net2`, and so on.
40+
<1> The specified network must match the name of the network attachment definition. You can specify a namespace, interface name, or both, by replacing the values in the following pattern: `<namespace>/<network>@<interface>`. By default, Multus adds a secondary network interface to the pod with a name such as `net1`, `net2`, and so on.
4141

4242
// Clear temporary attributes
4343
:!router-type:

0 commit comments

Comments
 (0)