kops/upup/pkg/fi/cloudup/openstacktasks/routerinterface.go

136 lines
3.4 KiB
Go

/*
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 openstacktasks
import (
"fmt"
"github.com/golang/glog"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/layer3/routers"
"github.com/gophercloud/gophercloud/openstack/networking/v2/ports"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/openstack"
)
//go:generate fitask -type=RouterInterface
type RouterInterface struct {
ID *string
Name *string
Router *Router
Subnet *Subnet
Lifecycle *fi.Lifecycle
}
var _ fi.CompareWithID = &RouterInterface{}
func (i *RouterInterface) CompareWithID() *string {
return i.ID
}
func (i *RouterInterface) Find(context *fi.Context) (*RouterInterface, error) {
cloud := context.Cloud.(openstack.OpenstackCloud)
opt := ports.ListOpts{
NetworkID: fi.StringValue(i.Subnet.Network.ID),
DeviceOwner: "network:router_interface",
DeviceID: fi.StringValue(i.Router.ID),
ID: fi.StringValue(i.ID),
}
ps, err := cloud.ListPorts(opt)
if err != nil {
return nil, err
}
if ps == nil {
return nil, nil
}
subnetID := fi.StringValue(i.Subnet.ID)
iID := ""
n := 0
for _, p := range ps {
for _, ip := range p.FixedIPs {
if ip.SubnetID == subnetID {
n += 1
iID = p.ID
break
}
}
}
switch n {
case 0:
return nil, nil
case 1:
actual := &RouterInterface{
ID: fi.String(iID),
Name: i.Name,
Router: i.Router,
Subnet: i.Subnet,
Lifecycle: i.Lifecycle,
}
return actual, nil
default:
return nil, fmt.Errorf("find multiple interfaces which subnet:%s attach to", subnetID)
}
}
func (i *RouterInterface) Run(context *fi.Context) error {
return fi.DefaultDeltaRunMethod(i, context)
}
func (_ *RouterInterface) CheckChanges(a, e, changes *RouterInterface) error {
if a == nil {
if e.Router == nil {
return fi.RequiredField("Router")
}
if e.Subnet == nil {
return fi.RequiredField("Subnet")
}
} else {
if changes.Name != nil {
return fi.CannotChangeField("Name")
}
if changes.Router != nil {
return fi.CannotChangeField("Router")
}
if changes.Subnet != nil {
return fi.CannotChangeField("Subnet")
}
}
return nil
}
func (_ *RouterInterface) RenderOpenstack(t *openstack.OpenstackAPITarget, a, e, changes *RouterInterface) error {
if a == nil {
routerID := fi.StringValue(e.Router.ID)
subnetID := fi.StringValue(e.Subnet.ID)
glog.V(2).Infof("Creating RouterInterface for router:%s and subnet:%s", routerID, subnetID)
opt := routers.AddInterfaceOpts{SubnetID: subnetID}
v, err := t.Cloud.CreateRouterInterface(routerID, opt)
if err != nil {
return fmt.Errorf("Error creating router interface: %v", err)
}
e.ID = fi.String(v.PortID)
glog.V(2).Infof("Creating a new Openstack router interface, id=%s", v.PortID)
return nil
}
e.ID = a.ID
glog.V(2).Infof("Using an existing Openstack router interface, id=%s", fi.StringValue(e.ID))
return nil
}