Documentation ¶
Overview ¶
This package has the automatically generated fake clientset.
Index ¶
- Variables
- type Clientset
- func (c *Clientset) ApplicationV1() applicationv1.ApplicationV1Interface
- func (c *Clientset) AuthV1() authv1.AuthV1Interface
- func (c *Clientset) BusinessV1() businessv1.BusinessV1Interface
- func (c *Clientset) Discovery() discovery.DiscoveryInterface
- func (c *Clientset) LogagentV1() logagentv1.LogagentV1Interface
- func (c *Clientset) MeshV1() meshv1.MeshV1Interface
- func (c *Clientset) MonitorV1() monitorv1.MonitorV1Interface
- func (c *Clientset) NotifyV1() notifyv1.NotifyV1Interface
- func (c *Clientset) PlatformV1() platformv1.PlatformV1Interface
- func (c *Clientset) RegistryV1() registryv1.RegistryV1Interface
- 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 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) ApplicationV1 ¶ added in v1.4.0
func (c *Clientset) ApplicationV1() applicationv1.ApplicationV1Interface
ApplicationV1 retrieves the ApplicationV1Client
func (*Clientset) AuthV1 ¶
func (c *Clientset) AuthV1() authv1.AuthV1Interface
AuthV1 retrieves the AuthV1Client
func (*Clientset) BusinessV1 ¶
func (c *Clientset) BusinessV1() businessv1.BusinessV1Interface
BusinessV1 retrieves the BusinessV1Client
func (*Clientset) Discovery ¶
func (c *Clientset) Discovery() discovery.DiscoveryInterface
func (*Clientset) LogagentV1 ¶ added in v1.3.1
func (c *Clientset) LogagentV1() logagentv1.LogagentV1Interface
LogagentV1 retrieves the LogagentV1Client
func (*Clientset) MeshV1 ¶ added in v1.6.0
func (c *Clientset) MeshV1() meshv1.MeshV1Interface
MeshV1 retrieves the MeshV1Client
func (*Clientset) MonitorV1 ¶
func (c *Clientset) MonitorV1() monitorv1.MonitorV1Interface
MonitorV1 retrieves the MonitorV1Client
func (*Clientset) NotifyV1 ¶
func (c *Clientset) NotifyV1() notifyv1.NotifyV1Interface
NotifyV1 retrieves the NotifyV1Client
func (*Clientset) PlatformV1 ¶
func (c *Clientset) PlatformV1() platformv1.PlatformV1Interface
PlatformV1 retrieves the PlatformV1Client
func (*Clientset) RegistryV1 ¶
func (c *Clientset) RegistryV1() registryv1.RegistryV1Interface
RegistryV1 retrieves the RegistryV1Client
func (*Clientset) Tracker ¶
func (c *Clientset) Tracker() testing.ObjectTracker