Skip to content

Update Broken Links in EdgeHub Docs + Fix Bullet Points Formatting in Edge Controller Docs#713

Open
eysk-io wants to merge 3 commits intokubeedge:masterfrom
eysk-io:doc-fixes
Open

Update Broken Links in EdgeHub Docs + Fix Bullet Points Formatting in Edge Controller Docs#713
eysk-io wants to merge 3 commits intokubeedge:masterfrom
eysk-io:doc-fixes

Conversation

@eysk-io
Copy link

@eysk-io eysk-io commented Aug 10, 2025

Please check if the PR fulfills these requirements

  • The commit message follows our guidelines
  • Tests for the changes have been added (for bug fixes / features)
  • Docs have been added / updated (for bug fixes / features)

Which issue(s) this PR fixes:

Fixes kubeedge/kubeedge#6427

What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)

This PR does two things:

What is the current behavior? (You can also link to an open issue here)

Incorrect links in the EdgeHub#usage section of the docs direct readers to pages which no longer exist, such as https://github.com/kubeedge/kubeedge/tree/master/docs/proposals/quic-design.md#edgehub-connect-to-cloudhub-through-websocket-protocol:
image

Formatting has not been applied to bullet points in the Edge Controller#upstream-controller and Edge Controller#controller-manager sections of the docs:
image

image

What is the new behavior (if this is a feature change)?

I've updated the broken links in the EdgeHub docs to point to the correct docs:

and also adjusted the Edge Controller docs such that the bullet points formatting is applied as expected as can be seen in the below images:
image
image
Does this PR introduce a breaking change? (What changes might users need to make in their application due to this PR?)

No

Other information:

eysk-io added 2 commits August 9, 2025 17:58
Signed-off-by: Eric Kim <erickim195@gmail.com>
Signed-off-by: Eric Kim <erickim195@gmail.com>
@kubeedge-bot
Copy link
Collaborator

Welcome @eysk-io! It looks like this is your first PR to kubeedge/website 🎉

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Summary of Changes

Hello @eysk-io, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

I've submitted this pull request to enhance the KubeEdge documentation by addressing two distinct issues. First, I've fixed broken links within the EdgeHub documentation that were leading users to non-existent pages. Second, I've corrected inconsistent bullet point formatting in the Edge Controller documentation to improve its visual presentation and readability. These changes collectively aim to provide a more accurate and user-friendly documentation experience.

Highlights

  • Broken Link Fix in EdgeHub Docs: I've updated two broken links in the EdgeHub documentation (docs/architecture/edge/edgehub.md). These links previously pointed to incorrect tree/master paths and were missing the sig-architecture directory, leading to 404 errors. The corrected links now accurately point to the relevant sections within the quic-design.md document.
  • Bullet Point Formatting Correction in Edge Controller Docs: I've resolved a formatting issue in the Edge Controller documentation (docs/architecture/cloud/edge_controller.md) where bullet points were not rendering correctly due to inconsistent spacing. The changes ensure that all bullet points are properly aligned and displayed as intended, improving readability.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments or fill out our survey to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@kubeedge-bot kubeedge-bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Aug 10, 2025
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request successfully fixes broken links in the EdgeHub documentation and corrects list formatting in the Edge Controller documentation. My review provides suggestions to further improve the documentation's quality by ensuring consistent capitalization with Kubernetes and Go conventions, and by enhancing link accessibility with more descriptive text. These minor adjustments will improve the overall clarity and professionalism of the documentation.

Comment on lines 76 to 77
- **Through websocket protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-websocket-protocol) for details.
- **Through QUIC protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-quic) for details.

Choose a reason for hiding this comment

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

medium

Using "Click here" for link text is not ideal for accessibility and readability. It's better to use descriptive text that informs the user about the link's destination.

Suggested change
- **Through websocket protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-websocket-protocol) for details.
- **Through QUIC protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-quic) for details.
- **Through websocket protocol**: [Details on connecting via websocket protocol](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-websocket-protocol).
- **Through QUIC protocol**: [Details on connecting via QUIC protocol](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-quic).

Copy link
Author

@eysk-io eysk-io Aug 11, 2025

Choose a reason for hiding this comment

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

Adjusted the bullet points to below:
image

Comment on lines 76 to 77
- **Through websocket protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-websocket-protocol) for details.
- **Through QUIC protocol**: Click [here](https://github.com/kubeedge/kubeedge/blob/master/docs/proposals/sig-architecture/quic-design.md#edgehub-connect-to-cloudhub-through-quic) for details.
Copy link
Author

Choose a reason for hiding this comment

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

I'm unsure about the nature of these docs, but if folks are sure the contents won't change while the directory in which these contents are might, im happy to replace these with github permanent links. i.e. the following:

Then, these links won't return a 404 even if these files are moved in the future

Copy link
Contributor

@fujitatomoya fujitatomoya left a comment

Choose a reason for hiding this comment

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

lgtm

@kubeedge-bot kubeedge-bot added the lgtm Indicates that a PR is ready to be merged. label Aug 11, 2025
@kubeedge-bot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: fujitatomoya
To complete the pull request process, please assign shelley-baoyue after the PR has been reviewed.
You can assign the PR to them by writing /assign @shelley-baoyue in a comment when ready.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link
Collaborator

@Shelley-BaoYue Shelley-BaoYue left a comment

Choose a reason for hiding this comment

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

Please modify these suggestions proposed by CI robot. Like PodIp --> PodIP

@kubeedge-bot kubeedge-bot added do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. and removed lgtm Indicates that a PR is ready to be merged. labels Aug 11, 2025
@eysk-io
Copy link
Author

eysk-io commented Aug 11, 2025

@Shelley-BaoYue @fujitatomoya tyvm for taking a look! Made some changes based on the gemini suggestions. lmk if i should make any more adjustments

Signed-off-by: Eric Kim <erickim195@gmail.com>
@kubeedge-bot kubeedge-bot removed the do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. label Aug 11, 2025
@eysk-io eysk-io requested a review from Shelley-BaoYue August 11, 2025 20:32
Copy link
Contributor

@wbc6080 wbc6080 left a comment

Choose a reason for hiding this comment

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

/lgtm

@kubeedge-bot kubeedge-bot added the lgtm Indicates that a PR is ready to be merged. label Aug 14, 2025
@fujitatomoya
Copy link
Contributor

/rebase

@fujitatomoya
Copy link
Contributor

@Shelley-BaoYue i think this is good to take. is there any way that we can rebase the PRs? e.g https://docs.mergify.com/workflow/rebase/ (that i usually use)

@fujitatomoya
Copy link
Contributor

@Shelley-BaoYue friendly ping.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

lgtm Indicates that a PR is ready to be merged. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

In the official documentation page, the jump to key steps shows a 404 error.

5 participants