Add 'yandex' plugin as Builder

This commit is contained in:
Gennady Lipenkov 2019-04-10 00:50:51 +03:00
parent 8e4e314553
commit 8f53ca5e5e
1 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ import (
virtualboxovfbuilder "github.com/hashicorp/packer/builder/virtualbox/ovf"
vmwareisobuilder "github.com/hashicorp/packer/builder/vmware/iso"
vmwarevmxbuilder "github.com/hashicorp/packer/builder/vmware/vmx"
yandexbuilder "github.com/hashicorp/packer/builder/yandex"
alicloudimportpostprocessor "github.com/hashicorp/packer/post-processor/alicloud-import"
amazonimportpostprocessor "github.com/hashicorp/packer/post-processor/amazon-import"
artificepostprocessor "github.com/hashicorp/packer/post-processor/artifice"
@ -127,6 +128,7 @@ var Builders = map[string]packer.Builder{
"virtualbox-ovf": new(virtualboxovfbuilder.Builder),
"vmware-iso": new(vmwareisobuilder.Builder),
"vmware-vmx": new(vmwarevmxbuilder.Builder),
"yandex": new(yandexbuilder.Builder),
}
var Provisioners = map[string]packer.Provisioner{