2020-09-16 14:19:51 +00:00
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2020-07-23 15:05:21 +00:00
package apiserver
import (
2020-07-31 16:08:07 +00:00
"context"
2020-07-23 15:05:21 +00:00
"fmt"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/runtime/serializer"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apiserver/pkg/registry/rest"
genericapiserver "k8s.io/apiserver/pkg/server"
"k8s.io/client-go/pkg/version"
2020-10-30 14:34:43 +00:00
loginapi "go.pinniped.dev/generated/1.19/apis/concierge/login"
loginv1alpha1 "go.pinniped.dev/generated/1.19/apis/concierge/login/v1alpha1"
2020-11-10 15:22:16 +00:00
"go.pinniped.dev/internal/plog"
2020-09-18 19:56:24 +00:00
"go.pinniped.dev/internal/registry/credentialrequest"
2020-07-23 15:05:21 +00:00
)
var (
//nolint: gochecknoglobals
scheme = runtime . NewScheme ( )
Rename many of resources that are created in Kubernetes by Pinniped
New resource naming conventions:
- Do not repeat the Kind in the name,
e.g. do not call it foo-cluster-role-binding, just call it foo
- Names will generally start with a prefix to identify our component,
so when a user lists all objects of that kind, they can tell to which
component it is related,
e.g. `kubectl get configmaps` would list one named "pinniped-config"
- It should be possible for an operator to make the word "pinniped"
mostly disappear if they choose, by specifying the app_name in
values.yaml, to the extent that is practical (but not from APIService
names because those are hardcoded in golang)
- Each role/clusterrole and its corresponding binding have the same name
- Pinniped resource names that must be known by the server golang code
are passed to the code at run time via ConfigMap, rather than
hardcoded in the golang code. This also allows them to be prepended
with the app_name from values.yaml while creating the ConfigMap.
- Since the CLI `get-kubeconfig` command cannot guess the name of the
CredentialIssuerConfig resource in advance anymore, it lists all
CredentialIssuerConfig in the app's namespace and returns an error
if there is not exactly one found, and then uses that one regardless
of its name
2020-09-18 22:56:50 +00:00
//nolint: gochecknoglobals, golint
2020-07-23 15:05:21 +00:00
Codecs = serializer . NewCodecFactory ( scheme )
)
//nolint: gochecknoinits
func init ( ) {
2020-09-16 19:57:18 +00:00
utilruntime . Must ( loginv1alpha1 . AddToScheme ( scheme ) )
utilruntime . Must ( loginapi . AddToScheme ( scheme ) )
2020-07-23 15:05:21 +00:00
// add the options to empty v1
metav1 . AddToGroupVersion ( scheme , schema . GroupVersion { Version : "v1" } )
unversioned := schema . GroupVersion { Group : "" , Version : "v1" }
scheme . AddUnversionedTypes ( unversioned ,
& metav1 . Status { } ,
& metav1 . APIVersions { } ,
& metav1 . APIGroupList { } ,
& metav1 . APIGroup { } ,
& metav1 . APIResourceList { } ,
)
}
type Config struct {
GenericConfig * genericapiserver . RecommendedConfig
ExtraConfig ExtraConfig
}
type ExtraConfig struct {
2020-09-21 16:37:54 +00:00
Authenticator credentialrequest . TokenCredentialRequestAuthenticator
2020-08-14 14:11:14 +00:00
Issuer credentialrequest . CertIssuer
2020-07-31 16:08:07 +00:00
StartControllersPostStartHook func ( ctx context . Context )
2020-07-23 15:05:21 +00:00
}
2020-08-20 17:54:15 +00:00
type PinnipedServer struct {
2020-07-23 15:05:21 +00:00
GenericAPIServer * genericapiserver . GenericAPIServer
}
type completedConfig struct {
GenericConfig genericapiserver . CompletedConfig
ExtraConfig * ExtraConfig
}
type CompletedConfig struct {
// Embed a private pointer that cannot be instantiated outside of this package.
* completedConfig
}
// Complete fills in any fields not set that are required to have valid data. It's mutating the receiver.
func ( c * Config ) Complete ( ) CompletedConfig {
completedCfg := completedConfig {
c . GenericConfig . Complete ( ) ,
& c . ExtraConfig ,
}
versionInfo := version . Get ( )
completedCfg . GenericConfig . Version = & versionInfo
return CompletedConfig { completedConfig : & completedCfg }
}
// New returns a new instance of AdmissionServer from the given config.
2020-08-20 17:54:15 +00:00
func ( c completedConfig ) New ( ) ( * PinnipedServer , error ) {
2020-10-06 18:59:03 +00:00
genericServer , err := c . GenericConfig . New ( "pinniped-concierge" , genericapiserver . NewEmptyDelegate ( ) ) // completion is done in Complete, no need for a second time
2020-07-23 15:05:21 +00:00
if err != nil {
return nil , fmt . Errorf ( "completion error: %w" , err )
}
2020-08-20 17:54:15 +00:00
s := & PinnipedServer {
2020-07-23 15:05:21 +00:00
GenericAPIServer : genericServer ,
}
2020-09-18 22:15:04 +00:00
gvr := loginv1alpha1 . SchemeGroupVersion . WithResource ( "tokencredentialrequests" )
2020-09-21 16:37:54 +00:00
storage := credentialrequest . NewREST ( c . ExtraConfig . Authenticator , c . ExtraConfig . Issuer )
2020-09-18 22:15:04 +00:00
if err := s . GenericAPIServer . InstallAPIGroup ( & genericapiserver . APIGroupInfo {
PrioritizedVersions : [ ] schema . GroupVersion { gvr . GroupVersion ( ) } ,
VersionedResourcesStorageMap : map [ string ] map [ string ] rest . Storage { gvr . Version : { gvr . Resource : storage } } ,
OptionsExternalVersion : & schema . GroupVersion { Version : "v1" } ,
Scheme : scheme ,
ParameterCodec : metav1 . ParameterCodec ,
NegotiatedSerializer : Codecs ,
} ) ; err != nil {
return nil , fmt . Errorf ( "could not install API group %s: %w" , gvr . String ( ) , err )
2020-07-23 15:05:21 +00:00
}
2020-07-31 16:08:07 +00:00
s . GenericAPIServer . AddPostStartHookOrDie ( "start-controllers" ,
func ( postStartContext genericapiserver . PostStartHookContext ) error {
2020-11-10 15:22:16 +00:00
plog . Debug ( "start-controllers post start hook starting" )
2020-07-31 16:08:07 +00:00
ctx , cancel := context . WithCancel ( context . Background ( ) )
go func ( ) {
<- postStartContext . StopCh
cancel ( )
} ( )
c . ExtraConfig . StartControllersPostStartHook ( ctx )
2020-07-23 15:05:21 +00:00
return nil
} ,
)
return s , nil
}