| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package v1beta1
- import (
- "context"
- "sigs.k8s.io/controller-runtime/pkg/client"
- )
- // +kubebuilder:object:root=false
- // +kubebuilder:object:generate:false
- // +k8s:deepcopy-gen:interfaces=nil
- // +k8s:deepcopy-gen=nil
- // Provider is a common interface for interacting with secret backends.
- type Provider interface {
- // NewClient constructs a SecretsManager Provider
- NewClient(ctx context.Context, store GenericStore, kube client.Client, namespace string) (SecretsClient, error)
- // ValidateStore checks if the provided store is valid
- ValidateStore(store GenericStore) error
- }
- // +kubebuilder:object:root=false
- // +kubebuilder:object:generate:false
- // +k8s:deepcopy-gen:interfaces=nil
- // +k8s:deepcopy-gen=nil
- // SecretsClient provides access to secrets.
- type SecretsClient interface {
- // GetSecret returns a single secret from the provider
- // if GetSecret returns an error with type NoSecretError
- // then the secret entry will be deleted depending on the deletionPolicy.
- GetSecret(ctx context.Context, ref ExternalSecretDataRemoteRef) ([]byte, error)
- // Validate checks if the client is configured correctly
- // and is able to retrieve secrets from the provider
- Validate() error
- // GetSecretMap returns multiple k/v pairs from the provider
- GetSecretMap(ctx context.Context, ref ExternalSecretDataRemoteRef) (map[string][]byte, error)
- // GetAllSecrets returns multiple k/v pairs from the provider
- GetAllSecrets(ctx context.Context, ref ExternalSecretFind) (map[string][]byte, error)
- Close(ctx context.Context) error
- }
- var NoSecretErr = NoSecretError{}
- // NoSecretError shall be returned when a GetSecret can not find the
- // desired secret. This is used for deletionPolicy.
- type NoSecretError struct{}
- func (NoSecretError) Error() string {
- return "Secret does not exist"
- }
|