From 8de634d32f04659d909085b3c28ce604c383c1a5 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 11 Jan 2021 08:46:57 -0500 Subject: [PATCH] pin minikube version Signed-off-by: Sebastian Malton --- .azure-pipelines.yml | 2 +- scripts/integration.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 623c4d3395..88aadfd87b 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -126,7 +126,7 @@ jobs: - bash: | sudo apt-get update sudo apt-get install libgconf-2-4 conntrack -y - curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 + curl -LO https://storage.googleapis.com/minikube/releases/v1.15.1/minikube-linux-amd64 sudo install minikube-linux-amd64 /usr/local/bin/minikube sudo minikube start --driver=none # Although the kube and minikube config files are in placed $HOME they are owned by root diff --git a/scripts/integration.sh b/scripts/integration.sh index 508d36fe0d..122d916b3e 100755 --- a/scripts/integration.sh +++ b/scripts/integration.sh @@ -3,10 +3,10 @@ case $1 in find ~/Library/Logs/Lens -type f -name *.log -delete ;; linux) - find ~/.config/Lens -type f -name *.log -delete + find ~/.config/Logs/Lens -type f -name *.log -delete ;; win) - find %APPDATA%/Lens -type f -name *.log -delete + find %APPDATA%/Logs/Lens -type f -name *.log -delete ;; esac @@ -19,10 +19,10 @@ if [ $? -ne 0 ]; then find ~/Library/Logs/Lens -type f -name *.log -exec cat >&2 {} \; ;; linux) - find ~/.config/Lens -type f -name *.log -exec cat >&2 {} \; + find ~/.config/Logs/Lens -type f -name *.log -exec cat >&2 {} \; ;; win) - find %APPDATA%/Lens -type f -name *.log -exec cat >&2 {} \; + find %APPDATA%/Logs/Lens -type f -name *.log -exec cat >&2 {} \; ;; esac