-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
fedora40.pkr.hcl
117 lines (99 loc) · 2.69 KB
/
fedora40.pkr.hcl
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#Generated by packer-kvm/build-packer-templates.yaml
packer {
required_plugins {
qemu = {
version = "~> 1"
source = "github.com/hashicorp/qemu"
}
ansible = {
version = ">= 1.1.2"
source = "github.com/hashicorp/ansible"
}
}
}
variable "config_file" {
type = string
default = "fedora40-kickstart.cfg"
}
variable "cpu" {
type = string
default = "2"
}
variable "destination_server" {
type = string
default = "download.goffinet.org"
}
variable "disk_size" {
type = string
default = "40000"
}
variable "headless" {
type = string
default = "true"
}
variable "iso_checksum" {
type = string
default = "file:https://fedora.cu.be/linux/releases/40/Server/x86_64/iso/Fedora-Server-40-1.14-x86_64-CHECKSUM"
}
variable "iso_url" {
type = string
default = "https://fedora.cu.be/linux/releases/40/Server/x86_64/iso/Fedora-Server-netinst-x86_64-40-1.14.iso"
}
variable "name" {
type = string
default = "fedora"
}
variable "ram" {
type = string
default = "2048"
}
variable "ssh_password" {
type = string
default = "testtest"
}
variable "ssh_username" {
type = string
default = "root"
}
variable "version" {
type = string
default = "40"
}
source "qemu" "fedora40" {
accelerator = "kvm"
boot_command = ["<up>e", "<down><down><end>", " inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/http/${var.config_file}", "<leftCtrlOn>x<leftCtrlOff>"]
disk_cache = "none"
disk_compression = true
disk_discard = "unmap"
disk_interface = "virtio"
disk_size = var.disk_size
format = "qcow2"
headless = var.headless
http_directory = "."
iso_checksum = var.iso_checksum
iso_url = var.iso_url
net_device = "virtio-net"
output_directory = "artifacts/qemu/${var.name}${var.version}"
qemu_binary = "/usr/bin/qemu-system-x86_64"
qemuargs = [["-m", "${var.ram}M"], ["-smp", "${var.cpu}"], ["-cpu", "host"]]
shutdown_command = "sudo /usr/sbin/shutdown -h now"
ssh_password = var.ssh_password
ssh_username = var.ssh_username
ssh_wait_timeout = "30m"
boot_wait = "10s"
}
build {
sources = ["source.qemu.fedora40"]
provisioner "shell" {
execute_command = "{{ .Vars }} sudo -E bash '{{ .Path }}'"
inline = ["dnf -y install python3 python3-pip", "pip3 install ansible"]
}
provisioner "ansible-local" {
playbook_dir = "ansible"
playbook_file = "ansible/playbook.yml"
}
post-processor "shell-local" {
environment_vars = ["IMAGE_NAME=${var.name}", "IMAGE_VERSION=${var.version}", "DESTINATION_SERVER=${var.destination_server}"]
script = "scripts/push-image.sh"
}
}