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

Commit db92837

Browse files
rguthriemsftmwasham
authored andcommitted
updating to 1.13.11 k8s (#312)
* updating to 1.13.11 k8s * udpate az cli version. * udpate az cli version.
1 parent 3e057df commit db92837

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

provision-team/jenkins/install_jenkins.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,13 +489,13 @@ 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.13.9/bin/linux/amd64/kubectl
492+
curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.11/bin/linux/amd64/kubectl
493493
chmod +x ./kubectl
494494
sudo mv ./kubectl /usr/local/bin/kubectl
495495

496496
echo "############### Installing Helm v2.14.3 ###############"
497497
sudo curl -s -O https://storage.googleapis.com/kubernetes-helm/helm-v2.14.3-linux-amd64.tar.gz
498-
sudo tar -zxvf helm-v2.14.1-linux-amd64.tar.gz
498+
sudo tar -zxvf helm-v2.14.3-linux-amd64.tar.gz
499499
sudo mv linux-amd64/helm /usr/local/bin/helm
500500

501501
# Configure accessusermod -aG docker azureuser

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.13.9 --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.13.11 --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.13.9/bin/linux/amd64/kubectl
35+
RUN curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.11/bin/linux/amd64/kubectl
3636
RUN chmod +x ./kubectl
3737
RUN mv ./kubectl /usr/local/bin/kubectl
3838

0 commit comments

Comments
 (0)