├── .gitignore ├── README.md ├── all.json ├── code-stream └── Packer-Template-Builds.yaml ├── config ├── autounattend.xml ├── centos7.cfg ├── centos8.cfg ├── ubuntu18.cfg ├── ubuntu19.cfg └── ubuntu20 │ ├── meta-data │ └── user-data ├── drivers └── pvscsi-win8 │ ├── pvscsi.cat │ ├── pvscsi.inf │ ├── pvscsi.sys │ └── txtsetup.oem ├── scripts ├── centos_7.sh ├── centos_8.sh ├── centos_update.sh ├── ssh_config.sh ├── ssh_install_autotmm_key.sh ├── ubuntu_18.sh ├── ubuntu_19.sh ├── ubuntu_20.sh ├── ubuntu_template_cleanup.sh ├── ubuntu_update.sh ├── win2016.ps1 ├── win_cloudbaseinit.ps1 └── win_vmtools.cmd ├── ssh └── id_rsa.pub └── variables.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Field Demo Packer Templates 2 | 3 | Check the push.... 4 | -------------------------------------------------------------------------------- /all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/all.json -------------------------------------------------------------------------------- /code-stream/Packer-Template-Builds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/code-stream/Packer-Template-Builds.yaml -------------------------------------------------------------------------------- /config/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/autounattend.xml -------------------------------------------------------------------------------- /config/centos7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/centos7.cfg -------------------------------------------------------------------------------- /config/centos8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/centos8.cfg -------------------------------------------------------------------------------- /config/ubuntu18.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/ubuntu18.cfg -------------------------------------------------------------------------------- /config/ubuntu19.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/ubuntu19.cfg -------------------------------------------------------------------------------- /config/ubuntu20/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ubuntu20/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/config/ubuntu20/user-data -------------------------------------------------------------------------------- /drivers/pvscsi-win8/pvscsi.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/drivers/pvscsi-win8/pvscsi.cat -------------------------------------------------------------------------------- /drivers/pvscsi-win8/pvscsi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/drivers/pvscsi-win8/pvscsi.inf -------------------------------------------------------------------------------- /drivers/pvscsi-win8/pvscsi.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/drivers/pvscsi-win8/pvscsi.sys -------------------------------------------------------------------------------- /drivers/pvscsi-win8/txtsetup.oem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/drivers/pvscsi-win8/txtsetup.oem -------------------------------------------------------------------------------- /scripts/centos_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/centos_7.sh -------------------------------------------------------------------------------- /scripts/centos_8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/centos_8.sh -------------------------------------------------------------------------------- /scripts/centos_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/centos_update.sh -------------------------------------------------------------------------------- /scripts/ssh_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ssh_config.sh -------------------------------------------------------------------------------- /scripts/ssh_install_autotmm_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ssh_install_autotmm_key.sh -------------------------------------------------------------------------------- /scripts/ubuntu_18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ubuntu_18.sh -------------------------------------------------------------------------------- /scripts/ubuntu_19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ubuntu_19.sh -------------------------------------------------------------------------------- /scripts/ubuntu_20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ubuntu_20.sh -------------------------------------------------------------------------------- /scripts/ubuntu_template_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ubuntu_template_cleanup.sh -------------------------------------------------------------------------------- /scripts/ubuntu_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/ubuntu_update.sh -------------------------------------------------------------------------------- /scripts/win2016.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/win2016.ps1 -------------------------------------------------------------------------------- /scripts/win_cloudbaseinit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/scripts/win_cloudbaseinit.ps1 -------------------------------------------------------------------------------- /scripts/win_vmtools.cmd: -------------------------------------------------------------------------------- 1 | @rem Silent mode, basic UI, no reboot 2 | e:\setup64 /s /v "/qb REBOOT=R" -------------------------------------------------------------------------------- /ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/ssh/id_rsa.pub -------------------------------------------------------------------------------- /variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VMwareCMBUTMM/fielddemo-packer-templates/HEAD/variables.json --------------------------------------------------------------------------------