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 +10
-10
lines changed
Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -485,17 +485,17 @@ sudo service jenkins restart
485485retry_until_successful run_util_script " jenkins/run-cli-command.sh" -c " version"
486486
487487echo " ############### Installing Packages ###############"
488- sudo DEBIAN_FRONTEND=noninteractive apt-get install -y jq git zip azure-cli=2.0.71 -1~xenial
488+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y jq git zip azure-cli=2.14.1 -1~xenial
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.10 /bin/linux/amd64/kubectl
492+ curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.17.11 /bin/linux/amd64/kubectl
493493chmod +x ./kubectl
494494sudo mv ./kubectl /usr/local/bin/kubectl
495495
496- echo " ############### Installing Helm v2.14.3 ###############"
497- 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.3 -linux-amd64.tar.gz
496+ echo " ############### Installing Helm v2.17.0 ###############"
497+ sudo curl -s -O https://storage.googleapis.com/kubernetes-helm/helm-v2.17.0 -linux-amd64.tar.gz
498+ sudo tar -zxvf helm-v2.17.0 -linux-amd64.tar.gz
499499sudo mv linux-amd64/helm /usr/local/bin/helm
500500
501501# Configure accessusermod -aG docker azureuser
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.10 --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.17.11 --service-principal $SP_ID --client-secret $SP_PASS
133133)
134134
135135if [ $? == 0 ];
Original file line number Diff line number Diff line change @@ -27,20 +27,20 @@ RUN add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/ubuntu/1
2727RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable"
2828
2929# ############## Installing Helm ###############
30- RUN curl -s -O https://storage.googleapis.com/kubernetes-helm/helm-v2.14.3 -linux-amd64.tar.gz
31- RUN tar -zxvf helm-v2.14.3 -linux-amd64.tar.gz
30+ RUN curl -s -O https://storage.googleapis.com/kubernetes-helm/helm-v2.17.0 -linux-amd64.tar.gz
31+ RUN tar -zxvf helm-v2.17.0 -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.10 /bin/linux/amd64/kubectl
35+ RUN curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.17.11 /bin/linux/amd64/kubectl
3636RUN chmod +x ./kubectl
3737RUN mv ./kubectl /usr/local/bin/kubectl
3838
3939# ############## Installing Packages ###############
4040
4141RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apt-transport-https
4242RUN DEBIAN_FRONTEND=noninteractive apt-get update
43- RUN DEBIAN_FRONTEND=noninteractive apt-get install -y dotnet-sdk-2.2 jq git zip azure-cli=2.0.71 -1~xenial
43+ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y dotnet-sdk-2.2 jq git zip azure-cli=2.14.1 -1~xenial
4444RUN DEBIAN_FRONTEND=noninteractive ACCEPT_EULA=Y apt-get install -y mssql-tools unixodbc-dev
4545RUN DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce
4646RUN DEBIAN_FRONTEND=noninteractive apt-get install vim -y
You can’t perform that action at this time.
0 commit comments