forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix examples/ compilation so that test/ also compiles
fix network-tester cauldron serve_hostnames
- Loading branch information
1 parent
c87de85
commit 82d9ed7
Showing
25 changed files
with
230 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
"./third_party", | ||
"./plugin", | ||
"./test", | ||
"./federation" | ||
"./federation", | ||
"./examples" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_library", | ||
) | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["apiserver.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//cmd/libs/go2idl/client-gen/test_apis/testgroup/install:go_default_library", | ||
"//cmd/libs/go2idl/client-gen/test_apis/testgroup/v1:go_default_library", | ||
"//examples/apiserver/rest:go_default_library", | ||
"//pkg/api:go_default_library", | ||
"//pkg/api/rest:go_default_library", | ||
"//pkg/apimachinery/registered:go_default_library", | ||
"//pkg/genericapiserver:go_default_library", | ||
"//pkg/genericapiserver/authorizer:go_default_library", | ||
"//pkg/genericapiserver/options:go_default_library", | ||
"//pkg/genericapiserver/validation:go_default_library", | ||
"//pkg/registry/generic:go_default_library", | ||
"//pkg/runtime/schema:go_default_library", | ||
"//pkg/storage/storagebackend:go_default_library", | ||
"//pkg/util/errors:go_default_library", | ||
"//vendor:github.com/golang/glog", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_library", | ||
) | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["reststorage.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//cmd/libs/go2idl/client-gen/test_apis/testgroup:go_default_library", | ||
"//pkg/api:go_default_library", | ||
"//pkg/fields:go_default_library", | ||
"//pkg/labels:go_default_library", | ||
"//pkg/registry/generic:go_default_library", | ||
"//pkg/registry/generic/registry:go_default_library", | ||
"//pkg/runtime:go_default_library", | ||
"//pkg/storage:go_default_library", | ||
"//pkg/util/validation/field:go_default_library", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "server", | ||
srcs = ["main.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//examples/apiserver:go_default_library", | ||
"//pkg/util/flag:go_default_library", | ||
"//pkg/util/wait:go_default_library", | ||
"//vendor:github.com/golang/glog", | ||
"//vendor:github.com/spf13/pflag", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "explorer", | ||
srcs = ["explorer.go"], | ||
tags = ["automanaged"], | ||
deps = ["//vendor:github.com/davecgh/go-spew/spew"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
guestbook_bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "guestbook-go", | ||
srcs = ["main.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//vendor:github.com/codegangsta/negroni", | ||
"//vendor:github.com/gorilla/mux", | ||
"//vendor:github.com/xyproto/simpleredis", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "https-nginx", | ||
srcs = ["make_secret.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//pkg/api:go_default_library", | ||
"//pkg/api/install:go_default_library", | ||
"//pkg/apimachinery/registered:go_default_library", | ||
"//pkg/runtime:go_default_library", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "src", | ||
srcs = ["main.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//vendor:github.com/codegangsta/negroni", | ||
"//vendor:github.com/gorilla/mux", | ||
"//vendor:github.com/xyproto/simpleredis", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
) | ||
|
||
go_binary( | ||
name = "sharing-clusters", | ||
srcs = ["make_secret.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//pkg/api:go_default_library", | ||
"//pkg/apimachinery/registered:go_default_library", | ||
"//pkg/runtime:go_default_library", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.