mirror of https://github.com/kubernetes/kops.git
				
				
				
			
		
			
				
	
	
		
			95 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
Copyright 2021 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 components
 | 
						|
 | 
						|
import (
 | 
						|
	"k8s.io/kops/pkg/apis/kops"
 | 
						|
	"k8s.io/kops/upup/pkg/fi"
 | 
						|
	"k8s.io/kops/upup/pkg/fi/cloudup/gce"
 | 
						|
	"k8s.io/kops/upup/pkg/fi/loader"
 | 
						|
)
 | 
						|
 | 
						|
type GCPCloudControllerManagerOptionsBuilder struct {
 | 
						|
	*OptionsContext
 | 
						|
}
 | 
						|
 | 
						|
var _ loader.OptionsBuilder = (*GCPCloudControllerManagerOptionsBuilder)(nil)
 | 
						|
 | 
						|
func (b *GCPCloudControllerManagerOptionsBuilder) BuildOptions(options interface{}) error {
 | 
						|
	clusterSpec := options.(*kops.ClusterSpec)
 | 
						|
 | 
						|
	if clusterSpec.GetCloudProvider() != kops.CloudProviderGCE {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	if clusterSpec.ExternalCloudControllerManager == nil {
 | 
						|
		clusterSpec.ExternalCloudControllerManager = &kops.CloudControllerManagerConfig{}
 | 
						|
	}
 | 
						|
 | 
						|
	ccmConfig := clusterSpec.ExternalCloudControllerManager
 | 
						|
 | 
						|
	// No significant downside to always doing a leader election.
 | 
						|
	// Also, having multiple control plane nodes requires leader election.
 | 
						|
	ccmConfig.LeaderElection = &kops.LeaderElectionConfiguration{LeaderElect: fi.PtrTo(true)}
 | 
						|
 | 
						|
	// CCM interacts directly with the GCP API, use the name safe for GCP
 | 
						|
	ccmConfig.ClusterName = gce.SafeClusterName(b.ClusterName)
 | 
						|
	ccmConfig.AllocateNodeCIDRs = fi.PtrTo(true)
 | 
						|
	ccmConfig.CIDRAllocatorType = fi.PtrTo("CloudAllocator")
 | 
						|
	if ccmConfig.ClusterCIDR == "" {
 | 
						|
		ccmConfig.ClusterCIDR = clusterSpec.Networking.PodCIDR
 | 
						|
	}
 | 
						|
 | 
						|
	if clusterSpec.Networking.GCP != nil {
 | 
						|
		// "GCP" networking mode is called "ip-alias" or "vpc-native" on GKE.
 | 
						|
		// We don't need to configure routes if we are using "real" IPs.
 | 
						|
		ccmConfig.ConfigureCloudRoutes = fi.PtrTo(false)
 | 
						|
	}
 | 
						|
 | 
						|
	if ccmConfig.Controllers == nil {
 | 
						|
		var changes []string
 | 
						|
 | 
						|
		// Don't run gkenetworkparamset controller, looks for some CRDs (GKENetworkParamSet and Network) which are only installed on GKE
 | 
						|
		// However, the version we're current running doesn't support this controller anyway, so we need to introduce this later,
 | 
						|
		// possibly based on the image version.
 | 
						|
		// changes = append(ccmConfig.Controllers, "-gkenetworkparams")
 | 
						|
 | 
						|
		// Turn off some controllers if kops-controller is running them
 | 
						|
		if clusterSpec.IsKopsControllerIPAM() {
 | 
						|
			changes = append(ccmConfig.Controllers, "-nodeipam", "-route")
 | 
						|
		}
 | 
						|
 | 
						|
		if len(changes) != 0 {
 | 
						|
			ccmConfig.Controllers = append([]string{"*"}, changes...)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if ccmConfig.Image == "" {
 | 
						|
		// TODO: Implement CCM image publishing
 | 
						|
		switch b.KubernetesVersion.Minor {
 | 
						|
		default:
 | 
						|
			ccmConfig.Image = "k8scloudprovidergcp/cloud-controller-manager:latest"
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if b.IsKubernetesLT("1.25") {
 | 
						|
		ccmConfig.EnableLeaderMigration = fi.PtrTo(true)
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |