You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
az webapp up --name <inference-app-name> -g <resource-group-name>
114
137
```
115
138
116
139
1. Create a new container in your storage account for storing inference images called `inferencedatastore`.
117
140
1. Create a new folder in that container called `imagedata`.
118
141
1. Navigate to the ml.azure.com, `Datastores` and create a new datastore named `inferencedatastore` and connect it to the newly created container.
119
-
1. The key used for authentication is the `inference_auth_key` provided as an output of the service deployment.
120
-
1. Test the service by sending a GET or POST command using curl or Invoke-WebRequest:
142
+
1. Test the service by sending a GET or POST command using curl or Invoke-WebRequest where API_AUTH_SECRET is the random GUID generated for CUSTOMCONNSTR_API_AUTH_SECRET above:
121
143
122
144
Simple ping:
123
145
@@ -130,24 +152,3 @@ The workspace service provisions an App Service Plan and an App Service for host
Instead of provisioning InnerEye workspace service through AzureTRE API, you can also provision resources directly by invoking porter bundles:
137
-
138
-
1. Create a copy of `templates/workspace_services/innereye/.env.sample` with the name `.env` and update the variables with the appropriate values.
139
-
140
-
| Environment variable name | Description |
141
-
| ------------------------- | ----------- |
142
-
| `ID` | A GUID to identify the workspace service. The last 4 characters of this `ID` can be found in the resource names of the workspace service resources. |
143
-
| `WORKSPACE_ID` | The GUID identifier used when deploying the base workspace bundle. |
144
-
| `INFERENCE_SP_CLIENT_ID` | Service principal client ID used by the inference service to connect to Azure ML. Use the output from the step above. |
145
-
| `INFERENCE_SP_CLIENT_SECRET` | Service principal client secret used by the inference service to connect to Azure ML. Use the output from the step above. |
146
-
147
-
1. Build and install the InnerEye Deep Learning Service bundle
148
-
149
-
```cmd
150
-
make porter-build DIR=./templates/workspace_services/innereye
151
-
make porter-publish DIR=./templates/workspace_services/innereye
152
-
make porter-install DIR=./templates/workspace_services/innereye
0 commit comments