Skip to content

Commit

Permalink
Fixing SME review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Srivaralakshmi committed May 6, 2024
1 parent c936aa0 commit 5dbe692
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 13 deletions.
12 changes: 6 additions & 6 deletions modules/gitops-installing-argocd-cli-on-linux-using-rpm.adoc
Expand Up @@ -15,35 +15,35 @@ For {op-system-base-full} version 8 or later, you can install the {gitops-shortn
.Procedure

. Register with Red Hat Subscription Manager:
. Register with Red Hat Subscription Manager by running the following command:
+
[source,terminal]
----
# subscription-manager register
----

. Pull the latest subscription data:
. Pull the latest subscription data by running the following command:
+
[source,terminal]
----
# subscription-manager refresh
----

. List the available subscriptions:
. List the available subscriptions by running the following command:
+
[source,terminal]
----
# subscription-manager list --available --matches '*gitops*'
----

. In the output for the previous command, find the pool ID for your {OCP} subscription and attach the subscription to the registered system:
. In the output for the previous command, find the pool ID for your {OCP} subscription, and attach the subscription to the registered system by running the following command:
+
[source,terminal]
----
# subscription-manager attach --pool=<pool_id>
----

. Enable the repositories required by {gitops-title} for RHEL version 8 or later:
. Enable the repositories required by {gitops-title} for RHEL version 8 or later by running the following command:
+
* Linux (x86_64, amd64)
+
Expand Down Expand Up @@ -101,7 +101,7 @@ For {op-system-base-full} version 8 or later, you can install the {gitops-shortn
----
// Update the gitops version attribute value for every release
. Install the `openshift-gitops-argocd-cli` package:
. Install the `openshift-gitops-argocd-cli` package by running the following command:
+
[source,terminal]
----
Expand Down
13 changes: 10 additions & 3 deletions modules/gitops-installing-argocd-cli-on-linux.adoc
Expand Up @@ -27,18 +27,25 @@ For Linux distributions, you can download the {gitops-shortname} `argocd` CLI as
Newer versions of the CLI tool is compatible with the older versions of {gitops-title} server but not vice-versa.
====

. Extract the archive:
. Extract the archive by running the following command:
+
[source,terminal]
----
$ tar xvzf <file>
----

. Move the binary to a directory on your `PATH` environment variable:
. Move the binary to a directory on your `PATH` environment variable by running the following command:
+
[source,terminal]
----
$ sudo mv argocd-darwin-amd64 /usr/local/bin/argocd
$ sudo mv argocd /usr/local/bin/argocd
----

. Make the file executable by running the following command:
+
[source,terminal]
----
$ chmod +x /usr/local/bin/argocd
----

. After you install the {gitops-shortname} `argocd` CLI, verify that it is available by running the following command:
Expand Down
13 changes: 10 additions & 3 deletions modules/gitops-installing-argocd-cli-on-macos.adoc
Expand Up @@ -25,20 +25,27 @@ For macOS, you can download the {gitops-shortname} `argocd` CLI as a `tar.gz` ar
Newer versions of the CLI tool is compatible with the older versions of {gitops-title} server but not vice-versa.
====

. Extract the archive:
. Extract the archive by running the following command:
+
[source,terminal]
----
$ tar xvzf <file>
----

. Move the binary to a directory on your `PATH` environment variable:
. Move the binary to a directory on your `PATH` environment variable by running the following command:
+
[source,terminal]
----
$ sudo mv argocd-darwin-amd64 /usr/local/bin/argocd
$ sudo mv argocd /usr/local/bin/argocd
----

. Make the file executable by running the following command:
+
[source,terminal]
----
$ chmod +x /usr/local/bin/argocd
----

. After you install the {gitops-shortname} `argocd` CLI, verify that it is available by running the following command:
+
[source,terminal]
Expand Down
2 changes: 1 addition & 1 deletion modules/gitops-installing-argocd-cli-on-windows.adoc
Expand Up @@ -26,7 +26,7 @@ Newer versions of the CLI tool is compatible with the older versions of {gitops-

. Extract the archive with a ZIP program.

. Move the binary to a directory on your `PATH` environment variable:
. Move the binary to a directory on your `PATH` environment variable by running the following command:
+
[source,terminal]
----
Expand Down

0 comments on commit 5dbe692

Please sign in to comment.