You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Customer intent: As an Azure Kubernetes Service user, I want to manage all my app settings in one place using Azure App Configuration.
13
13
---
@@ -20,6 +20,25 @@ A ConfigMap can be consumed as environment variables or a mounted file. In this
20
20
21
21
> [!TIP]
22
22
> See [options](./howto-best-practices.md#azure-kubernetes-service-access-to-app-configuration) for workloads hosted in Kubernetes to access Azure App Configuration.
23
+
>
24
+
25
+
> [!NOTE]
26
+
> You could use [Azure Developer CLI](/azure/developer/azure-developer-cli/install-azd) to run the [azure-appconfig-aks](https://github.com/Azure-Samples/azure-appconfig-aks) template to quickly set up what this quickstart demonstrates from scratch:
27
+
>
28
+
> 1. Run the `azd init` command with the `azure-appconfig-aks` template:
29
+
>
30
+
> ```azd
31
+
> azd init -t azure-appconfig-aks
32
+
> ```
33
+
>
34
+
> 2. Run the `azd up` command to deploy the resources:
35
+
>
36
+
> ``` azd
37
+
> azd up
38
+
> ```
39
+
>
40
+
> Going through the following detailed steps in this quickstart manually provides a better understanding of how the Azure App Configuration Kubernetes Provider works.
41
+
>
23
42
24
43
## Prerequisites
25
44
@@ -32,10 +51,6 @@ A ConfigMap can be consumed as environment variables or a mounted file. In this
> 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)
37
-
>
38
-
39
54
## Create an application running in AKS
40
55
41
56
In this section, you will create a simple ASP.NET Core web application running in Azure Kubernetes Service (AKS). The application reads configuration from a local JSON file. In the next section, you will enable it to consume configuration from Azure App Configuration without changing the application code. If you already have an AKS application that reads configuration from a file, skip this section and go to [Use App Configuration Kubernetes Provider](#use-app-configuration-kubernetes-provider). You only need to ensure the configuration file generated by the provider matches the file path used by your application.
@@ -306,7 +321,7 @@ Add following key-values to the App Configuration store and leave **Label** and
306
321
307
322

308
323
309
-
### Troubleshooting
324
+
## Troubleshooting
310
325
311
326
If you don't see your application picking up the data from your App Configuration store, run the following command to validate that the ConfigMap is created properly.
> If you use the Azure Developer CLI to set up the resources, you can run the `azd down` command to delete all resources created by the `azure-appconfig-aks` template.
0 commit comments