Skip to content

Commit

Permalink
set Kubernetes version to 1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahuif committed Jan 26, 2022
1 parent 75c9e31 commit dd99730
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build/download-kube-bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set -o pipefail
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
source "${KUBE_ROOT}/build/lib/common.sh"

KUBE_VERSION=v1.22.0
KUBE_VERSION=v1.23.3

KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL:-https://dl.k8s.io}"
DOWNLOAD_URL_PREFIX="${KUBERNETES_RELEASE_URL}/${KUBE_VERSION}"
Expand All @@ -37,10 +37,10 @@ KUBE_DOWNLOAD_DIR="${KUBE_DOWNLOAD_DIR:-"${OUT_DIR}/kube"}"
# or append .sha256 to the url for an individual checksum

KUBE_TARBALLS=(
kubernetes-server-linux-amd64.tar.gz:d54435de50214faabc49e3659625a689623508128ca9a4f97b4f2c54b40bc9e14dd17e1971c06c90aa74fc335d0038a7ac4b7b90882edb0944af99354d6c9762
kubernetes-node-linux-amd64.tar.gz:aa990405a1c6bd6737a8ff89fd536ba28ad62dec7de2e44ae223f4fcb42d6a9ffdfb324144def946b777ac7ba6fac085a49a7977cb79289a3256cced783bf215
kubernetes-node-windows-amd64.tar.gz:9cc73fb1d3f9ec926fd09bc3904d62ec79da4a3c4fb9a5c4c784bc1f08c650711c21fb30874b05db4bd354e4d04b0153296180d89a53c04d9241dd6a1384510d
kubernetes-manifests.tar.gz:b531f48757c94d211cd097387a187e892c6ab794317a43adfe378524f0d479a0cff98becf5a0a570f244ebc63355df893c01fd2d57836d939e8fd82b392ba259
kubernetes-server-linux-amd64.tar.gz:667bc04778070685e5fb5b6281fe78263c5081af0613adfe9a68df0695210cb2273e89a1d37a27e4cbf947b9e565ef7697d8b90ddfba23aeeb4c9f8474a373c5
kubernetes-node-linux-amd64.tar.gz:9fd17ed04dc8e13ba5b4d67ec657b8afba721c344bd9785669af3def481dcbd8a2eecb02e54e5eebd0559645c6e819f757c49de731e53073f06a12d871e569eb
kubernetes-node-windows-amd64.tar.gz:8d687018bf4b70065d4871406702d57f0ef14abb6c8e8bd7635d2d94f8a56aead9a641ede4477e34534bc705e76bb94cec10dbb9414c5885ad0a5d07d1105401
kubernetes-manifests.tar.gz:92a84cb49e24390ad65b0c411aaf38b3fbc85c868298096351cf84d65b62057be45c2e46ed6d6456d84e267ee1d1617fcd413520964fc32048c21238ec3d8c6c
)

function download_tarball() {
Expand Down
2 changes: 1 addition & 1 deletion tools/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ get_version_vars() {

# Use git describe to find the version based on tags.
#if [[ -n ${KUBE_GIT_VERSION-} ]] || KUBE_GIT_VERSION=$("${git[@]}" describe --tags --match='v*' --abbrev=14 "${KUBE_GIT_COMMIT}^{commit}" 2>/dev/null); then
if [[ -n ${KUBE_GIT_VERSION-} ]] || KUBE_GIT_VERSION=$(echo "v1.22.0-alpha+${KUBE_GIT_COMMIT}"); then
if [[ -n ${KUBE_GIT_VERSION-} ]] || KUBE_GIT_VERSION=$(echo "v1.23.0-alpha+${KUBE_GIT_COMMIT}"); then
# This translates the "git describe" to an actual semver.org
# compatible semantic version that looks something like this:
# v1.1.0-alpha.0.6+84c76d1142ea4d
Expand Down

0 comments on commit dd99730

Please sign in to comment.