summaryrefslogtreecommitdiffstats
path: root/packer/templates/helm.json
blob: ac824ced402b8828649b420f8c08a1f291c62776 (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
{
  "variables": {
    "ansible_roles_path": ".galaxy",
    "arch": "x86_64",
    "base_image": null,
    "distro": null,
    "cloud_auth_url": null,
    "cloud_user": null,
    "cloud_pass": null,
    "cloud_network": null,
    "cloud_tenant": null,
    "cloud_user_data": null,
    "flavor": "v3-standard-2",
    "ssh_user": null,
    "ssh_proxy_host": ""
  },
  "builders": [
    {
      "name": "openstack",
      "image_name": "ZZCI - {{user `distro`}} - helm - {{user `arch`}} - {{isotime \"20060102-150405.000\"}}",
      "instance_name": "{{user `distro`}}-builder-{{uuid}}",
      "source_image_name": "{{user `base_image`}}",
      "type": "openstack",
      "identity_endpoint": "{{user `cloud_auth_url`}}",
      "username": "{{user `cloud_user`}}",
      "password": "{{user `cloud_pass`}}",
      "tenant_name": "{{user `cloud_tenant`}}",
      "domain_name": "Default",
      "region": "ca-ymq-1",
      "networks": [
        "{{user `cloud_network`}}"
      ],
      "user_data_file": "{{user `cloud_user_data`}}",
      "ssh_username": "{{user `ssh_user`}}",
      "ssh_proxy_host": "{{user `ssh_proxy_host`}}",
      "flavor": "{{user `flavor`}}",
      "metadata": {
        "ci_managed": "yes"
      }
    }
  ],
  "provisioners": [
    {
      "type": "shell",
      "scripts": ["common-packer/provision/install-python.sh"],
      "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else {{ .Vars }} sudo -E '{{ .Path }}'; fi"
    },
    {
      "type": "shell-local",
      "command": "./common-packer/ansible-galaxy.sh {{user `ansible_roles_path`}}"
    },
    {
      "type": "ansible",
      "command": "./common-packer/ansible-playbook.sh",
      "skip_version_check": true,
      "playbook_file": "provision/helm.yaml",
      "ansible_env_vars": [
        "ANSIBLE_NOCOWS=1",
        "ANSIBLE_PIPELINING=True",
        "ANSIBLE_ROLES_PATH={{user `ansible_roles_path`}}",
        "ANSIBLE_CALLBACK_WHITELIST=profile_tasks",
        "ANSIBLE_STDOUT_CALLBACK=debug"
      ]
    }
  ]
}