2015-05-17 03:29:18 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 serviceaccount
|
|
|
|
|
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-08-13 19:01:50 +00:00
|
|
|
client "k8s.io/kubernetes/pkg/client/unversioned"
|
2015-11-05 15:04:42 +00:00
|
|
|
"k8s.io/kubernetes/pkg/registry/generic"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/registry/secret"
|
|
|
|
secretetcd "k8s.io/kubernetes/pkg/registry/secret/etcd"
|
2015-12-24 21:54:40 +00:00
|
|
|
serviceaccountregistry "k8s.io/kubernetes/pkg/registry/serviceaccount"
|
2015-08-05 22:03:47 +00:00
|
|
|
serviceaccountetcd "k8s.io/kubernetes/pkg/registry/serviceaccount/etcd"
|
2015-12-24 21:54:40 +00:00
|
|
|
"k8s.io/kubernetes/pkg/serviceaccount"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/storage"
|
2015-05-17 03:29:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// clientGetter implements ServiceAccountTokenGetter using a client.Interface
|
|
|
|
type clientGetter struct {
|
|
|
|
client client.Interface
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewGetterFromClient returns a ServiceAccountTokenGetter that
|
|
|
|
// uses the specified client to retrieve service accounts and secrets.
|
|
|
|
// The client should NOT authenticate using a service account token
|
|
|
|
// the returned getter will be used to retrieve, or recursion will result.
|
2015-12-24 21:54:40 +00:00
|
|
|
func NewGetterFromClient(c client.Interface) serviceaccount.ServiceAccountTokenGetter {
|
2015-05-17 03:29:18 +00:00
|
|
|
return clientGetter{c}
|
|
|
|
}
|
|
|
|
func (c clientGetter) GetServiceAccount(namespace, name string) (*api.ServiceAccount, error) {
|
|
|
|
return c.client.ServiceAccounts(namespace).Get(name)
|
|
|
|
}
|
|
|
|
func (c clientGetter) GetSecret(namespace, name string) (*api.Secret, error) {
|
|
|
|
return c.client.Secrets(namespace).Get(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// registryGetter implements ServiceAccountTokenGetter using a service account and secret registry
|
|
|
|
type registryGetter struct {
|
2015-12-24 21:54:40 +00:00
|
|
|
serviceAccounts serviceaccountregistry.Registry
|
2015-05-17 03:29:18 +00:00
|
|
|
secrets secret.Registry
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewGetterFromRegistries returns a ServiceAccountTokenGetter that
|
|
|
|
// uses the specified registries to retrieve service accounts and secrets.
|
2015-12-24 21:54:40 +00:00
|
|
|
func NewGetterFromRegistries(serviceAccounts serviceaccountregistry.Registry, secrets secret.Registry) serviceaccount.ServiceAccountTokenGetter {
|
2015-05-17 03:29:18 +00:00
|
|
|
return ®istryGetter{serviceAccounts, secrets}
|
|
|
|
}
|
|
|
|
func (r *registryGetter) GetServiceAccount(namespace, name string) (*api.ServiceAccount, error) {
|
|
|
|
ctx := api.WithNamespace(api.NewContext(), namespace)
|
|
|
|
return r.serviceAccounts.GetServiceAccount(ctx, name)
|
|
|
|
}
|
|
|
|
func (r *registryGetter) GetSecret(namespace, name string) (*api.Secret, error) {
|
|
|
|
ctx := api.WithNamespace(api.NewContext(), namespace)
|
|
|
|
return r.secrets.GetSecret(ctx, name)
|
|
|
|
}
|
|
|
|
|
2015-07-24 11:09:49 +00:00
|
|
|
// NewGetterFromStorageInterface returns a ServiceAccountTokenGetter that
|
|
|
|
// uses the specified storage to retrieve service accounts and secrets.
|
2015-12-24 21:54:40 +00:00
|
|
|
func NewGetterFromStorageInterface(s storage.Interface) serviceaccount.ServiceAccountTokenGetter {
|
2015-05-17 03:29:18 +00:00
|
|
|
return NewGetterFromRegistries(
|
2015-12-24 21:54:40 +00:00
|
|
|
serviceaccountregistry.NewRegistry(serviceaccountetcd.NewREST(s, generic.UndecoratedStorage)),
|
2015-11-05 15:04:42 +00:00
|
|
|
secret.NewRegistry(secretetcd.NewREST(s, generic.UndecoratedStorage)),
|
2015-05-17 03:29:18 +00:00
|
|
|
)
|
|
|
|
}
|