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

Commit

Permalink
updating to 1.13.11 k8s (#312)
Browse files Browse the repository at this point in the history
* updating to 1.13.11 k8s

* udpate az cli version.

* udpate az cli version.
  • Loading branch information
rguthriemsft authored and mwasham committed Oct 19, 2019
1 parent 3e057df commit db92837
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions provision-team/jenkins/install_jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -489,13 +489,13 @@ 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.13.9/bin/linux/amd64/kubectl
curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.11/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl

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

# Configure accessusermod -aG docker azureuser
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.13.9 --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.13.11 --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.13.9/bin/linux/amd64/kubectl
RUN curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.11/bin/linux/amd64/kubectl
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin/kubectl

Expand Down

0 comments on commit db92837

Please sign in to comment.