chore: allow DNS queries from Uncloud containers to the embedded DNS server

This commit is contained in:
Pavel Sviderski
2025-05-05 20:00:34 +10:00
parent 93346301fb
commit 3648187219
6 changed files with 128 additions and 83 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ import (
"net/netip"
)
// EnsureUncloudNetwork is a stub for darwin.
func (m *Manager) EnsureUncloudNetwork(ctx context.Context, subnet netip.Prefix) error {
return fmt.Errorf("not supported on darwin")
// EnsureUncloudNetwork is a stub for Darwin.
func (m *Manager) EnsureUncloudNetwork(ctx context.Context, subnet netip.Prefix, dnsServer netip.Addr) error {
return fmt.Errorf("not supported on Darwin")
}