Skip to content

Commit 7de300c

Browse files
committed
updated README with instructions on AKS/K8s
1 parent e49b0ce commit 7de300c

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,24 @@ The application has the following services:
3232

3333
![Logical Application Architecture Diagram](assets/demo-arch-with-openai.png)
3434

35-
## Run the app on AKS
35+
## Run the app on Azure Kubernetes Service (AKS)
3636

37-
To learn how to deploy this app to AKS with Azure OpenAI, see [Deploy an application that uses OpenAI on Azure Kubernetes Service (AKS)](https://learn.microsoft.com/azure/aks/open-ai-quickstart?tabs=aoai).
37+
To learn how to depoy this app on AKS, see [Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI](https://learn.microsoft.com/azure/aks/learn/quick-kubernetes-deploy-cli).
38+
39+
> Note: The above article shows a simplified version of the store app with some services removed. For the full application, you can use the `aks-store-all-in-one.yaml` file in this repo.
40+
41+
## Run on most any Kubernetes
42+
43+
This application uses public images stored in GitHub Container Registry and Microsoft Container Registry (MCR). Once your Kubernetes cluster of choice is setup, you can deploy the full app with the below commands.
44+
45+
This deployment deploys everything except the `ai-service` that integrates OpenAI. If you want to try integrating the OpenAI component, take a look at this article: [Deploy an application that uses OpenAI on Azure Kubernetes Service (AKS)](https://learn.microsoft.com/azure/aks/open-ai-quickstart?tabs=aoai).
46+
47+
```bash
48+
kubectl create ns pets
49+
50+
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/aks-store-demo/main/aks-store-all-in-one.yaml -n pets
51+
52+
```
3853

3954
## Run the app locally
4055

0 commit comments

Comments
 (0)