2014-09-11 17:02:53 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-09-11 17:02:53 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"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"
|
2014-09-11 17:02:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Codec is the identity codec for this package - it can only convert itself
|
|
|
|
// to itself.
|
|
|
|
var Codec = runtime.CodecFor(Scheme, "")
|
2014-10-08 19:56:02 +00:00
|
|
|
|
|
|
|
func init() {
|
2015-03-22 21:43:00 +00:00
|
|
|
Scheme.AddDefaultingFuncs(
|
|
|
|
func(obj *ListOptions) {
|
|
|
|
obj.LabelSelector = labels.Everything()
|
|
|
|
obj.FieldSelector = fields.Everything()
|
|
|
|
},
|
2015-07-28 22:56:27 +00:00
|
|
|
// TODO: see about moving this into v1/defaults.go
|
2015-04-14 15:03:17 +00:00
|
|
|
func(obj *PodExecOptions) {
|
|
|
|
obj.Stderr = true
|
|
|
|
obj.Stdout = true
|
|
|
|
},
|
2015-07-28 22:56:27 +00:00
|
|
|
func(obj *PodAttachOptions) {
|
|
|
|
obj.Stderr = true
|
|
|
|
obj.Stdout = true
|
|
|
|
},
|
2015-03-22 21:43:00 +00:00
|
|
|
)
|
2014-10-08 19:56:02 +00:00
|
|
|
Scheme.AddConversionFuncs(
|
2015-01-15 20:00:57 +00:00
|
|
|
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
|
|
|
|
},
|
2015-03-22 21:43:00 +00:00
|
|
|
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
|
|
|
|
},
|
2015-01-15 20:00:57 +00:00
|
|
|
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
|
|
|
|
},
|
2014-10-09 17:27:47 +00:00
|
|
|
)
|
2014-10-08 19:56:02 +00:00
|
|
|
}
|