/* Copyright 2022 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 scalewaymodel import ( "fmt" "github.com/scaleway/scaleway-sdk-go/api/lb/v1" "github.com/scaleway/scaleway-sdk-go/scw" "k8s.io/klog/v2" "k8s.io/kops/pkg/apis/kops" "k8s.io/kops/pkg/dns" "k8s.io/kops/pkg/wellknownports" "k8s.io/kops/upup/pkg/fi" "k8s.io/kops/upup/pkg/fi/cloudup/scaleway" "k8s.io/kops/upup/pkg/fi/cloudup/scalewaytasks" ) // APILoadBalancerModelBuilder builds a load-balancer for accessing the API type APILoadBalancerModelBuilder struct { *ScwModelContext Lifecycle fi.Lifecycle } var _ fi.CloudupModelBuilder = &APILoadBalancerModelBuilder{} func (b *APILoadBalancerModelBuilder) Build(c *fi.CloudupModelBuilderContext) error { // Configuration where a load balancer fronts the API if !b.UseLoadBalancerForAPI() { return nil } lbSpec := b.Cluster.Spec.API.LoadBalancer switch lbSpec.Type { case kops.LoadBalancerTypePublic: klog.V(8).Infof("Using public load-balancer") case kops.LoadBalancerTypeInternal: return fmt.Errorf("Scaleway clusters don't have a VPC yet, so internal load-balancers are not supported at the time") default: return fmt.Errorf("unhandled load-balancer type %q", lbSpec.Type) } zone, err := scaleway.ParseZoneFromClusterSpec(b.Cluster.Spec) if err != nil { return fmt.Errorf("building load-balancer task: %w", err) } lbTags := []string{ fmt.Sprintf("%s=%s", scaleway.TagClusterName, b.ClusterName()), fmt.Sprintf("%s=%s", scaleway.TagNameRolePrefix, scaleway.TagRoleControlPlane), } for k, v := range b.CloudTags(b.ClusterName(), false) { lbTags = append(lbTags, fmt.Sprintf("%s=%s", k, v)) } loadBalancerName := "api." + b.ClusterName() loadBalancer := &scalewaytasks.LoadBalancer{ Name: fi.PtrTo(loadBalancerName), Zone: fi.PtrTo(string(zone)), Lifecycle: b.Lifecycle, Tags: lbTags, Description: "Load-balancer for kops cluster " + b.ClusterName(), SslCompatibilityLevel: string(lb.SSLCompatibilityLevelSslCompatibilityLevelUnknown), } c.AddTask(loadBalancer) lbBackendHttps, lbFrontendHttps := createLbBackendAndFrontend("https", wellknownports.KubeAPIServer, zone, loadBalancer) lbBackendHttps.Lifecycle = b.Lifecycle c.AddTask(lbBackendHttps) lbFrontendHttps.Lifecycle = b.Lifecycle c.AddTask(lbFrontendHttps) if dns.IsGossipClusterName(b.Cluster.Name) || b.Cluster.UsesPrivateDNS() || b.Cluster.UsesNoneDNS() { // Ensure the LB hostname is included in the TLS certificate, // if we're not going to use an alias for it loadBalancer.ForAPIServer = true lbBackendKopsController, lbFrontendKopsController := createLbBackendAndFrontend("kops-controller", wellknownports.KopsControllerPort, zone, loadBalancer) lbBackendKopsController.Lifecycle = b.Lifecycle c.AddTask(lbBackendKopsController) lbFrontendKopsController.Lifecycle = b.Lifecycle c.AddTask(lbFrontendKopsController) } return nil } func createLbBackendAndFrontend(name string, port int, zone scw.Zone, loadBalancer *scalewaytasks.LoadBalancer) (*scalewaytasks.LBBackend, *scalewaytasks.LBFrontend) { lbBackendKopsController := &scalewaytasks.LBBackend{ Name: fi.PtrTo("lb-backend-" + name), Zone: fi.PtrTo(string(zone)), ForwardProtocol: fi.PtrTo(string(lb.ProtocolTCP)), ForwardPort: fi.PtrTo(int32(port)), ForwardPortAlgorithm: fi.PtrTo(string(lb.ForwardPortAlgorithmRoundrobin)), StickySessions: fi.PtrTo(string(lb.StickySessionsTypeNone)), ProxyProtocol: fi.PtrTo(string(lb.ProxyProtocolProxyProtocolUnknown)), LoadBalancer: loadBalancer, } lbFrontendKopsController := &scalewaytasks.LBFrontend{ Name: fi.PtrTo("lb-frontend-" + name), Zone: fi.PtrTo(string(zone)), InboundPort: fi.PtrTo(int32(port)), LoadBalancer: loadBalancer, LBBackend: lbBackendKopsController, } return lbBackendKopsController, lbFrontendKopsController }