Skip to content

Commit ed36d2f

Browse files
char-1eelrq619
authored andcommitted
Update firecracker kernel image link
Signed-off-by: char-1ee <[email protected]>
1 parent 57e73f9 commit ed36d2f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

configs/setup/vhive.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"FirecrackerKernelImgDownloadUrl": "https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin",
2+
"FirecrackerKernelImgDownloadUrl": "https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.5/x86_64/vmlinux-5.10.186",
33
"StargzVersion": "0.13.0"
44
}

scripts/cluster/setup_master_node.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func InstallKnativeServingComponent(stockContainerd string) error {
204204
if !utils.CheckErrorWithMsg(err, "Failed to install Knative Serving component!\n") {
205205
return err
206206
}
207-
207+
208208
if _, err = os.Stat(path.Join(configs.VHive.VHiveRepoPath, path.Join("configs/knative_yamls", "serving-core.yaml"))); err != nil {
209209
utils.WaitPrintf("Using stock version of knative.")
210210
_, err = utils.ExecShellCmd("kubectl apply -f https://github.com/knative/serving/releases/download/knative-v%s/serving-core.yaml", configs.Knative.KnativeVersion)
@@ -291,7 +291,7 @@ func ConfigureMagicDNS() error {
291291
// Deploy Istio pods
292292
func DeployIstioPods() error {
293293
utils.WaitPrintf("Deploying istio pods")
294-
294+
295295
if _, err := os.Stat(path.Join(configs.VHive.VHiveRepoPath, path.Join("configs/knative_yamls", "net-istio.yaml"))); err != nil {
296296
_, err = utils.ExecShellCmd("kubectl apply -f https://github.com/knative/net-istio/releases/download/knative-v%s/net-istio.yaml", configs.Knative.KnativeVersion)
297297
if !utils.CheckErrorWithTagAndMsg(err, "Failed to deploy istio pods!\n") {

scripts/github_runner/Dockerfile.github_runner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RUN apt-get update && \
5454
sudo mkdir -p /etc/firecracker-containerd && \
5555
sudo mkdir -p /var/lib/firecracker-containerd/runtime && \
5656
sudo mkdir -p /etc/containerd/ && \
57-
sudo curl -fsSL -o /var/lib/firecracker-containerd/runtime/hello-vmlinux.bin https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin
57+
sudo curl -fsSL -o /var/lib/firecracker-containerd/runtime/hello-vmlinux.bin https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.5/x86_64/vmlinux-5.10.186
5858

5959
COPY scripts/github_runner/setup_runner.sh /setup_runner.sh
6060
COPY scripts/create_devmapper.sh /create_devmapper.sh

scripts/setup_firecracker_containerd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ done
4646
# rootfs image
4747
sudo cp $BINS/default-rootfs.img /var/lib/firecracker-containerd/runtime/
4848
# kernel image
49-
sudo curl -fsSL -o /var/lib/firecracker-containerd/runtime/hello-vmlinux.bin https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin
49+
sudo curl -fsSL -o /var/lib/firecracker-containerd/runtime/hello-vmlinux.bin https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.5/x86_64/vmlinux-5.10.186
5050

5151
sudo cp $CONFIGS/config.toml /etc/firecracker-containerd/
5252

0 commit comments

Comments
 (0)