blob: 8f40294ea663955c0ef5a3d7b1db17b0fb1e5509 (
plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# Debian Server Bookworm (12.9.0)
# ---
# Packer Template to create a Debian Server (Bookworm 12.9.0) on Proxmox
# Variable Definitions
variable "proxmox_api_url" {
type = string
}
variable "proxmox_api_token_id" {
type = string
}
variable "proxmox_api_token_secret" {
type = string
sensitive = true
}
variable "vm_hostname" {
type = string
default = "debian-server-bookworm-12-9-0-amd64"
}
variable "ssh_private_key_file" {
type = string
default = "~/.ssh/id_ecdsa"
}
# Resource Definition for the VM Template
source "proxmox-iso" "debian-server-bookworm-12-9-0-amd64" {
# Proxmox Connection Settings
proxmox_url = "${var.proxmox_api_url}"
username = "${var.proxmox_api_token_id}"
token = "${var.proxmox_api_token_secret}"
insecure_skip_tls_verify = true
# VM General Settings
node = "pve"
vm_id = "100"
vm_name = "${var.vm_hostname}"
template_description = "Debian Server Bookworm Image Test 1"
# VM OS Settings
boot_iso {
type = "scsi"
iso_file = "local:iso/debian-12.9.0-amd64-netinst.iso"
unmount = true
iso_checksum = "sha512:9ebe405c3404a005ce926e483bc6c6841b405c4d85e0c8a7b1707a7fe4957c617ae44bd807a57ec3e5c2d3e99f2101dfb26ef36b3720896906bdc3aaeec4cd80"
}
# VM System Settings
qemu_agent = true
# VM Hard Disk Settings
scsi_controller = "virtio-scsi-single"
disks {
disk_size = "20G"
format = "raw"
storage_pool = "local-lvm"
type = "virtio"
io_thread = true
}
# VM CPU Settings
cores = "1"
# VM Memory Settings
memory = "2048"
# VM Network Settings
network_adapters {
model = "virtio"
bridge = "vmbr0"
firewall = "false"
}
# VM Cloud-Init Settings
cloud_init = true
cloud_init_storage_pool = "local-lvm"
# PACKER Boot Commands
boot_command = [
"<wait><esc><wait>",
"auto preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg netcfg/get_hostname=${var.vm_hostname}<enter>"
]
boot = "c"
boot_wait = "20s"
communicator = "ssh"
# PACKER Autoinstall Settings
http_directory = "http"
# (Optional) Bind IP Address and Port
# http_bind_address = "0.0.0.0"
# http_port_min = 8802
# http_port_max = 8802
ssh_username = "mas"
ssh_private_key_file = "${var.ssh_private_key_file}"
# Raise the timeout, when installation takes longer
ssh_timeout = "30m"
ssh_pty = true
}
# Build Definition to create the VM Template
build {
name = "debian-server-bookworm-12-9-0-amd64"
sources = ["source.proxmox-iso.debian-server-bookworm-12-9-0-amd64"]
# Using ansible playbooks to configure common base
provisioner "ansible" {
playbook_file = "../../ansible/playbooks/common.yml"
use_proxy = false
user = "mas"
ansible_env_vars = [
"ANSIBLE_HOST_KEY_CHECKING=False",
"ANSIBLE_CONFIG=${path.root}/../../ansible/ansible.cfg",
]
}
# Copy default cloud-init config
provisioner "file" {
source = "files/cloud.cfg"
destination = "/tmp/cloud.cfg"
}
provisioner "shell" {
inline = ["sudo cp /tmp/cloud.cfg /etc/cloud/cloud.cfg"]
}
# Copy Proxmox cloud-init config
provisioner "file" {
source = "files/99-pve.cfg"
destination = "/tmp/99-pve.cfg"
}
provisioner "shell" {
inline = ["sudo cp /tmp/99-pve.cfg /etc/cloud/cloud.cfg.d/99-pve.cfg"]
}
}
|