Skip to content

Commit 370bea9

Browse files
Correctness
1 parent 0413f30 commit 370bea9

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
@@ -31,7 +31,7 @@ In this quickstart, you will incorporate Azure App Configuration Kubernetes Prov
3131
> The Azure Cloud Shell is a free, interactive shell that you can use to run the command line instructions in this article. It has common Azure tools preinstalled, including the .NET Core SDK. If you're logged in to your Azure subscription, launch your [Azure Cloud Shell](https://shell.azure.com) from shell.azure.com. You can learn more about Azure Cloud Shell by [reading our documentation](../cloud-shell/overview.md)
3232
>
3333
34-
## Create an application consuming environment variables
34+
## Create an application consumes environment variables
3535
If you already have an application that is consuming environment variables as configuration, you can just skip this step. We just create an ASP.NET Core Web App `MyWebApp` as an example.
3636

3737
1. Use the .NET Core command-line interface (CLI) to create a new ASP.NET Core web app project. Run the following command to create an ASP.NET Core web app in a new TestAppConfig folder:
@@ -154,7 +154,7 @@ If you already have an application, you can containerize it in a way that depend
154154
## Create and deploy Kubernetes resources
155155
156156
1. Create a *AKS-AppConfiguration-Demo* directory in the root directory of your project.
157-
1. Create *appConfigurationProvider.yaml* in the *AKS-AppConfiguration-Demo* directory with the following YAML content. Replace the value of the `endpoint` field with the endpoint of the Azure AppConfiguration store you created in the previous step.
157+
2. Create *appConfigurationProvider.yaml* in the *AKS-AppConfiguration-Demo* directory with the following YAML content. Replace the value of the `endpoint` field with the endpoint of your Azure AppConfiguration store.
158158
``` yaml
159159
apiVersion: azconfig.io/v1beta1
160160
kind: AzureAppConfigurationProvider
@@ -165,7 +165,7 @@ If you already have an application, you can containerize it in a way that depend
165165
target:
166166
configMapName: demo-configmap
167167
```
168-
1. Create *deployment.yaml* in the *AKS-AppConfiguration-Demo* directory with the following YAML content. Replace the value of `template.containers.image` with the image you created in the previous step.
168+
3. Create *deployment.yaml* in the *AKS-AppConfiguration-Demo* directory with the following YAML content. Replace the value of `template.containers.image` with the image you created in the previous step.
169169
``` yaml
170170
apiVersion: apps/v1
171171
kind: Deployment
@@ -192,7 +192,7 @@ If you already have an application, you can containerize it in a way that depend
192192
- configMapRef:
193193
name: demo-configmap
194194
```
195-
1. Create *service.yaml* in the *AKS-AppConfiguration-Demo* with the following YAML content.
195+
4. Create *service.yaml* in the *AKS-AppConfiguration-Demo* with the following YAML content.
196196
``` yaml
197197
apiVersion: v1
198198
kind: Service
@@ -205,7 +205,7 @@ If you already have an application, you can containerize it in a way that depend
205205
selector:
206206
app: configmap-demo-app
207207
```
208-
1. Apply the YAML files to the AKS cluster
208+
5. Apply the YAML files to the AKS cluster
209209
``` bash
210210
kubectl create namespace quickstart-appconfig
211211
kubectl apply -f ./AKS-AppConfiguration-Demo -n quickstart-appconfig
@@ -230,7 +230,7 @@ kubectl get configmap demo-configmap -n quickstart-appconfig
230230
```
231231
232232
## Validate key-values from Azure App Configuration are affecting the app.
233-
Run the following command and get the External IP that exposed by the LoadBalancer service. Use it to visit the web app, You'll see that the configuration settings from the Azure App Configuration store are affecting the page.
233+
Run the following command and get the External IP that exposed by the LoadBalancer service. Use it to visit the web app, you'll see that the configuration settings from the Azure App Configuration store are affecting the page.
234234
``` bash
235235
kubectl get service configmap-demo-service -n quickstart-appconfig
236236
```

0 commit comments

Comments
 (0)