├── .gitignore ├── Makefile ├── README.md ├── debian-11 ├── .gitignore ├── Makefile ├── Vagrantfile ├── http │ └── preseed.cfg ├── scripts │ ├── base.sh │ ├── cleanup.sh │ ├── provision.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── zerodisk.sh ├── template.json.pkr.hcl └── variables.pkrvars.hcl ├── debian-dev ├── .gitignore ├── Makefile ├── Vagrantfile ├── http │ └── preseed.cfg ├── scripts │ ├── base.sh │ ├── cleanup.sh │ ├── provision.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── zerodisk.sh ├── template.json.pkr.hcl └── variables.pkrvars.hcl ├── docker ├── .gitignore ├── Makefile ├── Vagrantfile ├── http │ └── preseed.cfg ├── main.tf ├── scripts │ ├── base.sh │ ├── cleanup.sh │ ├── provision.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── zerodisk.sh ├── template.json ├── template.tpl └── terraform.tfvars ├── docs └── examples.md ├── k8 ├── .gitignore ├── Makefile ├── Vagrantfile ├── http │ └── preseed.cfg ├── main.tf ├── scripts │ ├── base.sh │ ├── cleanup.sh │ ├── provision.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── zerodisk.sh ├── template.json ├── template.tpl └── terraform.tfvars └── rocky-8.4 ├── .gitignore ├── Makefile ├── Vagrantfile ├── http └── ks.cfg ├── scripts ├── base.sh ├── cleanup.sh ├── provision.sh ├── vagrant.sh ├── virtualbox.sh └── zerodisk.sh ├── template.json.pkr.hcl └── variables.pkrvars.hcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/README.md -------------------------------------------------------------------------------- /debian-11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/.gitignore -------------------------------------------------------------------------------- /debian-11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/Makefile -------------------------------------------------------------------------------- /debian-11/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/Vagrantfile -------------------------------------------------------------------------------- /debian-11/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/http/preseed.cfg -------------------------------------------------------------------------------- /debian-11/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/base.sh -------------------------------------------------------------------------------- /debian-11/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/cleanup.sh -------------------------------------------------------------------------------- /debian-11/scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/provision.sh -------------------------------------------------------------------------------- /debian-11/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/vagrant.sh -------------------------------------------------------------------------------- /debian-11/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/virtualbox.sh -------------------------------------------------------------------------------- /debian-11/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/scripts/zerodisk.sh -------------------------------------------------------------------------------- /debian-11/template.json.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/template.json.pkr.hcl -------------------------------------------------------------------------------- /debian-11/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-11/variables.pkrvars.hcl -------------------------------------------------------------------------------- /debian-dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/.gitignore -------------------------------------------------------------------------------- /debian-dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/Makefile -------------------------------------------------------------------------------- /debian-dev/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/Vagrantfile -------------------------------------------------------------------------------- /debian-dev/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/http/preseed.cfg -------------------------------------------------------------------------------- /debian-dev/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/base.sh -------------------------------------------------------------------------------- /debian-dev/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/cleanup.sh -------------------------------------------------------------------------------- /debian-dev/scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/provision.sh -------------------------------------------------------------------------------- /debian-dev/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/vagrant.sh -------------------------------------------------------------------------------- /debian-dev/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/virtualbox.sh -------------------------------------------------------------------------------- /debian-dev/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/scripts/zerodisk.sh -------------------------------------------------------------------------------- /debian-dev/template.json.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/template.json.pkr.hcl -------------------------------------------------------------------------------- /debian-dev/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/debian-dev/variables.pkrvars.hcl -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/Vagrantfile -------------------------------------------------------------------------------- /docker/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/http/preseed.cfg -------------------------------------------------------------------------------- /docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/main.tf -------------------------------------------------------------------------------- /docker/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/base.sh -------------------------------------------------------------------------------- /docker/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/cleanup.sh -------------------------------------------------------------------------------- /docker/scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/provision.sh -------------------------------------------------------------------------------- /docker/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/vagrant.sh -------------------------------------------------------------------------------- /docker/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/virtualbox.sh -------------------------------------------------------------------------------- /docker/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/scripts/zerodisk.sh -------------------------------------------------------------------------------- /docker/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/template.json -------------------------------------------------------------------------------- /docker/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/template.tpl -------------------------------------------------------------------------------- /docker/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docker/terraform.tfvars -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/docs/examples.md -------------------------------------------------------------------------------- /k8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/.gitignore -------------------------------------------------------------------------------- /k8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/Makefile -------------------------------------------------------------------------------- /k8/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/Vagrantfile -------------------------------------------------------------------------------- /k8/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/http/preseed.cfg -------------------------------------------------------------------------------- /k8/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/main.tf -------------------------------------------------------------------------------- /k8/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/base.sh -------------------------------------------------------------------------------- /k8/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/cleanup.sh -------------------------------------------------------------------------------- /k8/scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/provision.sh -------------------------------------------------------------------------------- /k8/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/vagrant.sh -------------------------------------------------------------------------------- /k8/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/virtualbox.sh -------------------------------------------------------------------------------- /k8/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/scripts/zerodisk.sh -------------------------------------------------------------------------------- /k8/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/template.json -------------------------------------------------------------------------------- /k8/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/template.tpl -------------------------------------------------------------------------------- /k8/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/k8/terraform.tfvars -------------------------------------------------------------------------------- /rocky-8.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/.gitignore -------------------------------------------------------------------------------- /rocky-8.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/Makefile -------------------------------------------------------------------------------- /rocky-8.4/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/Vagrantfile -------------------------------------------------------------------------------- /rocky-8.4/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/http/ks.cfg -------------------------------------------------------------------------------- /rocky-8.4/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/base.sh -------------------------------------------------------------------------------- /rocky-8.4/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/cleanup.sh -------------------------------------------------------------------------------- /rocky-8.4/scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/provision.sh -------------------------------------------------------------------------------- /rocky-8.4/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/vagrant.sh -------------------------------------------------------------------------------- /rocky-8.4/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/virtualbox.sh -------------------------------------------------------------------------------- /rocky-8.4/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/scripts/zerodisk.sh -------------------------------------------------------------------------------- /rocky-8.4/template.json.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/template.json.pkr.hcl -------------------------------------------------------------------------------- /rocky-8.4/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/packer-templates/HEAD/rocky-8.4/variables.pkrvars.hcl --------------------------------------------------------------------------------