File tree 4 files changed +13
-8
lines changed
4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 69
69
commands :
70
70
- ' ln -s /var/lib/fc-ci/vmlinux.bin testdata/vmlinux'
71
71
- ' ln -s /var/lib/fc-ci/rootfs.ext4 testdata/root-drive.img'
72
- - ' ln -s /usr/local/bin/firecracker-v0.19 .0 testdata/firecracker'
73
- - ' ln -s /usr/local/bin/jailer-v0.19 .0 testdata/jailer'
72
+ - ' ln -s /usr/local/bin/firecracker-v0.20 .0 testdata/firecracker'
73
+ - ' ln -s /usr/local/bin/jailer-v0.20 .0 testdata/jailer'
74
74
- " FC_TEST_TAP=fc-test-tap${BUILDKITE_BUILD_NUMBER} make test EXTRAGOARGS='-v -count=1 -race' DISABLE_ROOT_TESTS=true"
75
75
agents :
76
76
queue : " ${BUILDKITE_AGENT_META_DATA_QUEUE:-default}"
82
82
commands :
83
83
- ' ln -s /var/lib/fc-ci/vmlinux.bin testdata/vmlinux'
84
84
- ' ln -s /var/lib/fc-ci/rootfs.ext4 testdata/root-drive.img'
85
- - ' cp /usr/local/bin/firecracker-v0.19 .0 testdata/firecracker'
86
- - ' cp /usr/local/bin/jailer-v0.19 .0 testdata/jailer'
85
+ - ' cp /usr/local/bin/firecracker-v0.20 .0 testdata/firecracker'
86
+ - ' cp /usr/local/bin/jailer-v0.20 .0 testdata/jailer'
87
87
- ' make -C cni install CNI_BIN_ROOT=$(pwd)/testdata/bin'
88
88
- " sudo FC_TEST_TAP=fc-root-tap${BUILDKITE_BUILD_NUMBER} make test EXTRAGOARGS='-v -count=1 -race' DISABLE_ROOT_TESTS="
89
89
agents :
Original file line number Diff line number Diff line change
1
+ # 0.20.0
2
+ * Moves the NetNS field to ` Config ` from ` JailerConfig ` (#155 ).
3
+ * Supports forcing CNI network creation (#130 ).
4
+ * Adds ` FIRECRACKER_GO_SDK_INIT_TIMEOUT_SECONDS ` and ` FIRECRACKER_GO_SDK_REQUEST_TIMEOUT_MILLISECONDS ` environment variables to configure timeouts (#165 ).
5
+ * Adds ` ForwardSignals ` to explicitly configure signal handling (#166 ).
6
+
1
7
# 0.19.0
2
8
* Firecracker v0.19 API: Vsock API call: PUT /vsocks/{id} changed to PUT /vsock and no longer
3
9
appear to support multiple vsock devices. Any subsequent calls to this API
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ environment variable.
12
12
13
13
You need some external resources in order to run the tests, as described below:
14
14
15
- 1 . A firecracker and jailer binary (tested with 0.12 .0) must either be
15
+ 1 . A firecracker and jailer binary (tested with 0.20 .0) must either be
16
16
installed as ` ./testdata/firecracker ` or the path must be specified through
17
17
the ` FC_TEST_BIN ` environment variable. The jailer requires go test to be
18
18
run with sudo and can also be turned off by setting the ` DISABLE_ROOT_TESTS `
@@ -61,7 +61,6 @@ Amazon EC2 Bare Metal Instances.
61
61
The instance is pre-configured to have
62
62
63
63
- firecracker and jailer under /usr/local/bin.
64
- Both of them are currently v0.17.0 and built with
65
- ` cargo build --features vsock --release ` to enable vsock support
64
+ Both of them are currently v0.20.0.
66
65
- vmlinux.bin from
67
66
https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin
Original file line number Diff line number Diff line change 14
14
package firecracker
15
15
16
16
// Version represents the current version of the SDK.
17
- const Version = "0.19 .0"
17
+ const Version = "0.20 .0"
You can’t perform that action at this time.
0 commit comments