Skip to content

Proposal: Dns support for Dual-Engine#1436

Merged
kmesh-bot merged 3 commits intokmesh-net:mainfrom
brushax:proposal-dual-engine-dns
Oct 31, 2025
Merged

Proposal: Dns support for Dual-Engine#1436
kmesh-bot merged 3 commits intokmesh-net:mainfrom
brushax:proposal-dual-engine-dns

Conversation

@brushax
Copy link
Copy Markdown
Contributor

@brushax brushax commented Jul 9, 2025

What type of PR is this?

/kind feature

What this PR does / why we need it:

Implement DNS resolution logic mentioned in #1407

Which issue(s) this PR fixes:
#1407

Special notes for your reviewer:

Does this PR introduce a user-facing change?:

NONE

Copilot AI review requested due to automatic review settings July 9, 2025 17:47
Copy link
Copy Markdown

@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 @Flying-Tom, 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!

This pull request introduces a comprehensive proposal and initial design for enabling DNS resolution capabilities within Kmesh's Dual-Engine mode. The primary goal is to support ServiceEntry configurations that rely on DNS resolution, ensuring seamless migration for users from Istio by leveraging and extending the recently refactored DNS module.

Highlights

  • New Design Proposal: A new markdown document (docs/proposal/dual_engine_dns.md) has been added, detailing the motivation, goals, and design specifics for integrating DNS resolution into the Dual-Engine architecture.
  • Dual-Engine DNS Support: The PR outlines how to extend the existing DNSResolver to support DNS resolution for workloads originating from ServiceEntry in the Dual-Engine mode, addressing a critical feature gap.
  • Asynchronous DNS Handling: The proposal describes the implementation of a WorkloadDnsController that will asynchronously handle DNS resolution requests, decoupling the resolution process from the main workload processing flow.
  • Processor Integration: The Processor component will be updated to identify ServiceEntry workloads lacking address information and route them to the new DNS resolution mechanism, including a retry logic for unresolved entries.
  • Code Style Enforcement: A minor update to .markdownlint.yml introduces a rule to enforce consistent tab usage in markdown code blocks.
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 is currently in preview and 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 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.

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR introduces a KEP for adding DNS resolution support in Dual-Engine mode and adjusts markdown linting rules.

  • Add a detailed proposal document outlining Dual-Engine DNS support
  • Update .markdownlint.yml to enforce no-hard-tabs in code blocks

Reviewed Changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.

File Description
docs/proposal/dual_engine_dns.md New KEP draft for Dual-Engine DNS resolution support
.markdownlint.yml Added no-hard-tabs rule configuration
Comments suppressed due to low confidence (3)

docs/proposal/dual_engine_dns.md:20

  • [nitpick] The Summary section is empty; please provide a concise overview of what this proposal achieves.
### Summary

docs/proposal/dual_engine_dns.md:52

  • In the YAML example, the second number: http should likely be name: http to correctly label the port.
    number: http

docs/proposal/dual_engine_dns.md:180

  • A for range loop cannot iterate over an integer; consider for i := 0; i < maxRetries; i++ {.
          for range maxRetries {

@brushax brushax force-pushed the proposal-dual-engine-dns branch from c9a2070 to fcf5ce2 Compare July 9, 2025 17:49
Copy link
Copy Markdown

@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

The pull request introduces DNS resolution support for the dual-engine mode, enabling seamless migration for users relying on External Name services and DNS resolution typed ServiceEntries. The changes involve refactoring the DNS module, implementing a WorkloadDnsController, and updating the Processor to handle workloads without address information.

@codecov
Copy link
Copy Markdown

codecov bot commented Jul 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 39.23%. Comparing base (716c0d3) to head (bb6fe77).
⚠️ Report is 235 commits behind head on main.
see 99 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fa8620a...bb6fe77. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@fnless
Copy link
Copy Markdown

fnless commented Jul 10, 2025

Are we capturing application DNS resolution requests in this proposal?

@LiZhenCheng9527
Copy link
Copy Markdown
Contributor

Are we capturing application DNS resolution requests in this proposal?

This proposal does not currently involve the interrcception of DNS resolution request. This proposal is to enable Kmesh to incorporate serviceEntry that resolution is DNS into management.

If you have a need to intercept DNS resolution, can you make a separate issue to explain the exact context?

@brushax brushax force-pushed the proposal-dual-engine-dns branch from fcf5ce2 to 80495ac Compare July 13, 2025 13:27
@brushax brushax force-pushed the proposal-dual-engine-dns branch from 80495ac to 3aeaccb Compare July 14, 2025 03:28
@brushax brushax force-pushed the proposal-dual-engine-dns branch 2 times, most recently from e559eb6 to eaa8dc6 Compare August 2, 2025 08:04
Copilot AI review requested due to automatic review settings October 17, 2025 03:43
@brushax brushax force-pushed the proposal-dual-engine-dns branch from eaa8dc6 to a8e3a97 Compare October 17, 2025 03:43
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

Copilot reviewed 3 out of 5 changed files in this pull request and generated 3 comments.


Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@brushax brushax force-pushed the proposal-dual-engine-dns branch from 400f33e to 6d1e386 Compare October 18, 2025 12:33
Copilot AI review requested due to automatic review settings October 18, 2025 13:09
@brushax brushax force-pushed the proposal-dual-engine-dns branch from 6d1e386 to 8613464 Compare October 18, 2025 13:09
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

Copilot reviewed 2 out of 4 changed files in this pull request and generated 3 comments.


Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@brushax
Copy link
Copy Markdown
Contributor Author

brushax commented Oct 20, 2025

cc @LiZhenCheng9527

@LiZhenCheng9527
Copy link
Copy Markdown
Contributor

/lgtm
/approve

Signed-off-by: Tom <yusencao@outlook.com>
Signed-off-by: Tom <yusencao@outlook.com>
Signed-off-by: Tom <yusencao@outlook.com>
@brushax brushax force-pushed the proposal-dual-engine-dns branch from 8613464 to bb6fe77 Compare October 24, 2025 05:38
@kmesh-bot kmesh-bot removed the lgtm label Oct 24, 2025
@brushax
Copy link
Copy Markdown
Contributor Author

brushax commented Oct 27, 2025

@LiZhenCheng9527 review request

@LiZhenCheng9527
Copy link
Copy Markdown
Contributor

/lgtm
/approve

@kmesh-bot kmesh-bot added the lgtm label Oct 31, 2025
@kmesh-bot
Copy link
Copy Markdown
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: LiZhenCheng9527

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

The pull request process is described 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

@kmesh-bot kmesh-bot merged commit 44b2525 into kmesh-net:main Oct 31, 2025
14 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants