fix broken links and scripts paths

pull/1487/head
Giancarlo Rubio 2017-05-12 13:07:50 +02:00
parent 85582c469c
commit 91a0645bac
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Steps to Release Localkube
## Configure The Correct Kubernetes Version to Build for Localkube
When building localkube for a specific Kubernetes version, follow the steps at [Updating Kubernetes](https://github.com/kubernetes/minikube/blob/master/README.md#updating-kubernetes). After you have setup a new folder and GOPATH with the desired version of Kubernetes (from the directions above), you go on to build localkube.
When building localkube for a specific Kubernetes version, follow the steps at [Updating Kubernetes](https://github.com/kubernetes/minikube/blob/master/docs/contributors/updating_kubernetes.md). After you have setup a new folder and GOPATH with the desired version of Kubernetes (from the directions above), you go on to build localkube.
## Build the Localkube Release
```shell

View File

@ -16,7 +16,7 @@ This isn't strictly necessary, but it usually helps.
```shell
cd minikube
./hack/godep/godep-restore.sh
./hack/godeps/godep-restore.sh
```
3. Kubernetes should now be on your GOPATH. Check it out to the right version.
@ -44,7 +44,7 @@ Make sure to also fetch tags, as Godep relies on these.
```shell
git checkout $DESIREDTAG
./hack/godep-restore.sh
./hack/godeps/godep-restore.sh
```
4. Build and test minikube, making any manual changes necessary to build.
@ -53,7 +53,7 @@ Make sure to also fetch tags, as Godep relies on these.
```shell
cd $GOPATH/src/k8s.io/minikube
./hack/godep/godep-save.sh
./hack/godeps/godep-save.sh
```
6. Verify that the correct tag is marked in the Godeps.json file by running this script:
@ -85,4 +85,4 @@ git add --all
git commit -m "Manual changes to update Kubernetes to foo"
```
As a final part of updating kubernetes, a new version of localkube should be uploaded to GCS so that users can select this version of kubernetes/localkube in later minikube/localkube builds. For instructions on how to do this, see [releasing_localkube.md](https://github.com/kubernetes/minikube/blob/master/docs/contributing/releasing_localkube.md)
As a final part of updating kubernetes, a new version of localkube should be uploaded to GCS so that users can select this version of kubernetes/localkube in later minikube/localkube builds. For instructions on how to do this, see [releasing_localkube.md](https://github.com/kubernetes/minikube/blob/master/docs/contributors/releasing_localkube.md)

View File

@ -24,7 +24,7 @@ godep::ensure_godep_version() {
return
fi
go get -d -u github.com/tools/godep 2>/dev/null
pushd "${GOPATH}/github.com/tools/godep" >/dev/null
pushd "${GOPATH}/src/github.com/tools/godep" >/dev/null
git checkout "${GODEP_VERSION}"
go install .
popd >/dev/null