Skip to content

Commit

Permalink
Fix broken link to wiki page on userland network mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bkhl authored and praveenkumar committed Oct 12, 2023
1 parent 2875a74 commit 4e822f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/crc/preflight/preflight_checks_network_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var nmPreflightChecks = []Check{
configKeySuffix: "check-systemd-networkd-running",
checkDescription: "Checking if systemd-networkd is running",
check: checkSystemdNetworkdIsNotRunning,
fixDescription: "Network configuration with systemd-networkd is not supported. Perhaps you can try this new network mode: https://github.com/crc-org/crc/v2/wiki/VPN-support--with-an--userland-network-stack",
fixDescription: "Network configuration with systemd-networkd is not supported. Perhaps you can try this new network mode: https://github.com/crc-org/crc/wiki/VPN-support--with-an--userland-network-stack",
flags: NoFix,

labels: labels{Os: Linux, NetworkMode: System},
Expand Down
2 changes: 1 addition & 1 deletion pkg/crc/services/dns/dns_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func runPostStartForOS(serviceConfig services.ServicePostStartConfig) error {
time.Sleep(2 * time.Second)

if !crcstrings.Contains(getInterfaceNameserverValues(networkInterface), serviceConfig.IP) {
return fmt.Errorf("Nameserver %s not successfully set on interface %s. Perhaps you can try this new network mode: https://github.com/crc-org/crc/v2/wiki/VPN-support--with-an--userland-network-stack", serviceConfig.IP, networkInterface)
return fmt.Errorf("Nameserver %s not successfully set on interface %s. Perhaps you can try this new network mode: https://github.com/crc-org/crc/wiki/VPN-support--with-an--userland-network-stack", serviceConfig.IP, networkInterface)
}
return nil
}
Expand Down

0 comments on commit 4e822f0

Please sign in to comment.