Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface {
Get(ns, name string, options ...meta.GetOptions) (_ *core.Secret, exists bool, _ error)
}
Client provides an interface to secrets.
type DefaultClient ¶
type DefaultClient struct {
core_type.SecretsGetter
}
DefaultClient implementation of Client operates on a real kubernetes API.
func NewDefaultClient ¶
func NewDefaultClient(getter core_type.SecretsGetter) *DefaultClient
NewDefaultClient returns an initialized DefaultClient.
func (*DefaultClient) Get ¶
func (c *DefaultClient) Get(ns, name string, options ...meta.GetOptions) (_ *core.Secret, exists bool, _ error)
Get returns the secret object if found, reports that the object does not exist, or returns an error.
A single GetOptions value can be passed as the final argument to customize the query.
It implements Client.
Click to show internal directories.
Click to hide internal directories.