
This removes all dependencies on Config during cert generation, only operating on ServerRunOptions. This way we get rid of the repeated call of Config.Complete and cleanly stratify the GenericApiServer bootstrapping.
146 lines
5.2 KiB
Go
146 lines
5.2 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes 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
|
|
|
|
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 apiserver
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
|
|
"k8s.io/kubernetes/cmd/libs/go2idl/client-gen/test_apis/testgroup/v1"
|
|
testgroupetcd "k8s.io/kubernetes/examples/apiserver/rest"
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/rest"
|
|
"k8s.io/kubernetes/pkg/apimachinery/registered"
|
|
"k8s.io/kubernetes/pkg/genericapiserver"
|
|
"k8s.io/kubernetes/pkg/genericapiserver/authorizer"
|
|
genericoptions "k8s.io/kubernetes/pkg/genericapiserver/options"
|
|
genericvalidation "k8s.io/kubernetes/pkg/genericapiserver/validation"
|
|
"k8s.io/kubernetes/pkg/registry/generic"
|
|
"k8s.io/kubernetes/pkg/runtime/schema"
|
|
"k8s.io/kubernetes/pkg/storage/storagebackend"
|
|
utilerrors "k8s.io/kubernetes/pkg/util/errors"
|
|
|
|
// Install the testgroup API
|
|
_ "k8s.io/kubernetes/cmd/libs/go2idl/client-gen/test_apis/testgroup/install"
|
|
|
|
"github.com/golang/glog"
|
|
)
|
|
|
|
const (
|
|
// Ports on which to run the server.
|
|
// Explicitly setting these to a different value than the default values, to prevent this from clashing with a local cluster.
|
|
InsecurePort = 8081
|
|
SecurePort = 6444
|
|
)
|
|
|
|
func newStorageFactory() genericapiserver.StorageFactory {
|
|
config := storagebackend.Config{
|
|
Prefix: genericoptions.DefaultEtcdPathPrefix,
|
|
ServerList: []string{"http://127.0.0.1:2379"},
|
|
}
|
|
storageFactory := genericapiserver.NewDefaultStorageFactory(config, "application/json", api.Codecs, genericapiserver.NewDefaultResourceEncodingConfig(), genericapiserver.NewResourceConfig())
|
|
|
|
return storageFactory
|
|
}
|
|
|
|
type ServerRunOptions struct {
|
|
GenericServerRunOptions *genericoptions.ServerRunOptions
|
|
Etcd *genericoptions.EtcdOptions
|
|
SecureServing *genericoptions.SecureServingOptions
|
|
InsecureServing *genericoptions.ServingOptions
|
|
Authentication *genericoptions.BuiltInAuthenticationOptions
|
|
}
|
|
|
|
func NewServerRunOptions() *ServerRunOptions {
|
|
s := ServerRunOptions{
|
|
GenericServerRunOptions: genericoptions.NewServerRunOptions(),
|
|
Etcd: genericoptions.NewEtcdOptions(),
|
|
SecureServing: genericoptions.NewSecureServingOptions(),
|
|
InsecureServing: genericoptions.NewInsecureServingOptions(),
|
|
Authentication: genericoptions.NewBuiltInAuthenticationOptions().WithAll(),
|
|
}
|
|
s.InsecureServing.BindPort = InsecurePort
|
|
s.SecureServing.ServingOptions.BindPort = SecurePort
|
|
|
|
return &s
|
|
}
|
|
|
|
func (serverOptions *ServerRunOptions) Run(stopCh <-chan struct{}) error {
|
|
// Set ServiceClusterIPRange
|
|
_, serviceClusterIPRange, _ := net.ParseCIDR("10.0.0.0/24")
|
|
serverOptions.GenericServerRunOptions.ServiceClusterIPRange = *serviceClusterIPRange
|
|
serverOptions.Etcd.StorageConfig.ServerList = []string{"http://127.0.0.1:2379"}
|
|
|
|
genericvalidation.ValidateRunOptions(serverOptions.GenericServerRunOptions)
|
|
if errs := serverOptions.Etcd.Validate(); len(errs) > 0 {
|
|
return utilerrors.NewAggregate(errs)
|
|
}
|
|
if errs := serverOptions.SecureServing.Validate(); len(errs) > 0 {
|
|
return utilerrors.NewAggregate(errs)
|
|
}
|
|
if errs := serverOptions.InsecureServing.Validate("insecure-port"); len(errs) > 0 {
|
|
return utilerrors.NewAggregate(errs)
|
|
}
|
|
if err := serverOptions.SecureServing.MaybeDefaultWithSelfSignedCerts(serverOptions.GenericServerRunOptions.AdvertiseAddress.String()); err != nil {
|
|
glog.Fatalf("Error creating self-signed certificates: %v", err)
|
|
}
|
|
|
|
config, err := genericapiserver.NewConfig().
|
|
ApplyOptions(serverOptions.GenericServerRunOptions).
|
|
ApplyInsecureServingOptions(serverOptions.InsecureServing).
|
|
ApplyAuthenticationOptions(serverOptions.Authentication).
|
|
ApplySecureServingOptions(serverOptions.SecureServing)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to configure https: %s", err)
|
|
}
|
|
|
|
config.Authorizer = authorizer.NewAlwaysAllowAuthorizer()
|
|
s, err := config.Complete().New()
|
|
if err != nil {
|
|
return fmt.Errorf("Error in bringing up the server: %v", err)
|
|
}
|
|
|
|
groupVersion := v1.SchemeGroupVersion
|
|
groupName := groupVersion.Group
|
|
groupMeta, err := registered.Group(groupName)
|
|
if err != nil {
|
|
return fmt.Errorf("%v", err)
|
|
}
|
|
storageFactory := newStorageFactory()
|
|
storageConfig, err := storageFactory.NewConfig(schema.GroupResource{Group: groupName, Resource: "testtype"})
|
|
if err != nil {
|
|
return fmt.Errorf("Unable to get storage config: %v", err)
|
|
}
|
|
|
|
restStorageMap := map[string]rest.Storage{
|
|
"testtypes": testgroupetcd.NewREST(storageConfig, generic.UndecoratedStorage),
|
|
}
|
|
apiGroupInfo := genericapiserver.APIGroupInfo{
|
|
GroupMeta: *groupMeta,
|
|
VersionedResourcesStorageMap: map[string]map[string]rest.Storage{
|
|
groupVersion.Version: restStorageMap,
|
|
},
|
|
Scheme: api.Scheme,
|
|
NegotiatedSerializer: api.Codecs,
|
|
}
|
|
if err := s.InstallAPIGroup(&apiGroupInfo); err != nil {
|
|
return fmt.Errorf("Error in installing API: %v", err)
|
|
}
|
|
s.PrepareRun().Run(stopCh)
|
|
return nil
|
|
}
|