Skip to content

Commit 445cbdf

Browse files
Correct some word
1 parent eae4f38 commit 445cbdf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-app-configuration/quickstart-azure-kubernetes-service.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ In this section, it creates an ASP.NET Core web application that consumes enviro
7474
dotnet publish -c Release -o published
7575
```
7676
77-
1. Create a file named *Dockerfile* in the directory containing your .csproj file, open it in a text editor, and enter the following content. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
77+
1. Create a file named *Dockerfile* at the root of your project directory, open it in a text editor, and enter the following content. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
7878
7979
```dockerfile
8080
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
@@ -201,7 +201,7 @@ Now that you have an application running in AKS, you'll deploy the App Configura
201201
### Install App Configuration Kubernetes Provider to AKS cluster
202202
1. Run the following command to get access credentials for your AKS cluster. Replace the value of the `name` and `resource-group` parameters with your AKS instance:
203203
204-
```bash
204+
```console
205205
az aks get-credentials --name <your-aks-instance-name> --resource-group <your-aks-resource-group>
206206
```
207207
@@ -238,7 +238,7 @@ Now that you have an application running in AKS, you'll deploy the App Configura
238238
> - The provider keeps the data of configMap as a mirror of key-values from Azure App Configuration. Any changes to the configMap through other approaches will be reverted.
239239
> - Deleting provider will delete the corresponding configMap along with it. If the configMap is deleted solely, the provider will recreate it.
240240
241-
1. Update the *deployment.yaml* in *AKS-AppConfiguration-Demo* directory to use the configMap `configmap-created-by-appconfig-provider` as environment variable.
241+
1. Update the *deployment.yaml* file in *AKS-AppConfiguration-Demo* directory to use the configMap `configmap-created-by-appconfig-provider` as environment variable.
242242
243243
Replace the whole `env` section
244244
```yaml
@@ -255,13 +255,13 @@ Now that you have an application running in AKS, you'll deploy the App Configura
255255
name: configmap-created-by-appconfig-provider
256256
```
257257
258-
1. Run the following command to deploy the `AzureAppConfigurationProvider` resource.
258+
2. Run the following command to deploy the *appConfigurationProvider.yaml* and *deployment.yaml*.
259259
260260
```console
261261
kubectl apply -f ./AKS-AppConfiguration-Demo -n appconfig-demo
262262
```
263263
264-
1. Refresh the browser. The page shows updated content.
264+
3. Refresh the browser. The page shows updated content.
265265
266266
![Kubernetes Provider after using configMap](./media/quickstarts/kubernetes-provider-app-launch-after.png)
267267
@@ -313,7 +313,7 @@ kubectl delete -f ./AKS-AppConfiguration-Demo -n appconfig-demo
313313
kubectl delete namespace appconfig-demo
314314
```
315315

316-
Follow the steps below to uninstall the Azure App Configuration Kubernetes Provider from your AKS cluster.
316+
Uninstall the Azure App Configuration Kubernetes Provider from your AKS cluster.
317317

318318
```console
319319
helm uninstall azureappconfiguration.kubernetesprovider --namespace azappconfig-system

0 commit comments

Comments
 (0)