aboutsummaryrefslogtreecommitdiff
path: root/plugin/bind/setup.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/bind/setup.go')
-rw-r--r--plugin/bind/setup.go15
1 files changed, 3 insertions, 12 deletions
diff --git a/plugin/bind/setup.go b/plugin/bind/setup.go
index 10fe4a955..1bd397585 100644
--- a/plugin/bind/setup.go
+++ b/plugin/bind/setup.go
@@ -9,6 +9,8 @@ import (
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/pkg/log"
+
+ "k8s.io/utils/strings/slices"
)
func setup(c *caddy.Controller) error {
@@ -37,7 +39,7 @@ func setup(c *caddy.Controller) error {
}
for _, ip := range ips {
- if !isIn(ip, except) {
+ if !slices.Contains(except, ip) {
all = append(all, ip)
}
}
@@ -98,14 +100,3 @@ func listIP(args []string, ifaces []net.Interface) ([]string, error) {
}
return all, nil
}
-
-// isIn checks if a string array contains an element
-func isIn(s string, list []string) bool {
- is := false
- for _, l := range list {
- if s == l {
- is = true
- }
- }
- return is
-}