diff --git a/.gitignore b/.gitignore index 0ce1fff..ddf5330 100644 --- a/.gitignore +++ b/.gitignore @@ -42,7 +42,9 @@ vendor/peridot.resf.org .ijwb/.idea/**/usage.statistics.xml .ijwb/.idea/**/dictionaries .ijwb/.idea/**/shelf -.idea/** + +# top-level IDE configuration - user specific contents +/.idea/** # AWS User-specific .ijwb/.idea/**/aws.xml diff --git a/peridot/builder/v1/workflow/infrastructure.go b/peridot/builder/v1/workflow/infrastructure.go index d1c7a27..065d546 100644 --- a/peridot/builder/v1/workflow/infrastructure.go +++ b/peridot/builder/v1/workflow/infrastructure.go @@ -61,15 +61,15 @@ import ( ) type ProvisionWorkerRequest struct { - TaskId string `json:"taskId"` - ParentTaskId sql.NullString `json:"parentTaskId"` - Purpose string `json:"purpose"` - Arch string `json:"arch"` + TaskId string `json:"taskId"` + ParentTaskId sql.NullString `json:"parentTaskId"` + Purpose string `json:"purpose"` + Arch string `json:"arch"` ImageArch string `json:"imageArch"` BuildPoolType string `json:"buildPoolType"` - ProjectId string `json:"projectId"` - HighResource bool `json:"highResource"` - Privileged bool `json:"privileged"` + ProjectId string `json:"projectId"` + HighResource bool `json:"highResource"` + Privileged bool `json:"privileged"` } func archToGoArch(arch string) string {