mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-03 12:17:07 +00:00
Drop `hyperkit` from the `linuxkit run` invocation, thus causing the linuxkit tool to pick the platform's default backend (which is qemu on my Linux system, which works better than hyperkit in this environment). Signed-off-by: Ian Campbell <ian.campbell@docker.com>
6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/bin/bash -eu
|
|
disk="kube-master-disk.img"
|
|
set -x
|
|
rm -f "${disk}"
|
|
../../bin/linuxkit run -cpus 2 -mem 4096 -disk-size 4096 kube-master
|