File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,15 @@ Follow these steps to create a virtual network containing two empty subnets.
75
75
LOCATION=eastus #the location of your cluster
76
76
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
77
77
CLUSTER=cluster #the name of your cluster
78
+ PULL_SECRET="<optional-pull-secret>"
78
79
```
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
+
79
87
80
88
2 . Create a resource group for your cluster.
81
89
@@ -128,7 +136,8 @@ az aro create \
128
136
-n "$CLUSTER" \
129
137
--vnet vnet \
130
138
--master-subnet "$CLUSTER-master" \
131
- --worker-subnet "$CLUSTER-worker"
139
+ --worker-subnet "$CLUSTER-worker" \
140
+ --pull-secret "$PULL_SECRET"
132
141
```
133
142
134
143
> [ !NOTE]
@@ -159,4 +168,4 @@ az aro delete -g "$RESOURCEGROUP" -n "$CLUSTER"
159
168
for subnet in "$CLUSTER-master" "$CLUSTER-worker"; do
160
169
az network vnet subnet delete -g "$RESOURCEGROUP" --vnet-name vnet -n "$subnet"
161
170
done
162
- ```
171
+ ```
You can’t perform that action at this time.
0 commit comments