2019-05-09 22:06:33 +00:00
|
|
|
/*
|
|
|
|
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"
|
2019-07-12 17:13:20 +00:00
|
|
|
scheme "github.com/rancher/k3s/pkg/generated/clientset/versioned/scheme"
|
2019-05-09 22:06:33 +00:00
|
|
|
informers "github.com/rancher/k3s/pkg/generated/informers/externalversions"
|
|
|
|
"github.com/rancher/wrangler/pkg/generic"
|
2019-07-12 17:13:20 +00:00
|
|
|
"github.com/rancher/wrangler/pkg/schemes"
|
2019-05-09 22:06:33 +00:00
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
|
|
"k8s.io/client-go/rest"
|
|
|
|
)
|
|
|
|
|
2019-07-12 17:13:20 +00:00
|
|
|
func init() {
|
|
|
|
scheme.AddToScheme(schemes.All)
|
|
|
|
}
|
|
|
|
|
2019-05-09 22:06:33 +00:00
|
|
|
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) {
|
2020-04-23 00:42:12 +00:00
|
|
|
return NewFactoryFromConfigWithOptions(config, nil)
|
2019-05-09 22:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewFactoryFromConfigWithNamespace(config *rest.Config, namespace string) (*Factory, error) {
|
2020-04-23 00:42:12 +00:00
|
|
|
return NewFactoryFromConfigWithOptions(config, &FactoryOptions{
|
|
|
|
Namespace: namespace,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type FactoryOptions struct {
|
|
|
|
Namespace string
|
|
|
|
Resync time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewFactoryFromConfigWithOptions(config *rest.Config, opts *FactoryOptions) (*Factory, error) {
|
|
|
|
if opts == nil {
|
|
|
|
opts = &FactoryOptions{}
|
2019-05-09 22:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cs, err := clientset.NewForConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-04-23 00:42:12 +00:00
|
|
|
resync := opts.Resync
|
|
|
|
if resync == 0 {
|
|
|
|
resync = 2 * time.Hour
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Namespace == "" {
|
|
|
|
informerFactory := informers.NewSharedInformerFactory(cs, resync)
|
|
|
|
return NewFactory(cs, informerFactory), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
informerFactory := informers.NewSharedInformerFactoryWithOptions(cs, resync, informers.WithNamespace(opts.Namespace))
|
2019-05-09 22:06:33 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-16 06:20:08 +00:00
|
|
|
func (c *Factory) Controllers() map[schema.GroupVersionKind]*generic.Controller {
|
|
|
|
return c.controllerManager.Controllers()
|
|
|
|
}
|
|
|
|
|
2019-05-09 22:06:33 +00:00
|
|
|
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)
|
|
|
|
}
|