-
Notifications
You must be signed in to change notification settings - Fork 777
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add version popout to "Packaged Distributions" table (#3842)
* Add "version notice" popouts to Packaged Distributions table Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Remove old link to conformance proposal Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Make button colors less vivid to avoid distraction Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Avoid strange wrapping of "release notes" links Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Remove icons Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Make all versions blue Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Use outline rather than solid color Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Make all second-paragraph popups the same. Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Run `get_new_releases.sh` to get the 1.9.1 release Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> --------- Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
- Loading branch information
1 parent
9982fe8
commit 90f4b7e
Showing
30 changed files
with
347 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
content/en/docs/started/installing-kubeflow/get_new_releases.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
THIS_SCRIPT_PATH=$(cd "$(dirname "$0")" && pwd) | ||
cd "$THIS_SCRIPT_PATH" | ||
|
||
GITHUB_ORGANIZATION="kubeflow" | ||
GITHUB_REPOSITORY="manifests" | ||
|
||
# ensure bash version 4.4+ | ||
if [[ ${BASH_VERSINFO[0]} -lt 4 || (${BASH_VERSINFO[0]} -eq 4 && ${BASH_VERSINFO[1]} -lt 4) ]]; then | ||
echo ">>> ERROR: Bash version 4.4+ is required to run this script, current version: '${BASH_VERSION}'" | ||
exit 1 | ||
fi | ||
|
||
# ensure 'jq' is installed | ||
if [[ -z "$(command -v jq)" ]]; then | ||
echo ">>> ERROR: 'jq' must be installed to run this script" | ||
exit 1 | ||
fi | ||
|
||
####################################### | ||
# Latest release | ||
####################################### | ||
|
||
# fetch the latest release from the GitHub API | ||
GITHUB_API_URL="https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPOSITORY}/releases/latest" | ||
echo ">>> Fetching latest release from: ${GITHUB_API_URL}" | ||
latest_release_json=$(curl -sSfL "$GITHUB_API_URL") | ||
|
||
# get the latest release details | ||
latest_release_tag=$(echo "$latest_release_json" | jq -r '.tag_name') | ||
latest_release_url=$(echo "$latest_release_json" | jq -r '.html_url') | ||
latest_commit_date=$(echo "$latest_release_json" | jq -r '.created_at') | ||
latest_publish_date=$(echo "$latest_release_json" | jq -r '.published_at') | ||
|
||
# create the latest release file | ||
latest_release_file="./release-info/latest.json" | ||
echo ">>> Updating latest release file: ${latest_release_file}" | ||
cat > "$latest_release_file" <<EOF | ||
{ | ||
"tag": "${latest_release_tag}", | ||
"url": "${latest_release_url}", | ||
"commit_date": "${latest_commit_date}", | ||
"publish_date": "${latest_publish_date}" | ||
} | ||
EOF | ||
|
||
####################################### | ||
# All releases | ||
####################################### | ||
|
||
# fetch the releases from the GitHub API | ||
GITHUB_API_URL="https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPOSITORY}/releases?per_page=100" | ||
echo ">>> Fetching releases from: ${GITHUB_API_URL}" | ||
releases_json=$(curl -sSfL "$GITHUB_API_URL") | ||
|
||
# get the list of releases | ||
releases_list=$(echo "$releases_json" | jq -c '.[]?') | ||
|
||
# for each release, update its .json file in this folder | ||
IFS=$'\n' | ||
for release_json in $releases_list; do | ||
|
||
# skip pre-releases and drafts | ||
is_pre_release=$(echo "$release_json" | jq -r '.prerelease') | ||
is_draft=$(echo "$release_json" | jq -r '.draft') | ||
if [[ "$is_pre_release" == "true" || "$is_draft" == "true" ]]; then | ||
continue | ||
fi | ||
|
||
# get the release details | ||
release_tag=$(echo "$release_json" | jq -r '.tag_name') | ||
release_url=$(echo "$release_json" | jq -r '.html_url') | ||
commit_date=$(echo "$release_json" | jq -r '.created_at') | ||
publish_date=$(echo "$release_json" | jq -r '.published_at') | ||
|
||
# create the release file | ||
release_file="./release-info/${release_tag}.json" | ||
echo ">>> Updating release file: ${release_file}" | ||
cat > "$release_file" <<EOF | ||
{ | ||
"tag": "${release_tag}", | ||
"url": "${release_url}", | ||
"commit_date": "${commit_date}", | ||
"publish_date": "${publish_date}" | ||
} | ||
EOF | ||
|
||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/latest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.9.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.9.1", | ||
"commit_date": "2024-10-24T20:57:31Z", | ||
"publish_date": "2024-10-28T14:09:47Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v0.6.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v0.6.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v0.6.0", | ||
"commit_date": "2019-07-18T20:34:19Z", | ||
"publish_date": "2019-07-18T21:24:06Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v0.6.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v0.6.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v0.6.1", | ||
"commit_date": "2019-07-26T22:45:58Z", | ||
"publish_date": "2019-07-30T21:52:06Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v0.6.2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v0.6.2", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v0.6.2", | ||
"commit_date": "2019-08-24T19:58:23Z", | ||
"publish_date": "2019-08-28T02:45:15Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.0.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.0.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.0.1", | ||
"commit_date": "2020-03-18T19:58:42Z", | ||
"publish_date": "2020-03-18T20:15:26Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.0.2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.0.2", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.0.2", | ||
"commit_date": "2020-04-16T23:17:27Z", | ||
"publish_date": "2020-04-17T22:00:20Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.1.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.1.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.1.0", | ||
"commit_date": "2020-07-26T00:07:36Z", | ||
"publish_date": "2020-11-09T08:16:45Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.2.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.2.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.2.0", | ||
"commit_date": "2020-11-20T17:12:51Z", | ||
"publish_date": "2020-11-20T19:29:14Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.3.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.3.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.3.0", | ||
"commit_date": "2021-04-21T22:48:42Z", | ||
"publish_date": "2021-06-02T21:53:55Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.3.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.3.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.3.1", | ||
"commit_date": "2021-07-20T09:49:15Z", | ||
"publish_date": "2021-08-03T14:14:30Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.4.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.4.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.4.0", | ||
"commit_date": "2021-10-08T17:55:24Z", | ||
"publish_date": "2021-10-12T03:15:04Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.4.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.4.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.4.1", | ||
"commit_date": "2021-12-22T16:25:41Z", | ||
"publish_date": "2021-12-23T22:13:01Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.5.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.5.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.5.0", | ||
"commit_date": "2022-03-10T17:01:57Z", | ||
"publish_date": "2022-03-10T17:32:42Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.5.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.5.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.5.1", | ||
"commit_date": "2022-06-15T18:35:53Z", | ||
"publish_date": "2022-06-15T18:44:13Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.6.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.6.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.6.0", | ||
"commit_date": "2022-09-07T17:41:26Z", | ||
"publish_date": "2022-09-07T18:31:34Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.6.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.6.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.6.1", | ||
"commit_date": "2022-10-10T15:03:58Z", | ||
"publish_date": "2022-10-10T15:31:34Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.7.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.7.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.7.0", | ||
"commit_date": "2023-03-29T15:17:36Z", | ||
"publish_date": "2023-03-29T15:47:56Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.8.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.8.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.8.0", | ||
"commit_date": "2023-11-01T16:15:57Z", | ||
"publish_date": "2023-11-01T16:22:22Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.8.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.8.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.8.1", | ||
"commit_date": "2024-03-04T12:04:42Z", | ||
"publish_date": "2024-04-08T16:53:00Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.9.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.9.0", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.9.0", | ||
"commit_date": "2024-07-22T11:30:01Z", | ||
"publish_date": "2024-07-22T11:39:31Z" | ||
} |
6 changes: 6 additions & 0 deletions
6
content/en/docs/started/installing-kubeflow/release-info/v1.9.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tag": "v1.9.1", | ||
"url": "https://github.com/kubeflow/manifests/releases/tag/v1.9.1", | ||
"commit_date": "2024-10-24T20:57:31Z", | ||
"publish_date": "2024-10-28T14:09:47Z" | ||
} |
Oops, something went wrong.