Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8edb2d87
Commit
8edb2d87
authored
May 24, 2016
by
nikhiljindal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding missing defaulting, deep copies and conversion funcs for v1 resources in federation
parent
2dbda8c7
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
173 additions
and
4 deletions
+173
-4
conversion.go
federation/apis/core/conversion.go
+56
-0
deep_copy.go
federation/apis/core/deep_copy.go
+42
-0
register.go
federation/apis/core/register.go
+4
-0
conversion.go
federation/apis/core/v1/conversion.go
+28
-4
deep_copy.go
federation/apis/core/v1/deep_copy.go
+42
-0
register.go
federation/apis/core/v1/register.go
+1
-0
No files found.
federation/apis/core/conversion.go
0 → 100644
View file @
8edb2d87
/*
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
core
import
(
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/runtime"
)
func
addDefaultingFuncs
(
scheme
*
runtime
.
Scheme
)
{
scheme
.
AddDefaultingFuncs
(
func
(
obj
*
api
.
ListOptions
)
{
if
obj
.
LabelSelector
==
nil
{
obj
.
LabelSelector
=
labels
.
Everything
()
}
if
obj
.
FieldSelector
==
nil
{
obj
.
FieldSelector
=
fields
.
Everything
()
}
},
)
}
func
addConversionFuncs
(
scheme
*
runtime
.
Scheme
)
{
scheme
.
AddConversionFuncs
(
api
.
Convert_unversioned_TypeMeta_To_unversioned_TypeMeta
,
api
.
Convert_unversioned_ListMeta_To_unversioned_ListMeta
,
api
.
Convert_intstr_IntOrString_To_intstr_IntOrString
,
api
.
Convert_unversioned_Time_To_unversioned_Time
,
api
.
Convert_Slice_string_To_unversioned_Time
,
api
.
Convert_string_To_labels_Selector
,
api
.
Convert_string_To_fields_Selector
,
api
.
Convert_Pointer_bool_To_bool
,
api
.
Convert_bool_To_Pointer_bool
,
api
.
Convert_Pointer_string_To_string
,
api
.
Convert_string_To_Pointer_string
,
api
.
Convert_labels_Selector_To_string
,
api
.
Convert_fields_Selector_To_string
,
api
.
Convert_resource_Quantity_To_resource_Quantity
,
)
}
federation/apis/core/deep_copy.go
0 → 100644
View file @
8edb2d87
/*
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
core
import
(
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/runtime"
)
func
addDeepCopyFuncs
(
scheme
*
runtime
.
Scheme
)
{
if
err
:=
scheme
.
AddGeneratedDeepCopyFuncs
(
api
.
DeepCopy_api_DeleteOptions
,
api
.
DeepCopy_api_ExportOptions
,
api
.
DeepCopy_api_List
,
api
.
DeepCopy_api_ListOptions
,
api
.
DeepCopy_api_ObjectMeta
,
api
.
DeepCopy_api_ObjectReference
,
api
.
DeepCopy_api_OwnerReference
,
api
.
DeepCopy_api_Service
,
api
.
DeepCopy_api_ServiceList
,
api
.
DeepCopy_api_ServicePort
,
api
.
DeepCopy_api_ServiceSpec
,
api
.
DeepCopy_api_ServiceStatus
,
);
err
!=
nil
{
// if one of the deep copy functions is malformed, detect it immediately.
panic
(
err
)
}
}
federation/apis/core/register.go
View file @
8edb2d87
...
@@ -72,4 +72,8 @@ func AddToScheme(scheme *runtime.Scheme) {
...
@@ -72,4 +72,8 @@ func AddToScheme(scheme *runtime.Scheme) {
&
unversioned
.
APIGroup
{},
&
unversioned
.
APIGroup
{},
&
unversioned
.
APIResourceList
{},
&
unversioned
.
APIResourceList
{},
)
)
addDeepCopyFuncs
(
scheme
)
addDefaultingFuncs
(
scheme
)
addConversionFuncs
(
scheme
)
}
}
federation/apis/core/v1/conversion.go
View file @
8edb2d87
...
@@ -19,7 +19,6 @@ package v1
...
@@ -19,7 +19,6 @@ package v1
import
(
import
(
"fmt"
"fmt"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/v1"
"k8s.io/kubernetes/pkg/api/v1"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/runtime"
)
)
...
@@ -27,8 +26,34 @@ import (
...
@@ -27,8 +26,34 @@ import (
func
addConversionFuncs
(
scheme
*
runtime
.
Scheme
)
{
func
addConversionFuncs
(
scheme
*
runtime
.
Scheme
)
{
// Add non-generated conversion functions
// Add non-generated conversion functions
err
:=
scheme
.
AddConversionFuncs
(
err
:=
scheme
.
AddConversionFuncs
(
v1
.
Convert_api_ServiceSpec_To_v1_ServiceSpec
,
v1
.
Convert_v1_DeleteOptions_To_api_DeleteOptions
,
v1
.
Convert_api_DeleteOptions_To_v1_DeleteOptions
,
v1
.
Convert_v1_ExportOptions_To_api_ExportOptions
,
v1
.
Convert_api_ExportOptions_To_v1_ExportOptions
,
v1
.
Convert_v1_List_To_api_List
,
v1
.
Convert_api_List_To_v1_List
,
v1
.
Convert_v1_ListOptions_To_api_ListOptions
,
v1
.
Convert_api_ListOptions_To_v1_ListOptions
,
v1
.
Convert_v1_ObjectFieldSelector_To_api_ObjectFieldSelector
,
v1
.
Convert_api_ObjectFieldSelector_To_v1_ObjectFieldSelector
,
v1
.
Convert_v1_ObjectMeta_To_api_ObjectMeta
,
v1
.
Convert_api_ObjectMeta_To_v1_ObjectMeta
,
v1
.
Convert_v1_ObjectReference_To_api_ObjectReference
,
v1
.
Convert_api_ObjectReference_To_v1_ObjectReference
,
v1
.
Convert_v1_OwnerReference_To_api_OwnerReference
,
v1
.
Convert_api_OwnerReference_To_v1_OwnerReference
,
v1
.
Convert_v1_Service_To_api_Service
,
v1
.
Convert_api_Service_To_v1_Service
,
v1
.
Convert_v1_ServiceList_To_api_ServiceList
,
v1
.
Convert_api_ServiceList_To_v1_ServiceList
,
v1
.
Convert_v1_ServicePort_To_api_ServicePort
,
v1
.
Convert_api_ServicePort_To_v1_ServicePort
,
v1
.
Convert_v1_ServiceProxyOptions_To_api_ServiceProxyOptions
,
v1
.
Convert_api_ServiceProxyOptions_To_v1_ServiceProxyOptions
,
v1
.
Convert_v1_ServiceSpec_To_api_ServiceSpec
,
v1
.
Convert_v1_ServiceSpec_To_api_ServiceSpec
,
v1
.
Convert_api_ServiceSpec_To_v1_ServiceSpec
,
v1
.
Convert_v1_ServiceStatus_To_api_ServiceStatus
,
v1
.
Convert_api_ServiceStatus_To_v1_ServiceStatus
,
)
)
if
err
!=
nil
{
if
err
!=
nil
{
// If one of the conversion functions is malformed, detect it immediately.
// If one of the conversion functions is malformed, detect it immediately.
...
@@ -39,7 +64,7 @@ func addConversionFuncs(scheme *runtime.Scheme) {
...
@@ -39,7 +64,7 @@ func addConversionFuncs(scheme *runtime.Scheme) {
for
_
,
kind
:=
range
[]
string
{
for
_
,
kind
:=
range
[]
string
{
"Service"
,
"Service"
,
}
{
}
{
err
=
api
.
S
cheme
.
AddFieldLabelConversionFunc
(
"v1"
,
kind
,
err
=
s
cheme
.
AddFieldLabelConversionFunc
(
"v1"
,
kind
,
func
(
label
,
value
string
)
(
string
,
string
,
error
)
{
func
(
label
,
value
string
)
(
string
,
string
,
error
)
{
switch
label
{
switch
label
{
case
"metadata.namespace"
,
case
"metadata.namespace"
,
...
@@ -54,5 +79,4 @@ func addConversionFuncs(scheme *runtime.Scheme) {
...
@@ -54,5 +79,4 @@ func addConversionFuncs(scheme *runtime.Scheme) {
panic
(
err
)
panic
(
err
)
}
}
}
}
}
}
federation/apis/core/v1/deep_copy.go
0 → 100644
View file @
8edb2d87
/*
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
v1
import
(
"k8s.io/kubernetes/pkg/api/v1"
"k8s.io/kubernetes/pkg/runtime"
)
func
addDeepCopyFuncs
(
scheme
*
runtime
.
Scheme
)
{
if
err
:=
scheme
.
AddGeneratedDeepCopyFuncs
(
v1
.
DeepCopy_v1_DeleteOptions
,
v1
.
DeepCopy_v1_ExportOptions
,
v1
.
DeepCopy_v1_List
,
v1
.
DeepCopy_v1_ListOptions
,
v1
.
DeepCopy_v1_ObjectMeta
,
v1
.
DeepCopy_v1_ObjectReference
,
v1
.
DeepCopy_v1_OwnerReference
,
v1
.
DeepCopy_v1_Service
,
v1
.
DeepCopy_v1_ServiceList
,
v1
.
DeepCopy_v1_ServicePort
,
v1
.
DeepCopy_v1_ServiceSpec
,
v1
.
DeepCopy_v1_ServiceStatus
,
);
err
!=
nil
{
// if one of the deep copy functions is malformed, detect it immediately.
panic
(
err
)
}
}
federation/apis/core/v1/register.go
View file @
8edb2d87
...
@@ -34,6 +34,7 @@ func AddToScheme(scheme *runtime.Scheme) {
...
@@ -34,6 +34,7 @@ func AddToScheme(scheme *runtime.Scheme) {
addKnownTypes
(
scheme
)
addKnownTypes
(
scheme
)
addConversionFuncs
(
scheme
)
addConversionFuncs
(
scheme
)
addDefaultingFuncs
(
scheme
)
addDefaultingFuncs
(
scheme
)
addDeepCopyFuncs
(
scheme
)
}
}
// Adds the list of known types to api.Scheme.
// Adds the list of known types to api.Scheme.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment