This repository was archived by the owner on Nov 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y jq git zip azure-cli=2.0.
489489sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce
490490
491491echo " ############### 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
493493chmod +x ./kubectl
494494sudo mv ./kubectl /usr/local/bin/kubectl
495495
Original file line number Diff line number Diff line change 129129echo " 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
135135if [ $? == 0 ];
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ RUN tar -zxvf helm-v2.14.3-linux-amd64.tar.gz
3232RUN 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
3636RUN chmod +x ./kubectl
3737RUN mv ./kubectl /usr/local/bin/kubectl
3838
You can’t perform that action at this time.
0 commit comments