forked from ironcladlou/openshift4-libvirt-gcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenshift4-libvirt.json
36 lines (36 loc) · 910 Bytes
/
openshift4-libvirt.json
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
{
"variables": {
"image_family": "openshift4-libvirt",
"source_image_family": "openshift4-libvirt-source",
"project": "openshift-gce-devel",
"zone": "us-east1-c",
"network": "ocp4-libvirt-dev"
},
"builders": [
{
"type": "googlecompute",
"project_id": "{{ user `project` }}",
"zone": "{{ user `zone` }}",
"source_image_family": "{{ user `source_image_family` }}",
"image_family": "{{ user `image_family` }}",
"ssh_username": "packer",
"subnetwork": "{{ user `network` }}",
"network": "{{ user `network` }}",
"min_cpu_platform": "Intel Haswell",
"machine_type": "n1-standard-4",
"disk_type": "pd-ssd",
"disk_size": 256
}
],
"provisioners": [
{
"type": "file",
"source": "tools",
"destination": "/tmp"
},
{
"type": "shell",
"script": "provision.sh"
}
]
}