Skip to content

Commit 6ef1831

Browse files
authored
Update howto-using-azure-redhat-openshift.md
Update Red Hat URL for accessing pull secret, and update az command to access the pull secret from the saved file.
1 parent 8ac4cbd commit 6ef1831

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

articles/openshift/howto-using-azure-redhat-openshift.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,17 @@ The `az aro` extension allows you to create, access, and delete Azure Red Hat Op
6464
aro 0.3.0
6565
...
6666
```
67-
67+
68+
### Optionally obtain a Red Hat pull secret
69+
70+
A Red Hat pull secret enables your cluster to access Red Hat container registries along with additional content. Its use is optional but recommended.
71+
72+
Obtain your pull secret by navigating to https://cloud.redhat.com/openshift/install/azure/aro-provisioned and clicking *Download pull secret*.
73+
74+
You will need to log in to your Red Hat account, or create a new Red Hat account with your business email and accept the terms and conditions.
75+
76+
Keep the saved `pull-secret.txt` file somewhere safe, it will be used in each cluster creation.
77+
6878
### Create a virtual network containing two empty subnets
6979

7080
Follow these steps to create a virtual network containing two empty subnets.
@@ -75,15 +85,7 @@ Follow these steps to create a virtual network containing two empty subnets.
7585
LOCATION=eastus #the location of your cluster
7686
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
7787
CLUSTER=cluster #the name of your cluster
78-
PULL_SECRET="<optional-pull-secret>"
7988
```
80-
>[!NOTE]
81-
> The optional pull secret enables your cluster to access Red Hat container registries along with additional content.
82-
>
83-
> Access your pull secret by navigating to https://cloud.redhat.com/openshift/install/azure/installer-provisioned and clicking *Copy Pull Secret*.
84-
>
85-
> You will need to log in to your Red Hat account, or create a new Red Hat account with your business email and accept the terms and conditions.
86-
8789

8890
2. Create a resource group for your cluster.
8991

@@ -139,7 +141,7 @@ az aro create \
139141
--worker-subnet "$CLUSTER-worker" \
140142
--cluster-resource-group "aro-$CLUSTER" \
141143
--domain "$CLUSTER" \
142-
--pull-secret "$PULL_SECRET"
144+
--pull-secret @pull-secret.txt
143145
```
144146

145147
>[!NOTE]

0 commit comments

Comments
 (0)