docs(dapr): replace kubectl apply with drasi apply (#85) - #114
Open
HamidKhan1001 wants to merge 1 commit into
Open
docs(dapr): replace kubectl apply with drasi apply (#85)#114HamidKhan1001 wants to merge 1 commit into
HamidKhan1001 wants to merge 1 commit into
Conversation
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 22, 2026 12:08 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 22, 2026 12:08 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 22, 2026 12:08 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 22, 2026 12:08 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 22, 2026 12:08 — with
GitHub Actions
Waiting
There was a problem hiding this comment.
Pull request overview
This PR updates the Dapr tutorial documentation and helper scripts to instruct users to deploy Drasi manifests using drasi apply (instead of kubectl apply), aligning the tutorial with how Drasi resources are actually applied.
Changes:
- Updated the Dapr tutorial README deployment commands from
kubectl apply -f ...todrasi apply -f .... - Updated the Linux/macOS (
setup-tutorial.sh) and PowerShell (setup-tutorial.ps1) setup scripts to printdrasi applycommands for deploying Drasi components. - (Follow-up needed)
.devcontainer/dapr/post-create.shstill printskubectl apply -f drasi/...instructions, so users may still see the incorrect command after environment setup.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| tutorial/dapr/scripts/setup-tutorial.sh | Prints drasi apply commands instead of kubectl apply in the post-setup instructions. |
| tutorial/dapr/scripts/setup-tutorial.ps1 | Prints drasi apply commands instead of kubectl apply in the post-setup instructions. |
| tutorial/dapr/README.md | Updates the tutorial steps to use drasi apply when deploying Drasi components. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+72
to
+74
| drasi apply -f drasi/sources/ | ||
| drasi apply -f drasi/queries/ | ||
| drasi apply -f drasi/reactions/ |
Signed-off-by: hamidkhan1001 <hamidk5002@gmail.com>
HamidKhan1001
force-pushed
the
docs/fix-dapr-drasi-apply
branch
from
July 23, 2026 07:28
a23ad4b to
54691ca
Compare
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 23, 2026 07:28 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 23, 2026 07:28 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 23, 2026 07:28 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 23, 2026 07:28 — with
GitHub Actions
Waiting
HamidKhan1001
requested a deployment
to
tutorial-evaluation
July 23, 2026 07:28 — with
GitHub Actions
Waiting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates the Dapr tutorial instructions to use the native drasi apply CLI command instead of kubectl apply when deploying Drasi manifest files.
Changes
Fixes #85