mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-03 11:22:49 +00:00
Update the SHA of all packages that have been go-mod-ififed such that they are use for testing in CI Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
kernel:
|
|
image: linuxkit/kernel:5.10.76
|
|
cmdline: "console=ttyS0"
|
|
init:
|
|
- linuxkit/init:7e3d51e6ab5896ecb36a4829450f7430f2878927
|
|
- linuxkit/runc:9f7aad4eb5e4360cc9ed8778a5c501cce6e21601
|
|
- linuxkit/containerd:2f0907913dd54ab5186006034eb224a0da12443e
|
|
onboot:
|
|
- name: dhcpcd
|
|
image: linuxkit/dhcpcd:52d2c4df0311b182e99241cdc382ff726755c450
|
|
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
|
- name: mount-vpnkit
|
|
image: alpine:3.13
|
|
binds:
|
|
- /var/:/host_var:rbind,rshared
|
|
capabilities:
|
|
- CAP_SYS_ADMIN
|
|
rootfsPropagation: shared
|
|
command: ["sh", "-c", "mkdir /host_var/vpnkit && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"]
|
|
services:
|
|
- name: sshd
|
|
image: linuxkit/sshd:4696ba61c3ec091328e1c14857d77e675802342f
|
|
- name: vpnkit-forwarder
|
|
image: linuxkit/vpnkit-forwarder:ea4dded7386b09dd647e854664b029be0a4f420f
|
|
binds:
|
|
- /var/vpnkit:/port
|
|
net: host
|
|
command: ["/vpnkit-forwarder"]
|
|
|
|
files:
|
|
- path: root/.ssh/authorized_keys
|
|
source: ~/.ssh/id_rsa.pub
|
|
mode: "0600"
|
|
optional: true
|