aboutsummaryrefslogtreecommitdiffstats
path: root/packer/templates
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-02-17 12:22:58 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-02-17 12:22:58 +0100
commitc1e2c974e86409fed9f389c1d8b618a85d331fa9 (patch)
tree4c8173bdb0a2ec8332779b84d7ddb851d49d2b94 /packer/templates
parent8660f34eff943dfb214376951c6c6eaa9512dcae (diff)
Remove unused template
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: Iaf7f137af7a8e225ad6a9427cb6ea11c1d02c4f9
Diffstat (limited to 'packer/templates')
-rw-r--r--packer/templates/basebuild-hwtest-slave.json61
1 files changed, 0 insertions, 61 deletions
diff --git a/packer/templates/basebuild-hwtest-slave.json b/packer/templates/basebuild-hwtest-slave.json
deleted file mode 100644
index 6f686459..00000000
--- a/packer/templates/basebuild-hwtest-slave.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "variables": {
- "stack_tenant": null,
- "stack_user": null,
- "stack_pass": null,
- "stack_network": null,
-
- "base_image": null,
- "cloud_user": null,
- "distro": null,
- "cloud_user_data": null
- },
- "builders": [
- {
- "name": "vexxhost",
- "image_name": "{{user `distro`}} - basebuild-hwtest-slave - {{isotime \"20060102-1504\"}}",
- "source_image_name": "{{user `base_image`}}",
- "type": "openstack",
- "identity_endpoint": "https://auth.vexxhost.net/v3/",
- "username": "{{user `stack_user`}}",
- "password": "{{user `stack_pass`}}",
- "tenant_name": "{{user `stack_tenant`}}",
- "domain_name": "Default",
- "region": "ca-ymq-1",
- "availability_zone": "ca-ymq-2",
- "networks": [
- "{{user `stack_network`}}"
- ],
- "user_data_file": "{{user `cloud_user_data`}}",
- "ssh_username": "{{user `cloud_user`}}",
- "flavor": "v3-standard-2",
- "image_disk_format": "qcow2",
- "use_blockstorage_volume": true,
- "volume_size": "10",
- "metadata": {
- "ci_managed": "yes"
- }
- }
- ],
- "provisioners": [
- {
- "type": "shell",
- "inline": ["mkdir -p /tmp/packer"]
- },
- {
- "type": "file",
- "source": "provision/basebuild/",
- "destination": "/tmp/packer"
- },
- {
- "type": "shell",
- "scripts": [
- "provision/baseline.sh",
- "provision/basebuild.sh",
- "provision/agl_hwtest_dependencies.sh",
- "provision/system_reseal.sh"
- ],
- "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else {{ .Vars }} sudo -E '{{ .Path }}'; fi"
- }
- ]
-}