40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
K8S_ORG_ROOT=${GOPATH}/src/k8s.io
|
|
MINIKUBE_ROOT=${K8S_ORG_ROOT}/minikube
|
|
KUBE_ROOT=${K8S_ORG_ROOT}/kubernetes
|
|
|
|
KUBE_VERSION=$(python ${MINIKUBE_ROOT}/hack/get_k8s_version.py --k8s-version-only 2>&1)
|
|
|
|
source ${MINIKUBE_ROOT}/hack/godeps/utils.sh
|
|
|
|
godep::ensure_godep_version v79
|
|
|
|
# We can't 'go get kubernetes' so this hack is here
|
|
mkdir -p ${K8S_ORG_ROOT}
|
|
if [ ! -d "${KUBE_ROOT}" ]; then
|
|
pushd ${K8S_ORG_ROOT} >/dev/null
|
|
git clone https://github.com/kubernetes/kubernetes.git
|
|
popd >/dev/null
|
|
fi
|
|
|
|
godep::restore_kubernetes
|
|
|
|
pushd ${MINIKUBE_ROOT} >/dev/null
|
|
godep restore ./...
|
|
popd >/dev/null
|