Skip to content

Commit 51c2223

Browse files
authored
Merge pull request #87845 from eromanova97/RHDEVDOCS-2108
2 parents bf5b914 + 1441306 commit 51c2223

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

modules/op-installing-pipelines-operator-using-the-cli.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33

44
:_mod-docs-content-type: PROCEDURE
55
[id="op-installing-pipelines-operator-using-the-cli_{context}"]
6-
= Installing the {pipelines-shortname} Operator using the CLI
6+
= Installing the {pipelines-shortname} Operator by using the CLI
77

8-
You can install {pipelines-title} Operator from the OperatorHub using the CLI.
8+
You can install {pipelines-title} Operator from OperatorHub by using the command-line interface (CLI).
99

10-
[discrete]
1110
.Procedure
1211

13-
. Create a Subscription object YAML file to subscribe a namespace to the {pipelines-title} Operator,
12+
. Create a `Subscription` object YAML file to subscribe a namespace to the {pipelines-title} Operator,
1413
for example, `sub.yaml`:
1514
+
16-
.Example Subscription
15+
.Example `Subscription` YAML
1716
[source,yaml]
1817
----
1918
apiVersion: operators.coreos.com/v1alpha1
@@ -22,18 +21,19 @@ metadata:
2221
name: openshift-pipelines-operator
2322
namespace: openshift-operators
2423
spec:
25-
channel: <channel name> <1>
26-
name: openshift-pipelines-operator-rh <2>
27-
source: redhat-operators <3>
24+
channel: <channel_name> # <1>
25+
name: openshift-pipelines-operator-rh # <2>
26+
source: redhat-operators # <3>
2827
sourceNamespace: openshift-marketplace <4>
2928
----
30-
<1> The channel name of the Operator. The `pipelines-<version>` channel is the default channel. For example, the default channel for {pipelines-title} Operator version `1.7` is `pipelines-1.7`. The `latest` channel enables installation of the most recent stable version of the {pipelines-title} Operator.
29+
<1> Name of the channel that you want to subscribe. The `pipelines-<version>` channel is the default channel. For example, the default channel for {pipelines-title} Operator version `1.7` is `pipelines-1.7`. The `latest` channel enables installation of the most recent stable version of the {pipelines-title} Operator.
3130
<2> Name of the Operator to subscribe to.
32-
<3> Name of the CatalogSource that provides the Operator.
33-
<4> Namespace of the CatalogSource. Use `openshift-marketplace` for the default OperatorHub CatalogSources.
31+
<3> Name of the `CatalogSource` object that provides the Operator.
32+
<4> Namespace of the `CatalogSource` object. Use `openshift-marketplace` for the default OperatorHub catalog sources.
3433

35-
. Create the Subscription object:
34+
. Create the `Subscription` object by running the following command:
3635
+
36+
[source, terminal]
3737
----
3838
$ oc apply -f sub.yaml
3939
----

0 commit comments

Comments
 (0)