This commit is contained in:
Jim Minter 2020-03-26 09:53:40 -06:00
Родитель e04be5467d
Коммит fbbbec0460
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0730CBDA10D1A2D3
1 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -95,7 +95,6 @@ cluster:
LOCATION=eastus
RESOURCEGROUP="v4-$LOCATION"
export CLUSTER=cluster
USER_PULL_SECRET=<https://cloud.redhat.com/ pull secret content>
az group create -g "$RESOURCEGROUP" -l $LOCATION
az network vnet create \
@ -129,18 +128,26 @@ cluster:
Administrator" role on the vnet, `az aro create` will set up the role
assignments for you automatically.
1. Optionally, a pull secret which enables your cluster to access Red Hat
container registries along with additional content. Access your pull secret
by navigating to
https://cloud.redhat.com/openshift/install/azure/installer-provisioned and
clicking *Copy Pull Secret*.
## Using the extension
1. Create a cluster:
```bash
USER_PULL_SECRET="https://cloud.redhat.com/ pull secret content"
az aro create \
-g "$RESOURCEGROUP" \
-n "$CLUSTER" \
--vnet dev-vnet \
--master-subnet "$CLUSTER-master" \
--worker-subnet "$CLUSTER-worker"
--worker-subnet "$CLUSTER-worker" \
--pull-secret "$USER_PULL_SECRET"
```