diff --git a/.bazelrc b/.bazelrc index 86ab384aa03f..719ef0a42cee 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,2 +1,3 @@ build --workspace_status_command=./print-workspace-status.sh run --workspace_status_command=./print-workspace-status.sh +test --test_output=errors \ No newline at end of file diff --git a/BUILD b/BUILD index 87b749d055fe..4dadf7644519 100644 --- a/BUILD +++ b/BUILD @@ -84,11 +84,10 @@ k8s_objects( ], ) +# All of our stuff goes here. k8s_objects( - name = "everything", + name = "elafros", objects = [ - # We depend on Istio. - ":istio", ":namespace", ":authz", ":crds", @@ -97,3 +96,12 @@ k8s_objects( ":elawebhookservice", ], ) + +k8s_objects( + name = "everything", + objects = [ + ":istio", # We depend on Istio. + # TODO(mattmoor): Add the Build stuff here once we can import it properly. + ":elafros", + ], +)