-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
consume_any_reservation.go
127 lines (111 loc) · 4.06 KB
/
consume_any_reservation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package snippets
// [START compute_consume_any_matching_reservation]
import (
"context"
"fmt"
"io"
compute "cloud.google.com/go/compute/apiv1"
computepb "cloud.google.com/go/compute/apiv1/computepb"
"google.golang.org/protobuf/proto"
)
// Creates the reservation from given template in particular zone
func createConsumableReservation(w io.Writer, projectID, zone, reservationName, sourceTemplate string) error {
// projectID := "your_project_id"
// zone := "us-west3-a"
// reservationName := "your_reservation_name"
// sourceTemplate: existing template path. Following formats are allowed:
// - projects/{project_id}/global/instanceTemplates/{template_name}
// - projects/{project_id}/regions/{region}/instanceTemplates/{template_name}
// - https://www.googleapis.com/compute/v1/projects/{project_id}/global/instanceTemplates/instanceTemplate
// - https://www.googleapis.com/compute/v1/projects/{project_id}/regions/{region}/instanceTemplates/instanceTemplate
ctx := context.Background()
reservationsClient, err := compute.NewReservationsRESTClient(ctx)
if err != nil {
return err
}
defer reservationsClient.Close()
req := &computepb.InsertReservationRequest{
Project: projectID,
ReservationResource: &computepb.Reservation{
Name: proto.String(reservationName),
Zone: proto.String(zone),
SpecificReservation: &computepb.AllocationSpecificSKUReservation{
Count: proto.Int64(2),
InstanceProperties: &computepb.AllocationSpecificSKUAllocationReservedInstanceProperties{
MachineType: proto.String("n2-standard-32"),
MinCpuPlatform: proto.String("Intel Cascade Lake"),
},
},
},
Zone: zone,
}
op, err := reservationsClient.Insert(ctx, req)
if err != nil {
return fmt.Errorf("unable to create reservation: %w", err)
}
if err = op.Wait(ctx); err != nil {
return fmt.Errorf("unable to wait for the operation: %w", err)
}
fmt.Fprintf(w, "Reservation created\n")
return nil
}
func consumeAnyReservation(w io.Writer, projectID, zone, instanceName string) error {
ctx := context.Background()
machineType := fmt.Sprintf("zones/%s/machineTypes/%s", zone, "n2-standard-32")
sourceImage := "projects/debian-cloud/global/images/family/debian-12"
instancesClient, err := compute.NewInstancesRESTClient(ctx)
if err != nil {
return fmt.Errorf("NewInstancesRESTClient: %w", err)
}
defer instancesClient.Close()
req := &computepb.InsertInstanceRequest{
Project: projectID,
Zone: zone,
InstanceResource: &computepb.Instance{
Disks: []*computepb.AttachedDisk{
{
InitializeParams: &computepb.AttachedDiskInitializeParams{
DiskSizeGb: proto.Int64(10),
SourceImage: proto.String(sourceImage),
},
AutoDelete: proto.Bool(true),
Boot: proto.Bool(true),
Type: proto.String(computepb.AttachedDisk_PERSISTENT.String()),
},
},
MachineType: proto.String(machineType),
MinCpuPlatform: proto.String("Intel Cascade Lake"),
Name: proto.String(instanceName),
NetworkInterfaces: []*computepb.NetworkInterface{
{
Name: proto.String("global/networks/default"),
},
},
ReservationAffinity: &computepb.ReservationAffinity{
ConsumeReservationType: proto.String("ANY_RESERVATION"),
},
},
}
op, err := instancesClient.Insert(ctx, req)
if err != nil {
return fmt.Errorf("unable to create instance: %w", err)
}
if err = op.Wait(ctx); err != nil {
return fmt.Errorf("unable to wait for the operation: %w", err)
}
return nil
}
// [END compute_consume_any_matching_reservation]