-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8237 from srikiz/DO-AddLoadBalancer
[DigitalOcean] Add load balancer support for master HA
- Loading branch information
Showing
10 changed files
with
480 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
Copyright 2019 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 domodel | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"strings" | ||
|
||
"k8s.io/kops/pkg/apis/kops" | ||
"k8s.io/kops/pkg/dns" | ||
"k8s.io/kops/upup/pkg/fi" | ||
"k8s.io/kops/upup/pkg/fi/cloudup/do" | ||
"k8s.io/kops/upup/pkg/fi/cloudup/dotasks" | ||
"k8s.io/kops/upup/pkg/fi/fitasks" | ||
) | ||
|
||
// APILoadBalancerModelBuilder builds a LoadBalancer for accessing the API | ||
type APILoadBalancerModelBuilder struct { | ||
*DOModelContext | ||
Lifecycle *fi.Lifecycle | ||
} | ||
|
||
var _ fi.ModelBuilder = &APILoadBalancerModelBuilder{} | ||
|
||
func (b *APILoadBalancerModelBuilder) Build(c *fi.ModelBuilderContext) error { | ||
// Configuration where a load balancer fronts the API | ||
if !b.UseLoadBalancerForAPI() { | ||
return nil | ||
} | ||
|
||
lbSpec := b.Cluster.Spec.API.LoadBalancer | ||
if lbSpec == nil { | ||
// Skipping API LB creation; not requested in Spec | ||
return nil | ||
} | ||
|
||
switch lbSpec.Type { | ||
case kops.LoadBalancerTypeInternal: | ||
// OK | ||
case kops.LoadBalancerTypePublic: | ||
// OK | ||
default: | ||
return fmt.Errorf("unhandled LoadBalancer type %q", lbSpec.Type) | ||
} | ||
|
||
clusterName := strings.Replace(b.ClusterName(), ".", "-", -1) | ||
loadbalancerName := "api-" + clusterName | ||
clusterMasterTag := do.TagKubernetesClusterMasterPrefix + ":" + clusterName | ||
|
||
// Create LoadBalancer for API LB | ||
loadbalancer := &dotasks.LoadBalancer{ | ||
Name: fi.String(loadbalancerName), | ||
Region: fi.String(b.Cluster.Spec.Subnets[0].Region), | ||
DropletTag: fi.String(clusterMasterTag), | ||
Lifecycle: b.Lifecycle, | ||
} | ||
c.AddTask(loadbalancer) | ||
|
||
// Temporarily do not know the role of the following function | ||
if dns.IsGossipHostname(b.Cluster.Name) || b.UsePrivateDNS() { | ||
// Ensure the LB hostname is included in the TLS certificate, | ||
// if we're not going to use an alias for it | ||
// TODO: I don't love this technique for finding the task by name & modifying it | ||
masterKeypairTask, found := c.Tasks["Keypair/master"] | ||
if !found { | ||
return errors.New("keypair/master task not found") | ||
} | ||
masterKeypair := masterKeypairTask.(*fitasks.Keypair) | ||
masterKeypair.AlternateNameTasks = append(masterKeypair.AlternateNameTasks, loadbalancer) | ||
} | ||
|
||
return nil | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.