summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2023-02-02 16:53:36 +0100
committerJonathan Bauer2023-02-02 16:53:36 +0100
commit2be715790675f65dd379035da32b3a98a2758694 (patch)
treef1aa75a0caeef438ed6b40f2fd66dd82e8b690c5
parentinitial rocky8 support (diff)
downloadpacker-templates-2be715790675f65dd379035da32b3a98a2758694.tar.gz
packer-templates-2be715790675f65dd379035da32b3a98a2758694.tar.xz
packer-templates-2be715790675f65dd379035da32b3a98a2758694.zip
initial roky9
-rw-r--r--rocky-9-x86_64.json47
1 files changed, 47 insertions, 0 deletions
diff --git a/rocky-9-x86_64.json b/rocky-9-x86_64.json
new file mode 100644
index 0000000..4b4e08d
--- /dev/null
+++ b/rocky-9-x86_64.json
@@ -0,0 +1,47 @@
+{
+ "variables": {
+ "iso_url": "https://mirror1.hs-esslingen.de/pub/Mirrors/rocky/9/isos/x86_64/Rocky-9.1-x86_64-minimal.iso",
+ "iso_checksum_url": "https://mirror1.hs-esslingen.de/pub/Mirrors/rocky/9/isos/x86_64/CHECKSUM",
+ "iso_checksum_type": "sha256",
+ "vm_name": "rocky-9-x86_64",
+ "boot_wait": "5s",
+ "http_dir": "http",
+ "kickstart_path": "rocky-9/anaconda-ks.cfg",
+ "shutdown_command": "systemctl poweroff",
+ "ssh_password": "{{ env `ROOTPW` }}"
+ },
+ "builders": [{
+ "type": "qemu",
+ "accelerator": "kvm",
+ "iso_url": "{{ user `iso_url` }}",
+ "iso_checksum": "file:{{ user `iso_checksum_url` }}",
+ "output_directory": "{{ user `output_directory` }}",
+ "vm_name": "{{ user `vm_name` }}",
+ "format": "qcow2",
+ "disk_interface": "virtio-scsi",
+ "disk_size": "{{ user `disk_size` }}",
+ "headless": "{{ user `headless` }}",
+ "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` }}",
+ "http_directory": "{{ user `http_dir` }}",
+ "boot_command": [
+ "<tab><bs><bs><bs><bs><bs>inst.text inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ks.cfg<enter><wait>"
+# "<up><tab> ",
+# "linux inst.cmdline biosdevname=0 net.ifnames=0 ",
+# "rootpw={{ user `ssh_password` }} ",
+# "inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}",
+# "<enter>"
+ ],
+ "qemuargs": [
+ ["-m", "{{ user `memory` }}"],
+ ["-smp", "{{ user `cpus` }}"]
+ ]
+ }],
+ "post-processors": [{
+ "type": "manifest",
+ "output": "{{ user `output_directory` }}/manifest.json"
+ }]
+}