Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AddRemoteNodePortSANs = func(_ context.Context, _, _ string, _ kubernetes.Interface) error { return nil }
View Source
var ConfigureExternalDatabase = func(_ context.Context, _ *config.VirtualClusterConfig) (string, *etcd.Certificates, error) { return "", nil, NewFeatureError("external database") }
View Source
var ConnectToPlatform = func(context.Context, *config.VirtualClusterConfig, manager.Manager) error { return nil }
View Source
var ExchangeControlPlaneClient = func(controllerCtx *config.ControllerContext) (client.Client, error) { return controllerCtx.WorkloadNamespaceClient, nil }
View Source
var GetRemoteClient = func(vConfig *config.VirtualClusterConfig) (*rest.Config, string, string, *rest.Config, string, string, error) { inClusterConfig := ctrl.GetConfigOrDie() inClusterConfig.QPS = 40 inClusterConfig.Burst = 80 inClusterConfig.Timeout = 0 currentNamespace, err := clienthelper.CurrentNamespace() if err != nil { return nil, "", "", nil, "", "", err } if vConfig.Experimental.IsolatedControlPlane.Enabled { return nil, "", "", nil, "", "", NewFeatureError(string(licenseapi.VirtualClusterProDistroIsolatedControlPlane)) } return inClusterConfig, currentNamespace, vConfig.ControlPlaneService, inClusterConfig, currentNamespace, vConfig.ControlPlaneService, nil }
View Source
var InitDNSServiceSyncing = func(_ *config.VirtualClusterConfig) specialservices.Interface { return specialservices.NewDefaultServiceSyncer() }
View Source
var InitProControllerContext = func(_ *config.ControllerContext) error { return nil }
LicenseFeatures is used to retrieve all enabled features
View Source
var LicenseInit = func(_ context.Context, _ *config.VirtualClusterConfig) error { return nil }
LicenseInit is used to initialize the license reader
View Source
var NewPhysicalClient = func(_ *config.VirtualClusterConfig) client.NewClientFunc { return pluginhookclient.NewPhysicalPluginClientFactory(blockingcacheclient.NewCacheClient) }
View Source
var NewVirtualClient = func(_ *config.VirtualClusterConfig) client.NewClientFunc { return pluginhookclient.NewVirtualPluginClientFactory(blockingcacheclient.NewCacheClient) }
View Source
var RegisterProControllers = func(*config.ControllerContext) error { return nil }
View Source
var StartEmbeddedEtcd = func(_ context.Context, _, _, _ string, _ int, _ string) error { return NewFeatureError("embedded etcd") }
View Source
var StartIntegratedCoreDNS = func(_ *config.ControllerContext) error { return NewFeatureError("integrated core dns") }
View Source
var SyncNoopSyncerEndpoints = func(_ *config.ControllerContext, _ types.NamespacedName, _ client.Client, _ types.NamespacedName, _ string) error { return NewFeatureError("noop syncer") }
View Source
var SyncRemoteEndpoints = func(_ context.Context, _ types.NamespacedName, _ client.Client, _ types.NamespacedName, _ client.Client) error { return NewFeatureError(string(licenseapi.VirtualClusterProDistroIsolatedControlPlane)) }
Functions ¶
func NewFeatureError ¶ added in v0.19.3
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.