1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-25 13:15:39 +02:00
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-07-05 17:33:35 -04:00
parent b8c95ce521
commit f1360a2bf0
No known key found for this signature in database
GPG Key ID: C0B444E6A3EFD4C1

@ -82,7 +82,7 @@ func main() {
} }
fmt.Printf("%s:%d\t%s\t%s\t%s\n", fmt.Printf("%s:%d\t%s\t%s\t%s\n",
ip, port, ip, port,
info.Organization.Handle, info.Organization.Name, info.Organization.Reference) info.Net.Organization.Handle, info.Net.Organization.Name, info.Net.Organization.Reference)
} }
}(ip.String()) }(ip.String())
} }
@ -153,6 +153,10 @@ func isKubernetesDashboard(ip string, port int) bool {
} }
type ARINResponse struct { type ARINResponse struct {
Net NetJSON `json:"net,omitempty"`
}
type NetJSON struct {
Organization OrganizationJSON `json:"orgReg,omitempty"` Organization OrganizationJSON `json:"orgReg,omitempty"`
} }