Skip to content

Commit 164b091

Browse files
Additional changes.
1 parent 4e6ebb8 commit 164b091

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

articles/dev-spaces/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ In Visual Studio:
217217

218218
You receive a *Service cannot be started* error when attempting to rerun a service after you have removed and then recreated the Azure Dev Spaces controller associated with this cluster. In this situation, the verbose output contains the following text:
219219

220-
```cmd
220+
```output
221221
Installing Helm chart...
222222
Release "azds-33d46b-default-webapp1" does not exist. Installing it now.
223223
Error: release azds-33d46b-default-webapp1 failed: services "webapp1" already exists
@@ -331,7 +331,7 @@ To fix this issue:
331331

332332
You need *Owner* or *Contributor* access in your Azure subscription to manage Azure Dev Spaces. If you're trying to manage Dev Spaces and you don't have *Owner* or *Contributor* access to the associated Azure subscription, you may see an authorization error. For example:
333333

334-
```console
334+
```output
335335
The client '<User email/Id>' with object id '<Guid>' does not have authorization to perform action 'Microsoft.DevSpaces/register/action' over scope '/subscriptions/<Subscription Id>'.
336336
```
337337

articles/service-fabric/service-fabric-tutorial-create-container-images.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ az acr show --name <acrName> --query loginServer --output table
137137

138138
This outputs a table with the following results. This result will be used to tag your **azure-vote-front** image before pushing it to the container registry in the next step.
139139

140-
```bash
140+
```output
141141
Result
142142
------------------
143143
<acrName>.azurecr.io
@@ -153,7 +153,7 @@ Once tagged, run 'docker images' to verify the operation.
153153

154154
Output:
155155

156-
```bash
156+
```output
157157
REPOSITORY TAG IMAGE ID CREATED SIZE
158158
azure-vote-front latest 052c549a75bf 23 minutes ago 708MB
159159
<acrName>.azurecr.io/azure-vote-front v1 052c549a75bf 23 minutes ago 708MB
@@ -183,7 +183,7 @@ az acr repository list --name <acrName> --output table
183183

184184
Output:
185185

186-
```bash
186+
```output
187187
Result
188188
----------------
189189
azure-vote-front

articles/service-fabric/service-fabric-tutorial-java-deploy-azure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The following steps create the necessary resources required to deploy your appli
6868

6969
The preceding command returns the following information that should be noted for use later.
7070

71-
```
71+
```output
7272
Source Vault Resource Id: /subscriptions/<subscription_id>/resourceGroups/testkeyvaultrg/providers/Microsoft.KeyVault/vaults/<name>
7373
Certificate URL: https://<name>.vault.azure.net/secrets/<cluster-dns-name-for-certificate>/<guid>
7474
Certificate Thumbprint: <THUMBPRINT>
@@ -96,7 +96,7 @@ The following steps create the necessary resources required to deploy your appli
9696

9797
8. Copy the account SAS URL and set it aside for use when creating your Service Fabric cluster. It resembles the following URL:
9898

99-
```
99+
```output
100100
?sv=2017-04-17&ss=bfqt&srt=sco&sp=rwdlacup&se=2018-01-31T03:24:04Z&st=2018-01-30T19:24:04Z&spr=https,http&sig=IrkO1bVQCHcaKaTiJ5gilLSC5Wxtghu%2FJAeeY5HR%2BPU%3D
101101
```
102102

@@ -153,7 +153,7 @@ The following steps create the necessary resources required to deploy your appli
153153

154154
Copy the value of the **sr** field in the JSON returned. The **sr** field value is the SAS token for EventHubs. The following URL is an example of the **sr** field:
155155

156-
```bash
156+
```output
157157
https%3A%2F%testeventhub.servicebus.windows.net%testeventhub&sig=7AlFYnbvEm%2Bat8ALi54JqHU4i6imoFxkjKHS0zI8z8I%3D&se=1517354876&skn=sender
158158
```
159159

articles/service-fabric/service-fabric-tutorial-package-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ For Service Fabric to assign this DNS name to the backend service, the name need
194194
195195
The frontend service reads an environment variable to know the DNS name of the Redis instance. This environment variable is already defined in the Dockerfile that was used to generate the Docker image and no action needs to be taken here.
196196
197-
```Dockerfile
197+
```dockerfile
198198
ENV REDIS redisbackend.testapp
199199
```
200200

0 commit comments

Comments
 (0)