Skip to content

Commit

Permalink
Upgrade Kubernetes CLI to 1.10.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Apr 13, 2018
1 parent 5d457b8 commit 48ebb5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN curl -fL -o /usr/local/bin/docker-compose \

# Install Kubernetes CLI.
RUN curl -fL -o /usr/local/bin/kubectl \
https://dl.k8s.io/release/v1.10.0/bin/linux/amd64/kubectl \
https://dl.k8s.io/release/v1.10.1/bin/linux/amd64/kubectl \
&& chmod +x /usr/local/bin/kubectl


Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@


IMAGE_NAME := instrumentisto/gitlab-builder
VERSION ?= 0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.0-helm2.8.2
TAGS ?= 0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.0-helm2.8.2,0.4.2,0.4,latest
VERSION ?= 0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.1-helm2.8.2
TAGS ?= 0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.1-helm2.8.2,0.4.2,0.4,latest


comma := ,
Expand Down
2 changes: 1 addition & 1 deletion hooks/post_push
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}

# Tag and push image for each additional tag
for tag in {0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.0-helm2.8.2,0.4.2,0.4,latest}; do
for tag in {0.4.2-docker18.04.0-compose1.21.0-kubectl1.10.1-helm2.8.2,0.4.2,0.4,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done

0 comments on commit 48ebb5c

Please sign in to comment.