summaryrefslogtreecommitdiff
path: root/website
Commit message (Collapse)AuthorAge
* More configuration options for networksAlvaro Saurin2018-03-14
|
* Handle keyword-less kernel paramsFlavio Castelli2018-02-20
| | | | | | Allow kernel params that don't have a key/value structure to be handled. Signed-off-by: Flavio Castelli <fcastelli@suse.com>
* support local cdromsThomas Hipp2017-12-01
| | | | | | | | | | | | | | | | | | | | Local cdroms can now be added directly to the domain. See the following example: ```hcl resource "libvirt_domain" "test-domain" { name = "test" disk { file = "path/to/file.iso" } } ``` Furthermore, a small Tiny Core Linux (TCL) ISO image has been added to the testdata. This can be used for testing purposes. Signed-off-by: Thomas Hipp <thipp@suse.de>
* remove running from documentationDario Maiocchi2017-11-28
|
* adding documentation about network autostartDario Maiocchi2017-11-27
|
* TypoDuncan Mac-Vicar P2017-11-24
|
* Add missing hcl markdown fenceDuncan Mac-Vicar P2017-11-24
|
* Typo in cmdline docsDuncan Mac-Vicar P2017-11-24
|
* Add support for kernel/initrd/cmdlineDuncan Mac-Vicar P2017-11-24
|
* Document disks from urlDuncan Mac-Vicar P2017-11-19
|
* update Terraform and Go versionThomas Hipp2017-09-22
| | | | | | | | | | | | | | This updates Terraform to the latest version. Travis will build with go1.9 from now on, since Terraform > 0.10.2 doesn't support go1.8. Glide was run with `--strip-vendor` which removes a lot of unnecessary files. Tests and Docs regarding `ignition` have been updated. This resolves #194. Signed-off-by: Thomas Hipp <thipp@suse.de>
* Merge pull request #180 from deasmi/machinearchupdateThomas Hipp2017-09-22
|\ | | | | Full support for arch,machine & emulator settings
| * Full support for arch,machine & emulator settingsDean Smith2017-09-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add emulator setting support Completes support from arch and machine when reading current status Adds a new function newDomainDefForConnection that takes a domainDef and populates with defaults from the current host which is more sensible than guessing across distributions Maps canonical machine types <> actual to avoid changes Due to the way libvirt works if you specific machine types like pc,isapc or q35 these get translated into 'canonical' forms, ie. the latest version When quering terraform will notice a change, as it would still be looking for pc and will get something like pc-i440fx-2.9. Code has been added to assume that if we see 'pc-i440fx-2.9' and it is canonical for pc then we translate back to pc for terraform. This could cause issues if you are specifically using pc-i440fx-2.9 as the machine type in your terraform file.
* | fixes misspelling of boot_device in docs and exampleTim Hughes2017-09-11
|/
* domain: Improve documentation and add examples for BootDevice.Sam Batschelet2017-09-06
|
* domain: Add support for BootDevice.Sam Batschelet2017-09-06
|
* Adding support for arch and machine typeDean Smith2017-08-29
| | | | | | This adds support for setting the architecture and machine type of the created virtual machine by adding two new attributes machine and arch to the domain definition
* Added support for specifying NVRAM templates when using UEFI images.J. Eduardo2017-08-01
|
* Improve documentationFlavio Castelli2017-07-31
Change the documentation to fit with the upstream one. Signed-off-by: Flavio Castelli <fcastelli@suse.com>