Skip to content

Commit d4453ac

Browse files
authored
Merge pull request #27428 from bergerhoffer/term-updates-cli-odo
Terminology style updates for odo and helm
2 parents 81376ba + ab4efc2 commit d4453ac

19 files changed

+63
-63
lines changed

cli_reference/developer_cli_odo/creating-instances-of-services-managed-by-operators.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ include::modules/common-attributes.adoc[]
55
:context: creating-instances-of-services-managed-by-operators
66
toc::[]
77

8-
Operators are a method of packaging, deploying, and managing Kubernetes services. With `{odo-title}`, you can create instances of services from the Custom Resource Definitions (CRDs) provided by the Operators. You can then use these instances in your projects and link them to your components.
8+
Operators are a method of packaging, deploying, and managing Kubernetes services. With `{odo-title}`, you can create instances of services from the custom resource definitions (CRDs) provided by the Operators. You can then use these instances in your projects and link them to your components.
99

1010
To create services from an Operator, you must ensure that the Operator has valid values defined in its `metadata` to start the requested service. `{odo-title}` uses the `metadata.annotations.alm-examples` YAML file of an Operator to start
11-
the service. If this YAML has placeholder values or sample values, a service cannot start. You can modify the YAML file and start the service with the modified values. To learn how to modify YAML files and start services from it, go to xref:../../cli_reference/developer_cli_odo/creating-instances-of-services-managed-by-operators.adoc#creating-services-from-yaml-files_creating-instances-of-services-managed-by-operators[Creating services from YAML files].
11+
the service. If this YAML has placeholder values or sample values, a service cannot start. You can modify the YAML file and start the service with the modified values. To learn how to modify YAML files and start services from it, see xref:../../cli_reference/developer_cli_odo/creating-instances-of-services-managed-by-operators.adoc#creating-services-from-yaml-files_creating-instances-of-services-managed-by-operators[Creating services from YAML files].
1212

1313
== Prerequisites
1414
* Install the `oc` CLI and log into the cluster.

cli_reference/developer_cli_odo/odo-release-notes.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ toc::[]
88
[id="odo-notable-improvements_{context}"]
99
== Notable changes and improvements in `{odo-title}`
1010

11-
* `{odo-title}` integration with devfiles is no longer a Technology Preview feature and is now fully supported. To learn more, see xref:../../cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/using-devfiles-in-odo.adoc#creating-a-java-application-by-using-a-devfile[Creating applications by using devfiles].
11+
* `{odo-title}` integration with devfiles is no longer a Technology Preview feature and is now fully supported. To learn more, see xref:../../cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/using-devfiles-in-odo.adoc#creating-a-java-application-by-using-a-devfile[Creating applications by using devfiles].
1212

1313
* The default deployment mechanism in `{odo-title}` is the devfile deployment now.
1414

15-
* Added documentation about converting S2I to devfile. See, xref:../../cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/using-devfiles-in-odo.adoc#converting-an-s2i-component-into-a-devfile-component_creating-applications-by-using-devfiles[Converting an S2I component into a devfile component].
15+
* Added documentation about converting S2I to devfile. See xref:../../cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/using-devfiles-in-odo.adoc#converting-an-s2i-component-into-a-devfile-component_creating-applications-by-using-devfiles[Converting an S2I component into a devfile component].
1616

17-
* Added commands to display JSON output for devfile components.
17+
* Added commands to display JSON output for devfile components.
1818

1919
* `odo debug` is no longer a Technology Preview feature and is now fully supported.
2020
To learn more, see xref:../../cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/debugging-applications-in-odo.html#debugging-an-application_debugging-applications-in-odo[Debugging applications in odo].
2121

22-
* `{odo-title}` integration with Operators is no longer a Technology Preview feature and is now fully supported. To learn more, see xref:../../cli_reference/developer_cli_odo/creating-instances-of-services-managed-by-operators.adoc[Creating instances of services managed by Operators].
22+
* `{odo-title}` integration with Operators is no longer a Technology Preview feature and is now fully supported. To learn more, see xref:../../cli_reference/developer_cli_odo/creating-instances-of-services-managed-by-operators.adoc[Creating instances of services managed by Operators].
2323

24-
* `{odo-title}` now supports IBM Z.
24+
* `{odo-title}` now supports IBM Z.
2525

2626
* Improved and enhanced output for many commands.
2727

cli_reference/tkn_cli/op-tkn-reference.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ toc::[]
88

99
This section lists the basic `tkn` CLI commands.
1010

11-
== Basic Syntax
11+
== Basic syntax
1212
`tkn [command or options] [arguments...]`
1313

14-
== Global Options
14+
== Global options
1515
`--help, -h`
1616

1717
// Utility commands

modules/developer-cli-odo-adding-storage-to-the-application-components.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use the `odo storage` command to add persistent data to your application. Exampl
1717
$ odo storage create <storage_name> --path=<path_to_the_directory> --size=<size>
1818
----
1919

20-
. Push the storage to the cluser:
20+
. Push the storage to the cluster:
2121
+
2222
[source,terminal]
2323
----

modules/developer-cli-odo-connecting-the-database.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Following environment variables were added to nodejs-nodejs-ex-mhbb component:
2626
- admin_password
2727
----
2828

29-
. See the environment variables of the application and the database in the Pod:
29+
. See the environment variables of the application and the database in the pod:
3030

31-
.. Get the Pod name:
31+
.. Get the pod name:
3232
+
3333
[source,terminal]
3434
----
@@ -43,7 +43,7 @@ mongodb-1-gsznc 1/1 Running 0 28m
4343
nodejs-nodejs-ex-mhbb-app-4-vkn9l 1/1 Running 0 1m
4444
----
4545

46-
.. Connect to the Pod:
46+
.. Connect to the pod:
4747
+
4848
[source,terminal]
4949
----

modules/developer-cli-odo-connecting-your-application-to-multiple-services-using-openshift-service-catalog.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ $ odo catalog list services
2626
+
2727
[source,terminal]
2828
----
29-
$ odo service <verb> <servicename>
29+
$ odo service <verb> <service_name>
3030
----

modules/developer-cli-odo-converting-an-s2i-component-into-a-devfile-component.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[id="converting-an-s2i-component-into-a-devfile-component_{context}"]
66
= Converting an S2I component into a devfile component
77

8-
With `{odo-title}`, you can create both Source-to-Image (S2I) and devfile components. If you have an existing S2I component, you can convert it into a devfile component using the `odo utils` command.
8+
With `{odo-title}`, you can create both Source-to-Image (S2I) and devfile components. If you have an existing S2I component, you can convert it into a devfile component using the `odo utils` command.
99

1010
.Procedure
1111

@@ -15,19 +15,19 @@ Run all the commands from the S2I component directory.
1515
+
1616
[source,terminal]
1717
----
18-
$ odo utils convert-to-devfile
18+
$ odo utils convert-to-devfile
1919
----
2020

2121
. Push the component to your cluster:
2222
+
2323
[source,terminal]
2424
----
25-
$ odo push
25+
$ odo push
2626
----
2727
+
2828
[NOTE]
2929
====
30-
If the devfile component deployment failed, delete it by running: `$ odo delete -a`
30+
If the devfile component deployment failed, delete it by running: `odo delete -a`
3131
====
3232
+
3333

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ endif::multi[]
4949
+
5050
[source,terminal]
5151
----
52-
$ cd <directory name>
52+
$ cd <directory_name>
5353
----
5454

5555
. Add a component of the type Node.js to your application:
@@ -95,7 +95,7 @@ $ odo url list
9595
+
9696
[source,terminal]
9797
----
98-
$ curl <URL>
98+
$ curl <url>
9999
----
100100

101101
ifeval::["{context}" == "creating-a-single-component-application-with-odo"]

modules/developer-cli-odo-creating-services-from-yaml-files.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
= Creating services from YAML files
88

9-
If the YAML definition of the service or Custom Resource (CR) has invalid or placeholder data, you can use the `--dry-run` flag to get the YAML definition, specify the correct values, and start the service using the corrected YAML definition.
9+
If the YAML definition of the service or custom resource (CR) has invalid or placeholder data, you can use the `--dry-run` flag to get the YAML definition, specify the correct values, and start the service using the corrected YAML definition.
1010
Printing and modifying the YAML used to start a service
1111
`{odo-title}` provides the feature to print the YAML definition of the service or CR provided by the Operator before starting a service.
1212

modules/developer-cli-odo-deploying-the-back-end-component.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Pushing to component backend of type binary
181181
✓ Building component [3s]
182182
----
183183
+
184-
Using `odo push`, {product-title} creates a container to host the back-end component, deploys the container into a Pod running on the {product-title} cluster, and starts the `backend` component.
184+
Using `odo push`, {product-title} creates a container to host the back-end component, deploys the container into a pod running on the {product-title} cluster, and starts the `backend` component.
185185
186186
. Validate:
187187

0 commit comments

Comments
 (0)