Documentation ¶
Index ¶
- func FromDockhandSecretHandlerToHandler(sync DockhandSecretHandler) generic.Handler
- func FromDockhandSecretsProfileHandlerToHandler(sync DockhandSecretsProfileHandler) generic.Handler
- func UpdateDockhandSecretDeepCopyOnChange(client DockhandSecretClient, obj *v1alpha1.DockhandSecret, ...) (*v1alpha1.DockhandSecret, error)
- func UpdateDockhandSecretsProfileDeepCopyOnChange(client DockhandSecretsProfileClient, obj *v1alpha1.DockhandSecretsProfile, ...) (*v1alpha1.DockhandSecretsProfile, error)
- type DockhandSecretCache
- type DockhandSecretClient
- type DockhandSecretController
- type DockhandSecretHandler
- type DockhandSecretIndexer
- type DockhandSecretsProfileCache
- type DockhandSecretsProfileClient
- type DockhandSecretsProfileController
- type DockhandSecretsProfileHandler
- type DockhandSecretsProfileIndexer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FromDockhandSecretHandlerToHandler ¶
func FromDockhandSecretHandlerToHandler(sync DockhandSecretHandler) generic.Handler
func FromDockhandSecretsProfileHandlerToHandler ¶
func FromDockhandSecretsProfileHandlerToHandler(sync DockhandSecretsProfileHandler) generic.Handler
func UpdateDockhandSecretDeepCopyOnChange ¶
func UpdateDockhandSecretDeepCopyOnChange(client DockhandSecretClient, obj *v1alpha1.DockhandSecret, handler func(obj *v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error)) (*v1alpha1.DockhandSecret, error)
func UpdateDockhandSecretsProfileDeepCopyOnChange ¶
func UpdateDockhandSecretsProfileDeepCopyOnChange(client DockhandSecretsProfileClient, obj *v1alpha1.DockhandSecretsProfile, handler func(obj *v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error)) (*v1alpha1.DockhandSecretsProfile, error)
Types ¶
type DockhandSecretCache ¶
type DockhandSecretCache interface { Get(namespace, name string) (*v1alpha1.DockhandSecret, error) List(namespace string, selector labels.Selector) ([]*v1alpha1.DockhandSecret, error) AddIndexer(indexName string, indexer DockhandSecretIndexer) GetByIndex(indexName, key string) ([]*v1alpha1.DockhandSecret, error) }
type DockhandSecretClient ¶
type DockhandSecretClient interface { Create(*v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error) Update(*v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error) Delete(namespace, name string, options *metav1.DeleteOptions) error Get(namespace, name string, options metav1.GetOptions) (*v1alpha1.DockhandSecret, error) List(namespace string, opts metav1.ListOptions) (*v1alpha1.DockhandSecretList, error) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error) Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.DockhandSecret, err error) }
type DockhandSecretController ¶
type DockhandSecretController interface { generic.ControllerMeta DockhandSecretClient OnChange(ctx context.Context, name string, sync DockhandSecretHandler) OnRemove(ctx context.Context, name string, sync DockhandSecretHandler) Enqueue(namespace, name string) EnqueueAfter(namespace, name string, duration time.Duration) Cache() DockhandSecretCache }
func NewDockhandSecretController ¶
func NewDockhandSecretController(gvk schema.GroupVersionKind, resource string, namespaced bool, controller controller.SharedControllerFactory) DockhandSecretController
type DockhandSecretHandler ¶
type DockhandSecretHandler func(string, *v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error)
type DockhandSecretIndexer ¶
type DockhandSecretIndexer func(obj *v1alpha1.DockhandSecret) ([]string, error)
type DockhandSecretsProfileCache ¶
type DockhandSecretsProfileCache interface { Get(namespace, name string) (*v1alpha1.DockhandSecretsProfile, error) List(namespace string, selector labels.Selector) ([]*v1alpha1.DockhandSecretsProfile, error) AddIndexer(indexName string, indexer DockhandSecretsProfileIndexer) GetByIndex(indexName, key string) ([]*v1alpha1.DockhandSecretsProfile, error) }
type DockhandSecretsProfileClient ¶
type DockhandSecretsProfileClient interface { Create(*v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error) Update(*v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error) Delete(namespace, name string, options *metav1.DeleteOptions) error Get(namespace, name string, options metav1.GetOptions) (*v1alpha1.DockhandSecretsProfile, error) List(namespace string, opts metav1.ListOptions) (*v1alpha1.DockhandSecretsProfileList, error) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error) Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.DockhandSecretsProfile, err error) }
type DockhandSecretsProfileController ¶
type DockhandSecretsProfileController interface { generic.ControllerMeta DockhandSecretsProfileClient OnChange(ctx context.Context, name string, sync DockhandSecretsProfileHandler) OnRemove(ctx context.Context, name string, sync DockhandSecretsProfileHandler) Enqueue(namespace, name string) EnqueueAfter(namespace, name string, duration time.Duration) Cache() DockhandSecretsProfileCache }
func NewDockhandSecretsProfileController ¶
func NewDockhandSecretsProfileController(gvk schema.GroupVersionKind, resource string, namespaced bool, controller controller.SharedControllerFactory) DockhandSecretsProfileController
type DockhandSecretsProfileHandler ¶
type DockhandSecretsProfileHandler func(string, *v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error)
type DockhandSecretsProfileIndexer ¶
type DockhandSecretsProfileIndexer func(obj *v1alpha1.DockhandSecretsProfile) ([]string, error)
type Interface ¶
type Interface interface { DockhandSecret() DockhandSecretController DockhandSecretsProfile() DockhandSecretsProfileController }
func New ¶
func New(controllerFactory controller.SharedControllerFactory) Interface
Click to show internal directories.
Click to hide internal directories.