func (bt BOSHTemplate) CreateBOSHYaml(path string) (bool, error) {
	beego.Debug("Create BOSH deployment file : %s", path)
	return utils.CreateYmlFile("bosh", BOSHTemplateText, path, bt.bosh)
}
func (vmt VsphereMicroTemplate) CreateMicroBOSHYaml(template, path string) (bool, error) {
	beego.Debug("Create MicroBOSH deployment file : %s", path)

	return utils.CreateYmlFile("microbosh", template, path, vmt)
}