Skip to content

Commit

Permalink
registry: default --insecure-registry to localhost and 127.0.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Johan Euphrosine <proppy@google.com>
  • Loading branch information
proppy authored and Erik Hollensbe committed Nov 12, 2014
1 parent 6ad1cd5 commit 28ee373
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
12 changes: 11 additions & 1 deletion registry/endpoint.go
Expand Up @@ -4,6 +4,7 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"strings"
Expand Down Expand Up @@ -154,7 +155,16 @@ func IsSecure(hostname string, insecureRegistries []string) bool {
if hostname == IndexServerAddress() {
return true
}

if len(insecureRegistries) == 0 {
host, _, err := net.SplitHostPort(hostname)
if err != nil {
host = hostname
}
if host == "127.0.0.1" || host == "localhost" {
return false
}
return true
}
for _, h := range insecureRegistries {
if hostname == h {
return false
Expand Down
21 changes: 21 additions & 0 deletions registry/registry_test.go
Expand Up @@ -339,3 +339,24 @@ func TestIsSecure(t *testing.T) {
}
}
}

func TestIsSecure(t *testing.T) {
tests := []struct {
addr string
insecureRegistries []string
expected bool
}{
{"localhost", []string{}, false},
{"localhost:5000", []string{}, false},
{"127.0.0.1", []string{}, false},
{"localhost", []string{"example.com"}, true},
{"127.0.0.1", []string{"example.com"}, true},
{"example.com", []string{}, true},
{"example.com", []string{"example.com"}, false},
}
for _, tt := range tests {
if sec := IsSecure(tt.addr, tt.insecureRegistries); sec != tt.expected {
t.Errorf("IsSecure failed for %q %v, expected %v got %v", tt.addr, tt.insecureRegistries, tt.expected, sec)
}
}
}

0 comments on commit 28ee373

Please sign in to comment.