chore: add firewall rule to allow cluster machines to push to other machines unregistry

This commit is contained in:
Pasha Sviderski
2025-10-01 12:34:03 +10:00
parent a217643ac9
commit fa004d63bb
3 changed files with 27 additions and 9 deletions
+5 -2
View File
@@ -1,9 +1,12 @@
package firewall
import "fmt"
import (
"fmt"
"net/netip"
)
// ConfigureIptablesChains is a stub for Darwin.
func ConfigureIptablesChains() error {
func ConfigureIptablesChains(machineIP netip.Addr) error {
return fmt.Errorf("not supported on Darwin")
}