feat(up): use Apple container DNS when domain registered, /etc/hosts fallback otherwise#97
Open
Cyb3rDudu wants to merge 1 commit into
Open
feat(up): use Apple container DNS when domain registered, /etc/hosts fallback otherwise#97Cyb3rDudu wants to merge 1 commit into
Cyb3rDudu wants to merge 1 commit into
Conversation
…fallback otherwise When the project's sanitized name is already registered via container system dns create, name containers <svc>.<domain> and pass --dns-domain so the daemon serves DNS for peers. The /etc/hosts cross-patcher is skipped on this path. Otherwise keep the legacy dashed names + patcher unchanged, with a notice pointing at the sudo command. ComposeDown now tries every candidate name shape (legacy, dotted, explicit) so it cleans up containers from either mode. Static tests cover sanitizeDnsDomain and dnsListContainsDomain. Dynamic test verifies dotted naming, peer resolution via getent, and that /etc/hosts is left untouched when DNS is available.
9f2c630 to
1e42796
Compare
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.
Closes #81
When a project's sanitized name is already registered via
container system dns create, containers are named<svc>.<domain>and get--dns-domainso the daemon's DNS server resolves peers. The /etc/hosts cross-patcher is skipped on this path. When the domain isn't registered, behavior is unchanged — legacy dashed names, /etc/hosts patching, and a one-time note with the sudo command.ComposeDown tries all candidate name shapes (legacy dashed, dotted DNS, explicit
container_name) so teardown works regardless of which mode created the containers.Changes:
sanitizeDnsDomain/dnsListContainsDomain— pure helpers for deriving a DNS label from the project name and checking registrationrun()— shells out tocontainer system dns list, setsdnsAvailableconfigService()— passes--name <svc>.<domain>+--dns-domainwhen DNS is availablecrossPatchHostsForService— /etc/hosts fallback, gated on!dnsAvailablestopOldStuffByName+ ComposeDown multi-shape cleanupTested with container 0.12.3 on macOS 26. Two alpine services with
name: dnstest— dotted names resolve via getent, /etc/hosts untouched, resolv.conf carries the domain. Auto-skips when no domain is pre-registered.Static tests: 11 tests covering sanitization rules and dns list parsing.
Dynamic test: end-to-end DNS path verification (skips gracefully without registered domain).