-
Notifications
You must be signed in to change notification settings - Fork 521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOC] Update Set up test app to use agent flow #3228
[DOC] Update Set up test app to use agent flow #3228
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple o thoughts. I didn't test any of the actual config or steps. Trust these are correct.
Thank you. You caught some of the places where we had changed from distributor to query but didnt' get all of the changes in the text. I've asked Heds to do a review to verify that things are correct. When we wrote the doc, he used the configs to make sure that they worked. |
Also makes a creation step for `values.yaml` generic. Signed-off-by: Heds Simons <hedley.simons@grafana.com>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new branch
git switch --create backport-3228-to-release-v2.3 origin/release-v2.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x e11ceb9fcd11382f955dae26439d3ee38eafbc61 When the conflicts are resolved, stage and commit the changes:
If you have the GitHub CLI installed: # Push the branch to GitHub:
git push --set-upstream origin backport-3228-to-release-v2.3
# Create the PR body template
PR_BODY=$(gh pr view 3228 --json body --template 'Backport e11ceb9fcd11382f955dae26439d3ee38eafbc61 from #3228{{ "\n\n---\n\n" }}{{ index . "body" }}')
# Create the PR on GitHub
echo "${PR_BODY}" | gh pr create --title "[release-v2.3] [DOC] Update Set up test app to use agent flow" --body-file - --label "type/docs" --label "backport" --base release-v2.3 --milestone release-v2.3 --web Or, if you don't have the GitHub CLI installed (we recommend you install it!): # Push the branch to GitHub:
git push --set-upstream origin backport-3228-to-release-v2.3
# Create a pull request where the `base` branch is `release-v2.3` and the `compare`/`head` branch is `backport-3228-to-release-v2.3`.
# Remove the local backport branch
git switch main
git branch -D backport-3228-to-release-v2.3 |
* Update Set up test app to use agent flow * Apply suggestions from code review * Correct a distributor reference to query frontend. Also makes a creation step for `values.yaml` generic. Signed-off-by: Heds Simons <hedley.simons@grafana.com> * Apply suggestions from code review * Apply suggestions from code review --------- Signed-off-by: Heds Simons <hedley.simons@grafana.com> Co-authored-by: Heds Simons <hedley.simons@grafana.com> (cherry picked from commit e11ceb9) # Conflicts: # docs/sources/tempo/setup/set-up-test-app.md
* Update Set up test app to use agent flow * Apply suggestions from code review * Correct a distributor reference to query frontend. Also makes a creation step for `values.yaml` generic. Signed-off-by: Heds Simons <hedley.simons@grafana.com> * Apply suggestions from code review * Apply suggestions from code review --------- Signed-off-by: Heds Simons <hedley.simons@grafana.com> Co-authored-by: Heds Simons <hedley.simons@grafana.com> (cherry picked from commit e11ceb9) # Conflicts: # docs/sources/tempo/setup/set-up-test-app.md
What this PR does:
Updates the Set up the test app doc to use Agent Flow and Intro to MLTP as an option.
Which issue(s) this PR fixes:
Fixes #3226
Checklist
CHANGELOG.md
updated - the order of entries should be[CHANGE]
,[FEATURE]
,[ENHANCEMENT]
,[BUGFIX]