提交 7602eeda 编写于 作者: M Matt Rickard

Add script to automate localkube upgrades

上级 85582c46
......@@ -50,7 +50,8 @@ PYTHON := $(shell command -v python || echo "docker run --rm -it -v $(shell pwd)
BUILD_OS := $(shell uname -s)
LOCALKUBE_VERSION := $(shell $(PYTHON) hack/get_k8s_version.py --k8s-version-only 2>&1)
LOCALKUBE_BUCKET := gs://minikube/k8sReleases
LOCALKUBE_BUCKET ?= minikube/k8sReleases
LOCALKUBE_UPLOAD_LOCATION := gs://${LOCALKUBE_BUCKET}
TAG ?= $(LOCALKUBE_VERSION)
# Set the version information for the Kubernetes servers, and build localkube statically
......@@ -182,8 +183,8 @@ check-release:
.PHONY: release-localkube
release-localkube: out/localkube checksum
gsutil cp out/localkube $(LOCALKUBE_BUCKET)/$(LOCALKUBE_VERSION)/localkube-linux-amd64
gsutil cp out/localkube.sha256 $(LOCALKUBE_BUCKET)/$(LOCALKUBE_VERSION)/localkube-linux-amd64.sha256
gsutil cp out/localkube $(LOCALKUBE_UPLOAD_LOCATION)/$(LOCALKUBE_VERSION)/localkube-linux-amd64
gsutil cp out/localkube.sha256 $(LOCALKUBE_UPLOAD_LOCATION)/$(LOCALKUBE_VERSION)/localkube-linux-amd64.sha256
.PHONY: update-releases
update-releases:
......
#!/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.
# This script expects
# K8S_VERSION = the version of kubernetes to be upgraded
# REMOTE = the name of the git remote repository
KUBE_ORG_ROOT=$GOPATH/src/k8s.io
KUBE_ROOT=${KUBE_ORG_ROOT}/kubernetes
MINIKUBE_ROOT=${KUBE_ORG_ROOT}/minikube
UPSTREAM_REMOTE=${REMOTE:-origin}
echo "Restoring old dependencies..."
${MINIKUBE_ROOT}/hack/godeps/godep-restore.sh
# Upgrade kubernetes
pushd ${KUBE_ROOT} >/dev/null
echo "Upgrading to version ${K8S_VERSION}..."
git fetch ${UPSTREAM_REMOTE}
git checkout ${K8S_VERSION}
./hack/godep-restore.sh
popd >/dev/null
echo "Saving new minikube dependencies..."
${MINIKUBE_ROOT}/hack/godeps/godep-save.sh
LOCALKUBE_BUCKET="minikube-builds/localkube-builds/${K8S_VERSION}" make release-localkube
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册