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
- 🔧 **Development:** See [Contributing Guide](../CONTRIBUTING.md)
466
+
467
+
## Advanced: Deploy Local Changes
468
+
469
+
If you have made local code changes (e.g., UI updates, backend modifications) and want to deploy them to your existing Azure environment, follow these steps. This process rebuilds the container images from your localsource code and redeploys them to the Kubernetes cluster.
470
+
471
+
### Prerequisites
472
+
473
+
- An existing deployment completed via [Step 4](#step-4-deploy-the-solution) and [Step 5](#step-5-post-deployment-configuration)
474
+
- **Docker Desktop** must be running on your machine
475
+
- **PowerShell 7.0+** installed
476
+
477
+
### Steps
478
+
479
+
1. **Ensure Docker Desktop is running** — The script builds container images locally, so Docker must be active before proceeding.
480
+
481
+
2. **Open PowerShell and navigate to the Deployment folder:**
482
+
```shell
483
+
cd .\Deployment\
484
+
```
485
+
486
+
3. **Run the deployment script:**
487
+
488
+
```shell
489
+
.\resourcedeployment.ps1
490
+
```
491
+
492
+
**If you deployed using custom templates or `az deployment group` commands:**
4. **Wait for the script to complete** — The script will:
498
+
- Build new Docker images from your local code
499
+
- Push the updated images to Azure Container Registry
500
+
- Restart the Kubernetes deployments to pull the latest images
501
+
502
+
5. **Verify your changes** — Access the application URL and confirm your local changes are reflected.
503
+
504
+
>**⚠️ Note:** The script rebuilds and redeploys **all** container images (frontend, backend, and kernel memory). Expect the process to take approximately 20-30 minutes depending on your network speed.
0 commit comments