packer-images/images/almalinux/9.5/actionsdind/variables.auto.pkrvars.hcl
Ben Vincent dccf8d9837
All checks were successful
Build / build (pull_request) Successful in 3m4s
feat: enable incus support in actionsdind container
- add incus-images backend
- set incus-images as default backend
2025-04-21 17:09:48 +10:00

25 lines
507 B
HCL

# almalinux/9.5/actionsdind
docker_source = "git.query.consul/unkin/almalinux9-base:latest"
packages = [
"bash",
"consul",
"docker-ce-cli",
"incus-client",
"incus-tools",
"nodejs",
"packer",
"terraform",
"terragrunt",
"unzip",
"vault"
]
scripts_pre_packages = [
"dnf install -y yum-utils",
"dnf module enable -y nodejs:20",
"yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo"
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
]