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,16 @@ 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
+
> This quickstart will walk you through setting up the Azure App Configuration Kubernetes Provider. Optionally, you can use the following [Azure Developer CLI](/azure/developer/azure-developer-cli/install-azd) commands with the `azure-appconfig-aks` template to provision Azure resources and deploy the sample application used by this quickstart. For more information about this template, visit the [azure-appconfig-aks](https://github.com/Azure-Samples/azure-appconfig-aks) repo on GitHub.
27
+
>
28
+
> ```azd
29
+
> azd init -t azure-appconfig-aks
30
+
> azd up
31
+
> ```
32
+
>
23
33
24
34
## Prerequisites
25
35
@@ -32,10 +42,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
45
## Create an application running in AKS
40
46
41
47
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 +312,7 @@ Add following key-values to the App Configuration store and leave **Label** and
306
312
307
313

308
314
309
-
### Troubleshooting
315
+
## Troubleshooting
310
316
311
317
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