Documentation ¶
Overview ¶
Package secret is a generated GoMock package.
Index ¶
- func GetMetadataName(name string) string
- func NewApplySpec(id, namespace string, labels, stringData map[string]string) *corev1.SecretApplyConfiguration
- func NewSpec(id, namespace string, labels, stringData map[string]string) *v1.Secret
- type Client
- func (c *Client) Apply(id string, labels, stringData map[string]string) error
- func (c *Client) Create(id string, labels, stringData map[string]string) error
- func (c *Client) Delete(id string) error
- func (c *Client) DeleteAll(selector string) error
- func (c *Client) Get(id string) (map[string]string, error)
- func (c *Client) List() (map[string]map[string]string, error)
- func (c *Client) Update(id string, labels, stringData map[string]string) error
- type Interface
- type MockInterface
- func (m *MockInterface) Apply(arg0 string, arg1, arg2 map[string]string) error
- func (m *MockInterface) Create(arg0 string, arg1, arg2 map[string]string) error
- func (m *MockInterface) Delete(arg0 string) error
- func (m *MockInterface) DeleteAll(arg0 string) error
- func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder
- func (m *MockInterface) Get(arg0 string) (map[string]string, error)
- func (m *MockInterface) List() (map[string]map[string]string, error)
- func (m *MockInterface) Update(arg0 string, arg1, arg2 map[string]string) error
- type MockInterfaceMockRecorder
- func (mr *MockInterfaceMockRecorder) Apply(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockInterfaceMockRecorder) Create(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockInterfaceMockRecorder) Delete(arg0 interface{}) *gomock.Call
- func (mr *MockInterfaceMockRecorder) DeleteAll(arg0 interface{}) *gomock.Call
- func (mr *MockInterfaceMockRecorder) Get(arg0 interface{}) *gomock.Call
- func (mr *MockInterfaceMockRecorder) List() *gomock.Call
- func (mr *MockInterfaceMockRecorder) Update(arg0, arg1, arg2 interface{}) *gomock.Call
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetMetadataName ¶
GetMetadataName returns secret metadata name
func NewApplySpec ¶ added in v0.8.1
func NewApplySpec(id, namespace string, labels, stringData map[string]string) *corev1.SecretApplyConfiguration
NewApplySpec is a method to return secret apply spec
Types ¶
type Client ¶
type Client struct { ClientSet *kubernetes.Clientset Log *zap.SugaredLogger Namespace string }
Client provide methods to manage secrets
type Interface ¶ added in v1.5.33
type Interface interface { Get(id string) (map[string]string, error) List() (map[string]map[string]string, error) Create(id string, labels, stringData map[string]string) error Apply(id string, labels, stringData map[string]string) error Update(id string, labels, stringData map[string]string) error Delete(id string) error DeleteAll(selector string) error }
type MockInterface ¶ added in v1.5.33
type MockInterface struct {
// contains filtered or unexported fields
}
MockInterface is a mock of Interface interface.
func NewMockInterface ¶ added in v1.5.33
func NewMockInterface(ctrl *gomock.Controller) *MockInterface
NewMockInterface creates a new mock instance.
func (*MockInterface) Apply ¶ added in v1.5.33
func (m *MockInterface) Apply(arg0 string, arg1, arg2 map[string]string) error
Apply mocks base method.
func (*MockInterface) Create ¶ added in v1.5.33
func (m *MockInterface) Create(arg0 string, arg1, arg2 map[string]string) error
Create mocks base method.
func (*MockInterface) Delete ¶ added in v1.5.33
func (m *MockInterface) Delete(arg0 string) error
Delete mocks base method.
func (*MockInterface) DeleteAll ¶ added in v1.5.33
func (m *MockInterface) DeleteAll(arg0 string) error
DeleteAll mocks base method.
func (*MockInterface) EXPECT ¶ added in v1.5.33
func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockInterface) Get ¶ added in v1.5.33
func (m *MockInterface) Get(arg0 string) (map[string]string, error)
Get mocks base method.
type MockInterfaceMockRecorder ¶ added in v1.5.33
type MockInterfaceMockRecorder struct {
// contains filtered or unexported fields
}
MockInterfaceMockRecorder is the mock recorder for MockInterface.
func (*MockInterfaceMockRecorder) Apply ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) Apply(arg0, arg1, arg2 interface{}) *gomock.Call
Apply indicates an expected call of Apply.
func (*MockInterfaceMockRecorder) Create ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) Create(arg0, arg1, arg2 interface{}) *gomock.Call
Create indicates an expected call of Create.
func (*MockInterfaceMockRecorder) Delete ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) Delete(arg0 interface{}) *gomock.Call
Delete indicates an expected call of Delete.
func (*MockInterfaceMockRecorder) DeleteAll ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) DeleteAll(arg0 interface{}) *gomock.Call
DeleteAll indicates an expected call of DeleteAll.
func (*MockInterfaceMockRecorder) Get ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) Get(arg0 interface{}) *gomock.Call
Get indicates an expected call of Get.
func (*MockInterfaceMockRecorder) List ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) List() *gomock.Call
List indicates an expected call of List.
func (*MockInterfaceMockRecorder) Update ¶ added in v1.5.33
func (mr *MockInterfaceMockRecorder) Update(arg0, arg1, arg2 interface{}) *gomock.Call
Update indicates an expected call of Update.