Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 1 | { |
| 2 | "variables": { |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 3 | "ansible_roles_path": ".galaxy", |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 4 | "base_image": null, |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 5 | "distro": null, |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 6 | "cloud_auth_url": null, |
| 7 | "cloud_user": null, |
| 8 | "cloud_pass": null, |
| 9 | "cloud_network": null, |
| 10 | "cloud_tenant": null, |
| 11 | "cloud_user_data": null, |
| 12 | "ssh_user": null, |
| 13 | "ssh_proxy_host": "" |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 14 | }, |
| 15 | "builders": [ |
| 16 | { |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 17 | "name": "vexxhost", |
Jessica Wagantall | 6d248e4 | 2018-10-25 15:43:41 -0700 | [diff] [blame] | 18 | "image_name": "{{user `distro`}} - redis - {{user `arch`}} - {{isotime \"20180101-1003\"}}", |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 19 | "source_image_name": "{{user `base_image`}}", |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 20 | "type": "openstack", |
| 21 | "identity_endpoint": "{{user `cloud_auth_url`}}", |
| 22 | "username": "{{user `cloud_user`}}", |
| 23 | "password": "{{user `cloud_pass`}}", |
| 24 | "tenant_name": "{{user `cloud_tenant`}}", |
| 25 | "domain_name": "Default", |
| 26 | "region": "ca-ymq-1", |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 27 | "availability_zone": "ca-ymq-2", |
| 28 | "networks": [ |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 29 | "{{user `cloud_network`}}" |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 30 | ], |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 31 | "user_data_file": "{{user `cloud_user_data`}}", |
| 32 | "ssh_username": "{{user `ssh_user`}}", |
| 33 | "ssh_proxy_host": "{{user `ssh_proxy_host`}}", |
| 34 | "flavor": "v1-standard-1", |
| 35 | "metadata": { |
| 36 | "ci_managed": "yes" |
| 37 | } |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 38 | } |
| 39 | ], |
| 40 | "provisioners": [ |
| 41 | { |
| 42 | "type": "shell", |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 43 | "scripts": [ |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 44 | "common-packer/provision/install-python.sh" |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 45 | ], |
| 46 | "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else {{ .Vars }} sudo -E '{{ .Path }}'; fi" |
Jessica Wagantall | 79059b0 | 2018-07-20 20:30:09 -0700 | [diff] [blame] | 47 | }, |
| 48 | { |
| 49 | "type": "shell-local", |
| 50 | "command": "./common-packer/ansible-galaxy.sh {{user `ansible_roles_path`}}" |
| 51 | }, |
| 52 | { |
| 53 | "type": "ansible", |
| 54 | "playbook_file": "provision/redis.yaml", |
| 55 | "ansible_env_vars": [ |
| 56 | "ANSIBLE_NOCOWS=1", |
| 57 | "ANSIBLE_PIPELINING=True", |
| 58 | "ANSIBLE_ROLES_PATH={{user `ansible_roles_path`}}", |
| 59 | "ANSIBLE_CALLBACK_WHITELIST=profile_tasks", |
| 60 | "ANSIBLE_STDOUT_CALLBACK=debug" |
| 61 | ] |
Gary Wu | e5f3fc7 | 2017-08-04 07:09:26 -0700 | [diff] [blame] | 62 | } |
| 63 | ] |
| 64 | } |