37 Star 403 Fork 75

GVPrancher/rancher

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
clusterconfigcopier.go 1.25 KB
Copy Edit Raw Blame History
Dan Ramich authored 2019-06-12 13:38 . goimport linting changes
package clusterconfigcopier
import (
"context"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
"k8s.io/apimachinery/pkg/runtime"
)
type controller struct {
}
func Register(ctx context.Context, management *config.ManagementContext) {
c := controller{}
management.Management.Clusters("").AddHandler(ctx, "clusterconfigcopier", c.sync)
}
func (c *controller) sync(key string, cluster *v3.Cluster) (runtime.Object, error) {
if key == "" {
return cluster, nil
}
if cluster.Spec.GenericEngineConfig != nil {
return cluster, nil
}
if cluster.Spec.AmazonElasticContainerServiceConfig != nil {
cluster.Spec.GenericEngineConfig = cluster.Spec.AmazonElasticContainerServiceConfig
(*cluster.Spec.GenericEngineConfig)["driverName"] = "amazonelasticcontainerservice"
}
if cluster.Spec.AzureKubernetesServiceConfig != nil {
cluster.Spec.GenericEngineConfig = cluster.Spec.AzureKubernetesServiceConfig
(*cluster.Spec.GenericEngineConfig)["driverName"] = "azurekubernetesservice"
}
if cluster.Spec.GoogleKubernetesEngineConfig != nil {
cluster.Spec.GenericEngineConfig = cluster.Spec.GoogleKubernetesEngineConfig
(*cluster.Spec.GenericEngineConfig)["driverName"] = "googlekubernetesengine"
}
return nil, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.13

Search