summaryrefslogtreecommitdiffstats
path: root/centos-8-x86_64.json
blob: 7030a58451b0460799a4a1247d04dc24d4bbd942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
	"variables": {
		"iso_url": "https://mirrors.edge.kernel.org/centos/8/isos/x86_64/CentOS-8-x86_64-1905-boot.iso",
		"iso_checksum_url": "https://mirrors.edge.kernel.org/centos/8/isos/x86_64/CHECKSUM",
		"iso_checksum_type": "sha256",
		"vm_name": "centos-8-x86_64",
		"http_dir": "http",
		"kickstart_path": "centos-8/anaconda-ks.cfg",
		"shutdown_command": "systemctl poweroff",
		"ssh_password": "{{ env `ROOTPW` }}"
	},
	"builders": [{
		"type": "qemu",
		"accelerator": "kvm",
		"iso_url": "{{ user `iso_url` }}",
		"iso_checksum_url": "{{ user `iso_checksum_url` }}",
		"iso_checksum_type": "{{ user `iso_checksum_type` }}",
		"output_directory": "{{ user `output_directory` }}",
		"vm_name": "{{ user `vm_name` }}",
		"format": "qcow2",
		"disk_size": "{{ user `disk_size` }}",
		"disk_interface": "virtio-scsi",
		"headless": "{{ user `headless` }}",
		"http_directory": "{{ user `http_dir` }}",
		"boot_command": [ 
			"<esc><wait>",
			"linux inst.gpt biosdevname=0 net.ifnames=0 ",
			"rootpw={{ user `ssh_password` }} ",
			"inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}",
			"<enter>"
		],
		"boot_wait": "{{ user `boot_wait` }}",
		"ssh_timeout": "{{ user `ssh_timeout` }}",
		"ssh_username": "{{ user `ssh_username` }}",
		"ssh_password": "{{ user `ssh_password` }}",
		"shutdown_command": "{{ user `shutdown_command` }}",
		"qemuargs": [
			["-m", "{{ user `memory` }}"],
			["-smp", "{{ user `cpus` }}"]
		]
	}, {
		"type": "virtualbox-iso",
		"guest_os_type": "RedHat_64",
		"iso_url": "{{ user `iso_url` }}",
		"iso_checksum_url": "{{ user `iso_checksum_url` }}",
		"iso_checksum_type": "{{ user `iso_checksum_type` }}",
		"output_directory": "{{ user `output-directory` }}",
		"vm_name": "{{ user `vm_name` }}",
		"disk_size": "{{ user `disk_size` }}",
		"headless": "{{ user `headless` }}",
		"http_directory": "{{ user `http_dir` }}",
		"boot_command": [ 
			"<esc><wait>",
			"linux inst.gpt biosdevname=0 net.ifnames=0 ",
			"rootpw={{ user `ssh_password` }} ",
			"inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}",
			"<enter>"
		],
		"boot_wait": "{{ user `boot_wait` }}",
		"ssh_timeout": "{{ user `ssh_timeout` }}",
		"ssh_username": "{{ user `ssh_username` }}",
		"ssh_password": "{{ user `ssh_password` }}",
		"shutdown_command": "{{ user `shutdown_command` }}",
		"vboxmanage": [
			["modifyvm", "{{ .Name }}", "--memory", "{{ user `memory` }}"],
			["modifyvm", "{{ .Name }}", "--cpus", "{{ user `cpus` }}"]
		]
	}, {
		"type": "vmware-iso",
		"guest_os_type": "centos-64",
		"iso_url": "{{ user `iso_url` }}",
		"iso_checksum_url": "{{ user `iso_checksum_url` }}",
		"iso_checksum_type": "{{ user `iso_checksum_type` }}",
		"output_directory": "{{ user `output_directory` }}",
		"vm_name": "{{ user `vm_name` }}",
		"disk_size": "{{ user `disk_size` }}",
		"headless": "{{ user `headless` }}",
		"http_directory": "{{ user `http_dir` }}",
		"boot_command": [ 
			"<esc><wait>",
			"linux inst.gpt biosdevname=0 net.ifnames=0 ",
			"rootpw={{ user `ssh_password` }} ",
			"inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}",
			"<enter>"
		],
		"boot_wait": "{{ user `boot_wait` }}",
		"ssh_timeout": "{{ user `ssh_timeout` }}",
		"ssh_username": "{{ user `ssh_username` }}",
		"ssh_password": "{{ user `ssh_password` }}",
		"shutdown_command": "{{ user `shutdown_command` }}",
		"vmx_data": {
			"memsize": "{{ user `memory` }}",
			"numvcpus": "{{ user `cpus` }}"
		}
	}],
	"post-processors": [{
		"type": "manifest",
		"output": "{{ user `output_directory` }}/manifest.json"
	}]
}