-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
build-packer-templates.yaml
62 lines (62 loc) · 2.38 KB
/
build-packer-templates.yaml
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
- hosts: localhost
gather_facts: no
vars:
destination_server: download.goffinet.org
images:
- type: "redhat"
flavor: "almalinux"
version: "9"
iso_url: "https://repo.almalinux.org/almalinux/9/isos/x86_64"
iso_name: "AlmaLinux-9-latest-x86_64-boot.iso"
checksum_filename: "CHECKSUM"
- type: "redhat"
flavor: "rocky"
version: "9"
iso_url: "https://download.rockylinux.org/pub/rocky/9/isos/x86_64"
iso_name: "Rocky-9-latest-x86_64-boot.iso"
checksum_filename: "Rocky-9-latest-x86_64-boot.iso.CHECKSUM"
- type: "redhat"
flavor: "centos"
version: "9"
iso_url: "https://mirror.stream.centos.org/9-stream/BaseOS/x86_64/iso"
iso_name: "CentOS-Stream-9-latest-x86_64-boot.iso"
checksum_filename: "CentOS-Stream-9-latest-x86_64-boot.iso.SHA256SUM"
- type: "redhat"
flavor: "centos"
version: "10"
iso_url: "https://mirror.stream.centos.org/10-stream/BaseOS/x86_64/iso"
iso_name: "CentOS-Stream-10-latest-x86_64-boot.iso"
checksum_filename: "CentOS-Stream-10-latest-x86_64-boot.iso.SHA256SUM"
- type: "redhat"
flavor: "fedora"
version: "40"
iso_url: "https://fedora.cu.be/linux/releases/40/Server/x86_64/iso"
iso_name: "Fedora-Server-netinst-x86_64-40-1.14.iso"
checksum_filename: "Fedora-Server-40-1.14-x86_64-CHECKSUM"
- type: "debian"
flavor: "debian"
version: "12"
iso_url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd"
iso_name: "debian-12.7.0-amd64-netinst.iso"
checksum_filename: "SHA256SUMS"
- type: "debian"
flavor: "ubuntu"
version: "20.04"
iso_url: "http://releases.ubuntu.com/20.04"
iso_name: "ubuntu-20.04.6-live-server-amd64.iso"
checksum_filename: "SHA256SUMS"
- type: "debian"
flavor: "ubuntu"
version: "22.04"
iso_url: "http://releases.ubuntu.com/22.04"
iso_name: "ubuntu-22.04.5-live-server-amd64.iso"
checksum_filename: "SHA256SUMS"
- type: "debian"
flavor: "ubuntu"
version: "24.04"
iso_url: "http://releases.ubuntu.com/24.04"
iso_name: "ubuntu-24.04.1-live-server-amd64.iso"
checksum_filename: "SHA256SUMS"
roles:
- name: Create packer-templates
role: build_packer_templates