Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions 4-kubernetes_manifest/3-Deploy-Thomasthorntoncloud-App.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ In this lab, you'll deploy the Thomasthorntoncloud app to your Azure Kubernetes
```
2. Deploy the Application Components

- Deploy the Thomasthorntoncloud app:
```bash
kubectl create -f deployment.yml
```

- Install ALB Controller:
```bash
./scripts/1-install-alb-controller.sh
Expand All @@ -26,10 +31,6 @@ In this lab, you'll deploy the Thomasthorntoncloud app to your Azure Kubernetes
```bash
./scripts/2-install-gateway-api.sh
```
- Deploy the Thomasthorntoncloud app:
```bash
kubectl create -f deployment.yml
```

3. **Verify Deployment**
Run the following command to confirm the deployment was successful:
Expand Down Expand Up @@ -66,4 +67,4 @@ After deploying the application, consider these questions:

## 💡 Pro Tip

Use Kubernetes namespaces to organise and isolate your resources, especially when deploying multiple applications or environments in the same cluster.
Use Kubernetes namespaces to organise and isolate your resources, especially when deploying multiple applications or environments in the same cluster.
Loading