Skip to content

Commit a832b2a

Browse files
committed
update
1 parent f5947bd commit a832b2a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/aks/learn/quick-kubernetes-deploy-bicep-extensibility-kubernetes-provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ Use the following procedure to add the application definition:
177177

178178
:::image type="content" source="./media/quick-kubernetes-deploy-bicep-extensibility-kubernetes-provider/bicep-extensibility-kubernetes-provider-import-kubernetes-manifest.png" alt-text="Screenshot of Visual Studio Code import Kubernetes Manifest":::
179179

180-
1. In the prompt, select **azure-vote.yml**. This process creates an **azure-vote.bicep** in the same folder.
181-
1. At the end of **azure-vote.bicep**, add the following line to output the load balancer public IP.
180+
1. Select **azure-vote.yml** from the prompt. This process creates an **azure-vote.bicep** in the same folder.
181+
1. Open **azure-vote.bicep**, add the following line at the end of the file to output the load balancer public IP.
182182

183183
```bicep
184184
output frontendIp string = coreService_azureVoteFront.status.loadBalancer.ingress[0].ip

articles/azure-resource-manager/bicep/bicep-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ You can enable preview features by adding:
4646

4747
The preceding sample enables two features:
4848

49-
- userDefineType: enable [user-defined types in Bicep](https://aka.ms/bicepCustomTypes).
50-
- extensibility: enable [Bicep extensibility Kubernetes provider](./bicep-extensibility-kubernetes-provider.md).
49+
- **userDefineType**: enable [user-defined types in Bicep](https://aka.ms/bicepCustomTypes).
50+
- **extensibility**: enable [Bicep extensibility Kubernetes provider](./bicep-extensibility-kubernetes-provider.md).
5151

5252
## Next steps
5353

articles/azure-resource-manager/bicep/bicep-extensibility-kubernetes-provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This preview feature can be enabled by configuring the [bicepconfig.json](./bice
2323

2424
## Import Kubernetes provider
2525

26-
Deployments of Kubernetes must be contained within a [Bicep module file](./modules.md). To import the Kubernetes provider, use the [import statement](./bicep-import-providers.md). After importing the provider, you can refactor the Bicep module file as usual, such as by using variables and parameters. The Kubernetes manifest in YML does not include any programmability support by contract.
26+
Deployments of Kubernetes must be contained within a [Bicep module file](./modules.md). To import the Kubernetes provider, use the [import statement](./bicep-import-providers.md). After importing the provider, you can refactor the Bicep module file as usual, such as by using variables, parameters, and output. By contract, The Kubernetes manifest in YML does not include any programmability support.
2727

2828
The following sample imports the Kubernetes provider:
2929

@@ -55,7 +55,7 @@ module kubernetes './kubernetes.bicep' = {
5555
}
5656
```
5757

58-
The AKS cluster can be a new resource or an existing resource. The [Import Kubernetes manifest command](./visual-studio-code.md#bicep-commands) from Visual Studio Code can automatically add the import snippet automatically.
58+
The AKS cluster can be a new resource or an existing resource. The [Import Kubernetes manifest command](./visual-studio-code.md#bicep-commands) from Visual Studio Code can automatically add the import snippet.
5959

6060
## Visual Studio Code import
6161

0 commit comments

Comments
 (0)