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

Commit 166d949

Browse files
authored
Update AKS to 1.15.10 (#331)
1 parent 477d490 commit 166d949

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

provision-team/jenkins/install_jenkins.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y jq git zip azure-cli=2.0.
489489
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce
490490

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

provision-team/provision_aks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fi
129129
echo "Creating AKS Cluster..."
130130
(
131131
set -x
132-
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
132+
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
133133
)
134134

135135
if [ $? == 0 ];

provision-vm/Docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN tar -zxvf helm-v2.14.3-linux-amd64.tar.gz
3232
RUN mv linux-amd64/helm /usr/local/bin/helm
3333

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

0 commit comments

Comments
 (0)