aboutsummaryrefslogtreecommitdiffstats
path: root/packer/templates/basebuild-local-kvm.json
blob: 83875cdc247b8a13a8c2b33057f68b5444627e06 (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  "builders": [
    {
      "accelerator": "kvm",
      "boot_command": [
        "<enter><wait><f6><esc><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
        "/install/vmlinuz url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
        "debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
        "hostname=jenkinstest ",
        "keyboard-configuration/modelcode=SKIP ",
        "keyboard-configuration/layout=USA ",
        "keyboard-configuration/variant=USA ",
        "passwd/user-fullname=ubuntu ",
        "passwd/user-password-again=ubuntu ",
        "passwd/user-password=ubuntu ",
        "passwd/username=ubuntu ",
        "initrd=/install/initrd.gz -- <enter>"
      ],
      "boot_wait": "5s",
      "disk_interface": "virtio",
      "format": "qcow2",
      "headless": true,
      "disk_size": "20480",
      "http_directory": "httpdir",
      "http_port_max": 10089,
      "http_port_min": 10082,
      "iso_checksum": "md5:9bb30a2ea6466b0c02aacfa96f6e3516",
      "iso_url": "http://releases.ubuntu.com/16.04/ubuntu-16.04.7-server-amd64.iso",
      "net_device": "virtio-net",
      "output_directory": "output_ubuntu",
      "ssh_password": "ubuntu",
      "ssh_port": 22,
      "ssh_timeout": "11m",
      "ssh_username": "ubuntu",
      "type": "qemu",
      "vm_name": "jenkins-new-test"
    }
  ],
  "provisioners": [
    {
      "inline": [
        "mkdir -p /tmp/packer"
      ],
      "type": "shell"
    },
    {
      "destination": "/tmp/packer",
      "source": "provision/basebuild/",
      "type": "file"
    },
    {
      "environment_vars": [
        "LAVAHOST={{user `lavahost`}}",
        "LAVAUSER={{user `lavauser`}}",
        "LAVATOKEN={{user `lavatoken`}}"
      ],
      "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else echo 'ubuntu' | {{ .Vars }} sudo -S -E sh '{{ .Path }}'; fi",
      "scripts": [
        "provision/baseline.sh",
        "provision/basebuild.sh",
        "provision/agl_dependencies.sh",
        "provision/system_reseal.sh"
      ],
      "type": "shell"
    }
  ],
  "variables": {
    "base_image": null,
    "cloud_user": "ubuntu",
    "cloud_user_data": null,
    "distro": null,
    "stack_network": "none",
    "stack_pass": "ubuntu",
    "stack_tenant": "ubuntu",
    "stack_user": "ubuntu"
  }
}