mirror of https://github.com/kubernetes/kops.git
Merge remote-tracking branch 'upstream/master' into extra_user-data
This commit is contained in:
commit
50c7094faf
2
Makefile
2
Makefile
|
@ -568,7 +568,7 @@ kops-server-push: kops-server-build
|
|||
|
||||
.PHONY: bazel-test
|
||||
bazel-test:
|
||||
bazel test //cmd/... //pkg/... //channels/... //nodeup/... //channels/... //protokube/... //dns-controller/... --test_output=errors
|
||||
bazel test //cmd/... //pkg/... //channels/... //nodeup/... //channels/... //protokube/... //dns-controller/... //upup/... //util/... --test_output=errors
|
||||
|
||||
.PHONY: bazel-build
|
||||
bazel-build:
|
||||
|
|
|
@ -74,8 +74,8 @@ aws configure # Use your new access and secret key here
|
|||
aws iam list-users # you should see a list of all your IAM users here
|
||||
|
||||
# Because "aws configure" doesn't export these vars for kops to use, we export them now
|
||||
export AWS_ACCESS_KEY_ID=<access key>
|
||||
export AWS_SECRET_ACCESS_KEY=<secret key>
|
||||
export AWS_ACCESS_KEY_ID=`aws configure get aws_access_key_id`
|
||||
export AWS_SECRET_ACCESS_KEY=`aws configure get aws_secret_access_key`
|
||||
```
|
||||
|
||||
## Configure DNS
|
||||
|
|
|
@ -103,4 +103,7 @@ go_test(
|
|||
"//vendor/github.com/golang/glog:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/util/sets:go_default_library",
|
||||
],
|
||||
data = [
|
||||
"//upup/pkg/fi/cloudup/tests:exported_testdata", # keep
|
||||
],
|
||||
)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
filegroup(
|
||||
name = "exported_testdata",
|
||||
srcs = glob(["**"]),
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
Loading…
Reference in New Issue