Update YAMLs to released packages

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer
2018-04-05 15:23:20 +01:00
parent 2d00440351
commit db663d30a6
83 changed files with 454 additions and 454 deletions

View File

@@ -3,30 +3,30 @@ kernel:
image: linuxkit/kernel:4.14.32
cmdline: "console=ttyS0 page_poison=1"
init:
- linuxkit/vpnkit-expose-port:3f60b78f78bfb83c14dd459ff7a3f58dacb33ad0 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
- linuxkit/init:be60dd1cb15ad39225512b6753304571d8c2fb17
- linuxkit/runc:17e8c06e48ac220be79b2476e39b4d7feb905524
- linuxkit/containerd:87ea9b027267b26bf5cc2d10a50c3eb9b5017df4
- linuxkit/ca-certificates:04a6dc9e5c901ee128c353f690bd97aeb7d97ae8
- linuxkit/vpnkit-expose-port:v0.3 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
- linuxkit/init:v0.3
- linuxkit/runc:v0.3
- linuxkit/containerd:v0.3
- linuxkit/ca-certificates:v0.3
onboot:
# support metadata for optional config in /run/config
- name: metadata
image: linuxkit/metadata:09272c373fa10b9a09f2c9fe380bffb4402f98f6
image: linuxkit/metadata:v0.3
- name: sysctl
image: linuxkit/sysctl:e7106b5e3db64a9ec21eb1479727627ecf52137d
image: linuxkit/sysctl:v0.3
- name: sysfs
image: linuxkit/sysfs:f7fc4dfbdc7e09f8aab0063699d9a75932b08c3f
image: linuxkit/sysfs:v0.3
- name: binfmt
image: linuxkit/binfmt:98398d827e80b56e487d2ae94ed86a0006acb702
image: linuxkit/binfmt:v0.3
# Format and mount the disk image in /var/lib/docker
- name: format
image: linuxkit/format:a0a0469c74e3c5617d2fdffb6c38e402133fb680
image: linuxkit/format:v0.3
- name: mount
image: linuxkit/mount:03795dccf510edfc14aeb0ab5e87cd9f7da3586a
image: linuxkit/mount:v0.3
command: ["/usr/bin/mountie", "/var/lib"]
# make a swap file on the mounted disk
- name: swap
image: linuxkit/swap:83b2f6d8c1e8196b68215a62269da4b79002aad0
image: linuxkit/swap:v0.3
command: ["/swap.sh", "--path", "/var/lib/swap", "--size", "1024M"]
# mount-vpnkit mounts the 9p share used by vpnkit to coordinate port forwarding
- name: mount-vpnkit
@@ -44,41 +44,41 @@ onboot:
- /var:/host_var
command: ["sh", "-c", "mv -v /host_var/log /host_var/lib && ln -vs /var/lib/log /host_var/log"]
- name: dhcpcd
image: linuxkit/dhcpcd:8b23f047ffa4d657a2c7dd465e69cc13721c4165
image: linuxkit/dhcpcd:v0.3
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services:
# Enable acpi to shutdown on power events
- name: acpid
image: linuxkit/acpid:a1399f824db917488d048c5e23ca3cec6e5317d8
image: linuxkit/acpid:v0.3
# Enable getty for easier debugging
- name: getty
image: linuxkit/getty:9e2c184fdd708720d47e663f03ad137c074d4f21
image: linuxkit/getty:v0.3
env:
- INSECURE=true
# Run ntpd to keep time synchronised in the VM
- name: ntpd
image: linuxkit/openntpd:e3cd26ff2974f2d93c88c28efacf69e15bcdb983
image: linuxkit/openntpd:v0.3
# VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock
# to a socket on the host.
- name: vsudd
image: linuxkit/vsudd:3559f24480e165e0719479146953b461a3e1b99e
image: linuxkit/vsudd:v0.3
binds:
- /var/run:/var/run
command: ["/vsudd", "-inport", "2376:unix:/var/run/docker.sock"]
# vpnkit-forwarder forwards network traffic to/from the host via VSOCK port 62373.
# It needs access to the vpnkit 9P coordination share
- name: vpnkit-forwarder
image: linuxkit/vpnkit-forwarder:9dad2e9fb848d6452232deb01e08beda7ba00d21
image: linuxkit/vpnkit-forwarder:v0.3
binds:
- /var/vpnkit:/port
net: host
command: ["/vpnkit-forwarder", "-vsockPort", "62373"]
# Monitor for image deletes and invoke a TRIM on the container filesystem
- name: trim-after-delete
image: linuxkit/trim-after-delete:ab0873798bf27deb5024569e46dfe30bebda9713
image: linuxkit/trim-after-delete:v0.3
# When the host resumes from sleep, force a clock resync
- name: host-timesync-daemon
image: linuxkit/host-timesync-daemon:10177f45d9384fa4cc61571ae8bb3bffbb3eba3c
image: linuxkit/host-timesync-daemon:v0.3
# Run dockerd with the vpnkit userland proxy from the vpnkit-forwarder container.
# Bind mounts /var/run to allow vsudd to connect to docker.sock, /var/vpnkit
# for vpnkit coordination and /run/config/docker for the configuration file.