-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.go
83 lines (72 loc) · 2.33 KB
/
util.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
/*
Copyright AppsCode Inc. and Contributors
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
http://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 gce
import (
"fmt"
"strings"
"go.bytebuilders.dev/resource-model/apis/cloud"
"go.bytebuilders.dev/resource-model/apis/cloud/v1alpha1"
"go.bytebuilders.dev/resource-model/pkg/util"
"github.com/pkg/errors"
"google.golang.org/api/compute/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
func ParseRegion(region *compute.Region) (*v1alpha1.Region, error) {
r := &v1alpha1.Region{
Region: region.Name,
}
r.Zones = []string{}
for _, url := range region.Zones {
zone, err := ParseZoneFromUrl(url)
if err != nil {
return nil, err
}
r.Zones = append(r.Zones, zone)
}
return r, nil
}
func ParseZoneFromUrl(url string) (string, error) {
words := strings.Split(url, "/")
if len(words) == 0 {
return "", errors.Errorf("Invaild url: unable to parse zone from url")
}
return words[len(words)-1], nil
}
func ParseMachine(machine *compute.MachineType) (*v1alpha1.MachineType, error) {
return &v1alpha1.MachineType{
ObjectMeta: metav1.ObjectMeta{
Name: util.Sanitize(cloud.GCE + "-" + machine.Name),
Labels: map[string]string{
cloud.KeyCloudProvider: cloud.GCE,
},
},
Spec: v1alpha1.MachineTypeSpec{
SKU: machine.Name,
Description: machine.Description,
CPU: resource.NewQuantity(machine.GuestCpus, resource.DecimalExponent),
RAM: util.QuantityP(resource.MustParse(fmt.Sprintf("%dM", machine.MemoryMb))),
Disk: util.QuantityP(resource.MustParse(fmt.Sprintf("%dG", machine.MaximumPersistentDisksSizeGb))),
Category: ParseCategoryFromSKU(machine.Name),
},
}, nil
}
// gce SKU format: [something]-category-[somethin/empty]
func ParseCategoryFromSKU(sku string) string {
words := strings.Split(sku, "-")
if len(words) < 2 {
return ""
} else {
return words[1]
}
}