Skip to content

Commit cace76c

Browse files
committed
RHIDP-5494: Create snippet and apply SME comments
1 parent 3aa35e7 commit cace76c

File tree

3 files changed

+32
-18
lines changed

3 files changed

+32
-18
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[id='snip-rhdh-install-operator-next-steps_{context}']
2+
3+
.Next steps
4+
* Use the Operator to create a {product} instance on a supported platform. For more information, see the following documentation for the platform that you want to use:
5+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_container_platform/assembly-install-rhdh-ocp-operator[Installing {product} on {ocp-short} with the Operator]
6+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_amazon_elastic_kubernetes_service/proc-rhdh-deploy-eks-operator_title-install-rhdh-eks[Installing {product-short} on {eks-short} with the Operator]
7+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_microsoft_azure_kubernetes_service/proc-rhdh-deploy-aks-operator_title-install-rhdh-aks[Installing {product-short} on {aks-short} with the Operator]
8+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_dedicated_on_google_cloud_platform/proc-install-rhdh-osd-gcp-operator_title-install-rhdh-osd-gcp[Installing {product-short} on {gcp-short} with the Operator]
9+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_google_kubernetes_engine/proc-rhdh-deploy-gke-operator.adoc_title-install-rhdh-gke#proc-deploy-rhdh-instance-gke.adoc_title-install-rhdh-gke[Deploying {product-short} on {gke-short} with the Operator]

modules/installation/artifacts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../artifacts

modules/installation/proc-install-rhdh-airgapped-environment-ocp-operator.adoc

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ curl -sSLO https://raw.githubusercontent.com/redhat-developer/rhdh-operator/refs
4848
+
4949
[source,terminal,subs="+quotes,+attributes"]
5050
----
51-
bash prepare-restricted-environment.sh \ (1)
52-
[--to-registry _<my.registry.example.com>_]] \ (2)
53-
[--use-oc-mirror true]
51+
bash prepare-restricted-environment.sh \
52+
--filter-versions "{product-version}" \
53+
[--to-registry _<my.registry.example.com>_] \ <1>
54+
[--use-oc-mirror true] <2>
5455
----
5556
<1> Specifies the URL for the target mirror registry where you want to mirror the images.
5657
<2> (Optional) Uses the `oc-mirror` {ocp-short} CLI plugin to mirror images.
@@ -69,6 +70,14 @@ The script can take several minutes to complete as it copies multiple images to
6970
kubectl -n rhdh-operator get pods
7071
----
7172

73+
.Next steps
74+
* Use the Operator to create a {product} instance on a supported platform. For more information, see the following documentation for the platform that you want to use:
75+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_container_platform/assembly-install-rhdh-ocp-operator[Installing {product} on {ocp-short} with the Operator]
76+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_amazon_elastic_kubernetes_service/proc-rhdh-deploy-eks-operator_title-install-rhdh-eks[Installing {product-short} on {eks-short} with the Operator]
77+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_microsoft_azure_kubernetes_service/proc-rhdh-deploy-aks-operator_title-install-rhdh-aks[Installing {product-short} on {aks-short} with the Operator]
78+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_dedicated_on_google_cloud_platform/proc-install-rhdh-osd-gcp-operator_title-install-rhdh-osd-gcp[Installing {product-short} on {gcp-short} with the Operator]
79+
** link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_google_kubernetes_engine/proc-rhdh-deploy-gke-operator.adoc_title-install-rhdh-gke#proc-deploy-rhdh-instance-gke.adoc_title-install-rhdh-gke[Deploying {product-short} on {gke-short} with the Operator]
80+
7281
== Installing {product} in a fully disconnected environment with the Operator
7382

7483
If your network has access to the registry through a bastion host, you can use the helper script to install {product} by mirroring the Operator-related images to disk and transferring them to your air-gapped environment without any connection to the internet.
@@ -98,12 +107,12 @@ curl -sSLO https://raw.githubusercontent.com/redhat-developer/rhdh-operator/refs
98107
[source,terminal,subs="+quotes,+attributes"]
99108
----
100109
bash prepare-restricted-environment.sh \
101-
--to-dir _<my_pulled_image_location>_
110+
--filter-versions "{product-version}" \
111+
--to-dir _<my_pulled_image_location>_ <1>
112+
[--use-oc-mirror true] <2>
102113
----
103-
+
104-
where
105-
106-
_<my_pulled_image_location>_ :: Specifies the absolute path to a directory where you want to pull all of the necessary images with the `--to-dir` option, for example, `/home/user/rhdh-operator-mirror-dir`.
114+
<1> Specifies the absolute path to a directory where you want to pull all of the necessary images with the `--to-dir` option, for example, `/home/user/rhdh-operator-mirror-dir`.
115+
<2> (Optional) Uses the `oc-mirror` {ocp-short} CLI plugin to mirror images.
107116
+
108117
[NOTE]
109118
====
@@ -115,10 +124,10 @@ The script can take several minutes to complete as it copies multiple images to
115124
+
116125
[source,terminal,subs="+quotes,+attributes"]
117126
----
118-
bash _<my_pulled_image_location>_/install.sh \ (1)
119-
--from-dir _<my_pulled_image_location>_ \ (2)
120-
[--to-registry _<my.registry.example.com>_] \ (3)
121-
[--use-oc-mirror true] (4)
127+
bash _<my_pulled_image_location>_/install.sh \ <1>
128+
--from-dir _<my_pulled_image_location>_ \ <2>
129+
[--to-registry _<my.registry.example.com>_] \ <3>
130+
[--use-oc-mirror true] <4>
122131
----
123132
<1> The downloaded image and the absolute path to the directory where it is stored on your system.
124133
<2> Specifies the directory where you want to pull all of the necessary images with the `--to-dir` option.
@@ -144,9 +153,4 @@ The script can take several minutes to complete as it automatically installs the
144153
kubectl -n rhdh-operator get pods
145154
----
146155

147-
.Next steps
148-
* To deploy {product-very-short} on {ocp-brand-name} with the Operator, see link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_container_platform/assembly-install-rhdh-ocp-operator[Installing {product} on {ocp-short} with the Operator]
149-
* To deploy {product-very-short} on {eks-brand-name} with the Operator, see link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_amazon_elastic_kubernetes_service/proc-rhdh-deploy-eks-operator_title-install-rhdh-eks[Installing {product-short} on {eks-short} with the Operator]
150-
* To deploy {product-very-short} on {aks-brand-name} with the Operator, see link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_microsoft_azure_kubernetes_service/proc-rhdh-deploy-aks-operator_title-install-rhdh-aks[Installing {product-short} on {aks-short} with the Operator]
151-
* To deploy {product-very-short} on {gcp-brand-name} with the Operator, see link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_openshift_dedicated_on_google_cloud_platform/proc-install-rhdh-osd-gcp-operator_title-install-rhdh-osd-gcp[Installing {product-short} on {gcp-short} with the Operator]
152-
* To deploy {product-very-short} on {gke-brand-name} with the Operator, see link:https://docs.redhat.com/en/documentation/red_hat_developer_hub/1.4/html/installing_red_hat_developer_hub_on_google_kubernetes_engine/proc-rhdh-deploy-gke-operator.adoc_title-install-rhdh-gke#proc-deploy-rhdh-instance-gke.adoc_title-install-rhdh-gke[Deploying {product-short} on {gke-short} with the Operator]
156+
include::../../artifacts/snip-rhdh-install-operator-next-steps.adoc[]

0 commit comments

Comments
 (0)