Speed up install by commenting out wget and using local.

This commit is contained in:
2022-11-10 10:20:01 +13:00
parent f90c236255
commit 69d4e8ba41
2 changed files with 5 additions and 5 deletions

View File

@ -100,5 +100,5 @@ With these constraints in mind we will be deploying ~microshift~ today which is
cd Downloads && git clone https://github.com/jmhbnz/kubernetes-edge-demo.git cd Downloads && git clone https://github.com/jmhbnz/kubernetes-edge-demo.git
# Run the install script # Run the install script
sudo ./microshift-install.sh cd kubernetes-edge-demo && sudo ./microshift-install.sh
#+end_src #+end_src

View File

@ -30,7 +30,7 @@ install_crio() {
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install -y cri-o-runc cri-tools containernetworking-plugins sudo apt-get install -y cri-o-runc cri-tools containernetworking-plugins
wget https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/1.25:/1.25.1/Debian_11/arm64/cri-o_1.25.1~0_arm64.deb #wget https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/1.25:/1.25.1/Debian_11/arm64/cri-o_1.25.1~0_arm64.deb
sudo dpkg -i cri-o_1.25.1~0_arm64.deb sudo dpkg -i cri-o_1.25.1~0_arm64.deb
} }