forked from TrueCloudLab/distribution
77e69b9cf3
Signed-off-by: Olivier Gambier <olivier@docker.com>
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
|
|
compute "google.golang.org/api/compute/v1"
|
|
"google.golang.org/api/googleapi"
|
|
)
|
|
|
|
func init() {
|
|
scopes := strings.Join([]string{
|
|
compute.DevstorageFullControlScope,
|
|
compute.ComputeScope,
|
|
}, " ")
|
|
registerDemo("compute", scopes, computeMain)
|
|
}
|
|
|
|
func computeMain(client *http.Client, argv []string) {
|
|
if len(argv) != 2 {
|
|
fmt.Fprintln(os.Stderr, "Usage: compute project_id instance_name (to start an instance)")
|
|
return
|
|
}
|
|
|
|
service, err := compute.New(client)
|
|
if err != nil {
|
|
log.Fatalf("Unable to create Compute service: %v", err)
|
|
}
|
|
|
|
projectId := argv[0]
|
|
instanceName := argv[1]
|
|
|
|
prefix := "https://www.googleapis.com/compute/v1/projects/" + projectId
|
|
imageURL := "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140606"
|
|
zone := "us-central1-a"
|
|
|
|
// Show the current images that are available.
|
|
res, err := service.Images.List(projectId).Do()
|
|
log.Printf("Got compute.Images.List, err: %#v, %v", res, err)
|
|
|
|
instance := &compute.Instance{
|
|
Name: instanceName,
|
|
Description: "compute sample instance",
|
|
MachineType: prefix + "/zones/" + zone + "/machineTypes/n1-standard-1",
|
|
Disks: []*compute.AttachedDisk{
|
|
{
|
|
AutoDelete: true,
|
|
Boot: true,
|
|
Type: "PERSISTENT",
|
|
InitializeParams: &compute.AttachedDiskInitializeParams{
|
|
DiskName: "my-root-pd",
|
|
SourceImage: imageURL,
|
|
},
|
|
},
|
|
},
|
|
NetworkInterfaces: []*compute.NetworkInterface{
|
|
&compute.NetworkInterface{
|
|
AccessConfigs: []*compute.AccessConfig{
|
|
&compute.AccessConfig{
|
|
Type: "ONE_TO_ONE_NAT",
|
|
Name: "External NAT",
|
|
},
|
|
},
|
|
Network: prefix + "/global/networks/default",
|
|
},
|
|
},
|
|
ServiceAccounts: []*compute.ServiceAccount{
|
|
{
|
|
Email: "default",
|
|
Scopes: []string{
|
|
compute.DevstorageFullControlScope,
|
|
compute.ComputeScope,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
op, err := service.Instances.Insert(projectId, zone, instance).Do()
|
|
log.Printf("Got compute.Operation, err: %#v, %v", op, err)
|
|
etag := op.Header.Get("Etag")
|
|
log.Printf("Etag=%v", etag)
|
|
|
|
inst, err := service.Instances.Get(projectId, zone, instanceName).IfNoneMatch(etag).Do()
|
|
log.Printf("Got compute.Instance, err: %#v, %v", inst, err)
|
|
if googleapi.IsNotModified(err) {
|
|
log.Printf("Instance not modified since insert.")
|
|
} else {
|
|
log.Printf("Instance modified since insert.")
|
|
}
|
|
}
|