Documentation ¶
Overview ¶
This package has the automatically generated fake clientset.
Index ¶
- Variables
- type Clientset
- func (c *Clientset) AnalyticsV1alpha1() analyticsv1alpha1.AnalyticsV1alpha1Interface
- func (c *Clientset) AppsV1() appsv1.AppsV1Interface
- func (c *Clientset) BackupV1() backupv1.BackupV1Interface
- func (c *Clientset) DatabaseV1() databasev1.DatabaseV1Interface
- func (c *Clientset) DatabaseV2alpha1() databasev2alpha1.DatabaseV2alpha1Interface
- func (c *Clientset) Discovery() discovery.DiscoveryInterface
- func (c *Clientset) MlV1alpha1() mlv1alpha1.MlV1alpha1Interface
- func (c *Clientset) MlV1beta1() mlv1beta1.MlV1beta1Interface
- func (c *Clientset) NetworkingV1alpha1() networkingv1alpha1.NetworkingV1alpha1Interface
- func (c *Clientset) PlatformV1alpha1() platformv1alpha1.PlatformV1alpha1Interface
- func (c *Clientset) ReplicationV1() replicationv1.ReplicationV1Interface
- func (c *Clientset) ReplicationV2alpha1() replicationv2alpha1.ReplicationV2alpha1Interface
- func (c *Clientset) SchedulerV1alpha1() schedulerv1alpha1.SchedulerV1alpha1Interface
- func (c *Clientset) SchedulerV1beta1() schedulerv1beta1.SchedulerV1beta1Interface
- func (c *Clientset) StorageV1alpha() storagev1alpha.StorageV1alphaInterface
- func (c *Clientset) Tracker() testing.ObjectTracker
Constants ¶
This section is empty.
Variables ¶
var AddToScheme = localSchemeBuilder.AddToScheme
AddToScheme adds all types of this clientset into the given scheme. This allows composition of clientsets, like in:
import ( "k8s.io/client-go/kubernetes" clientsetscheme "k8s.io/client-go/kubernetes/scheme" aggregatorclientsetscheme "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset/scheme" ) kclientset, _ := kubernetes.NewForConfig(c) _ = aggregatorclientsetscheme.AddToScheme(clientsetscheme.Scheme)
After this, RawExtensions in Kubernetes types will serialize kube-aggregator types correctly.
Functions ¶
This section is empty.
Types ¶
type Clientset ¶
Clientset implements clientset.Interface. Meant to be embedded into a struct to get a default implementation. This makes faking out just the method you want to test easier.
func NewSimpleClientset ¶
NewSimpleClientset returns a clientset that will respond with the provided objects. It's backed by a very simple object tracker that processes creates, updates and deletions as-is, without applying any field management, validations and/or defaults. It shouldn't be considered a replacement for a real clientset and is mostly useful in simple unit tests.
DEPRECATED: NewClientset replaces this with support for field management, which significantly improves server side apply testing. NewClientset is only available when apply configurations are generated (e.g. via --with-applyconfig).
func (*Clientset) AnalyticsV1alpha1 ¶
func (c *Clientset) AnalyticsV1alpha1() analyticsv1alpha1.AnalyticsV1alpha1Interface
AnalyticsV1alpha1 retrieves the AnalyticsV1alpha1Client
func (*Clientset) AppsV1 ¶
func (c *Clientset) AppsV1() appsv1.AppsV1Interface
AppsV1 retrieves the AppsV1Client
func (*Clientset) BackupV1 ¶
func (c *Clientset) BackupV1() backupv1.BackupV1Interface
BackupV1 retrieves the BackupV1Client
func (*Clientset) DatabaseV1 ¶
func (c *Clientset) DatabaseV1() databasev1.DatabaseV1Interface
DatabaseV1 retrieves the DatabaseV1Client
func (*Clientset) DatabaseV2alpha1 ¶
func (c *Clientset) DatabaseV2alpha1() databasev2alpha1.DatabaseV2alpha1Interface
DatabaseV2alpha1 retrieves the DatabaseV2alpha1Client
func (*Clientset) Discovery ¶
func (c *Clientset) Discovery() discovery.DiscoveryInterface
func (*Clientset) MlV1alpha1 ¶
func (c *Clientset) MlV1alpha1() mlv1alpha1.MlV1alpha1Interface
MlV1alpha1 retrieves the MlV1alpha1Client
func (*Clientset) MlV1beta1 ¶
func (c *Clientset) MlV1beta1() mlv1beta1.MlV1beta1Interface
MlV1beta1 retrieves the MlV1beta1Client
func (*Clientset) NetworkingV1alpha1 ¶
func (c *Clientset) NetworkingV1alpha1() networkingv1alpha1.NetworkingV1alpha1Interface
NetworkingV1alpha1 retrieves the NetworkingV1alpha1Client
func (*Clientset) PlatformV1alpha1 ¶
func (c *Clientset) PlatformV1alpha1() platformv1alpha1.PlatformV1alpha1Interface
PlatformV1alpha1 retrieves the PlatformV1alpha1Client
func (*Clientset) ReplicationV1 ¶
func (c *Clientset) ReplicationV1() replicationv1.ReplicationV1Interface
ReplicationV1 retrieves the ReplicationV1Client
func (*Clientset) ReplicationV2alpha1 ¶
func (c *Clientset) ReplicationV2alpha1() replicationv2alpha1.ReplicationV2alpha1Interface
ReplicationV2alpha1 retrieves the ReplicationV2alpha1Client
func (*Clientset) SchedulerV1alpha1 ¶
func (c *Clientset) SchedulerV1alpha1() schedulerv1alpha1.SchedulerV1alpha1Interface
SchedulerV1alpha1 retrieves the SchedulerV1alpha1Client
func (*Clientset) SchedulerV1beta1 ¶
func (c *Clientset) SchedulerV1beta1() schedulerv1beta1.SchedulerV1beta1Interface
SchedulerV1beta1 retrieves the SchedulerV1beta1Client
func (*Clientset) StorageV1alpha ¶
func (c *Clientset) StorageV1alpha() storagev1alpha.StorageV1alphaInterface
StorageV1alpha retrieves the StorageV1alphaClient
func (*Clientset) Tracker ¶
func (c *Clientset) Tracker() testing.ObjectTracker