Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .devcontainer/dapr/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ echo " Dashboard UI: http://localhost:8123/dashboard"
echo " Notifications UI: http://localhost:8123/notifications-service"
echo ""
echo "To deploy Drasi components:"
echo " kubectl apply -f drasi/sources/"
echo " kubectl apply -f drasi/queries/"
echo " kubectl apply -f drasi/reactions/"
echo " drasi apply -f drasi/sources/*"
echo " drasi apply -f drasi/queries/*"
echo " drasi apply -f drasi/reactions/*"
echo ""
echo "Then run the demo scripts:"
echo " cd demo"
Expand Down
18 changes: 9 additions & 9 deletions tutorial/dapr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Follow along the tutorial instructions on [our website here](https://drasi.io/tu
3. When port 80 notification appears, click "Open in Browser"
4. Deploy Drasi components:
```bash
kubectl apply -f drasi/sources/
kubectl apply -f drasi/queries/
kubectl apply -f drasi/reactions/
drasi apply -f drasi/sources/*
drasi apply -f drasi/queries/*
drasi apply -f drasi/reactions/*
```
5. Access the applications via the forwarded URL:
- Catalog UI: `https://<your-codespace>.app.github.dev/catalogue-service`
Expand Down Expand Up @@ -69,9 +69,9 @@ Follow along the tutorial instructions on [our website here](https://drasi.io/tu
- Wait for setup to complete (~5 minutes)
- Deploy Drasi components:
```bash
kubectl apply -f drasi/sources/
kubectl apply -f drasi/queries/
kubectl apply -f drasi/reactions/
drasi apply -f drasi/sources/*
drasi apply -f drasi/queries/*
drasi apply -f drasi/reactions/*
```
- Access applications at:
- Catalog UI: http://localhost:8123/catalogue-service
Expand Down Expand Up @@ -126,9 +126,9 @@ Follow along the tutorial instructions on [our website here](https://drasi.io/tu

3. **Deploy Drasi components**
```bash
kubectl apply -f drasi/sources/
kubectl apply -f drasi/queries/
kubectl apply -f drasi/reactions/
drasi apply -f drasi/sources/*
drasi apply -f drasi/queries/*
drasi apply -f drasi/reactions/*
```

4. **Access the applications**
Expand Down
6 changes: 3 additions & 3 deletions tutorial/dapr/scripts/setup-tutorial.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ if ($env:CODESPACES) {
}
Write-Host ""
Write-Host "To deploy Drasi components, run:" -ForegroundColor Yellow
Write-Host " kubectl apply -f drasi/sources/" -ForegroundColor White
Write-Host " kubectl apply -f drasi/queries/" -ForegroundColor White
Write-Host " kubectl apply -f drasi/reactions/" -ForegroundColor White
Write-Host " drasi apply -f drasi/sources/*" -ForegroundColor White
Write-Host " drasi apply -f drasi/queries/*" -ForegroundColor White
Write-Host " drasi apply -f drasi/reactions/*" -ForegroundColor White
Write-Host ""
Write-Host "Then explore the demos:" -ForegroundColor Yellow
Write-Host " cd demo" -ForegroundColor White
Expand Down
6 changes: 3 additions & 3 deletions tutorial/dapr/scripts/setup-tutorial.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ else
fi
echo ""
echo "To deploy Drasi components, run:"
echo " kubectl apply -f drasi/sources/"
echo " kubectl apply -f drasi/queries/"
echo " kubectl apply -f drasi/reactions/"
echo " drasi apply -f drasi/sources/*"
echo " drasi apply -f drasi/queries/*"
echo " drasi apply -f drasi/reactions/*"
echo ""
echo "Then explore the demos:"
echo " cd demo"
Expand Down