fix #8679 with source_image_project_id as list
This commit is contained in:
parent
8f75fe6e6c
commit
c8062cc8b3
|
@ -149,8 +149,8 @@ type Config struct {
|
|||
// family always returns its latest image that is not deprecated. Example:
|
||||
// "debian-8".
|
||||
SourceImageFamily string `mapstructure:"source_image_family" required:"true"`
|
||||
// The project ID of the project containing the source image.
|
||||
SourceImageProjectId string `mapstructure:"source_image_project_id" required:"false"`
|
||||
// The project ID's of the project containing the source image.
|
||||
SourceImageProjectId []string `mapstructure:"source_image_project_id" required:"false"`
|
||||
// The path to a startup script to run on the VM from which the image will
|
||||
// be made.
|
||||
StartupScriptFile string `mapstructure:"startup_script_file" required:"false"`
|
||||
|
|
|
@ -88,7 +88,7 @@ type FlatConfig struct {
|
|||
ServiceAccountEmail *string `mapstructure:"service_account_email" required:"false" cty:"service_account_email"`
|
||||
SourceImage *string `mapstructure:"source_image" required:"true" cty:"source_image"`
|
||||
SourceImageFamily *string `mapstructure:"source_image_family" required:"true" cty:"source_image_family"`
|
||||
SourceImageProjectId *string `mapstructure:"source_image_project_id" required:"false" cty:"source_image_project_id"`
|
||||
SourceImageProjectId []string `mapstructure:"source_image_project_id" required:"false" cty:"source_image_project_id"`
|
||||
StartupScriptFile *string `mapstructure:"startup_script_file" required:"false" cty:"startup_script_file"`
|
||||
Subnetwork *string `mapstructure:"subnetwork" required:"false" cty:"subnetwork"`
|
||||
Tags []string `mapstructure:"tags" required:"false" cty:"tags"`
|
||||
|
@ -188,7 +188,7 @@ func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec {
|
|||
"service_account_email": &hcldec.AttrSpec{Name: "service_account_email", Type: cty.String, Required: false},
|
||||
"source_image": &hcldec.AttrSpec{Name: "source_image", Type: cty.String, Required: false},
|
||||
"source_image_family": &hcldec.AttrSpec{Name: "source_image_family", Type: cty.String, Required: false},
|
||||
"source_image_project_id": &hcldec.AttrSpec{Name: "source_image_project_id", Type: cty.String, Required: false},
|
||||
"source_image_project_id": &hcldec.AttrSpec{Name: "source_image_project_id", Type: cty.List(cty.String), Required: false},
|
||||
"startup_script_file": &hcldec.AttrSpec{Name: "startup_script_file", Type: cty.String, Required: false},
|
||||
"subnetwork": &hcldec.AttrSpec{Name: "subnetwork", Type: cty.String, Required: false},
|
||||
"tags": &hcldec.AttrSpec{Name: "tags", Type: cty.List(cty.String), Required: false},
|
||||
|
|
|
@ -29,6 +29,11 @@ type Driver interface {
|
|||
// particular image.
|
||||
GetImage(name string, fromFamily bool) (*Image, error)
|
||||
|
||||
// GetImageFromProject gets an image from a specific projects.
|
||||
// Returns the image from the first project in slice it can find one
|
||||
// If fromFamily is true, name designates an image family instead of a particular image.
|
||||
GetImageFromProjects(project []string, name string, fromFamily bool) (*Image, error)
|
||||
|
||||
// GetImageFromProject gets an image from a specific project. If fromFamily
|
||||
// is true, name designates an image family instead of a particular image.
|
||||
GetImageFromProject(project, name string, fromFamily bool) (*Image, error)
|
||||
|
|
|
@ -210,8 +210,8 @@ func (d *driverGCE) DeleteDisk(zone, name string) (<-chan error, error) {
|
|||
go waitForState(errCh, "DONE", d.refreshZoneOp(zone, op))
|
||||
return errCh, nil
|
||||
}
|
||||
|
||||
func (d *driverGCE) GetImage(name string, fromFamily bool) (*Image, error) {
|
||||
|
||||
projects := []string{
|
||||
d.projectId,
|
||||
// Public projects, drawn from
|
||||
|
@ -234,6 +234,9 @@ func (d *driverGCE) GetImage(name string, fromFamily bool) (*Image, error) {
|
|||
"google-containers",
|
||||
"opensuse-cloud",
|
||||
}
|
||||
return d.GetImageFromProjects(projects, name, fromFamily)
|
||||
}
|
||||
func (d *driverGCE) GetImageFromProjects(projects []string, name string, fromFamily bool) (*Image, error) {
|
||||
var errs error
|
||||
for _, project := range projects {
|
||||
image, err := d.GetImageFromProject(project, name, fromFamily)
|
||||
|
|
|
@ -37,6 +37,7 @@ type DriverMock struct {
|
|||
DeleteDiskErr error
|
||||
|
||||
GetImageName string
|
||||
GetImageSourceProjects []string
|
||||
GetImageFromFamily bool
|
||||
GetImageResult *Image
|
||||
GetImageErr error
|
||||
|
@ -179,6 +180,12 @@ func (d *DriverMock) GetImage(name string, fromFamily bool) (*Image, error) {
|
|||
d.GetImageFromFamily = fromFamily
|
||||
return d.GetImageResult, d.GetImageErr
|
||||
}
|
||||
func (d *DriverMock) GetImageFromProjects(projects []string, name string, fromFamily bool) (*Image, error) {
|
||||
d.GetImageSourceProjects = projects
|
||||
d.GetImageFromProjectName = name
|
||||
d.GetImageFromProjectFromFamily = fromFamily
|
||||
return d.GetImageFromProjectResult, d.GetImageFromProjectErr
|
||||
}
|
||||
|
||||
func (d *DriverMock) GetImageFromProject(project, name string, fromFamily bool) (*Image, error) {
|
||||
d.GetImageFromProjectProject = project
|
||||
|
|
|
@ -83,10 +83,10 @@ func getImage(c *Config, d Driver) (*Image, error) {
|
|||
name = c.SourceImage
|
||||
fromFamily = false
|
||||
}
|
||||
if c.SourceImageProjectId == "" {
|
||||
if len(c.SourceImageProjectId) == 0 {
|
||||
return d.GetImage(name, fromFamily)
|
||||
} else {
|
||||
return d.GetImageFromProject(c.SourceImageProjectId, name, fromFamily)
|
||||
return d.GetImageFromProjects(c.SourceImageProjectId, name, fromFamily)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -145,7 +145,7 @@ func (p *PostProcessor) PostProcess(ctx context.Context, ui packer.Ui, artifact
|
|||
NetworkProjectId: builderProjectId,
|
||||
StateTimeout: 5 * time.Minute,
|
||||
SourceImageFamily: "debian-9-worker",
|
||||
SourceImageProjectId: "compute-image-tools",
|
||||
SourceImageProjectId: []string{"compute-image-tools"},
|
||||
Subnetwork: p.config.Subnetwork,
|
||||
Zone: p.config.Zone,
|
||||
Scopes: []string{
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
project's default service account unless disable_default_service_account
|
||||
is true.
|
||||
|
||||
- `source_image_project_id` (string) - The project ID of the project containing the source image.
|
||||
- `source_image_project_id` ([]string) - The project ID's of the project containing the source image.
|
||||
|
||||
- `startup_script_file` (string) - The path to a startup script to run on the VM from which the image will
|
||||
be made.
|
||||
|
|
Loading…
Reference in New Issue