ClusterAPI.imageBuilder/hack/image-grok-latest-flatcar-version.sh

13 lines
262 B
Bash
Raw Permalink Normal View History

2023-02-22 20:24:42 +00:00
#!/bin/bash -ue
[[ -n ${DEBUG:-} ]] && set -o xtrace
channel="$1"
curl -L -s \
"https://www.flatcar.org/releases-json/releases-$channel.json" \
| jq -r 'to_entries[] | "\(.key)"' \
| grep -v "current" \
| sort --version-sort \
| tail -n1