Skip to content

Commit 1eafb5f

Browse files
authored
Fix Code Section Languages
Some of the code sections are marked with the wrong language.
1 parent ce3b342 commit 1eafb5f

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
@@ -54,7 +54,7 @@ touch osm.aks.bicep && touch osm.aks.parameters.json
5454

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

57-
```azurecli-interactive
57+
```bicep
5858
// https://learn.microsoft.com/azure/aks/troubleshooting#what-naming-restrictions-are-enforced-for-aks-resources-and-parameters
5959
@minLength(3)
6060
@maxLength(63)
@@ -114,7 +114,7 @@ Open the *osm.aks.parameters.json* file and copy the following example content t
114114
> [!NOTE]
115115
> 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.
116116
117-
```azurecli-interactive
117+
```json
118118
{
119119
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
120120
"contentVersion": "1.0.0.0",
@@ -179,7 +179,7 @@ kubectl get meshconfig osm-mesh-config -n kube-system -o yaml
179179

180180
Here's an example output of MeshConfig:
181181

182-
```
182+
```yaml
183183
apiVersion: config.openservicemesh.io/v1alpha1
184184
kind: MeshConfig
185185
metadata:
@@ -236,7 +236,7 @@ Notice that `enablePermissiveTrafficPolicyMode` is configured to `true`. In OSM,
236236

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

239-
```
239+
```azurecli-interactive
240240
az group delete --name osm-bicep-test
241241
```
242242

0 commit comments

Comments
 (0)