Updating kops version when using bazel

We bumped the version in the Makefile, but I did not understand that we
have to bump the version in the workplace status script.  I added a note
in the Makefile, and bumped the version in the script.
This commit is contained in:
chrislovecnm 2018-02-20 11:18:09 -07:00
parent 4b8db1eee0
commit 0fe61ca341
2 changed files with 5 additions and 2 deletions

View File

@ -44,6 +44,7 @@ MAKEDIR:=$(strip $(shell dirname "$(realpath $(lastword $(MAKEFILE_LIST)))"))
DNS_CONTROLLER_TAG=1.8.0 DNS_CONTROLLER_TAG=1.8.0
# Keep in sync with logic in get_workspace_status # Keep in sync with logic in get_workspace_status
# Update variables in tools/get_workplace_status.sh for the bazel build
KOPS_RELEASE_VERSION = 1.8.1 KOPS_RELEASE_VERSION = 1.8.1
KOPS_CI_VERSION = 1.8.2-alpha.1 KOPS_CI_VERSION = 1.8.2-alpha.1

View File

@ -45,8 +45,10 @@ echo "BUILD_SCM_STATUS ${tree_status}"
# Compute KOPS_VERSION. Keep in sync with logic in Makefile # Compute KOPS_VERSION. Keep in sync with logic in Makefile
GITSHA=$(git describe --always) GITSHA=$(git describe --always)
KOPS_RELEASE_VERSION=1.8.0 # These variables need to match the values in our Makefile
KOPS_CI_VERSION=1.8.1-beta.1 # When we cut a new release we need to increment these accordingly
KOPS_RELEASE_VERSION=1.8.1
KOPS_CI_VERSION=1.8.2-alpha.1
if [[ -z "${VERSION}" ]]; then if [[ -z "${VERSION}" ]]; then
if [[ -z "${CI}" ]]; then if [[ -z "${CI}" ]]; then