Documentation
¶
Overview ¶
This package has the automatically generated fake clientset.
Index ¶
- Variables
- type Clientset
- func (c *Clientset) ApisV1alpha1() apisv1alpha1.ApisV1alpha1Interface
- func (c *Clientset) ApisV1alpha2() apisv1alpha2.ApisV1alpha2Interface
- func (c *Clientset) CacheV1alpha1() cachev1alpha1.CacheV1alpha1Interface
- func (c *Clientset) CoreV1alpha1() corev1alpha1.CoreV1alpha1Interface
- func (c *Clientset) Discovery() discovery.DiscoveryInterface
- func (c *Clientset) IsWatchListSemanticsUnSupported() bool
- func (c *Clientset) MigrationV1alpha1() migrationv1alpha1.MigrationV1alpha1Interface
- func (c *Clientset) TenancyV1alpha1() tenancyv1alpha1.TenancyV1alpha1Interface
- func (c *Clientset) TopologyV1alpha1() topologyv1alpha1.TopologyV1alpha1Interface
- 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 NewClientset ¶
NewClientset 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 validations and/or defaults. It shouldn't be considered a replacement for a real clientset and is mostly useful in simple unit tests.
Compared to NewSimpleClientset, the Clientset returned here supports field tracking and thus server-side apply. Beware though that support in that for CRDs is missing (https://github.com/kubernetes/kubernetes/issues/126850).
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.
func (*Clientset) ApisV1alpha1 ¶
func (c *Clientset) ApisV1alpha1() apisv1alpha1.ApisV1alpha1Interface
ApisV1alpha1 retrieves the ApisV1alpha1Client
func (*Clientset) ApisV1alpha2 ¶
func (c *Clientset) ApisV1alpha2() apisv1alpha2.ApisV1alpha2Interface
ApisV1alpha2 retrieves the ApisV1alpha2Client
func (*Clientset) CacheV1alpha1 ¶
func (c *Clientset) CacheV1alpha1() cachev1alpha1.CacheV1alpha1Interface
CacheV1alpha1 retrieves the CacheV1alpha1Client
func (*Clientset) CoreV1alpha1 ¶
func (c *Clientset) CoreV1alpha1() corev1alpha1.CoreV1alpha1Interface
CoreV1alpha1 retrieves the CoreV1alpha1Client
func (*Clientset) Discovery ¶
func (c *Clientset) Discovery() discovery.DiscoveryInterface
func (*Clientset) IsWatchListSemanticsUnSupported ¶ added in v0.31.0
IsWatchListSemanticsUnSupported informs the reflector that this client doesn't support WatchList semantics.
This is a synthetic method whose sole purpose is to satisfy the optional interface check performed by the reflector. Returning true signals that WatchList can NOT be used. No additional logic is implemented here.
func (*Clientset) MigrationV1alpha1 ¶ added in v0.32.0
func (c *Clientset) MigrationV1alpha1() migrationv1alpha1.MigrationV1alpha1Interface
MigrationV1alpha1 retrieves the MigrationV1alpha1Client
func (*Clientset) TenancyV1alpha1 ¶
func (c *Clientset) TenancyV1alpha1() tenancyv1alpha1.TenancyV1alpha1Interface
TenancyV1alpha1 retrieves the TenancyV1alpha1Client
func (*Clientset) TopologyV1alpha1 ¶
func (c *Clientset) TopologyV1alpha1() topologyv1alpha1.TopologyV1alpha1Interface
TopologyV1alpha1 retrieves the TopologyV1alpha1Client
func (*Clientset) Tracker ¶
func (c *Clientset) Tracker() testing.ObjectTracker