mirror of https://github.com/k3s-io/k3s
54 lines
2.0 KiB
Go
54 lines
2.0 KiB
Go
![]() |
/*
|
||
|
Copyright 2016 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 app
|
||
|
|
||
|
import (
|
||
|
"github.com/golang/glog"
|
||
|
|
||
|
"k8s.io/kubernetes/federation/apis/federation"
|
||
|
"k8s.io/kubernetes/pkg/api"
|
||
|
"k8s.io/kubernetes/pkg/api/rest"
|
||
|
"k8s.io/kubernetes/pkg/apimachinery/registered"
|
||
|
"k8s.io/kubernetes/pkg/genericapiserver"
|
||
![]() |
genericoptions "k8s.io/kubernetes/pkg/genericapiserver/options"
|
||
![]() |
|
||
|
_ "k8s.io/kubernetes/federation/apis/federation/install"
|
||
|
clusteretcd "k8s.io/kubernetes/federation/registry/cluster/etcd"
|
||
|
)
|
||
|
|
||
![]() |
func installFederationAPIs(s *genericoptions.ServerRunOptions, g *genericapiserver.GenericAPIServer, f genericapiserver.StorageFactory) {
|
||
![]() |
clusterStorage, clusterStatusStorage := clusteretcd.NewREST(createRESTOptionsOrDie(s, g, f, federation.Resource("clusters")))
|
||
![]() |
federationResources := map[string]rest.Storage{
|
||
|
"clusters": clusterStorage,
|
||
|
"clusters/status": clusterStatusStorage,
|
||
|
}
|
||
|
federationGroupMeta := registered.GroupOrDie(federation.GroupName)
|
||
|
apiGroupInfo := genericapiserver.APIGroupInfo{
|
||
|
GroupMeta: *federationGroupMeta,
|
||
|
VersionedResourcesStorageMap: map[string]map[string]rest.Storage{
|
||
|
"v1alpha1": federationResources,
|
||
|
},
|
||
|
OptionsExternalVersion: ®istered.GroupOrDie(api.GroupName).GroupVersion,
|
||
|
Scheme: api.Scheme,
|
||
|
ParameterCodec: api.ParameterCodec,
|
||
|
NegotiatedSerializer: api.Codecs,
|
||
|
}
|
||
|
if err := g.InstallAPIGroup(&apiGroupInfo); err != nil {
|
||
|
glog.Fatalf("Error in registering group versions: %v", err)
|
||
|
}
|
||
|
}
|