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
| { "builders": [{ "type": "openstack", "identity_endpoint": "http://10.224.130.52:35357/v3", "tenant_name": "admin", "domain_name": "default", "username": "admin", "password": "password", "ssh_username": "root", "region": "bj", "image_name": "Ubuntu-image-updating-powered-by-Packer", "instance_name": "Ubuntu-image-updating-powered-by-Packer", "source_image": "c751e91f-80f7-43a1-afea-58287a8df695", "availability_zone": "nova", "flavor": "ecs.2large", "use_blockstorage_volume": true, "networks": ["9df8061e-abb2-4166-9c16-452f389c3e39"] }], "provisioners": [ { "type": "shell", "scripts": ["os-init.sh"] } ], "post-processors": [{ "strip_path": true, "output": "packer-template-ubuntu-updating-result.log", "type": "manifest" }] }
|