I am new to packer world...
My Packer.conf file looks like this:
{
"builders": [{
"type": "openstack",
"source_image": "a5dc1a16-38c4-4eed-bf4d-04866b3d517f",
"communicator": "winrm",
"winrm_username": "vagrant",
"winrm_password": "vagrant",
"winrm_timeout": "2h",
"flavor": "m1.large",
"image_name": "packerImage",
"networks": "9a91549c-ccb1-4beb-b6ae-24d5d08935ef",
"security_groups": ["default"],
"insecure": "true"
}]
}
My Question is: Instead of Packer source image, can I use an ova or vmdk etc to build a packer image ?
With this builder, it fetches the image from your openstack account, do all provisioing and then upload it back over there ?
I thought Packer was capable of creating multiple image from any type of source... Please correct me if I am wrong.