Kubernetes build worker
This commit is contained in:
parent
3044f8ecbd
commit
bc13333f20
7 changed files with 255 additions and 34 deletions
21
buildman/qemu-coreos/start.sh
Normal file
21
buildman/qemu-coreos/start.sh
Normal file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
set -o nounset
|
||||
|
||||
mkdir -p /userdata/openstack/latest
|
||||
echo "$USERDATA" > /userdata/openstack/latest/user_data
|
||||
|
||||
qemu-system-x86_64 \
|
||||
-enable-kvm \
|
||||
-cpu host \
|
||||
-device virtio-9p-pci,fsdev=conf,mount_tag=config-2 \
|
||||
-nographic \
|
||||
-drive if=virtio,file=./coreos_production_qemu_image.img \
|
||||
-fsdev local,id=conf,security_model=none,readonly,path=/userdata \
|
||||
-m "${VM_MEMORY}" \
|
||||
-machine accel=kvm \
|
||||
-net nic,model=virtio \
|
||||
-net user,hostfwd=tcp::2222-:22 \
|
||||
-smp 2
|
Reference in a new issue