Skip to content

Commit 72943b1

Browse files
authored
Merge pull request #109285 from sakthi-vetrivel/aro-pull-secrets
adding note about red hat pull secrets
2 parents 1386c89 + acda593 commit 72943b1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,15 @@ Follow these steps to create a virtual network containing two empty subnets.
7575
LOCATION=eastus #the location of your cluster
7676
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
7777
CLUSTER=cluster #the name of your cluster
78+
PULL_SECRET="<optional-pull-secret>"
7879
```
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+
7987

8088
2. Create a resource group for your cluster.
8189

@@ -128,7 +136,8 @@ az aro create \
128136
-n "$CLUSTER" \
129137
--vnet vnet \
130138
--master-subnet "$CLUSTER-master" \
131-
--worker-subnet "$CLUSTER-worker"
139+
--worker-subnet "$CLUSTER-worker" \
140+
--pull-secret "$PULL_SECRET"
132141
```
133142

134143
>[!NOTE]
@@ -159,4 +168,4 @@ az aro delete -g "$RESOURCEGROUP" -n "$CLUSTER"
159168
for subnet in "$CLUSTER-master" "$CLUSTER-worker"; do
160169
az network vnet subnet delete -g "$RESOURCEGROUP" --vnet-name vnet -n "$subnet"
161170
done
162-
```
171+
```

0 commit comments

Comments
 (0)