forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterface.go
More file actions
36 lines (28 loc) · 1.51 KB
/
interface.go
File metadata and controls
36 lines (28 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package manager
import (
"context"
corev1 "k8s.io/api/core/v1"
secretsutils "github.com/gardener/gardener/pkg/utils/secrets"
)
// Reader is part of the SecretsManager interface and allows retrieving secrets from a SecretsManager.
type Reader interface {
// Get returns the secret object for the secret with the given name. By default, the bundle secret will be returned.
// If there is no bundle secret then it falls back to the current secret. Note that only those secrets are known
// which were detected or generated by prior Generate calls.
Get(string, ...GetOption) (*corev1.Secret, bool)
}
// Interface describes the methods for managing secrets.
type Interface interface {
// Generate generates a secret based on the provided configuration. If the secret for the provided configuration
// already exists then it is returned with re-generation. The function also automatically rotates/re-generates the
// secret only if necessary (e.g., when the config or the signing CA changes).
Generate(context.Context, secretsutils.ConfigInterface, ...GenerateOption) (*corev1.Secret, error)
Reader
// Cleanup deletes no longer required secrets. No longer required secrets are those still existing in the system
// which weren't detected by prior Generate calls. Consequently, only call Cleanup after you have executed Generate
// calls for all desired secrets.
Cleanup(context.Context) error
}