Skip to content

Commit 83e115d

Browse files
authored
Merge pull request #211902 from FlorianBorn71/AzurePortalScreenshotOutOfDate
Change the Azure portal storage creation screenshot as it was out of …
2 parents 1420a28 + e4c7fa8 commit 83e115d

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

articles/remote-rendering/quickstarts/convert-model.md

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -44,56 +44,55 @@ You need:
4444

4545
## Azure setup
4646

47-
If you do not have an account yet, go to [https://azure.microsoft.com/get-started/](https://azure.microsoft.com/get-started/), click on the free account option, and follow the instructions.
47+
If you don't have an account yet, go to [https://azure.microsoft.com/get-started/](https://azure.microsoft.com/get-started/), select the free account option, and follow the instructions.
4848

4949
Once you have an Azure account, go to [https://portal.azure.com/#home](https://portal.azure.com/#home).
5050

5151
### Storage account creation
5252

5353
To create blob storage, you first need a storage account.
54-
To create one, click on the "Create a resource" button:
54+
1. To create one, select "Create a resource":
5555

5656
![Azure - add resource](media/azure-add-a-resource.png)
5757

58-
From the new screen, choose **Storage** on the left side and then **Storage account - blob, file, table, queue** from the next column:
58+
2. From the new screen, choose **Storage** on the left side and then **Storage account - blob, file, table, queue** from the next column:
5959

6060
![Azure - add storage](media/azure-add-storage.png)
6161

62-
Clicking this button will bring up the following screen with storage properties to fill out:
62+
3. Clicking this button will bring up the following screen with storage properties to fill out:
6363

6464
![Azure Setup](media/azure-setup1.png)
6565

66-
Fill out the form in the following manner:
66+
4. Fill out the form in the following manner:
6767

6868
* Create a new Resource Group from the link below the drop-down box and name this **ARR_Tutorial**
6969
* For the **Storage account name**, enter a unique name here. **This name must be globally unique**, otherwise there will be a prompt that informs you that the name is already taken. In the scope of this quickstart, we name it **arrtutorialstorage**. Accordingly, you need to replace it with your name for any occurrence in this quickstart.
70-
* Select a **location** close to you. Ideally use the same location as used for setting up the rendering in the other quickstart.
70+
* Select a **Region** close to you. Ideally use the same [region](../reference/regions.md) as used for setting up the rendering in the other quickstart.
7171
* **Performance** set to 'Premium'. 'Standard' works as well, but has lower loading time characteristics when a model is loaded by the runtime.
72-
* **Account kind** set to 'StorageV2 (general purpose v2)'
73-
* **Replication** set to 'Read-access geo-redundant storage (RA-GRS)'
74-
* **Access tier** set to 'Hot'
72+
* **Premium account type** set to 'Block blobs'
73+
* **Redundancy** set to 'Zone-redundant storage (ZRS)'
7574

76-
None of the properties in other tabs have to be changed, so you can proceed with **"Review + create"** and then follow the steps to complete the setup.
75+
5. None of the properties in other tabs have to be changed, so you can proceed with **"Review + create"** and then follow the steps to complete the setup.
7776

78-
The website now informs you about the progress of your deployment and reports "Your deployment is complete" eventually. Click on the **"Go to resource"** button for the next steps:
77+
6. The website now informs you about the progress of your deployment and reports "Your deployment is complete" eventually. Select **"Go to resource"** for the next steps:
7978

8079
![Azure Storage creation complete](./media/storage-creation-complete.png)
8180

8281
### Blob storage creation
8382

8483
Next we need two blob containers, one for input and one for output.
8584

86-
From the **"Go to resource"** button above, you get to a page with a panel on the left that contains a list menu. In that list under the **"Blob service"** category, click on the **"Containers"** button:
85+
1. From the **"Go to resource"** button above, you get to a page with a panel on the left that contains a list menu. In that list under the **"Blob service"** category, select **"Containers"**:
8786

8887
![Azure - add Containers](./media/azure-add-containers.png)
8988

90-
Press the **"+ Container"** button to create the **input** blob storage container.
89+
2. Press the **"+ Container"** button to create the **input** blob storage container.
9190
Use the following settings when creating it:
9291

9392
* Name = arrinput
9493
* Public access level = Private
9594

96-
After the container has been created, click **+ Container** again and repeat with these settings for the **output** container:
95+
3. After the container has been created, select **+ Container** again and repeat with these settings for the **output** container:
9796

9897
* Name = arroutput
9998
* Public access level = Private
@@ -108,19 +107,19 @@ There are three distinct ways to trigger a model conversion:
108107

109108
### 1. Conversion via the ARRT tool
110109

111-
There is a [UI-based tool called ARRT](./../samples/azure-remote-rendering-asset-tool.md) to start conversions and interact with the rendered result.
110+
There's a [UI-based tool called ARRT](./../samples/azure-remote-rendering-asset-tool.md) to start conversions and interact with the rendered result.
112111
![ARRT](./../samples/media/azure-remote-rendering-asset-tool.png "ARRT screenshot")
113112

114113
### 2. Conversion via a PowerShell script
115114

116-
To make it easier to call the asset conversion service, we provide a utility script. It is located in the *Scripts* folder and is called **Conversion.ps1**.
115+
To make it easier to call the asset conversion service, we provide a utility script. It's located in the *Scripts* folder and is called **Conversion.ps1**.
117116

118117
In particular, this script
119118

120-
1. uploads all files in a given directory from local disk to the input storage container
121-
1. calls the [the asset conversion REST API](../how-tos/conversion/conversion-rest-api.md), which will retrieve the data from the input storage container and start a conversion, which will return a conversion ID
122-
1. poll the conversion status API with the retrieved conversion ID until the conversion process terminates with success or failure
123-
1. retrieves a link to the converted asset in the output storage
119+
* uploads all files in a given directory from local disk to the input storage container,
120+
* calls the [the asset conversion REST API](../how-tos/conversion/conversion-rest-api.md), which will retrieve the data from the input storage container and start a conversion, which will return a conversion ID,
121+
* polls the conversion status API with the retrieved conversion ID until the conversion process terminates with success or failure,
122+
* retrieves a link to the converted asset in the output storage.
124123

125124
The script reads its configuration from the file *Scripts\arrconfig.json*. Open that JSON file in a text editor.
126125

@@ -152,7 +151,7 @@ The script reads its configuration from the file *Scripts\arrconfig.json*. Open
152151
The configuration within the **accountSettings** group (account ID and key) should be filled out analogous to the credentials in the [Render a model with Unity quickstart](render-model.md).
153152

154153
Inside the **assetConversionSettings** group, make sure to change **resourceGroup**, **blobInputContainerName**, and **blobOutputContainerName** as seen above.
155-
Note that the value for **arrtutorialstorage** needs to be replaced with the unique name you picked during storage account creation.
154+
The value for **arrtutorialstorage** needs to be replaced with the unique name you picked during storage account creation.
156155

157156
Change **localAssetDirectoryPath** to point to the directory on your disk, which contains the model you intend to convert. Be careful to properly escape backslashes ("\\") in the path using double backslashes ("\\\\").
158157

@@ -199,14 +198,14 @@ The conversion script generates a *Shared Access Signature (SAS)* URI for the co
199198

200199
## Optional: Re-creating a SAS URI
201200

202-
The SAS URI created by the conversion script will only be valid for 24 hours. However, after it expired you do not need to convert your model again. Instead, you can create a new SAS in the portal as described in the next steps:
201+
The SAS URI created by the conversion script will only be valid for 24 hours. However, after it expired you don't need to convert your model again. Instead, you can create a new SAS in the portal as described in the next steps:
203202

204203
1. Go to the [Azure portal](https://www.portal.azure.com)
205-
2. Click on your **Storage account** resource:
204+
2. Select your **Storage account** resource:
206205

207206
![Screenshot that highlights the selected Storage account resource.](./media/portal-storage-accounts.png)
208207

209-
3. In the following screen, click on **Storage explorer** in the left panel and find your output model (*.arrAsset* file) in the *arroutput* blob storage container. Right-click on the file and select **Get Shared Access Signature** from the context menu:
208+
3. In the following screen, Select **Storage explorer** in the left panel and find your output model (*.arrAsset* file) in the *arroutput* blob storage container. Right-click on the file and select **Get Shared Access Signature** from the context menu:
210209

211210
![Signature Access](./media/portal-storage-explorer.png)
212211

52.4 KB
Loading

0 commit comments

Comments
 (0)