Skip to content

Commit 2b11e27

Browse files
Merge pull request #233399 from dciborow/patch-1
Fix Code Section Languages
2 parents 4d45950 + 1eafb5f commit 2b11e27

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/aks/open-service-mesh-deploy-addon-bicep.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ touch osm.aks.bicep && touch osm.aks.parameters.json
5555

5656
Open the *osm.aks.bicep* file and copy the following example content to it. Then save the file.
5757

58-
```azurecli-interactive
58+
```bicep
5959
// https://learn.microsoft.com/azure/aks/troubleshooting#what-naming-restrictions-are-enforced-for-aks-resources-and-parameters
6060
@minLength(3)
6161
@maxLength(63)
@@ -115,7 +115,7 @@ Open the *osm.aks.parameters.json* file and copy the following example content t
115115
> [!NOTE]
116116
> The *osm.aks.parameters.json* file is an example template parameters file needed for the Bicep deployment. Update the parameters specifically for your deployment environment. The specific parameter values in this example need the following parameters to be updated: `clusterName`, `clusterDNSPrefix`, `k8Version`, and `sshPubKey`. To find a list of supported Kubernetes versions in your region, use the `az aks get-versions --location <region>` command.
117117
118-
```azurecli-interactive
118+
```json
119119
{
120120
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
121121
"contentVersion": "1.0.0.0",
@@ -180,7 +180,7 @@ kubectl get meshconfig osm-mesh-config -n kube-system -o yaml
180180

181181
Here's an example output of MeshConfig:
182182

183-
```
183+
```yaml
184184
apiVersion: config.openservicemesh.io/v1alpha1
185185
kind: MeshConfig
186186
metadata:
@@ -237,7 +237,7 @@ Notice that `enablePermissiveTrafficPolicyMode` is configured to `true`. In OSM,
237237

238238
When you no longer need the Azure resources, use the Azure CLI to delete the deployment's test resource group:
239239

240-
```
240+
```azurecli-interactive
241241
az group delete --name osm-bicep-test
242242
```
243243

0 commit comments

Comments
 (0)