Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountPool ¶
type AccountPool interface { Credentials(hyperscalerType Type, tenantName string) (Credentials, error) MarkSecretAsDirty(hyperscalerType Type, tenantName string) error IsSecretUsed(hyperscalerType Type, tenantName string) (bool, error) IsSecretDirty(hyperscalerType Type, tenantName string) (bool, error) IsSecretInternal(hyperscalerType Type, tenantName string) (bool, error) }
func NewAccountPool ¶
func NewAccountPool(secretsClient corev1.SecretInterface, shootsClient gardener_apis.ShootInterface) AccountPool
type AccountProvider ¶
type AccountProvider interface { GardenerCredentials(hyperscalerType Type, tenantName string) (Credentials, error) MarkUnusedGardenerSecretAsDirty(hyperscalerType Type, tenantName string) error }
func NewAccountProvider ¶
func NewAccountProvider(gardenerPool AccountPool, sharedGardenerPool SharedPool) AccountProvider
type Credentials ¶
type SharedAccountPool ¶
type SharedAccountPool struct {
// contains filtered or unexported fields
}
func NewSharedGardenerAccountPool ¶
func NewSharedGardenerAccountPool(secretsClient corev1.SecretInterface, shootsClient gardener_apis.ShootInterface) *SharedAccountPool
func (*SharedAccountPool) SharedCredentials ¶
func (sp *SharedAccountPool) SharedCredentials(hyperscalerType Type) (Credentials, error)
type SharedPool ¶
type SharedPool interface {
} Click to show internal directories.
Click to hide internal directories.