2015-09-10 19:26:08 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2015-09-10 19:26:08 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2015-09-12 00:20:02 +00:00
|
|
|
// Package install installs the v1 monolithic api, making it available as an
|
|
|
|
// option to all of the API encoding/decoding machinery.
|
2015-09-10 19:26:08 +00:00
|
|
|
package install
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2015-09-11 06:37:26 +00:00
|
|
|
"github.com/golang/glog"
|
|
|
|
|
2015-12-08 14:21:04 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-09-10 19:26:08 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/meta"
|
2015-11-16 15:53:05 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
2015-09-10 19:26:08 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
2015-12-21 05:21:26 +00:00
|
|
|
"k8s.io/kubernetes/pkg/apimachinery"
|
|
|
|
"k8s.io/kubernetes/pkg/apimachinery/registered"
|
2016-04-25 03:38:50 +00:00
|
|
|
"k8s.io/kubernetes/pkg/conversion"
|
2015-09-10 19:26:08 +00:00
|
|
|
"k8s.io/kubernetes/pkg/runtime"
|
2015-12-21 05:21:26 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/sets"
|
2016-05-21 01:08:34 +00:00
|
|
|
"k8s.io/kubernetes/pkg/watch/versioned"
|
2015-09-10 19:26:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const importPrefix = "k8s.io/kubernetes/pkg/api"
|
|
|
|
|
|
|
|
var accessor = meta.NewAccessor()
|
|
|
|
|
2015-12-09 20:03:08 +00:00
|
|
|
// availableVersions lists all known external versions for this group from most preferred to least preferred
|
|
|
|
var availableVersions = []unversioned.GroupVersion{v1.SchemeGroupVersion}
|
|
|
|
|
2015-09-10 19:26:08 +00:00
|
|
|
func init() {
|
2016-01-13 22:40:56 +00:00
|
|
|
registered.RegisterVersions(availableVersions)
|
2015-12-09 20:03:08 +00:00
|
|
|
externalVersions := []unversioned.GroupVersion{}
|
2015-12-19 05:08:34 +00:00
|
|
|
for _, v := range availableVersions {
|
|
|
|
if registered.IsAllowedVersion(v) {
|
|
|
|
externalVersions = append(externalVersions, v)
|
2015-12-09 20:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(externalVersions) == 0 {
|
|
|
|
glog.V(4).Infof("No version is registered for group %v", api.GroupName)
|
2015-09-10 19:26:08 +00:00
|
|
|
return
|
|
|
|
}
|
2016-01-13 22:40:56 +00:00
|
|
|
|
2015-12-19 05:08:34 +00:00
|
|
|
if err := registered.EnableVersions(externalVersions...); err != nil {
|
|
|
|
glog.V(4).Infof("%v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := enableVersions(externalVersions); err != nil {
|
|
|
|
glog.V(4).Infof("%v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-11-16 15:53:05 +00:00
|
|
|
|
2015-12-19 05:08:34 +00:00
|
|
|
// TODO: enableVersions should be centralized rather than spread in each API
|
|
|
|
// group.
|
2016-01-13 22:40:56 +00:00
|
|
|
// We can combine registered.RegisterVersions, registered.EnableVersions and
|
|
|
|
// registered.RegisterGroup once we have moved enableVersions there.
|
2015-12-19 05:08:34 +00:00
|
|
|
func enableVersions(externalVersions []unversioned.GroupVersion) error {
|
|
|
|
addVersionsToScheme(externalVersions...)
|
2015-12-09 20:03:08 +00:00
|
|
|
preferredExternalVersion := externalVersions[0]
|
|
|
|
|
2016-01-13 22:40:56 +00:00
|
|
|
groupMeta := apimachinery.GroupMeta{
|
2015-12-09 20:03:08 +00:00
|
|
|
GroupVersion: preferredExternalVersion,
|
|
|
|
GroupVersions: externalVersions,
|
|
|
|
RESTMapper: newRESTMapper(externalVersions),
|
|
|
|
SelfLinker: runtime.SelfLinker(accessor),
|
|
|
|
InterfacesFor: interfacesFor,
|
2015-09-10 19:26:08 +00:00
|
|
|
}
|
2015-11-16 18:34:28 +00:00
|
|
|
|
2016-01-13 22:40:56 +00:00
|
|
|
if err := registered.RegisterGroup(groupMeta); err != nil {
|
2015-12-19 05:08:34 +00:00
|
|
|
return err
|
2015-09-10 19:26:08 +00:00
|
|
|
}
|
2015-12-09 20:03:08 +00:00
|
|
|
api.RegisterRESTMapper(groupMeta.RESTMapper)
|
2015-12-19 05:08:34 +00:00
|
|
|
return nil
|
2015-12-09 20:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newRESTMapper(externalVersions []unversioned.GroupVersion) meta.RESTMapper {
|
2015-09-10 19:26:08 +00:00
|
|
|
// the list of kinds that are scoped at the root of the api hierarchy
|
|
|
|
// if a kind is not enumerated here, it is assumed to have a namespace scope
|
|
|
|
rootScoped := sets.NewString(
|
|
|
|
"Node",
|
|
|
|
"Namespace",
|
|
|
|
"PersistentVolume",
|
2015-10-15 04:47:51 +00:00
|
|
|
"ComponentStatus",
|
2015-09-10 19:26:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// these kinds should be excluded from the list of resources
|
|
|
|
ignoredKinds := sets.NewString(
|
|
|
|
"ListOptions",
|
|
|
|
"DeleteOptions",
|
|
|
|
"Status",
|
|
|
|
"PodLogOptions",
|
|
|
|
"PodExecOptions",
|
|
|
|
"PodAttachOptions",
|
|
|
|
"PodProxyOptions",
|
2015-11-30 11:48:23 +00:00
|
|
|
"NodeProxyOptions",
|
2015-11-18 03:42:03 +00:00
|
|
|
"ServiceProxyOptions",
|
2015-09-10 19:26:08 +00:00
|
|
|
"ThirdPartyResource",
|
|
|
|
"ThirdPartyResourceData",
|
|
|
|
"ThirdPartyResourceList")
|
|
|
|
|
2016-07-14 11:48:32 +00:00
|
|
|
return api.NewDefaultRESTMapper(externalVersions, interfacesFor, importPrefix, ignoredKinds, rootScoped)
|
2015-09-10 19:26:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InterfacesFor returns the default Codec and ResourceVersioner for a given version
|
|
|
|
// string, or an error if the version is not known.
|
2015-12-08 18:27:26 +00:00
|
|
|
func interfacesFor(version unversioned.GroupVersion) (*meta.VersionInterfaces, error) {
|
2015-09-10 19:26:08 +00:00
|
|
|
switch version {
|
2015-12-08 18:27:26 +00:00
|
|
|
case v1.SchemeGroupVersion:
|
2015-09-10 19:26:08 +00:00
|
|
|
return &meta.VersionInterfaces{
|
|
|
|
ObjectConvertor: api.Scheme,
|
|
|
|
MetadataAccessor: accessor,
|
|
|
|
}, nil
|
|
|
|
default:
|
2016-01-13 22:40:56 +00:00
|
|
|
g, _ := registered.Group(api.GroupName)
|
2015-12-09 20:03:08 +00:00
|
|
|
return nil, fmt.Errorf("unsupported storage version: %s (valid: %v)", version, g.GroupVersions)
|
2015-09-10 19:26:08 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-19 05:08:34 +00:00
|
|
|
|
|
|
|
func addVersionsToScheme(externalVersions ...unversioned.GroupVersion) {
|
|
|
|
// add the internal version to Scheme
|
2015-12-24 06:55:06 +00:00
|
|
|
api.AddToScheme(api.Scheme)
|
2015-12-19 05:08:34 +00:00
|
|
|
// add the enabled external versions to Scheme
|
|
|
|
for _, v := range externalVersions {
|
|
|
|
if !registered.IsEnabledVersion(v) {
|
|
|
|
glog.Errorf("Version %s is not enabled, so it will not be added to the Scheme.", v)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch v {
|
|
|
|
case v1.SchemeGroupVersion:
|
2015-12-24 06:55:06 +00:00
|
|
|
v1.AddToScheme(api.Scheme)
|
2015-12-19 05:08:34 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-25 03:38:50 +00:00
|
|
|
|
|
|
|
// This is a "fast-path" that avoids reflection for common types. It focuses on the objects that are
|
|
|
|
// converted the most in the cluster.
|
|
|
|
// TODO: generate one of these for every external API group - this is to prove the impact
|
|
|
|
api.Scheme.AddGenericConversionFunc(func(objA, objB interface{}, s conversion.Scope) (bool, error) {
|
|
|
|
switch a := objA.(type) {
|
|
|
|
case *v1.Pod:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Pod:
|
|
|
|
return true, v1.Convert_v1_Pod_To_api_Pod(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Pod:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Pod:
|
|
|
|
return true, v1.Convert_api_Pod_To_v1_Pod(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.Event:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Event:
|
|
|
|
return true, v1.Convert_v1_Event_To_api_Event(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Event:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Event:
|
|
|
|
return true, v1.Convert_api_Event_To_v1_Event(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.ReplicationController:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.ReplicationController:
|
|
|
|
return true, v1.Convert_v1_ReplicationController_To_api_ReplicationController(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.ReplicationController:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.ReplicationController:
|
|
|
|
return true, v1.Convert_api_ReplicationController_To_v1_ReplicationController(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.Node:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Node:
|
|
|
|
return true, v1.Convert_v1_Node_To_api_Node(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Node:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Node:
|
|
|
|
return true, v1.Convert_api_Node_To_v1_Node(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.Namespace:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Namespace:
|
|
|
|
return true, v1.Convert_v1_Namespace_To_api_Namespace(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Namespace:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Namespace:
|
|
|
|
return true, v1.Convert_api_Namespace_To_v1_Namespace(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.Service:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Service:
|
|
|
|
return true, v1.Convert_v1_Service_To_api_Service(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Service:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Service:
|
|
|
|
return true, v1.Convert_api_Service_To_v1_Service(a, b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *v1.Endpoints:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *api.Endpoints:
|
|
|
|
return true, v1.Convert_v1_Endpoints_To_api_Endpoints(a, b, s)
|
|
|
|
}
|
|
|
|
case *api.Endpoints:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *v1.Endpoints:
|
|
|
|
return true, v1.Convert_api_Endpoints_To_v1_Endpoints(a, b, s)
|
|
|
|
}
|
2016-05-21 01:08:34 +00:00
|
|
|
|
|
|
|
case *versioned.Event:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *versioned.InternalEvent:
|
|
|
|
return true, versioned.Convert_versioned_Event_to_versioned_InternalEvent(a, b, s)
|
|
|
|
}
|
|
|
|
case *versioned.InternalEvent:
|
|
|
|
switch b := objB.(type) {
|
|
|
|
case *versioned.Event:
|
|
|
|
return true, versioned.Convert_versioned_InternalEvent_to_versioned_Event(a, b, s)
|
|
|
|
}
|
2016-04-25 03:38:50 +00:00
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
})
|
2015-12-19 05:08:34 +00:00
|
|
|
}
|