Skip to content
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: add manual test plan for delete backup asynchronously #2223

Conversation

ChanYiLin
Copy link
Contributor

@ChanYiLin ChanYiLin commented Dec 24, 2024

ref: longhorn/longhorn 8746

Add manual test plan for delete backup asynchronously

Summary by CodeRabbit

  • New Features
    • Introduced a new documentation section on "Delete Backup Asynchronously," outlining testing procedures for backup deletion in a Longhorn cluster environment.
  • Documentation
    • Added detailed test cases covering normal, error, and controller crash scenarios for asynchronous backup deletion.

@ChanYiLin ChanYiLin self-assigned this Dec 24, 2024
@ChanYiLin ChanYiLin requested a review from a team as a code owner December 24, 2024 02:14
Copy link

coderabbitai bot commented Dec 24, 2024

Walkthrough

The pull request introduces a new documentation file detailing test procedures for asynchronous backup deletion in a Longhorn cluster. The document comprehensively covers three test scenarios: a normal backup deletion process, an error case involving configuration file permissions, and a scenario simulating controller crashes during backup deletion.

Changes

File Change Summary
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md New document added describing test cases for asynchronous backup deletion

Possibly related PRs

Poem

🐰 Backup Bunny's Deletion Dance

In Longhorn's realm, where data springs,
Backups hop and deletion sings,
Through crashes, errors, and mutable might,
Our rabbit tests with pure delight!
Async magic, a technical trance 🔮


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (5)
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md (5)

7-11: Format URLs as proper markdown links

Convert bare URLs to proper markdown links for better readability and to follow markdown best practices.

-https://github.com/longhorn/longhorn/issues/8746
+[Issue #8746](https://github.com/longhorn/longhorn/issues/8746)

-https://github.com/longhorn/longhorn/pull/9152
+[LEP PR #9152](https://github.com/longhorn/longhorn/pull/9152)
🧰 Tools
🪛 Markdownlint (0.37.0)

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)


27-31: Improve grammar and clarity in test steps

Add missing articles and improve sentence structure for better readability.

-Delete the first backup and create second backup from the snapshot at the same time.
+Delete the first backup and create a second backup from the snapshot at the same time.

-The second backup will be in `Pending` state with message including `waiting for backup to be deleted`.
+The second backup will be in a `Pending` state with a message including `waiting for backup to be deleted`.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


48-49: Add safety checks to file manipulation commands

The chattr command should include checks to ensure the file exists and the command succeeds.

-$ chattr +i backups/backup_backup-*.cfg
+# Ensure the backup config file exists and set it as immutable
+backup_cfg=$(find backups -name "backup_backup-*.cfg")
+if [ -n "$backup_cfg" ]; then
+    chattr +i "$backup_cfg" || echo "Failed to make backup config immutable"
+else
+    echo "Backup config file not found"
+fi
🧰 Tools
🪛 LanguageTool

[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


75-75: Improve clarity of pod deletion step

The current wording is verbose and can be made more concise.

-When the backup is in `Deleting` state, delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status.OwnerID`)
+When the backup is in `Deleting` state, delete the longhorn-manager pod that owns the backup (identified by `Backup.Status.OwnerID`).
🧰 Tools
🪛 LanguageTool

[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)


1-81: Well-structured test plan with clear scenarios

The test plan effectively covers the key scenarios for asynchronous backup deletion. The use of Given/And/Then/Verify format makes the steps clear and easy to follow. Consider varying some of the "And" statements to improve readability while maintaining the BDD style.

Consider adding these sections to make the test plan more comprehensive:

  1. Prerequisites (e.g., required Longhorn version, cluster setup)
  2. Cleanup steps after each test scenario
  3. Estimated time for test execution
  4. Troubleshooting guidelines for common issues
🧰 Tools
🪛 LanguageTool

[style] ~21-~21: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~23-~23: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~25-~25: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. Then Delete t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~42-~42: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~44-~44: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~46-~46: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. And Connect t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~50-~50: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~67-~67: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~69-~69: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)

🪛 Markdownlint (0.37.0)

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b80aa68 and 4884a06.

📒 Files selected for processing (1)
  • docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md

[style] ~21-~21: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~23-~23: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~25-~25: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. Then Delete t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~42-~42: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~44-~44: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~46-~46: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. And Connect t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~50-~50: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~67-~67: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~69-~69: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)

🪛 Markdownlint (0.37.0)
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)

Copy link
Contributor

@roger-ryao roger-ryao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

ref: longhorn/longhorn 8746

Signed-off-by: Jack Lin <[email protected]>
@roger-ryao roger-ryao force-pushed the LH8746_add_manual_test_async_delete_backup branch from 4884a06 to f0f2d25 Compare December 25, 2024 09:59
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (6)
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md (6)

7-11: Format bare URLs as proper markdown links

Convert the bare URLs to proper markdown links for better readability and maintainability.

-- https://github.com/longhorn/longhorn/issues/8746
+- [Longhorn Issue #8746](https://github.com/longhorn/longhorn/issues/8746)

-- https://github.com/longhorn/longhorn/pull/9152
+- [Longhorn LEP PR #9152](https://github.com/longhorn/longhorn/pull/9152)
🧰 Tools
🪛 Markdownlint (0.37.0)

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)


27-31: Add missing articles for clarity

Add the article "a" before "second backup" for better readability.

-Then** Delete the first backup and create second backup from the snapshot at the same time.
+Then** Delete the first backup and create a second backup from the snapshot at the same time.

-Verify** After the first backup is deleted, second backup should be in progress and complete in the end.
+Verify** After the first backup is deleted, the second backup should be in progress and complete in the end.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[uncategorized] ~31-~31: Possible missing article found.
Context: ...fy** After the first backup is deleted, second backup should be in progress and comple...

(AI_HYDRA_LEO_MISSING_A)


48-48: Format system command as code block

Consider formatting the command in a separate code block for better visibility and copy-paste functionality.

-And** Connect to the backupstore pod and make the backup.cfg file immutable by running the command `$ chattr +i backups/backup_backup-*.cfg`.
+And** Connect to the backupstore pod and make the backup.cfg file immutable by running the command:
+```bash
+$ chattr +i backups/backup_backup-*.cfg
+```
🧰 Tools
🪛 LanguageTool

[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


50-50: Add missing article

Add the article "a" before "second backup" for better readability.

-Then** Delete the first backup and create second backup from the snapshot at the same time.
+Then** Delete the first backup and create a second backup from the snapshot at the same time.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~50-~50: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


75-75: Enhance technical details about owner identification

The step about checking the owner ID could be more detailed to help users locate the correct pod.

-Then** When the backup is in `Deleting` state, delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status.OwnerID`)
+Then** When the backup is in `Deleting` state, identify and delete the longhorn-manager pod that owns the backup:
+1. Get the backup's owner ID:
+```bash
+$ kubectl get backup <backup-name> -o jsonpath='{.status.ownerID}'
+```
+2. Delete the longhorn-manager pod with the matching node ID
🧰 Tools
🪛 LanguageTool

[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)


69-69: Format system commands consistently

Format the commands in separate code blocks, consistent with earlier sections.

-And** Connect to the backupstore pod and make the backup.cfg file immutable by running the command `$ chattr +i backups/backup_backup-*.cfg`.
+And** Connect to the backupstore pod and make the backup.cfg file immutable by running the command:
+```bash
+$ chattr +i backups/backup_backup-*.cfg
+```

-Then** Make the config mutable by running the command `$ chattr -i backups/backup_backup-*.cfg`.
+Then** Make the config mutable by running the command:
+```bash
+$ chattr -i backups/backup_backup-*.cfg
+```

Also applies to: 79-79

🧰 Tools
🪛 LanguageTool

[style] ~69-~69: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4884a06 and f0f2d25.

📒 Files selected for processing (1)
  • docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md

[style] ~21-~21: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~23-~23: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~25-~25: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. Then Delete t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[uncategorized] ~31-~31: Possible missing article found.
Context: ...fy** After the first backup is deleted, second backup should be in progress and comple...

(AI_HYDRA_LEO_MISSING_A)


[style] ~42-~42: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~44-~44: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~46-~46: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. And Connect t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~50-~50: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~67-~67: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~69-~69: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)

🪛 Markdownlint (0.37.0)
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)

🔇 Additional comments (1)
docs/content/manual/release-specific/v1.8.0/test-delete-backup-asynchronously.md (1)

1-81: Well-structured test plan with comprehensive coverage

The test plan effectively covers the key scenarios for testing asynchronous backup deletion:

  1. Normal case
  2. Error handling with immutable config
  3. Controller crash recovery

The Gherkin-style format makes the steps clear and easy to follow. The suggested formatting improvements will enhance readability, but the core content and structure are solid.

🧰 Tools
🪛 LanguageTool

[style] ~21-~21: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~23-~23: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~25-~25: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. Then Delete t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~27-~27: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[uncategorized] ~31-~31: Possible missing article found.
Context: ...fy** After the first backup is deleted, second backup should be in progress and comple...

(AI_HYDRA_LEO_MISSING_A)


[style] ~42-~42: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~44-~44: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Write small data to the volume. **An...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~46-~46: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write small data to the volume. And Create a snapshot. And Connect t...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~48-~48: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... volume. And Create a snapshot. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[uncategorized] ~50-~50: Possible missing article found.
Context: ...en** Delete the first backup and create second backup from the snapshot at the same ti...

(AI_HYDRA_LEO_MISSING_A)


[style] ~67-~67: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...nd** Write large data to the volume. And Create the first backup from the volu...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~69-~69: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...te the first backup from the volume. And Connect to the backupstore pod and ma...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)


[style] ~75-~75: You can shorten this phrase to avoid wordiness.
Context: ..., delete the longhorn-manager pod which is the owner of the backup. (by checking `Backup.Status...

(BE_THE_MAKER_OF_WORDINESS)

🪛 Markdownlint (0.37.0)

7-7: null
Bare URL used

(MD034, no-bare-urls)


11-11: null
Bare URL used

(MD034, no-bare-urls)

@roger-ryao roger-ryao merged commit 57b5bc6 into longhorn:master Dec 25, 2024
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants