Skip to content

Commit

Permalink
Merge pull request kubernetes#29813 from jayunit100/kill-repo-root-slb-2
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

[minor] couple of quick cleanups for kill reporoot

quick fixes from last one,  cc @spxtr @ixdy follow on to  kubernetes#25584
  • Loading branch information
k8s-merge-robot authored Jul 30, 2016
2 parents 7291a43 + 4cd6bf4 commit f0fa9e5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
5 changes: 2 additions & 3 deletions hack/update-bindata.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@

set -o errexit
set -o pipefail
set -o nounset

if [[ -z ${KUBE_ROOT} ]]; then
if [[ -z "${KUBE_ROOT:-}" ]]; then
echo "KUBE_ROOT not detected, setting default."
KUBE_ROOT="../../../"
fi

set -o nounset

if [[ ! -d "${KUBE_ROOT}/examples" ]]; then
echo "${KUBE_ROOT}/examples not detected. This script should be run from a location where the source dirs are available."
exit 1
Expand Down
5 changes: 0 additions & 5 deletions test/e2e/framework/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -652,11 +652,6 @@ func podFromManifest(filename string) (*api.Pod, error) {
// Run a test container to try and contact the Kubernetes api-server from a pod, wait for it
// to flip to Ready, log its output and delete it.
func RunKubernetesServiceTestContainer(c *client.Client, ns string) {
c, err := LoadClient()
if err != nil {
Logf("Failed to load client")
return
}
path := "test/images/clusterapi-tester/pod.yaml"
p, err := podFromManifest(path)
if err != nil {
Expand Down
6 changes: 0 additions & 6 deletions test/e2e_node/jenkins/e2e-node-jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ set -x

. $1

if [ "$INSTALL_GODEP" = true ] ; then
go get -u github.com/tools/godep
go get -u github.com/onsi/ginkgo/ginkgo
go get -u github.com/onsi/gomega
fi

make generated_files

# TODO converge build steps with hack/build-go some day if possible.
Expand Down

0 comments on commit f0fa9e5

Please sign in to comment.