Skip to content

Commit

Permalink
Merge pull request #5158 from AliyunContainerService/disk
Browse files Browse the repository at this point in the history
implement disk task for ALICloud and fix typos
  • Loading branch information
k8s-ci-robot authored May 18, 2018
2 parents 80c692f + 9262d1d commit 05248f2
Show file tree
Hide file tree
Showing 6 changed files with 411 additions and 45 deletions.
2 changes: 2 additions & 0 deletions upup/pkg/fi/cloudup/alitasks/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = [
"disk.go",
"disk_fitask.go",
"vpc.go",
"vpc_fitask.go",
"vswitch.go",
Expand Down
206 changes: 206 additions & 0 deletions upup/pkg/fi/cloudup/alitasks/disk.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
/*
Copyright 2018 The Kubernetes Authors.
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 alitasks

import (
"fmt"

"github.com/denverdino/aliyungo/common"
"github.com/denverdino/aliyungo/ecs"
"github.com/golang/glog"

"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/aliup"
"k8s.io/kops/upup/pkg/fi/cloudup/terraform"
)

// Disk represents a ALI Cloud Disk
//go:generate fitask -type=Disk
const (
DiskResource = "disk"
DiskType = ecs.DiskTypeAllData
)

type Disk struct {
Lifecycle *fi.Lifecycle
Name *string
DiskId *string
ZoneId *string
DiskCategory *string
Encrypted *bool
SizeGB *int
Tags map[string]string
}

var _ fi.CompareWithID = &Disk{}

func (d *Disk) CompareWithID() *string {
return d.DiskId
}

func (d *Disk) Find(c *fi.Context) (*Disk, error) {
cloud := c.Cloud.(aliup.ALICloud)
clusterTags := cloud.GetClusterTags()

request := &ecs.DescribeDisksArgs{
DiskType: DiskType,
RegionId: common.Region(cloud.Region()),
ZoneId: fi.StringValue(d.ZoneId),
Tag: clusterTags,
DiskName: fi.StringValue(d.Name),
}

responseDisks, _, err := cloud.EcsClient().DescribeDisks(request)
if err != nil {
return nil, fmt.Errorf("error finding Disks: %v", err)
}
// Don't exist disk with specified ClusterTags or Name.
if len(responseDisks) == 0 {
return nil, nil
}
if len(responseDisks) > 1 {
glog.V(4).Info("The number of specified disk with the same name and ClusterTags exceeds 1, diskName:%q", *d.Name)
}

glog.V(2).Infof("found matching Disk with name: %q", *d.Name)

actual := &Disk{}
actual.Name = fi.String(responseDisks[0].DiskName)
actual.DiskCategory = fi.String(string(responseDisks[0].Category))
actual.ZoneId = fi.String(responseDisks[0].ZoneId)
actual.SizeGB = fi.Int(responseDisks[0].Size)
actual.DiskId = fi.String(responseDisks[0].DiskId)

tags, err := cloud.GetTags(fi.StringValue(actual.DiskId), DiskResource)

if err != nil {
glog.V(4).Info("Error getting tags on resourceId:%q", *actual.DiskId)
}
actual.Tags = tags

// Ignore "system" fields
actual.Lifecycle = d.Lifecycle
d.DiskId = actual.DiskId
return actual, nil
}

func (d *Disk) Run(c *fi.Context) error {
if d.Tags == nil {
d.Tags = make(map[string]string)
}
c.Cloud.(aliup.ALICloud).AddClusterTags(d.Tags)
return fi.DefaultDeltaRunMethod(d, c)
}

func (_ *Disk) CheckChanges(a, e, changes *Disk) error {
if a == nil {
if e.ZoneId == nil {
return fi.RequiredField("ZoneId")
}
if e.Name == nil {
return fi.RequiredField("Name")
}
} else {
if changes.DiskCategory != nil {
return fi.CannotChangeField("DiskCategory")
}
}
return nil
}

//Disk can only modify tags.
func (_ *Disk) RenderALI(t *aliup.ALIAPITarget, a, e, changes *Disk) error {
if a == nil {
glog.V(2).Infof("Creating Disk with Name:%q", fi.StringValue(e.Name))

request := &ecs.CreateDiskArgs{
DiskName: fi.StringValue(e.Name),
RegionId: common.Region(t.Cloud.Region()),
ZoneId: fi.StringValue(e.ZoneId),
Encrypted: fi.BoolValue(e.Encrypted),
DiskCategory: ecs.DiskCategory(fi.StringValue(e.DiskCategory)),
Size: fi.IntValue(e.SizeGB),
}
diskId, err := t.Cloud.EcsClient().CreateDisk(request)
if err != nil {
return fmt.Errorf("error creating disk: %v", err)
}
e.DiskId = fi.String(diskId)
}

if changes != nil && changes.Tags != nil {
glog.V(2).Infof("Modifing tags of disk with Name:%q", fi.StringValue(e.Name))
if err := t.Cloud.CreateTags(*e.DiskId, DiskResource, e.Tags); err != nil {
return fmt.Errorf("error adding Tags to ALI YunPan: %v", err)
}
}

if a != nil && (len(a.Tags) > 0) {

tagsToDelete := e.getDiskTagsToDelete(a.Tags)
if len(tagsToDelete) > 0 {
glog.V(2).Infof("Deleting tags of disk with Name:%q", fi.StringValue(e.Name))
if err := t.Cloud.RemoveTags(*e.DiskId, DiskResource, tagsToDelete); err != nil {
return fmt.Errorf("error removing Tags from ALI YunPan: %v", err)
}
}
}

return nil
}

// getDiskTagsToDelete loops through the currently set tags and builds a list of tags to be deleted from the specificated disk
func (d *Disk) getDiskTagsToDelete(currentTags map[string]string) map[string]string {
tagsToDelete := map[string]string{}
for k, v := range currentTags {
if _, ok := d.Tags[k]; !ok {
tagsToDelete[k] = v
}
}

return tagsToDelete
}

type terraformDiskTag struct {
Key *string `json:"key"`
Value *string `json:"value"`
}

type terraformDisk struct {
DiskName *string `json:"name,omitempty"`
DiskCategory *string `json:"category,omitempty"`
SizeGB *int `json:"size,omitempty"`
Zone *string `json:"availability_zone,omitempty"`
Tags []*terraformDiskTag `json:"tags,omitempty"`
}

func (_ *Disk) RenderTerraform(t *terraform.TerraformTarget, a, e, changes *Disk) error {
tf := &terraformDisk{
DiskName: e.Name,
DiskCategory: e.DiskCategory,
SizeGB: e.SizeGB,
Zone: e.ZoneId,
}

for key, value := range e.Tags {
tf.Tags = append(tf.Tags, &terraformDiskTag{
Key: &key,
Value: &value,
})
}
return t.RenderResource("alicloud_disk", *e.Name, tf)
}
75 changes: 75 additions & 0 deletions upup/pkg/fi/cloudup/alitasks/disk_fitask.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions upup/pkg/fi/cloudup/aliup/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ go_library(
"//upup/pkg/fi:go_default_library",
"//vendor/github.com/denverdino/aliyungo/common:go_default_library",
"//vendor/github.com/denverdino/aliyungo/ecs:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
"//vendor/k8s.io/api/core/v1:go_default_library",
],
)
Expand Down
Loading

0 comments on commit 05248f2

Please sign in to comment.