File tree Expand file tree Collapse file tree 4 files changed +16
-12
lines changed
Expand file tree Collapse file tree 4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 1616# for `multi-user.target` in the "files/..." directory of this extension.
1717RELOAD_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>.
2125function list_available_versions() {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
4747nebula latest
4848
4949nerdctl latest
5050
5151nvidia-runtime v1.16.2
5252nvidia-runtime latest
5353
54- ollama 0 .3.9
54+ ollama v0 .3.9
5555ollama latest
5656
5757rke2 latest
5858
59- tailscale 1 .76.6
59+ tailscale v1 .76.6
6060tailscale 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
6565wasmcloud latest
6666
67- wasmedge 0.14 .1
67+ wasmedge 0.15 .1
6868wasmedge 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.
7373wasmtime latest
Original file line number Diff line number Diff 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 '"
You can’t perform that action at this time.
0 commit comments