This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ClusterAPI.imageBuilder/REMOVED/hack/image-grok-latest-flatcar-version.sh
Danny Bessems a32a6c9c0c
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Attempt native imagebuilder image
2023-02-23 21:17:50 +01:00

13 lines
262 B
Bash
Executable File

#!/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