Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions quickstart/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,15 @@ done
# Install yq (v4+)
if ! command -v yq &> /dev/null; then
echo "Installing yq..."
sudo curl -sLo /usr/local/bin/yq \
curl -sLo yq \
"https://github.com/mikefarah/yq/releases/latest/download/yq_${OS}_${ARCH}"
sudo chmod +x /usr/local/bin/yq
chmod +x yq
sudo mv yq /usr/local/bin/yq
fi

if ! yq --version 2>&1 | grep -q 'mikefarah'; then
echo "Detected yq is not mikefarah’s yq. Please uninstall your current yq and re-run this script."
exit 1
fi

# Install kubectl
Expand Down
Loading