85 lines
2.0 KiB
Go
85 lines
2.0 KiB
Go
//go:build linux && amd64
|
|
// +build linux,amd64
|
|
|
|
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package kvm
|
|
|
|
const domainTmpl = `
|
|
<domain type='kvm'>
|
|
<name>{{.MachineName}}</name>
|
|
<memory unit='MiB'>{{.Memory}}</memory>
|
|
<vcpu>{{.CPU}}</vcpu>
|
|
<features>
|
|
<acpi/>
|
|
<apic/>
|
|
<pae/>
|
|
{{if .Hidden}}
|
|
<kvm>
|
|
<hidden state='on'/>
|
|
</kvm>
|
|
{{end}}
|
|
</features>
|
|
<cpu mode='host-passthrough'>
|
|
{{if gt .NUMANodeCount 1}}
|
|
{{.NUMANodeXML}}
|
|
{{end}}
|
|
</cpu>
|
|
<os>
|
|
<type>hvm</type>
|
|
<boot dev='cdrom'/>
|
|
<boot dev='hd'/>
|
|
<bootmenu enable='no'/>
|
|
</os>
|
|
<devices>
|
|
<disk type='file' device='cdrom'>
|
|
<source file='{{.ISO}}'/>
|
|
<target dev='hdc' bus='scsi'/>
|
|
<readonly/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<driver name='qemu' type='raw' cache='default' io='threads' />
|
|
<source file='{{.DiskPath}}'/>
|
|
<target dev='hda' bus='virtio'/>
|
|
</disk>
|
|
<interface type='network'>
|
|
<source network='{{.PrivateNetwork}}'/>
|
|
<model type='virtio'/>
|
|
</interface>
|
|
<interface type='network'>
|
|
<source network='{{.Network}}'/>
|
|
<model type='virtio'/>
|
|
</interface>
|
|
<serial type='pty'>
|
|
<target port='0'/>
|
|
</serial>
|
|
<console type='pty'>
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<rng model='virtio'>
|
|
<backend model='random'>/dev/random</backend>
|
|
</rng>
|
|
{{if .GPU}}
|
|
{{.DevicesXML}}
|
|
{{end}}
|
|
{{if gt .ExtraDisks 0}}
|
|
{{.ExtraDisksXML}}
|
|
{{end}}
|
|
</devices>
|
|
</domain>
|
|
`
|