File tree 5 files changed +16
-12
lines changed
cidata/cidata.TEMPLATE.d/boot
5 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ jobs:
132
132
- name : Install vde_switch and vde_vmnet
133
133
if : matrix.example == 'vmnet.yaml'
134
134
env :
135
- # 2021-08-31
136
- VDE2_VERSION : 50964c3fb0776e82f8bd1ecdc527683966f3d52c
135
+ # 2021-09-21
136
+ VDE2_VERSION : 534a09453f956f8f545ba4fe37413be1a139314d
137
137
# 2021-09-15
138
138
VDE_VMNET_VERSION : v0.5.1
139
139
run : |
@@ -145,7 +145,7 @@ jobs:
145
145
cd vde-2
146
146
git checkout $VDE2_VERSION
147
147
autoreconf -fis
148
- ./configure --prefix=/opt/vde
148
+ ./configure --prefix=/opt/vde --disable-python
149
149
make
150
150
sudo make install
151
151
)
Original file line number Diff line number Diff line change 2
2
arch : " x86_64"
3
3
images :
4
4
# NOTE: the image is periodically rotated, if you face 404, see https://mirror.pkgbuild.com/images/ to find the latest image.
5
- - location : " https://mirror.pkgbuild.com/images/v20211112.38968 /Arch-Linux-x86_64-cloudimg-20211112.38968 .qcow2"
5
+ - location : " https://mirror.pkgbuild.com/images/v20211115.39179 /Arch-Linux-x86_64-cloudimg-20211115.39179 .qcow2"
6
6
arch : " x86_64"
7
- digest : " sha256:196e58f1c4e4f3d5293cc0556a59182c3259d7acd7a910537c1a825d8876db82 "
7
+ digest : " sha256:1f056b5e98e3b75179e71ec4f4237a945fb5043a1753889d6c850d2a8a517137 "
8
8
mounts :
9
9
- location : " ~"
10
10
writable : false
Original file line number Diff line number Diff line change 1
1
# This example requires Lima v0.7.0 or later
2
2
images :
3
- - location : " https://cloud.debian.org/images/cloud/bullseye/daily/20211114-826 /debian-11-generic-amd64-daily-20211114-826 .qcow2"
3
+ - location : " https://cloud.debian.org/images/cloud/bullseye/daily/20211121-833 /debian-11-generic-amd64-daily-20211121-833 .qcow2"
4
4
arch : " x86_64"
5
- digest : " sha512:34920f6b80989642b84e18ee8cac63fc4909381fd8124f479b5e9fee5a0e7562e92465fc9e6b9a2200abded0d6f001c1950bfd9305a37aee9e405e5df28f3f27 "
6
- - location : " https://cloud.debian.org/images/cloud/bullseye/daily/20211114-826 /debian-11-generic-arm64-daily-20211114-826 .qcow2"
5
+ digest : " sha512:8ff4ae9aa2bf4c0a5c1ef894ea4ab5f095f5eb30bc6e7227b87c170a7a95ba9cadd4ffe3aa0b662c9d5c57b9cf2fb3f7269d6eeb5c013937b3cf0475f0f3459d "
6
+ - location : " https://cloud.debian.org/images/cloud/bullseye/daily/20211121-833 /debian-11-generic-arm64-daily-20211121-833 .qcow2"
7
7
arch : " aarch64"
8
- digest : " sha512:6c5937ad83bc72b08bc7c666f5a4d33c9b44289c6113c0a554afccbd49b68e792b180f0b756c6624fe4ba137941c117e1688cff97e633e42515f0b9188b6be8b "
8
+ digest : " sha512:1b5c68b5626fb6799b643bd7d79f8c082cbac9e2754a22d1b91f4dcb26cc7ce618b31504c36c5e0ec69ee5b3e312bc1882e73feff0ef89ad4a375b50572789f1 "
9
9
mounts :
10
10
- location : " ~"
11
11
writable : false
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ command -v systemctl >/dev/null 2>&1 || exit 0
10
10
11
11
if [ ! -x /usr/local/bin/nerdctl ]; then
12
12
tar Cxzf /usr/local " ${LIMA_CIDATA_MNT} " /nerdctl-full.tgz
13
+
14
+ mkdir -p /etc/bash_completion.d
15
+ nerdctl completion bash > /etc/bash_completion.d/nerdctl
16
+ # TODO: enable zsh completion too
13
17
fi
14
18
15
19
if [ " ${LIMA_CIDATA_CONTAINERD_SYSTEM} " = 1 ]; then
Original file line number Diff line number Diff line change @@ -20,20 +20,20 @@ import (
20
20
)
21
21
22
22
func defaultContainerdArchives () []File {
23
- const nerdctlVersion = "0.13 .0"
23
+ const nerdctlVersion = "0.14 .0"
24
24
location := func (goarch string ) string {
25
25
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-linux-" + goarch + ".tar.gz"
26
26
}
27
27
return []File {
28
28
{
29
29
Location : location ("amd64" ),
30
30
Arch : X8664 ,
31
- Digest : "sha256:ed2d3662fd2866875e107df20f7da6dd32fafa8fa3e8aa9b6b774af20af5ddaa " ,
31
+ Digest : "sha256:3423cb589bb5058ff9ed55f6823adec1299fe2e576612fc6f706fe07eddd398b " ,
32
32
},
33
33
{
34
34
Location : location ("arm64" ),
35
35
Arch : AARCH64 ,
36
- Digest : "sha256:8a744638b01cd53c437a0d2a54c66f0ec4a918b75e93056393e7076bbf06a173 " ,
36
+ Digest : "sha256:32898576fa89392d1af8c21ff3854c0f54d2c66c0de87598be813f25051366e5 " ,
37
37
},
38
38
}
39
39
}
You can’t perform that action at this time.
0 commit comments