We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48b463a + 899b212 commit 680a113Copy full SHA for 680a113
hack/get-krel
@@ -45,9 +45,9 @@ if [[ "$FORCE_BUILD_KREL" == false &&
45
LATEST_RELEASE=$(curl_retry https://api.github.com/repos/kubernetes/release/releases/latest | jq -r .tag_name)
46
echo "Using krel release: $LATEST_RELEASE"
47
48
- echo "Downloading krel from GCB bucket…"
49
- GCB_URL="https://storage.googleapis.com/k8s-artifacts-sig-release/kubernetes/release/$LATEST_RELEASE/krel-amd64-linux"
50
- curl_retry "$GCB_URL" -o "$KREL_OUTPUT_PATH"
+ echo "Downloading krel from GitHub releases…"
+ GH_URL="https://github.com/kubernetes/release/releases/download/$LATEST_RELEASE/krel-amd64-linux"
+ curl_retry "$GH_URL" -o "$KREL_OUTPUT_PATH"
51
chmod +x "$KREL_OUTPUT_PATH"
52
else
53
echo "Building krel from sources"
0 commit comments