400 lines
13 KiB
Go
400 lines
13 KiB
Go
/*
|
|
Copyright 2017 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 kubernetes
|
|
|
|
import (
|
|
"github.com/golang/glog"
|
|
discovery "k8s.io/client-go/discovery"
|
|
v1beta1apps "k8s.io/client-go/kubernetes/typed/apps/v1beta1"
|
|
v1beta1authentication "k8s.io/client-go/kubernetes/typed/authentication/v1beta1"
|
|
v1beta1authorization "k8s.io/client-go/kubernetes/typed/authorization/v1beta1"
|
|
v1autoscaling "k8s.io/client-go/kubernetes/typed/autoscaling/v1"
|
|
v1batch "k8s.io/client-go/kubernetes/typed/batch/v1"
|
|
v2alpha1batch "k8s.io/client-go/kubernetes/typed/batch/v2alpha1"
|
|
v1alpha1certificates "k8s.io/client-go/kubernetes/typed/certificates/v1alpha1"
|
|
v1core "k8s.io/client-go/kubernetes/typed/core/v1"
|
|
v1beta1extensions "k8s.io/client-go/kubernetes/typed/extensions/v1beta1"
|
|
v1beta1policy "k8s.io/client-go/kubernetes/typed/policy/v1beta1"
|
|
v1alpha1rbac "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1"
|
|
v1beta1storage "k8s.io/client-go/kubernetes/typed/storage/v1beta1"
|
|
"k8s.io/client-go/pkg/util/flowcontrol"
|
|
_ "k8s.io/client-go/plugin/pkg/client/auth"
|
|
rest "k8s.io/client-go/rest"
|
|
)
|
|
|
|
type Interface interface {
|
|
Discovery() discovery.DiscoveryInterface
|
|
CoreV1() v1core.CoreV1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Core() v1core.CoreV1Interface
|
|
AppsV1beta1() v1beta1apps.AppsV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Apps() v1beta1apps.AppsV1beta1Interface
|
|
AuthenticationV1beta1() v1beta1authentication.AuthenticationV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Authentication() v1beta1authentication.AuthenticationV1beta1Interface
|
|
AuthorizationV1beta1() v1beta1authorization.AuthorizationV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Authorization() v1beta1authorization.AuthorizationV1beta1Interface
|
|
AutoscalingV1() v1autoscaling.AutoscalingV1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Autoscaling() v1autoscaling.AutoscalingV1Interface
|
|
BatchV1() v1batch.BatchV1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Batch() v1batch.BatchV1Interface
|
|
BatchV2alpha1() v2alpha1batch.BatchV2alpha1Interface
|
|
|
|
CertificatesV1alpha1() v1alpha1certificates.CertificatesV1alpha1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Certificates() v1alpha1certificates.CertificatesV1alpha1Interface
|
|
ExtensionsV1beta1() v1beta1extensions.ExtensionsV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Extensions() v1beta1extensions.ExtensionsV1beta1Interface
|
|
PolicyV1beta1() v1beta1policy.PolicyV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Policy() v1beta1policy.PolicyV1beta1Interface
|
|
RbacV1alpha1() v1alpha1rbac.RbacV1alpha1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Rbac() v1alpha1rbac.RbacV1alpha1Interface
|
|
StorageV1beta1() v1beta1storage.StorageV1beta1Interface
|
|
// Deprecated: please explicitly pick a version if possible.
|
|
Storage() v1beta1storage.StorageV1beta1Interface
|
|
}
|
|
|
|
// Clientset contains the clients for groups. Each group has exactly one
|
|
// version included in a Clientset.
|
|
type Clientset struct {
|
|
*discovery.DiscoveryClient
|
|
*v1core.CoreV1Client
|
|
*v1beta1apps.AppsV1beta1Client
|
|
*v1beta1authentication.AuthenticationV1beta1Client
|
|
*v1beta1authorization.AuthorizationV1beta1Client
|
|
*v1autoscaling.AutoscalingV1Client
|
|
*v1batch.BatchV1Client
|
|
*v2alpha1batch.BatchV2alpha1Client
|
|
*v1alpha1certificates.CertificatesV1alpha1Client
|
|
*v1beta1extensions.ExtensionsV1beta1Client
|
|
*v1beta1policy.PolicyV1beta1Client
|
|
*v1alpha1rbac.RbacV1alpha1Client
|
|
*v1beta1storage.StorageV1beta1Client
|
|
}
|
|
|
|
// CoreV1 retrieves the CoreV1Client
|
|
func (c *Clientset) CoreV1() v1core.CoreV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.CoreV1Client
|
|
}
|
|
|
|
// Deprecated: Core retrieves the default version of CoreClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Core() v1core.CoreV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.CoreV1Client
|
|
}
|
|
|
|
// AppsV1beta1 retrieves the AppsV1beta1Client
|
|
func (c *Clientset) AppsV1beta1() v1beta1apps.AppsV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AppsV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Apps retrieves the default version of AppsClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Apps() v1beta1apps.AppsV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AppsV1beta1Client
|
|
}
|
|
|
|
// AuthenticationV1beta1 retrieves the AuthenticationV1beta1Client
|
|
func (c *Clientset) AuthenticationV1beta1() v1beta1authentication.AuthenticationV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AuthenticationV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Authentication retrieves the default version of AuthenticationClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Authentication() v1beta1authentication.AuthenticationV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AuthenticationV1beta1Client
|
|
}
|
|
|
|
// AuthorizationV1beta1 retrieves the AuthorizationV1beta1Client
|
|
func (c *Clientset) AuthorizationV1beta1() v1beta1authorization.AuthorizationV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AuthorizationV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Authorization retrieves the default version of AuthorizationClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Authorization() v1beta1authorization.AuthorizationV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AuthorizationV1beta1Client
|
|
}
|
|
|
|
// AutoscalingV1 retrieves the AutoscalingV1Client
|
|
func (c *Clientset) AutoscalingV1() v1autoscaling.AutoscalingV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AutoscalingV1Client
|
|
}
|
|
|
|
// Deprecated: Autoscaling retrieves the default version of AutoscalingClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Autoscaling() v1autoscaling.AutoscalingV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.AutoscalingV1Client
|
|
}
|
|
|
|
// BatchV1 retrieves the BatchV1Client
|
|
func (c *Clientset) BatchV1() v1batch.BatchV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.BatchV1Client
|
|
}
|
|
|
|
// Deprecated: Batch retrieves the default version of BatchClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Batch() v1batch.BatchV1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.BatchV1Client
|
|
}
|
|
|
|
// BatchV2alpha1 retrieves the BatchV2alpha1Client
|
|
func (c *Clientset) BatchV2alpha1() v2alpha1batch.BatchV2alpha1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.BatchV2alpha1Client
|
|
}
|
|
|
|
// CertificatesV1alpha1 retrieves the CertificatesV1alpha1Client
|
|
func (c *Clientset) CertificatesV1alpha1() v1alpha1certificates.CertificatesV1alpha1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.CertificatesV1alpha1Client
|
|
}
|
|
|
|
// Deprecated: Certificates retrieves the default version of CertificatesClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Certificates() v1alpha1certificates.CertificatesV1alpha1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.CertificatesV1alpha1Client
|
|
}
|
|
|
|
// ExtensionsV1beta1 retrieves the ExtensionsV1beta1Client
|
|
func (c *Clientset) ExtensionsV1beta1() v1beta1extensions.ExtensionsV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.ExtensionsV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Extensions retrieves the default version of ExtensionsClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Extensions() v1beta1extensions.ExtensionsV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.ExtensionsV1beta1Client
|
|
}
|
|
|
|
// PolicyV1beta1 retrieves the PolicyV1beta1Client
|
|
func (c *Clientset) PolicyV1beta1() v1beta1policy.PolicyV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.PolicyV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Policy retrieves the default version of PolicyClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Policy() v1beta1policy.PolicyV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.PolicyV1beta1Client
|
|
}
|
|
|
|
// RbacV1alpha1 retrieves the RbacV1alpha1Client
|
|
func (c *Clientset) RbacV1alpha1() v1alpha1rbac.RbacV1alpha1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.RbacV1alpha1Client
|
|
}
|
|
|
|
// Deprecated: Rbac retrieves the default version of RbacClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Rbac() v1alpha1rbac.RbacV1alpha1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.RbacV1alpha1Client
|
|
}
|
|
|
|
// StorageV1beta1 retrieves the StorageV1beta1Client
|
|
func (c *Clientset) StorageV1beta1() v1beta1storage.StorageV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.StorageV1beta1Client
|
|
}
|
|
|
|
// Deprecated: Storage retrieves the default version of StorageClient.
|
|
// Please explicitly pick a version.
|
|
func (c *Clientset) Storage() v1beta1storage.StorageV1beta1Interface {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return c.StorageV1beta1Client
|
|
}
|
|
|
|
// Discovery retrieves the DiscoveryClient
|
|
func (c *Clientset) Discovery() discovery.DiscoveryInterface {
|
|
return c.DiscoveryClient
|
|
}
|
|
|
|
// NewForConfig creates a new Clientset for the given config.
|
|
func NewForConfig(c *rest.Config) (*Clientset, error) {
|
|
configShallowCopy := *c
|
|
if configShallowCopy.RateLimiter == nil && configShallowCopy.QPS > 0 {
|
|
configShallowCopy.RateLimiter = flowcontrol.NewTokenBucketRateLimiter(configShallowCopy.QPS, configShallowCopy.Burst)
|
|
}
|
|
var clientset Clientset
|
|
var err error
|
|
clientset.CoreV1Client, err = v1core.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.AppsV1beta1Client, err = v1beta1apps.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.AuthenticationV1beta1Client, err = v1beta1authentication.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.AuthorizationV1beta1Client, err = v1beta1authorization.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.AutoscalingV1Client, err = v1autoscaling.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.BatchV1Client, err = v1batch.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.BatchV2alpha1Client, err = v2alpha1batch.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.CertificatesV1alpha1Client, err = v1alpha1certificates.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.ExtensionsV1beta1Client, err = v1beta1extensions.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.PolicyV1beta1Client, err = v1beta1policy.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.RbacV1alpha1Client, err = v1alpha1rbac.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clientset.StorageV1beta1Client, err = v1beta1storage.NewForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
clientset.DiscoveryClient, err = discovery.NewDiscoveryClientForConfig(&configShallowCopy)
|
|
if err != nil {
|
|
glog.Errorf("failed to create the DiscoveryClient: %v", err)
|
|
return nil, err
|
|
}
|
|
return &clientset, nil
|
|
}
|
|
|
|
// NewForConfigOrDie creates a new Clientset for the given config and
|
|
// panics if there is an error in the config.
|
|
func NewForConfigOrDie(c *rest.Config) *Clientset {
|
|
var clientset Clientset
|
|
clientset.CoreV1Client = v1core.NewForConfigOrDie(c)
|
|
clientset.AppsV1beta1Client = v1beta1apps.NewForConfigOrDie(c)
|
|
clientset.AuthenticationV1beta1Client = v1beta1authentication.NewForConfigOrDie(c)
|
|
clientset.AuthorizationV1beta1Client = v1beta1authorization.NewForConfigOrDie(c)
|
|
clientset.AutoscalingV1Client = v1autoscaling.NewForConfigOrDie(c)
|
|
clientset.BatchV1Client = v1batch.NewForConfigOrDie(c)
|
|
clientset.BatchV2alpha1Client = v2alpha1batch.NewForConfigOrDie(c)
|
|
clientset.CertificatesV1alpha1Client = v1alpha1certificates.NewForConfigOrDie(c)
|
|
clientset.ExtensionsV1beta1Client = v1beta1extensions.NewForConfigOrDie(c)
|
|
clientset.PolicyV1beta1Client = v1beta1policy.NewForConfigOrDie(c)
|
|
clientset.RbacV1alpha1Client = v1alpha1rbac.NewForConfigOrDie(c)
|
|
clientset.StorageV1beta1Client = v1beta1storage.NewForConfigOrDie(c)
|
|
|
|
clientset.DiscoveryClient = discovery.NewDiscoveryClientForConfigOrDie(c)
|
|
return &clientset
|
|
}
|
|
|
|
// New creates a new Clientset for the given RESTClient.
|
|
func New(c rest.Interface) *Clientset {
|
|
var clientset Clientset
|
|
clientset.CoreV1Client = v1core.New(c)
|
|
clientset.AppsV1beta1Client = v1beta1apps.New(c)
|
|
clientset.AuthenticationV1beta1Client = v1beta1authentication.New(c)
|
|
clientset.AuthorizationV1beta1Client = v1beta1authorization.New(c)
|
|
clientset.AutoscalingV1Client = v1autoscaling.New(c)
|
|
clientset.BatchV1Client = v1batch.New(c)
|
|
clientset.BatchV2alpha1Client = v2alpha1batch.New(c)
|
|
clientset.CertificatesV1alpha1Client = v1alpha1certificates.New(c)
|
|
clientset.ExtensionsV1beta1Client = v1beta1extensions.New(c)
|
|
clientset.PolicyV1beta1Client = v1beta1policy.New(c)
|
|
clientset.RbacV1alpha1Client = v1alpha1rbac.New(c)
|
|
clientset.StorageV1beta1Client = v1beta1storage.New(c)
|
|
|
|
clientset.DiscoveryClient = discovery.NewDiscoveryClient(c)
|
|
return &clientset
|
|
}
|