Skip to content

Commit 6863a36

Browse files
authored
Merge pull request #80747 from jab-rh/remove-trailing-colon-from-block-header
Omit trailing colon from block headers
2 parents 2585496 + 5768d34 commit 6863a36

File tree

51 files changed

+100
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+100
-100
lines changed

_unused_topics/sts-mode-installing-manual-config.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ EOF
394394

395395
.. For each `CredentialsRequest` CR that is extracted from the release image, create a secret with the target namespace and target name that is indicated in each `CredentialsRequest`, substituting the AWS IAM role ARN created previously for each component:
396396
+
397-
.Example secret manifest for `openshift-machine-api`:
397+
.Example secret manifest for `openshift-machine-api`
398398
+
399399
[source,terminal]
400400
----

modules/agent-installer-architectures.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $ oc adm release info <release_image> -o jsonpath="{ .metadata.metadata}" <1>
4343
----
4444
<1> Replace `<release_image>` with the release image. For example: `quay.io/openshift-release-dev/ocp-release@sha256:123abc456def789ghi012jkl345mno678pqr901stu234vwx567yz0`.
4545
+
46-
.Example output when the release image uses the `multi` payload:
46+
.Example output when the release image uses the `multi` payload
4747
[source,terminal]
4848
----
4949
{"release.openshift.io architecture":"multi"}

modules/creating-a-service-account-in-your-project.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ metadata:
5858
$ oc create -f test-service-account.yaml
5959
----
6060
+
61-
.Example output:
61+
.Example output
6262
[source,terminal]
6363
----
6464
serviceaccount/<service_account_name> created
@@ -72,7 +72,7 @@ $ oc describe serviceaccount <service_account_name> <1>
7272
----
7373
<1> Replace `<service_account_name>` with the name of your service account.
7474
+
75-
.Example output:
75+
.Example output
7676
+
7777
[source,terminal]
7878
----

modules/creating-instance-aws-load-balancer-controller.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ spec:
9191

9292
. Create a YAML file that defines the `Service` resource:
9393
+
94-
.Example `service-albo.yaml` file:
94+
.Example `service-albo.yaml` file
9595
[source,yaml]
9696
----
9797
apiVersion: v1
@@ -113,7 +113,7 @@ spec:
113113

114114
. Create a YAML file that defines the `Ingress` resource:
115115
+
116-
.Example `ingress-albo.yaml` file:
116+
.Example `ingress-albo.yaml` file
117117
[source,yaml]
118118
----
119119
apiVersion: networking.k8s.io/v1

modules/deploying-a-pod-that-includes-an-aws-sdk.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
$ oc create -f awsboto3sdk-pod.yaml
6868
----
6969
+
70-
.Example output:
70+
.Example output
7171
+
7272
[source,terminal]
7373
----

modules/developer-cli-odo-adding-storage-to-a-specific-container.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ components:
3838
$ odo storage create store --path /data --size 1Gi --container runtime
3939
----
4040
+
41-
.Output of the command:
41+
.Output of the command
4242
+
4343
[source,terminal]
4444
----

modules/developer-cli-odo-openshift-cluster-objects.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The pod created by {odo-title} executes two Init Containers:
1717

1818
The `copy-supervisord` Init container copies necessary files onto an `emptyDir` volume. The main application container utilizes these files from the `emptyDir` volume.
1919

20-
.Files that are copied onto the `emptyDir` volume:
20+
.Files that are copied onto the `emptyDir` volume
2121
* Binaries:
2222
** `go-init` is a minimal init system. It runs as the first process (PID 1) inside the application container. go-init starts the `SupervisorD` daemon which runs the developer code. go-init is required to handle orphaned processes.
2323
** `SupervisorD` is a process control system. It watches over configured processes and ensures that they are running. It also restarts services when necessary. For {odo-title}, `SupervisorD` executes and monitors the developer code.

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The correct path for the URL would be \http://8080-tcp.192.168.39.112.nip.io/api
124124
$ odo describe
125125
----
126126
+
127-
.Example output:
127+
.Example output
128128
[source,terminal]
129129
----
130130
Component Name: backend
@@ -207,7 +207,7 @@ To see this, unlink the component from the PostgreSQL service first:
207207
$ odo unlink PostgresCluster/hippo
208208
----
209209

210-
.Example output:
210+
.Example output
211211
[source,terminal]
212212
----
213213
✓ Successfully unlinked component "backend" from service "PostgresCluster/hippo"
@@ -230,7 +230,7 @@ Next, use the `--inlined` flag to create a link:
230230
$ odo link PostgresCluster/hippo --inlined
231231
----
232232

233-
.Example output:
233+
.Example output
234234
[source,terminal]
235235
----
236236
✓ Successfully created link between component "backend" and service "PostgresCluster/hippo"
@@ -290,7 +290,7 @@ After a link operation, run `odo push` as usual. Upon successful completion of t
290290
$ odo exec -- env | grep pgVersion
291291
----
292292

293-
.Example output:
293+
.Example output
294294
[source,terminal]
295295
----
296296
pgVersion=13
@@ -310,7 +310,7 @@ and then run `odo push`. To validate if both the mappings got injected correctly
310310
$ odo exec -- env | grep -e "pgVersion\|pgImage"
311311
----
312312

313-
.Example output:
313+
.Example output
314314
[source,terminal]
315315
----
316316
pgVersion=13
@@ -353,7 +353,7 @@ $ odo link PostgresCluster/hippo --bind-as-files
353353
$ odo push
354354
----
355355

356-
.Example `odo describe` output:
356+
.Example `odo describe` output
357357
[source,terminal]
358358
----
359359
$ odo describe
@@ -414,37 +414,37 @@ Linked Services:
414414

415415
Everything that was an environment variable in the `key=value` format in the earlier `odo describe` output is now mounted as a file. Use the `cat` command to view the contents of some of these files:
416416

417-
.Example command:
417+
.Example command
418418
[source,terminal]
419419
----
420420
$ odo exec -- cat /bindings/backend-postgrescluster-hippo/password
421421
----
422422

423-
.Example output:
423+
.Example output
424424
[source,terminal]
425425
----
426426
q({JC:jn^mm/Bw}eu+j.GX{k
427427
----
428428

429-
.Example command:
429+
.Example command
430430
[source,terminal]
431431
----
432432
$ odo exec -- cat /bindings/backend-postgrescluster-hippo/user
433433
----
434434

435-
.Example output:
435+
.Example output
436436
[source,terminal]
437437
----
438438
hippo
439439
----
440440

441-
.Example command:
441+
.Example command
442442
[source,terminal]
443443
----
444444
$ odo exec -- cat /bindings/backend-postgrescluster-hippo/clusterIP
445445
----
446446

447-
.Example output:
447+
.Example output
448448
[source,terminal]
449449
----
450450
10.101.78.56
@@ -466,25 +466,25 @@ $ odo push
466466

467467
These custom bindings get mounted as files instead of being injected as environment variables. To validate that this worked, run the following command:
468468

469-
.Example command:
469+
.Example command
470470
[source,terminal]
471471
----
472472
$ odo exec -- cat /bindings/backend-postgrescluster-hippo/pgVersion
473473
----
474474

475-
.Example output:
475+
.Example output
476476
[source,terminal]
477477
----
478478
13
479479
----
480480

481-
.Example command:
481+
.Example command
482482
[source,terminal]
483483
----
484484
$ odo exec -- cat /bindings/backend-postgrescluster-hippo/pgImage
485485
----
486486

487-
.Example output:
487+
.Example output
488488
[source,terminal]
489489
----
490490
registry.developers.crunchydata.com/crunchydata/crunchy-postgres-ha:centos8-13.4-0

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To list the registries currently contacted by `odo`, run the command:
1818
$ odo registry list
1919
----
2020

21-
.Example output:
21+
.Example output
2222
[source,terminal]
2323
----
2424
NAME URL SECURE
@@ -37,7 +37,7 @@ To add a registry, run the command:
3737
$ odo registry add
3838
----
3939

40-
.Example output:
40+
.Example output
4141
[source,terminal]
4242
----
4343
$ odo registry add StageRegistry https://registry.stage.devfile.io
@@ -62,7 +62,7 @@ To delete a registry, run the command:
6262
$ odo registry delete
6363
----
6464

65-
.Example output:
65+
.Example output
6666
[source,terminal]
6767
----
6868
$ odo registry delete StageRegistry
@@ -81,7 +81,7 @@ To update the URL or the personal access token of a registry already registered,
8181
$ odo registry update
8282
----
8383

84-
.Example output:
84+
.Example output
8585
[source,terminal]
8686
----
8787
$ odo registry update MyRegistry https://otherregistry.example.com --token <other_access_token>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To add a storage volume to the cluster, run the command:
1414
$ odo storage create
1515
----
1616

17-
.Example output:
17+
.Example output
1818
[source,terminal]
1919
----
2020
$ odo storage create store --path /data --size 1Gi
@@ -38,7 +38,7 @@ To check the storage volumes currently used by the component, run the command:
3838
$ odo storage list
3939
----
4040

41-
.Example output:
41+
.Example output
4242
[source,terminal]
4343
----
4444
$ odo storage list
@@ -57,7 +57,7 @@ To delete a storage volume, run the command:
5757
$ odo storage delete
5858
----
5959

60-
.Example output:
60+
.Example output
6161
[source,terminal]
6262
----
6363
$ odo storage delete store -f
@@ -98,7 +98,7 @@ In the example, there are two containers,`nodejs1` and `nodejs2`. To attach stor
9898
$ odo storage create --container
9999
----
100100

101-
.Example output:
101+
.Example output
102102
[source,terminal]
103103
----
104104
$ odo storage create store --path /data --size 1Gi --container nodejs2
@@ -114,7 +114,7 @@ You can list the storage resources, using the `odo storage list` command:
114114
$ odo storage list
115115
----
116116

117-
.Example output:
117+
.Example output
118118
[source,terminal]
119119
----
120120
The component 'nodejs-testing-xnfg' has the following storage attached:

0 commit comments

Comments
 (0)