Skip to content

Commit

Permalink
Bump kubectl version to v1.13.2 in ci (kubernetes-sigs#923)
Browse files Browse the repository at this point in the history
kubectl v1.10.2 does not compatible with cluster v1.14.x anymore

Signed-off-by: Hui Luo <[email protected]>
  • Loading branch information
figo authored and detiber committed May 2, 2019
1 parent 54d8ef8 commit 204e2f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/ci-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ set -o pipefail
MAKE="make"
KUSTOMIZE="kustomize"
KUBECTL="kubectl"
KUBECTL_VERSION="v1.13.2"
CRD_YAML="crd.yaml"
BOOTSTRAP_CLUSTER_NAME="clusterapi-bootstrap"
CONTROLLER_REPO="controller-ci" # use arbitrary repo name since we don't need to publish it
Expand All @@ -32,7 +33,7 @@ install_kustomize() {
}

install_kubectl() {
wget https://storage.googleapis.com/kubernetes-release/release/v1.10.2/bin/linux/amd64/kubectl \
wget https://storage.googleapis.com/kubernetes-release/release/"${KUBECTL_VERSION}"/bin/linux/amd64/kubectl \
--no-verbose -O /usr/local/bin/kubectl
chmod +x /usr/local/bin/kubectl
}
Expand Down

0 comments on commit 204e2f3

Please sign in to comment.