Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update AKS to 1.15.10 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwasham authored Jun 12, 2020
1 parent 477d490 commit 166d949
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion provision-team/jenkins/install_jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y jq git zip azure-cli=2.0.
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce

echo "############### Installing kubectl ###############"
curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.15.7/bin/linux/amd64/kubectl
curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.15.10/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl

Expand Down
2 changes: 1 addition & 1 deletion provision-team/provision_aks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fi
echo "Creating AKS Cluster..."
(
set -x
az aks create -g $resourceGroupName -n $clusterName -l $resourceGroupLocation --node-count 3 --generate-ssh-keys -k 1.15.7 --service-principal $SP_ID --client-secret $SP_PASS
az aks create -g $resourceGroupName -n $clusterName -l $resourceGroupLocation --node-count 3 --generate-ssh-keys -k 1.15.10 --service-principal $SP_ID --client-secret $SP_PASS
)

if [ $? == 0 ];
Expand Down
2 changes: 1 addition & 1 deletion provision-vm/Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN tar -zxvf helm-v2.14.3-linux-amd64.tar.gz
RUN mv linux-amd64/helm /usr/local/bin/helm

############### Installing kubectl ###############
RUN curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.15.7/bin/linux/amd64/kubectl
RUN curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.15.10/bin/linux/amd64/kubectl
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin/kubectl

Expand Down

0 comments on commit 166d949

Please sign in to comment.