mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
112 lines
3.1 KiB
Go
112 lines
3.1 KiB
Go
/*
|
|
Copyright 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.
|
|
*/
|
|
|
|
// Code generated by main. DO NOT EDIT.
|
|
|
|
package k3s
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
clientset "github.com/rancher/k3s/pkg/generated/clientset/versioned"
|
|
scheme "github.com/rancher/k3s/pkg/generated/clientset/versioned/scheme"
|
|
informers "github.com/rancher/k3s/pkg/generated/informers/externalversions"
|
|
"github.com/rancher/wrangler/pkg/generic"
|
|
"github.com/rancher/wrangler/pkg/schemes"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
func init() {
|
|
scheme.AddToScheme(schemes.All)
|
|
}
|
|
|
|
type Factory struct {
|
|
synced bool
|
|
informerFactory informers.SharedInformerFactory
|
|
clientset clientset.Interface
|
|
controllerManager *generic.ControllerManager
|
|
threadiness map[schema.GroupVersionKind]int
|
|
}
|
|
|
|
func NewFactoryFromConfigOrDie(config *rest.Config) *Factory {
|
|
f, err := NewFactoryFromConfig(config)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return f
|
|
}
|
|
|
|
func NewFactoryFromConfig(config *rest.Config) (*Factory, error) {
|
|
cs, err := clientset.NewForConfig(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
informerFactory := informers.NewSharedInformerFactory(cs, 2*time.Hour)
|
|
return NewFactory(cs, informerFactory), nil
|
|
}
|
|
|
|
func NewFactoryFromConfigWithNamespace(config *rest.Config, namespace string) (*Factory, error) {
|
|
if namespace == "" {
|
|
return NewFactoryFromConfig(config)
|
|
}
|
|
|
|
cs, err := clientset.NewForConfig(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
informerFactory := informers.NewSharedInformerFactoryWithOptions(cs, 2*time.Hour, informers.WithNamespace(namespace))
|
|
return NewFactory(cs, informerFactory), nil
|
|
}
|
|
|
|
func NewFactory(clientset clientset.Interface, informerFactory informers.SharedInformerFactory) *Factory {
|
|
return &Factory{
|
|
threadiness: map[schema.GroupVersionKind]int{},
|
|
controllerManager: &generic.ControllerManager{},
|
|
clientset: clientset,
|
|
informerFactory: informerFactory,
|
|
}
|
|
}
|
|
|
|
func (c *Factory) Controllers() map[schema.GroupVersionKind]*generic.Controller {
|
|
return c.controllerManager.Controllers()
|
|
}
|
|
|
|
func (c *Factory) SetThreadiness(gvk schema.GroupVersionKind, threadiness int) {
|
|
c.threadiness[gvk] = threadiness
|
|
}
|
|
|
|
func (c *Factory) Sync(ctx context.Context) error {
|
|
c.informerFactory.Start(ctx.Done())
|
|
c.informerFactory.WaitForCacheSync(ctx.Done())
|
|
return nil
|
|
}
|
|
|
|
func (c *Factory) Start(ctx context.Context, defaultThreadiness int) error {
|
|
if err := c.Sync(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.controllerManager.Start(ctx, defaultThreadiness, c.threadiness)
|
|
}
|
|
|
|
func (c *Factory) K3s() Interface {
|
|
return New(c.controllerManager, c.informerFactory.K3s(), c.clientset)
|
|
}
|