Skip to content

Commit b0ba2c4

Browse files
authored
Merge pull request #118 from flatcar/t-lo/fix-extension-build-versions
release_build_versions.txt: use correct version strings
2 parents f8050aa + f969dae commit b0ba2c4

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

_skel.sysext/create.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
# for `multi-user.target` in the "files/..." directory of this extension.
1717
RELOAD_SERVICES_ON_MERGE="true"
1818

19+
# If you need to run curl calls to api.github.com consider using
20+
# 'curl_wrapper' (from lib/helpers.sh). The wrapper will use GH_TOKEN
21+
# if set to prevent throttling of unathenticated calls.
22+
1923
# Fetch and print a list of available versions.
2024
# Called by 'bakery.sh list <sysext>.
2125
function list_available_versions() {

kubernetes.sysext/create.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function populate_sysext_root() {
4242
local rel_arch="$(arch_transform "x86-64" "amd64" "$arch")"
4343

4444
if [[ -z ${cni_version} ]] ; then
45-
cni_version="$(curl -fsSL https://api.github.com/repos/containernetworking/plugins/releases/latest \
45+
cni_version="$(curl_wrapper https://api.github.com/repos/containernetworking/plugins/releases/latest \
4646
| jq -r .tag_name)"
4747
fi
4848

release_build_versions.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,31 +43,31 @@ kubernetes latest
4343

4444
# TODO: llamaedge sysext depends on wasmedge sysext version, so we can't automatically build it :-/
4545

46-
nebula 1.9.5
46+
nebula v1.9.5
4747
nebula latest
4848

4949
nerdctl latest
5050

5151
nvidia-runtime v1.16.2
5252
nvidia-runtime latest
5353

54-
ollama 0.3.9
54+
ollama v0.3.9
5555
ollama latest
5656

5757
rke2 latest
5858

59-
tailscale 1.76.6
59+
tailscale v1.76.6
6060
tailscale latest
6161

62-
wasmcloud 1.0.0
63-
wasmcloud 1.1.1
64-
wasmcloud 1.2.1
62+
wasmcloud v1.0.0
63+
wasmcloud v1.1.1
64+
wasmcloud v1.2.1
6565
wasmcloud latest
6666

67-
wasmedge 0.14.1
67+
wasmedge 0.15.1
6868
wasmedge latest
6969

70-
wasmtime 12.0.0
71-
wasmtime 13.0.0 # Used in Flatcar wasm OS demo
72-
wasmtime 24.0.0 # Used in README.md. Update readme when version changes.
70+
wasmtime v12.0.0
71+
wasmtime v13.0.0 # Used in Flatcar wasm OS demo
72+
wasmtime v24.0.0 # Used in README.md. Update readme when version changes.
7373
wasmtime latest

wasmcloud.sysext/create.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function populate_sysext_root() {
2121

2222
local nats="$(get_optional_param "nats" "latest" "${@}")"
2323
if [[ $nats == latest ]] ; then
24-
nats="$(curl -fsSL https://api.github.com/repos/nats-io/nats-server/releases/latest | jq -r .tag_name)"
24+
nats="$(curl_wrapper https://api.github.com/repos/nats-io/nats-server/releases/latest | jq -r .tag_name)"
2525
fi
2626

2727
echo "Using NATS server version '$nats'"

0 commit comments

Comments
 (0)