| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- /*
- Copyright © The ESO Authors
- 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
- https://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 kubernetes implements a provider for Kubernetes secrets, allowing
- // External Secrets to read from and write to Kubernetes Secrets.
- package kubernetes
- import (
- "context"
- "errors"
- "fmt"
- authv1 "k8s.io/api/authorization/v1"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/client-go/kubernetes"
- typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
- kclient "sigs.k8s.io/controller-runtime/pkg/client"
- ctrlcfg "sigs.k8s.io/controller-runtime/pkg/client/config"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- // https://github.com/external-secrets/external-secrets/issues/644
- var _ esv1.SecretsClient = &Client{}
- var _ esv1.Provider = &Provider{}
- // KClient defines the interface for interacting with Kubernetes Secrets.
- type KClient interface {
- Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.Secret, error)
- List(ctx context.Context, opts metav1.ListOptions) (*v1.SecretList, error)
- Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
- Create(ctx context.Context, secret *v1.Secret, opts metav1.CreateOptions) (*v1.Secret, error)
- Update(ctx context.Context, secret *v1.Secret, opts metav1.UpdateOptions) (*v1.Secret, error)
- }
- // RClient defines the interface for performing self subject rules reviews.
- type RClient interface {
- Create(ctx context.Context, selfSubjectRulesReview *authv1.SelfSubjectRulesReview, opts metav1.CreateOptions) (*authv1.SelfSubjectRulesReview, error)
- }
- // AClient defines the interface for performing self subject access reviews.
- type AClient interface {
- Create(ctx context.Context, selfSubjectAccessReview *authv1.SelfSubjectAccessReview, opts metav1.CreateOptions) (*authv1.SelfSubjectAccessReview, error)
- }
- // Provider implements the SecretStore Provider interface for Kubernetes.
- type Provider struct{}
- // Client implements Secret Client interface
- // for Kubernetes.
- type Client struct {
- // ctrlClient is a controller-runtime client
- // with RBAC scope of the controller (privileged!)
- ctrlClient kclient.Client
- // ctrlClientset is a client-go CoreV1() client
- // with RBAC scope of the controller (privileged!)
- ctrlClientset typedcorev1.CoreV1Interface
- // userCoreV1 is a client-go CoreV1() interface
- // with user-defined scope, used for dynamic namespace resolution.
- userCoreV1 typedcorev1.CoreV1Interface
- // userSecretClient is a client-go CoreV1().Secrets() client
- // with user-defined scope.
- userSecretClient KClient
- // userReviewClient is a SelfSubjectRulesReview client with
- // user-defined scope.
- userReviewClient RClient
- // userAccessReviewClient is a SelfSubjectAccessReview client with
- // user-defined scope.
- userAccessReviewClient AClient
- // store is the Kubernetes Provider spec
- // which contains the configuration for this provider.
- store *esv1.KubernetesProvider
- storeKind string
- // namespace is the namespace of the
- // ExternalSecret referencing this provider.
- namespace string
- }
- // Capabilities returns the provider's supported capabilities (ReadWrite).
- func (p *Provider) Capabilities() esv1.SecretStoreCapabilities {
- return esv1.SecretStoreReadWrite
- }
- // NewClient constructs a Kubernetes Provider.
- func (p *Provider) NewClient(ctx context.Context, store esv1.GenericStore, kube kclient.Client, namespace string) (esv1.SecretsClient, error) {
- restCfg, err := ctrlcfg.GetConfig()
- if err != nil {
- return nil, err
- }
- clientset, err := kubernetes.NewForConfig(restCfg)
- if err != nil {
- return nil, err
- }
- return p.newClient(ctx, store, kube, clientset, namespace)
- }
- func (p *Provider) newClient(ctx context.Context, store esv1.GenericStore, ctrlClient kclient.Client, ctrlClientset kubernetes.Interface, namespace string) (esv1.SecretsClient, error) {
- storeSpec := store.GetSpec()
- if storeSpec == nil || storeSpec.Provider == nil || storeSpec.Provider.Kubernetes == nil {
- return nil, errors.New("no store type or wrong store type")
- }
- storeSpecKubernetes := storeSpec.Provider.Kubernetes
- client := &Client{
- ctrlClientset: ctrlClientset.CoreV1(),
- ctrlClient: ctrlClient,
- store: storeSpecKubernetes,
- namespace: namespace,
- storeKind: store.GetObjectKind().GroupVersionKind().Kind,
- }
- // allow SecretStore controller validation to pass
- // when using referent namespace.
- if client.storeKind == esv1.ClusterSecretStoreKind && client.namespace == "" && isReferentSpec(storeSpecKubernetes) {
- return client, nil
- }
- cfg, err := client.getAuth(ctx)
- if err != nil {
- return nil, fmt.Errorf("failed to prepare auth: %w", err)
- }
- userClientset, err := kubernetes.NewForConfig(cfg)
- if err != nil {
- return nil, fmt.Errorf("error configuring clientset: %w", err)
- }
- client.userCoreV1 = userClientset.CoreV1()
- client.userSecretClient = client.userCoreV1.Secrets(client.store.RemoteNamespace)
- client.userReviewClient = userClientset.AuthorizationV1().SelfSubjectRulesReviews()
- client.userAccessReviewClient = userClientset.AuthorizationV1().SelfSubjectAccessReviews()
- return client, nil
- }
- func (c *Client) secretsClientFor(namespace string) KClient {
- if c.userCoreV1 != nil && namespace != "" && namespace != c.store.RemoteNamespace {
- return c.userCoreV1.Secrets(namespace)
- }
- return c.userSecretClient
- }
- func isReferentSpec(prov *esv1.KubernetesProvider) bool {
- if prov.Auth == nil {
- return false
- }
- if prov.Auth.Cert != nil {
- if prov.Auth.Cert.ClientCert.Namespace == nil {
- return true
- }
- if prov.Auth.Cert.ClientKey.Namespace == nil {
- return true
- }
- }
- if prov.Auth.ServiceAccount != nil {
- if prov.Auth.ServiceAccount.Namespace == nil {
- return true
- }
- }
- if prov.Auth.Token != nil {
- if prov.Auth.Token.BearerToken.Namespace == nil {
- return true
- }
- }
- return false
- }
- // Close cleans up any resources used by the Kubernetes provider.
- func (p *Provider) Close(_ context.Context) error {
- return nil
- }
- // NewProvider creates a new Provider instance.
- func NewProvider() esv1.Provider {
- return &Provider{}
- }
- // ProviderSpec returns the provider specification for registration.
- func ProviderSpec() *esv1.SecretStoreProvider {
- return &esv1.SecretStoreProvider{
- Kubernetes: &esv1.KubernetesProvider{},
- }
- }
- // MaintenanceStatus returns the maintenance status of the provider.
- func MaintenanceStatus() esv1.MaintenanceStatus {
- return esv1.MaintenanceStatusMaintained
- }
|