mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 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 api
 | 
						|
 | 
						|
import (
 | 
						|
	"k8s.io/kubernetes/pkg/api/resource"
 | 
						|
	"k8s.io/kubernetes/pkg/conversion"
 | 
						|
	"k8s.io/kubernetes/pkg/fields"
 | 
						|
	"k8s.io/kubernetes/pkg/labels"
 | 
						|
	"k8s.io/kubernetes/pkg/runtime"
 | 
						|
	"k8s.io/kubernetes/pkg/util"
 | 
						|
)
 | 
						|
 | 
						|
// Codec is the identity codec for this package - it can only convert itself
 | 
						|
// to itself.
 | 
						|
var Codec = runtime.CodecFor(Scheme, "")
 | 
						|
 | 
						|
func init() {
 | 
						|
	Scheme.AddDefaultingFuncs(
 | 
						|
		func(obj *ListOptions) {
 | 
						|
			obj.LabelSelector = labels.Everything()
 | 
						|
			obj.FieldSelector = fields.Everything()
 | 
						|
		},
 | 
						|
		// TODO: see about moving this into v1/defaults.go
 | 
						|
		func(obj *PodExecOptions) {
 | 
						|
			obj.Stderr = true
 | 
						|
			obj.Stdout = true
 | 
						|
		},
 | 
						|
		func(obj *PodAttachOptions) {
 | 
						|
			obj.Stderr = true
 | 
						|
			obj.Stdout = true
 | 
						|
		},
 | 
						|
	)
 | 
						|
	Scheme.AddConversionFuncs(
 | 
						|
		func(in *util.Time, out *util.Time, s conversion.Scope) error {
 | 
						|
			// Cannot deep copy these, because time.Time has unexported fields.
 | 
						|
			*out = *in
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
		func(in *string, out *labels.Selector, s conversion.Scope) error {
 | 
						|
			selector, err := labels.Parse(*in)
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			*out = selector
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
		func(in *string, out *fields.Selector, s conversion.Scope) error {
 | 
						|
			selector, err := fields.ParseSelector(*in)
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			*out = selector
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
		func(in *labels.Selector, out *string, s conversion.Scope) error {
 | 
						|
			if *in == nil {
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
			*out = (*in).String()
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
		func(in *fields.Selector, out *string, s conversion.Scope) error {
 | 
						|
			if *in == nil {
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
			*out = (*in).String()
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
		func(in *resource.Quantity, out *resource.Quantity, s conversion.Scope) error {
 | 
						|
			// Cannot deep copy these, because inf.Dec has unexported fields.
 | 
						|
			*out = *in.Copy()
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	)
 | 
						|
}
 |