From e225625a80533f9867ea4a647cb0732d56f85771 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Mon, 29 Aug 2016 15:00:02 -0700 Subject: [PATCH 1/2] add a configuration for kubelet to register as a node with taints and deprecate register-schedulable --- cluster/gce/gci/configure-helper.sh | 1 + cluster/saltbase/salt/kubelet/default | 2 +- cmd/kubelet/app/options/BUILD | 1 + cmd/kubelet/app/options/options.go | 3 + hack/verify-flags/known-flags.txt | 1 + pkg/apis/componentconfig/types.go | 6 ++ pkg/apis/componentconfig/v1alpha1/types.go | 6 ++ pkg/kubectl/cmd/BUILD | 1 + pkg/kubectl/cmd/taint.go | 25 +----- pkg/kubelet/kubelet_node_status.go | 11 +++ pkg/util/taints/BUILD | 32 ++++++++ pkg/util/taints/taints.go | 95 ++++++++++++++++++++++ pkg/util/taints/taints_test.go | 72 ++++++++++++++++ 13 files changed, 234 insertions(+), 22 deletions(-) create mode 100644 pkg/util/taints/BUILD create mode 100644 pkg/util/taints/taints.go create mode 100644 pkg/util/taints/taints_test.go diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index e1ce0d07db1..f5050ce572b 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -507,6 +507,7 @@ function start-kubelet { if [[ ! -z "${KUBELET_APISERVER:-}" && ! -z "${KUBELET_CERT:-}" && ! -z "${KUBELET_KEY:-}" ]]; then flags+=" --api-servers=https://${KUBELET_APISERVER}" flags+=" --register-schedulable=false" + flags+=" --register-with-taints=node.alpha.kubernetes.io/ismaster=:NoSchedule" else # Standalone mode (not widely used?) flags+=" --pod-cidr=${MASTER_IP_RANGE}" diff --git a/cluster/saltbase/salt/kubelet/default b/cluster/saltbase/salt/kubelet/default index a24e91590f2..5ac6cf331ab 100644 --- a/cluster/saltbase/salt/kubelet/default +++ b/cluster/saltbase/salt/kubelet/default @@ -33,7 +33,7 @@ # running on the master. {% if grains.kubelet_api_servers is defined -%} {% set api_servers_with_port = "--api-servers=https://" + grains.kubelet_api_servers -%} - {% set master_kubelet_args = master_kubelet_args + "--register-schedulable=false" -%} + {% set master_kubelet_args = master_kubelet_args + "--register-schedulable=false --register-with-taints=node.alpha.kubernetes.io/ismaster=:NoSchedule" -%} {% else -%} {% set api_servers_with_port = "" -%} {% endif -%} diff --git a/cmd/kubelet/app/options/BUILD b/cmd/kubelet/app/options/BUILD index 4dee7ec8469..c684a9b8c8c 100644 --- a/cmd/kubelet/app/options/BUILD +++ b/cmd/kubelet/app/options/BUILD @@ -20,6 +20,7 @@ go_library( "//pkg/apis/componentconfig/v1alpha1:go_default_library", "//pkg/util/config:go_default_library", "//pkg/util/flag:go_default_library", + "//pkg/util/taints:go_default_library", "//vendor:github.com/spf13/pflag", ], ) diff --git a/cmd/kubelet/app/options/options.go b/cmd/kubelet/app/options/options.go index 610701e8eb2..6e86e343057 100644 --- a/cmd/kubelet/app/options/options.go +++ b/cmd/kubelet/app/options/options.go @@ -26,6 +26,7 @@ import ( "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1" utilconfig "k8s.io/kubernetes/pkg/util/config" "k8s.io/kubernetes/pkg/util/flag" + utiltaints "k8s.io/kubernetes/pkg/util/taints" "github.com/spf13/pflag" ) @@ -232,6 +233,8 @@ func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) { fs.Var(&s.SystemReserved, "system-reserved", "A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for non-kubernetes components. Currently only cpu and memory are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none]") fs.Var(&s.KubeReserved, "kube-reserved", "A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for kubernetes system components. Currently only cpu and memory are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none]") fs.BoolVar(&s.RegisterSchedulable, "register-schedulable", s.RegisterSchedulable, "Register the node as schedulable. Won't have any effect if register-node is false. [default=true]") + fs.MarkDeprecated("register-schedulable", "will be removed in a future version") + fs.Var(utiltaints.NewTaintsVar(&s.RegisterWithTaints), "register-with-taints", "Register the node with the given list of taints (comma seperated \"=:\"). No-op if register-node is false.") fs.StringVar(&s.ContentType, "kube-api-content-type", s.ContentType, "Content type of requests sent to apiserver.") fs.Int32Var(&s.KubeAPIQPS, "kube-api-qps", s.KubeAPIQPS, "QPS to use while talking with kubernetes apiserver") fs.Int32Var(&s.KubeAPIBurst, "kube-api-burst", s.KubeAPIBurst, "Burst to use while talking with kubernetes apiserver") diff --git a/hack/verify-flags/known-flags.txt b/hack/verify-flags/known-flags.txt index 54ac50c9b47..d9b19bad7b9 100644 --- a/hack/verify-flags/known-flags.txt +++ b/hack/verify-flags/known-flags.txt @@ -485,6 +485,7 @@ reconcile-interval register-node register-retry-count register-schedulable +register-with-taints registry-burst registry-qps reject-methods diff --git a/pkg/apis/componentconfig/types.go b/pkg/apis/componentconfig/types.go index b34de61372c..cd87c983671 100644 --- a/pkg/apis/componentconfig/types.go +++ b/pkg/apis/componentconfig/types.go @@ -17,6 +17,7 @@ limitations under the License. package componentconfig import ( + "k8s.io/kubernetes/pkg/api" metav1 "k8s.io/kubernetes/pkg/apis/meta/v1" utilconfig "k8s.io/kubernetes/pkg/util/config" ) @@ -379,7 +380,12 @@ type KubeletConfiguration struct { ReconcileCIDR bool `json:"reconcileCIDR"` // registerSchedulable tells the kubelet to register the node as // schedulable. Won't have any effect if register-node is false. + // DEPRECATED: use registerWithTaints instead RegisterSchedulable bool `json:"registerSchedulable"` + // registerWithTaints are an array of taints to add to a node object when + // the kubelet registers itself. This only takes effect when registerNode + // is true and upon the initial registration of the node. + RegisterWithTaints []api.Taint `json:"registerWithTaints"` // contentType is contentType of requests sent to apiserver. ContentType string `json:"contentType"` // kubeAPIQPS is the QPS to use while talking with kubernetes apiserver diff --git a/pkg/apis/componentconfig/v1alpha1/types.go b/pkg/apis/componentconfig/v1alpha1/types.go index 24514b8f515..16b1f24fec0 100644 --- a/pkg/apis/componentconfig/v1alpha1/types.go +++ b/pkg/apis/componentconfig/v1alpha1/types.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/v1" metav1 "k8s.io/kubernetes/pkg/apis/meta/v1" ) @@ -429,7 +430,12 @@ type KubeletConfiguration struct { ReconcileCIDR *bool `json:"reconcileCIDR"` // registerSchedulable tells the kubelet to register the node as // schedulable. Won't have any effect if register-node is false. + // DEPRECATED: use registerWithTaints instead RegisterSchedulable *bool `json:"registerSchedulable"` + // registerWithTaints are an array of taints to add to a node object when + // the kubelet registers itself. This only takes effect when registerNode + // is true and upon the initial registration of the node. + RegisterWithTaints []v1.Taint `json:"registerWithTaints"` // contentType is contentType of requests sent to apiserver. ContentType string `json:"contentType"` // kubeAPIQPS is the QPS to use while talking with kubernetes apiserver diff --git a/pkg/kubectl/cmd/BUILD b/pkg/kubectl/cmd/BUILD index 3e07f32abaa..a561e34ded7 100644 --- a/pkg/kubectl/cmd/BUILD +++ b/pkg/kubectl/cmd/BUILD @@ -106,6 +106,7 @@ go_library( "//pkg/util/intstr:go_default_library", "//pkg/util/sets:go_default_library", "//pkg/util/strategicpatch:go_default_library", + "//pkg/util/taints:go_default_library", "//pkg/util/term:go_default_library", "//pkg/util/validation:go_default_library", "//pkg/util/validation/field:go_default_library", diff --git a/pkg/kubectl/cmd/taint.go b/pkg/kubectl/cmd/taint.go index 6961dc31145..fdb1ba2ed50 100644 --- a/pkg/kubectl/cmd/taint.go +++ b/pkg/kubectl/cmd/taint.go @@ -35,6 +35,7 @@ import ( utilerrors "k8s.io/kubernetes/pkg/util/errors" "k8s.io/kubernetes/pkg/util/sets" "k8s.io/kubernetes/pkg/util/strategicpatch" + utiltaints "k8s.io/kubernetes/pkg/util/taints" "k8s.io/kubernetes/pkg/util/validation" ) @@ -171,28 +172,10 @@ func parseTaints(spec []string) ([]api.Taint, []api.Taint, error) { for _, taintSpec := range spec { if strings.Index(taintSpec, "=") != -1 && strings.Index(taintSpec, ":") != -1 { - parts := strings.Split(taintSpec, "=") - if len(parts) != 2 || len(parts[1]) == 0 || len(validation.IsQualifiedName(parts[0])) > 0 { - return nil, nil, fmt.Errorf("invalid taint spec: %v", taintSpec) + newTaint, err := utiltaints.ParseTaint(taintSpec) + if err != nil { + return nil, nil, err } - - parts2 := strings.Split(parts[1], ":") - errs := validation.IsValidLabelValue(parts2[0]) - if len(parts2) != 2 || len(errs) != 0 { - return nil, nil, fmt.Errorf("invalid taint spec: %v, %s", taintSpec, strings.Join(errs, "; ")) - } - - if parts2[1] != string(api.TaintEffectNoSchedule) && parts2[1] != string(api.TaintEffectPreferNoSchedule) { - return nil, nil, fmt.Errorf("invalid taint spec: %v, unsupported taint effect", taintSpec) - } - - effect := api.TaintEffect(parts2[1]) - newTaint := api.Taint{ - Key: parts[0], - Value: parts2[0], - Effect: effect, - } - // validate if taint is unique by if len(uniqueTaints[newTaint.Effect]) > 0 && uniqueTaints[newTaint.Effect].Has(newTaint.Key) { return nil, nil, fmt.Errorf("duplicated taints with the same key and effect: %v", newTaint) diff --git a/pkg/kubelet/kubelet_node_status.go b/pkg/kubelet/kubelet_node_status.go index 4c938fb4a83..e9b589bafae 100644 --- a/pkg/kubelet/kubelet_node_status.go +++ b/pkg/kubelet/kubelet_node_status.go @@ -17,6 +17,7 @@ limitations under the License. package kubelet import ( + "encoding/json" "fmt" "math" "net" @@ -185,6 +186,16 @@ func (kl *Kubelet) initialNode() (*v1.Node, error) { Unschedulable: !kl.registerSchedulable, }, } + if len(kl.kubeletConfiguration.RegisterWithTaints) > 0 { + annotations := make(map[string]string) + b, err := json.Marshal(kl.kubeletConfiguration.RegisterWithTaints) + if err != nil { + return nil, err + } + annotations[v1.TaintsAnnotationKey] = string(b) + node.ObjectMeta.Annotations = annotations + + } // Initially, set NodeNetworkUnavailable to true. if kl.providerRequiresNetworkingConfiguration() { node.Status.Conditions = append(node.Status.Conditions, v1.NodeCondition{ diff --git a/pkg/util/taints/BUILD b/pkg/util/taints/BUILD new file mode 100644 index 00000000000..64c4aa24b46 --- /dev/null +++ b/pkg/util/taints/BUILD @@ -0,0 +1,32 @@ +package(default_visibility = ["//visibility:public"]) + +licenses(["notice"]) + +load( + "@io_bazel_rules_go//go:def.bzl", + "go_binary", + "go_library", + "go_test", + "cgo_library", +) + +go_library( + name = "go_default_library", + srcs = ["taints.go"], + tags = ["automanaged"], + deps = [ + "//pkg/api:go_default_library", + "//pkg/util/validation:go_default_library", + ], +) + +go_test( + name = "go_default_test", + srcs = ["taints_test.go"], + library = "go_default_library", + tags = ["automanaged"], + deps = [ + "//pkg/api:go_default_library", + "//vendor:github.com/spf13/pflag", + ], +) diff --git a/pkg/util/taints/taints.go b/pkg/util/taints/taints.go new file mode 100644 index 00000000000..b36680bd392 --- /dev/null +++ b/pkg/util/taints/taints.go @@ -0,0 +1,95 @@ +/* +Copyright 2016 The Kubernetes Authors. + +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 taints implements uitilites for working with taints +package taints + +import ( + "fmt" + "strings" + + "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/util/validation" +) + +// ParseTaint parses a taint from a string. Taint must be off the format '=:'. +func ParseTaint(st string) (api.Taint, error) { + var taint api.Taint + parts := strings.Split(st, "=") + if len(parts) != 2 || len(parts[1]) == 0 || len(validation.IsQualifiedName(parts[0])) > 0 { + return taint, fmt.Errorf("invalid taint spec: %v", st) + } + + parts2 := strings.Split(parts[1], ":") + + effect := api.TaintEffect(parts2[1]) + + errs := validation.IsValidLabelValue(parts2[0]) + if len(parts2) != 2 || len(errs) != 0 { + return taint, fmt.Errorf("invalid taint spec: %v, %s", st, strings.Join(errs, "; ")) + } + + if effect != api.TaintEffectNoSchedule && effect != api.TaintEffectPreferNoSchedule { + return taint, fmt.Errorf("invalid taint spec: %v, unsupported taint effect", st) + } + + taint.Key = parts[0] + taint.Value = parts2[0] + taint.Effect = effect + + return taint, nil +} + +// NewTaintsVar wraps []api.Taint in a struct that implements flag.Value to allow taints to be +// bound to command line flags. +func NewTaintsVar(ptr *[]api.Taint) taintsVar { + return taintsVar{ + ptr: ptr, + } +} + +type taintsVar struct { + ptr *[]api.Taint +} + +func (t taintsVar) Set(s string) error { + sts := strings.Split(s, ",") + var taints []api.Taint + for _, st := range sts { + taint, err := ParseTaint(st) + if err != nil { + return err + } + taints = append(taints, taint) + } + *t.ptr = taints + return nil +} + +func (t taintsVar) String() string { + if len(*t.ptr) == 0 { + return "" + } + var taints []string + for _, taint := range *t.ptr { + taints = append(taints, fmt.Sprintf("%s=%s:%s", taint.Key, taint.Value, taint.Effect)) + } + return strings.Join(taints, ",") +} + +func (t taintsVar) Type() string { + return "[]api.Taint" +} diff --git a/pkg/util/taints/taints_test.go b/pkg/util/taints/taints_test.go new file mode 100644 index 00000000000..51edcff1957 --- /dev/null +++ b/pkg/util/taints/taints_test.go @@ -0,0 +1,72 @@ +/* +Copyright 2016 The Kubernetes Authors. + +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 taints + +import ( + "reflect" + "strings" + "testing" + + "k8s.io/kubernetes/pkg/api" + + "github.com/spf13/pflag" +) + +func TestTaintsVar(t *testing.T) { + cases := []struct { + f string + err bool + t []api.Taint + }{ + { + f: "", + t: []api.Taint(nil), + }, + { + f: "--t=foo=bar:NoSchedule", + t: []api.Taint{{Key: "foo", Value: "bar", Effect: "NoSchedule"}}, + }, + { + f: "--t=foo=bar:NoSchedule,bing=bang:PreferNoSchedule", + t: []api.Taint{ + {Key: "foo", Value: "bar", Effect: api.TaintEffectNoSchedule}, + {Key: "bing", Value: "bang", Effect: api.TaintEffectPreferNoSchedule}, + }, + }, + } + + for i, c := range cases { + args := append([]string{"test"}, strings.Fields(c.f)...) + cli := pflag.NewFlagSet("test", pflag.ContinueOnError) + var taints []api.Taint + cli.Var(NewTaintsVar(&taints), "t", "bar") + + err := cli.Parse(args) + if err == nil && c.err { + t.Errorf("[%v] expected error", i) + continue + } + if err != nil && !c.err { + t.Errorf("[%v] unexpected error: %v", i, err) + continue + } + if !reflect.DeepEqual(c.t, taints) { + t.Errorf("[%v] unexpected taints:\n\texpected:\n\t\t%#v\n\tgot:\n\t\t%#v", i, c.t, taints) + } + } + +} From 3352fd161f2ff83fd9e333a9579898b31dce0a00 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Mon, 7 Nov 2016 10:11:09 -0800 Subject: [PATCH 2/2] autogenerated --- pkg/apis/componentconfig/BUILD | 1 + pkg/apis/componentconfig/types.generated.go | 6779 +++++++++-------- pkg/apis/componentconfig/v1alpha1/BUILD | 1 + .../v1alpha1/zz_generated.conversion.go | 3 + .../v1alpha1/zz_generated.deepcopy.go | 10 + .../componentconfig/zz_generated.deepcopy.go | 10 + pkg/generated/openapi/zz_generated.openapi.go | 38 +- 7 files changed, 3536 insertions(+), 3306 deletions(-) diff --git a/pkg/apis/componentconfig/BUILD b/pkg/apis/componentconfig/BUILD index 80218fe06cd..e19432779fd 100644 --- a/pkg/apis/componentconfig/BUILD +++ b/pkg/apis/componentconfig/BUILD @@ -22,6 +22,7 @@ go_library( ], tags = ["automanaged"], deps = [ + "//pkg/api:go_default_library", "//pkg/apis/meta/v1:go_default_library", "//pkg/conversion:go_default_library", "//pkg/runtime:go_default_library", diff --git a/pkg/apis/componentconfig/types.generated.go b/pkg/apis/componentconfig/types.generated.go index e2375601186..b7d1051417e 100644 --- a/pkg/apis/componentconfig/types.generated.go +++ b/pkg/apis/componentconfig/types.generated.go @@ -25,8 +25,9 @@ import ( "errors" "fmt" codec1978 "github.com/ugorji/go/codec" + pkg2_api "k8s.io/kubernetes/pkg/api" pkg1_v1 "k8s.io/kubernetes/pkg/apis/meta/v1" - pkg2_config "k8s.io/kubernetes/pkg/util/config" + pkg3_config "k8s.io/kubernetes/pkg/util/config" "reflect" "runtime" time "time" @@ -62,10 +63,11 @@ func init() { panic(err) } if false { // reference the types, but skip this branch at build/run time - var v0 pkg1_v1.TypeMeta - var v1 pkg2_config.ConfigurationMap - var v2 time.Duration - _, _, _ = v0, v1, v2 + var v0 pkg2_api.Taint + var v1 pkg1_v1.TypeMeta + var v2 pkg3_config.ConfigurationMap + var v3 time.Duration + _, _, _, _ = v0, v1, v2, v3 } } @@ -1393,7 +1395,7 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep153 := !z.EncBinary() yy2arr153 := z.EncBasicHandle().StructToArray - var yyq153 [113]bool + var yyq153 [114]bool _, _, _ = yysep153, yyq153, yy2arr153 const yyr153 bool = false yyq153[0] = x.Kind != "" @@ -1411,23 +1413,23 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { yyq153[68] = x.ExperimentalMounterPath != "" yyq153[69] = x.RktAPIEndpoint != "" yyq153[70] = x.RktStage1Image != "" - yyq153[89] = true - yyq153[90] = x.NodeIP != "" - yyq153[94] = x.EvictionHard != "" - yyq153[95] = x.EvictionSoft != "" - yyq153[96] = x.EvictionSoftGracePeriod != "" - yyq153[97] = true - yyq153[98] = x.EvictionMaxPodGracePeriod != 0 - yyq153[99] = x.EvictionMinimumReclaim != "" - yyq153[108] = len(x.AllowedUnsafeSysctls) != 0 - yyq153[110] = x.EnableCRI != false - yyq153[111] = x.ExperimentalFailSwapOn != false - yyq153[112] = x.ExperimentalCheckNodeCapabilitiesBeforeMount != false + yyq153[90] = true + yyq153[91] = x.NodeIP != "" + yyq153[95] = x.EvictionHard != "" + yyq153[96] = x.EvictionSoft != "" + yyq153[97] = x.EvictionSoftGracePeriod != "" + yyq153[98] = true + yyq153[99] = x.EvictionMaxPodGracePeriod != 0 + yyq153[100] = x.EvictionMinimumReclaim != "" + yyq153[109] = len(x.AllowedUnsafeSysctls) != 0 + yyq153[111] = x.EnableCRI != false + yyq153[112] = x.ExperimentalFailSwapOn != false + yyq153[113] = x.ExperimentalCheckNodeCapabilitiesBeforeMount != false var yynn153 int if yyr153 || yy2arr153 { - r.EncodeArrayStart(113) + r.EncodeArrayStart(114) } else { - yynn153 = 86 + yynn153 = 87 for _, b := range yyq153 { if b { yynn153++ @@ -3223,21 +3225,29 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym428 := z.EncBinary() - _ = yym428 - if false { + if x.RegisterWithTaints == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) + yym428 := z.EncBinary() + _ = yym428 + if false { + } else { + h.encSliceapi_Taint(([]pkg2_api.Taint)(x.RegisterWithTaints), e) + } } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("contentType")) + r.EncodeString(codecSelferC_UTF81234, string("registerWithTaints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym429 := z.EncBinary() - _ = yym429 - if false { + if x.RegisterWithTaints == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) + yym429 := z.EncBinary() + _ = yym429 + if false { + } else { + h.encSliceapi_Taint(([]pkg2_api.Taint)(x.RegisterWithTaints), e) + } } } if yyr153 || yy2arr153 { @@ -3246,17 +3256,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym431 if false { } else { - r.EncodeInt(int64(x.KubeAPIQPS)) + r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) + r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym432 := z.EncBinary() _ = yym432 if false { } else { - r.EncodeInt(int64(x.KubeAPIQPS)) + r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } if yyr153 || yy2arr153 { @@ -3265,17 +3275,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym434 if false { } else { - r.EncodeInt(int64(x.KubeAPIBurst)) + r.EncodeInt(int64(x.KubeAPIQPS)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) + r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym435 := z.EncBinary() _ = yym435 if false { } else { - r.EncodeInt(int64(x.KubeAPIBurst)) + r.EncodeInt(int64(x.KubeAPIQPS)) } } if yyr153 || yy2arr153 { @@ -3283,6 +3293,25 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { yym437 := z.EncBinary() _ = yym437 if false { + } else { + r.EncodeInt(int64(x.KubeAPIBurst)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym438 := z.EncBinary() + _ = yym438 + if false { + } else { + r.EncodeInt(int64(x.KubeAPIBurst)) + } + } + if yyr153 || yy2arr153 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym440 := z.EncBinary() + _ = yym440 + if false { } else { r.EncodeBool(bool(x.SerializeImagePulls)) } @@ -3290,8 +3319,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serializeImagePulls")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym438 := z.EncBinary() - _ = yym438 + yym441 := z.EncBinary() + _ = yym441 if false { } else { r.EncodeBool(bool(x.SerializeImagePulls)) @@ -3299,42 +3328,42 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[89] { - yy440 := &x.OutOfDiskTransitionFrequency - yym441 := z.EncBinary() - _ = yym441 + if yyq153[90] { + yy443 := &x.OutOfDiskTransitionFrequency + yym444 := z.EncBinary() + _ = yym444 if false { - } else if z.HasExtensions() && z.EncExt(yy440) { - } else if !yym441 && z.IsJSONHandle() { - z.EncJSONMarshal(yy440) + } else if z.HasExtensions() && z.EncExt(yy443) { + } else if !yym444 && z.IsJSONHandle() { + z.EncJSONMarshal(yy443) } else { - z.EncFallback(yy440) + z.EncFallback(yy443) } } else { r.EncodeNil() } } else { - if yyq153[89] { + if yyq153[90] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("outOfDiskTransitionFrequency")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy442 := &x.OutOfDiskTransitionFrequency - yym443 := z.EncBinary() - _ = yym443 + yy445 := &x.OutOfDiskTransitionFrequency + yym446 := z.EncBinary() + _ = yym446 if false { - } else if z.HasExtensions() && z.EncExt(yy442) { - } else if !yym443 && z.IsJSONHandle() { - z.EncJSONMarshal(yy442) + } else if z.HasExtensions() && z.EncExt(yy445) { + } else if !yym446 && z.IsJSONHandle() { + z.EncJSONMarshal(yy445) } else { - z.EncFallback(yy442) + z.EncFallback(yy445) } } } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[90] { - yym445 := z.EncBinary() - _ = yym445 + if yyq153[91] { + yym448 := z.EncBinary() + _ = yym448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeIP)) @@ -3343,12 +3372,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq153[90] { + if yyq153[91] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym446 := z.EncBinary() - _ = yym446 + yym449 := z.EncBinary() + _ = yym449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeIP)) @@ -3360,8 +3389,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeLabels == nil { r.EncodeNil() } else { - yym448 := z.EncBinary() - _ = yym448 + yym451 := z.EncBinary() + _ = yym451 if false { } else { z.F.EncMapStringStringV(x.NodeLabels, false, e) @@ -3374,8 +3403,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeLabels == nil { r.EncodeNil() } else { - yym449 := z.EncBinary() - _ = yym449 + yym452 := z.EncBinary() + _ = yym452 if false { } else { z.F.EncMapStringStringV(x.NodeLabels, false, e) @@ -3384,8 +3413,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym451 := z.EncBinary() - _ = yym451 + yym454 := z.EncBinary() + _ = yym454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NonMasqueradeCIDR)) @@ -3394,8 +3423,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nonMasqueradeCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym452 := z.EncBinary() - _ = yym452 + yym455 := z.EncBinary() + _ = yym455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NonMasqueradeCIDR)) @@ -3403,8 +3432,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym454 := z.EncBinary() - _ = yym454 + yym457 := z.EncBinary() + _ = yym457 if false { } else { r.EncodeBool(bool(x.EnableCustomMetrics)) @@ -3413,38 +3442,13 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableCustomMetrics")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym455 := z.EncBinary() - _ = yym455 + yym458 := z.EncBinary() + _ = yym458 if false { } else { r.EncodeBool(bool(x.EnableCustomMetrics)) } } - if yyr153 || yy2arr153 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[94] { - yym457 := z.EncBinary() - _ = yym457 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq153[94] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionHard")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym458 := z.EncBinary() - _ = yym458 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) - } - } - } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq153[95] { @@ -3452,7 +3456,7 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym460 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -3460,13 +3464,13 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq153[95] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionSoft")) + r.EncodeString(codecSelferC_UTF81234, string("evictionHard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym461 := z.EncBinary() _ = yym461 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) } } } @@ -3477,7 +3481,7 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym463 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoftGracePeriod)) + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -3485,11 +3489,36 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq153[96] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionSoftGracePeriod")) + r.EncodeString(codecSelferC_UTF81234, string("evictionSoft")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym464 := z.EncBinary() _ = yym464 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) + } + } + } + if yyr153 || yy2arr153 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq153[97] { + yym466 := z.EncBinary() + _ = yym466 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoftGracePeriod)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq153[97] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("evictionSoftGracePeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym467 := z.EncBinary() + _ = yym467 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoftGracePeriod)) } @@ -3497,59 +3526,34 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[97] { - yy466 := &x.EvictionPressureTransitionPeriod - yym467 := z.EncBinary() - _ = yym467 + if yyq153[98] { + yy469 := &x.EvictionPressureTransitionPeriod + yym470 := z.EncBinary() + _ = yym470 if false { - } else if z.HasExtensions() && z.EncExt(yy466) { - } else if !yym467 && z.IsJSONHandle() { - z.EncJSONMarshal(yy466) + } else if z.HasExtensions() && z.EncExt(yy469) { + } else if !yym470 && z.IsJSONHandle() { + z.EncJSONMarshal(yy469) } else { - z.EncFallback(yy466) + z.EncFallback(yy469) } } else { r.EncodeNil() } } else { - if yyq153[97] { + if yyq153[98] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionPressureTransitionPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy468 := &x.EvictionPressureTransitionPeriod - yym469 := z.EncBinary() - _ = yym469 - if false { - } else if z.HasExtensions() && z.EncExt(yy468) { - } else if !yym469 && z.IsJSONHandle() { - z.EncJSONMarshal(yy468) - } else { - z.EncFallback(yy468) - } - } - } - if yyr153 || yy2arr153 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[98] { - yym471 := z.EncBinary() - _ = yym471 - if false { - } else { - r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq153[98] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionMaxPodGracePeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy471 := &x.EvictionPressureTransitionPeriod yym472 := z.EncBinary() _ = yym472 if false { + } else if z.HasExtensions() && z.EncExt(yy471) { + } else if !yym472 && z.IsJSONHandle() { + z.EncJSONMarshal(yy471) } else { - r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) + z.EncFallback(yy471) } } } @@ -3559,6 +3563,31 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { yym474 := z.EncBinary() _ = yym474 if false { + } else { + r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq153[99] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("evictionMaxPodGracePeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym475 := z.EncBinary() + _ = yym475 + if false { + } else { + r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) + } + } + } + if yyr153 || yy2arr153 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq153[100] { + yym477 := z.EncBinary() + _ = yym477 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionMinimumReclaim)) } @@ -3566,12 +3595,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq153[99] { + if yyq153[100] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionMinimumReclaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym475 := z.EncBinary() - _ = yym475 + yym478 := z.EncBinary() + _ = yym478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionMinimumReclaim)) @@ -3580,8 +3609,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym477 := z.EncBinary() - _ = yym477 + yym480 := z.EncBinary() + _ = yym480 if false { } else { r.EncodeInt(int64(x.PodsPerCore)) @@ -3590,8 +3619,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podsPerCore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym478 := z.EncBinary() - _ = yym478 + yym481 := z.EncBinary() + _ = yym481 if false { } else { r.EncodeInt(int64(x.PodsPerCore)) @@ -3599,8 +3628,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym480 := z.EncBinary() - _ = yym480 + yym483 := z.EncBinary() + _ = yym483 if false { } else { r.EncodeBool(bool(x.EnableControllerAttachDetach)) @@ -3609,8 +3638,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableControllerAttachDetach")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym481 := z.EncBinary() - _ = yym481 + yym484 := z.EncBinary() + _ = yym484 if false { } else { r.EncodeBool(bool(x.EnableControllerAttachDetach)) @@ -3621,12 +3650,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.SystemReserved == nil { r.EncodeNil() } else { - yym483 := z.EncBinary() - _ = yym483 + yym486 := z.EncBinary() + _ = yym486 if false { } else if z.HasExtensions() && z.EncExt(x.SystemReserved) { } else { - h.encconfig_ConfigurationMap((pkg2_config.ConfigurationMap)(x.SystemReserved), e) + h.encconfig_ConfigurationMap((pkg3_config.ConfigurationMap)(x.SystemReserved), e) } } } else { @@ -3636,12 +3665,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.SystemReserved == nil { r.EncodeNil() } else { - yym484 := z.EncBinary() - _ = yym484 + yym487 := z.EncBinary() + _ = yym487 if false { } else if z.HasExtensions() && z.EncExt(x.SystemReserved) { } else { - h.encconfig_ConfigurationMap((pkg2_config.ConfigurationMap)(x.SystemReserved), e) + h.encconfig_ConfigurationMap((pkg3_config.ConfigurationMap)(x.SystemReserved), e) } } } @@ -3650,12 +3679,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.KubeReserved == nil { r.EncodeNil() } else { - yym486 := z.EncBinary() - _ = yym486 + yym489 := z.EncBinary() + _ = yym489 if false { } else if z.HasExtensions() && z.EncExt(x.KubeReserved) { } else { - h.encconfig_ConfigurationMap((pkg2_config.ConfigurationMap)(x.KubeReserved), e) + h.encconfig_ConfigurationMap((pkg3_config.ConfigurationMap)(x.KubeReserved), e) } } } else { @@ -3665,51 +3694,32 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.KubeReserved == nil { r.EncodeNil() } else { - yym487 := z.EncBinary() - _ = yym487 + yym490 := z.EncBinary() + _ = yym490 if false { } else if z.HasExtensions() && z.EncExt(x.KubeReserved) { } else { - h.encconfig_ConfigurationMap((pkg2_config.ConfigurationMap)(x.KubeReserved), e) + h.encconfig_ConfigurationMap((pkg3_config.ConfigurationMap)(x.KubeReserved), e) } } } - if yyr153 || yy2arr153 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym489 := z.EncBinary() - _ = yym489 - if false { - } else { - r.EncodeBool(bool(x.ProtectKernelDefaults)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("protectKernelDefaults")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym490 := z.EncBinary() - _ = yym490 - if false { - } else { - r.EncodeBool(bool(x.ProtectKernelDefaults)) - } - } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) yym492 := z.EncBinary() _ = yym492 if false { } else { - r.EncodeBool(bool(x.MakeIPTablesUtilChains)) + r.EncodeBool(bool(x.ProtectKernelDefaults)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("makeIPTablesUtilChains")) + r.EncodeString(codecSelferC_UTF81234, string("protectKernelDefaults")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym493 := z.EncBinary() _ = yym493 if false { } else { - r.EncodeBool(bool(x.MakeIPTablesUtilChains)) + r.EncodeBool(bool(x.ProtectKernelDefaults)) } } if yyr153 || yy2arr153 { @@ -3718,17 +3728,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym495 if false { } else { - r.EncodeInt(int64(x.IPTablesMasqueradeBit)) + r.EncodeBool(bool(x.MakeIPTablesUtilChains)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("iptablesMasqueradeBit")) + r.EncodeString(codecSelferC_UTF81234, string("makeIPTablesUtilChains")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym496 := z.EncBinary() _ = yym496 if false { } else { - r.EncodeInt(int64(x.IPTablesMasqueradeBit)) + r.EncodeBool(bool(x.MakeIPTablesUtilChains)) } } if yyr153 || yy2arr153 { @@ -3736,6 +3746,25 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { yym498 := z.EncBinary() _ = yym498 if false { + } else { + r.EncodeInt(int64(x.IPTablesMasqueradeBit)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("iptablesMasqueradeBit")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym499 := z.EncBinary() + _ = yym499 + if false { + } else { + r.EncodeInt(int64(x.IPTablesMasqueradeBit)) + } + } + if yyr153 || yy2arr153 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym501 := z.EncBinary() + _ = yym501 + if false { } else { r.EncodeInt(int64(x.IPTablesDropBit)) } @@ -3743,8 +3772,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iptablesDropBit")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym499 := z.EncBinary() - _ = yym499 + yym502 := z.EncBinary() + _ = yym502 if false { } else { r.EncodeInt(int64(x.IPTablesDropBit)) @@ -3752,12 +3781,12 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[108] { + if yyq153[109] { if x.AllowedUnsafeSysctls == nil { r.EncodeNil() } else { - yym501 := z.EncBinary() - _ = yym501 + yym504 := z.EncBinary() + _ = yym504 if false { } else { z.F.EncSliceStringV(x.AllowedUnsafeSysctls, false, e) @@ -3767,15 +3796,15 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq153[108] { + if yyq153[109] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("experimentalAllowedUnsafeSysctls")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AllowedUnsafeSysctls == nil { r.EncodeNil() } else { - yym502 := z.EncBinary() - _ = yym502 + yym505 := z.EncBinary() + _ = yym505 if false { } else { z.F.EncSliceStringV(x.AllowedUnsafeSysctls, false, e) @@ -3785,8 +3814,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym504 := z.EncBinary() - _ = yym504 + yym507 := z.EncBinary() + _ = yym507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FeatureGates)) @@ -3795,38 +3824,13 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("featureGates")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym505 := z.EncBinary() - _ = yym505 + yym508 := z.EncBinary() + _ = yym508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FeatureGates)) } } - if yyr153 || yy2arr153 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq153[110] { - yym507 := z.EncBinary() - _ = yym507 - if false { - } else { - r.EncodeBool(bool(x.EnableCRI)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq153[110] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("enableCRI")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym508 := z.EncBinary() - _ = yym508 - if false { - } else { - r.EncodeBool(bool(x.EnableCRI)) - } - } - } if yyr153 || yy2arr153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq153[111] { @@ -3834,7 +3838,7 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym510 if false { } else { - r.EncodeBool(bool(x.ExperimentalFailSwapOn)) + r.EncodeBool(bool(x.EnableCRI)) } } else { r.EncodeBool(false) @@ -3842,13 +3846,13 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq153[111] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("experimentalFailSwapOn")) + r.EncodeString(codecSelferC_UTF81234, string("enableCRI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym511 := z.EncBinary() _ = yym511 if false { } else { - r.EncodeBool(bool(x.ExperimentalFailSwapOn)) + r.EncodeBool(bool(x.EnableCRI)) } } } @@ -3859,7 +3863,7 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym513 if false { } else { - r.EncodeBool(bool(x.ExperimentalCheckNodeCapabilitiesBeforeMount)) + r.EncodeBool(bool(x.ExperimentalFailSwapOn)) } } else { r.EncodeBool(false) @@ -3867,11 +3871,36 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq153[112] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ExperimentalCheckNodeCapabilitiesBeforeMount")) + r.EncodeString(codecSelferC_UTF81234, string("experimentalFailSwapOn")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym514 := z.EncBinary() _ = yym514 if false { + } else { + r.EncodeBool(bool(x.ExperimentalFailSwapOn)) + } + } + } + if yyr153 || yy2arr153 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq153[113] { + yym516 := z.EncBinary() + _ = yym516 + if false { + } else { + r.EncodeBool(bool(x.ExperimentalCheckNodeCapabilitiesBeforeMount)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq153[113] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ExperimentalCheckNodeCapabilitiesBeforeMount")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym517 := z.EncBinary() + _ = yym517 + if false { } else { r.EncodeBool(bool(x.ExperimentalCheckNodeCapabilitiesBeforeMount)) } @@ -3890,25 +3919,25 @@ func (x *KubeletConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym515 := z.DecBinary() - _ = yym515 + yym518 := z.DecBinary() + _ = yym518 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct516 := r.ContainerType() - if yyct516 == codecSelferValueTypeMap1234 { - yyl516 := r.ReadMapStart() - if yyl516 == 0 { + yyct519 := r.ContainerType() + if yyct519 == codecSelferValueTypeMap1234 { + yyl519 := r.ReadMapStart() + if yyl519 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl516, d) + x.codecDecodeSelfFromMap(yyl519, d) } - } else if yyct516 == codecSelferValueTypeArray1234 { - yyl516 := r.ReadArrayStart() - if yyl516 == 0 { + } else if yyct519 == codecSelferValueTypeArray1234 { + yyl519 := r.ReadArrayStart() + if yyl519 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl516, d) + x.codecDecodeSelfFromArray(yyl519, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3920,12 +3949,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys517Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys517Slc - var yyhl517 bool = l >= 0 - for yyj517 := 0; ; yyj517++ { - if yyhl517 { - if yyj517 >= l { + var yys520Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys520Slc + var yyhl520 bool = l >= 0 + for yyj520 := 0; ; yyj520++ { + if yyhl520 { + if yyj520 >= l { break } } else { @@ -3934,10 +3963,10 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys517Slc = r.DecodeBytes(yys517Slc, true, true) - yys517 := string(yys517Slc) + yys520Slc = r.DecodeBytes(yys520Slc, true, true) + yys520 := string(yys520Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys517 { + switch yys520 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -3960,45 +3989,45 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SyncFrequency = pkg1_v1.Duration{} } else { - yyv521 := &x.SyncFrequency - yym522 := z.DecBinary() - _ = yym522 + yyv524 := &x.SyncFrequency + yym525 := z.DecBinary() + _ = yym525 if false { - } else if z.HasExtensions() && z.DecExt(yyv521) { - } else if !yym522 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv521) + } else if z.HasExtensions() && z.DecExt(yyv524) { + } else if !yym525 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv524) } else { - z.DecFallback(yyv521, false) + z.DecFallback(yyv524, false) } } case "fileCheckFrequency": if r.TryDecodeAsNil() { x.FileCheckFrequency = pkg1_v1.Duration{} } else { - yyv523 := &x.FileCheckFrequency - yym524 := z.DecBinary() - _ = yym524 + yyv526 := &x.FileCheckFrequency + yym527 := z.DecBinary() + _ = yym527 if false { - } else if z.HasExtensions() && z.DecExt(yyv523) { - } else if !yym524 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv523) + } else if z.HasExtensions() && z.DecExt(yyv526) { + } else if !yym527 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv526) } else { - z.DecFallback(yyv523, false) + z.DecFallback(yyv526, false) } } case "httpCheckFrequency": if r.TryDecodeAsNil() { x.HTTPCheckFrequency = pkg1_v1.Duration{} } else { - yyv525 := &x.HTTPCheckFrequency - yym526 := z.DecBinary() - _ = yym526 + yyv528 := &x.HTTPCheckFrequency + yym529 := z.DecBinary() + _ = yym529 if false { - } else if z.HasExtensions() && z.DecExt(yyv525) { - } else if !yym526 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv525) + } else if z.HasExtensions() && z.DecExt(yyv528) { + } else if !yym529 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv528) } else { - z.DecFallback(yyv525, false) + z.DecFallback(yyv528, false) } } case "manifestURL": @@ -4059,15 +4088,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Authentication = KubeletAuthentication{} } else { - yyv536 := &x.Authentication - yyv536.CodecDecodeSelf(d) + yyv539 := &x.Authentication + yyv539.CodecDecodeSelf(d) } case "authorization": if r.TryDecodeAsNil() { x.Authorization = KubeletAuthorization{} } else { - yyv537 := &x.Authorization - yyv537.CodecDecodeSelf(d) + yyv540 := &x.Authorization + yyv540.CodecDecodeSelf(d) } case "hostnameOverride": if r.TryDecodeAsNil() { @@ -4109,36 +4138,36 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.HostNetworkSources = nil } else { - yyv544 := &x.HostNetworkSources - yym545 := z.DecBinary() - _ = yym545 + yyv547 := &x.HostNetworkSources + yym548 := z.DecBinary() + _ = yym548 if false { } else { - z.F.DecSliceStringX(yyv544, false, d) + z.F.DecSliceStringX(yyv547, false, d) } } case "hostPIDSources": if r.TryDecodeAsNil() { x.HostPIDSources = nil } else { - yyv546 := &x.HostPIDSources - yym547 := z.DecBinary() - _ = yym547 + yyv549 := &x.HostPIDSources + yym550 := z.DecBinary() + _ = yym550 if false { } else { - z.F.DecSliceStringX(yyv546, false, d) + z.F.DecSliceStringX(yyv549, false, d) } } case "hostIPCSources": if r.TryDecodeAsNil() { x.HostIPCSources = nil } else { - yyv548 := &x.HostIPCSources - yym549 := z.DecBinary() - _ = yym549 + yyv551 := &x.HostIPCSources + yym552 := z.DecBinary() + _ = yym552 if false { } else { - z.F.DecSliceStringX(yyv548, false, d) + z.F.DecSliceStringX(yyv551, false, d) } } case "registryPullQPS": @@ -4175,15 +4204,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.MinimumGCAge = pkg1_v1.Duration{} } else { - yyv555 := &x.MinimumGCAge - yym556 := z.DecBinary() - _ = yym556 + yyv558 := &x.MinimumGCAge + yym559 := z.DecBinary() + _ = yym559 if false { - } else if z.HasExtensions() && z.DecExt(yyv555) { - } else if !yym556 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv555) + } else if z.HasExtensions() && z.DecExt(yyv558) { + } else if !yym559 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv558) } else { - z.DecFallback(yyv555, false) + z.DecFallback(yyv558, false) } } case "maxPerPodContainerCount": @@ -4250,45 +4279,45 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.StreamingConnectionIdleTimeout = pkg1_v1.Duration{} } else { - yyv567 := &x.StreamingConnectionIdleTimeout - yym568 := z.DecBinary() - _ = yym568 + yyv570 := &x.StreamingConnectionIdleTimeout + yym571 := z.DecBinary() + _ = yym571 if false { - } else if z.HasExtensions() && z.DecExt(yyv567) { - } else if !yym568 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv567) + } else if z.HasExtensions() && z.DecExt(yyv570) { + } else if !yym571 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv570) } else { - z.DecFallback(yyv567, false) + z.DecFallback(yyv570, false) } } case "nodeStatusUpdateFrequency": if r.TryDecodeAsNil() { x.NodeStatusUpdateFrequency = pkg1_v1.Duration{} } else { - yyv569 := &x.NodeStatusUpdateFrequency - yym570 := z.DecBinary() - _ = yym570 + yyv572 := &x.NodeStatusUpdateFrequency + yym573 := z.DecBinary() + _ = yym573 if false { - } else if z.HasExtensions() && z.DecExt(yyv569) { - } else if !yym570 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv569) + } else if z.HasExtensions() && z.DecExt(yyv572) { + } else if !yym573 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv572) } else { - z.DecFallback(yyv569, false) + z.DecFallback(yyv572, false) } } case "imageMinimumGCAge": if r.TryDecodeAsNil() { x.ImageMinimumGCAge = pkg1_v1.Duration{} } else { - yyv571 := &x.ImageMinimumGCAge - yym572 := z.DecBinary() - _ = yym572 + yyv574 := &x.ImageMinimumGCAge + yym575 := z.DecBinary() + _ = yym575 if false { - } else if z.HasExtensions() && z.DecExt(yyv571) { - } else if !yym572 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv571) + } else if z.HasExtensions() && z.DecExt(yyv574) { + } else if !yym575 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv574) } else { - z.DecFallback(yyv571, false) + z.DecFallback(yyv574, false) } } case "imageGCHighThresholdPercent": @@ -4313,15 +4342,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.VolumeStatsAggPeriod = pkg1_v1.Duration{} } else { - yyv576 := &x.VolumeStatsAggPeriod - yym577 := z.DecBinary() - _ = yym577 + yyv579 := &x.VolumeStatsAggPeriod + yym580 := z.DecBinary() + _ = yym580 if false { - } else if z.HasExtensions() && z.DecExt(yyv576) { - } else if !yym577 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv576) + } else if z.HasExtensions() && z.DecExt(yyv579) { + } else if !yym580 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv579) } else { - z.DecFallback(yyv576, false) + z.DecFallback(yyv579, false) } } case "networkPluginName": @@ -4430,15 +4459,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.RuntimeRequestTimeout = pkg1_v1.Duration{} } else { - yyv595 := &x.RuntimeRequestTimeout - yym596 := z.DecBinary() - _ = yym596 + yyv598 := &x.RuntimeRequestTimeout + yym599 := z.DecBinary() + _ = yym599 if false { - } else if z.HasExtensions() && z.DecExt(yyv595) { - } else if !yym596 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv595) + } else if z.HasExtensions() && z.DecExt(yyv598) { + } else if !yym599 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv598) } else { - z.DecFallback(yyv595, false) + z.DecFallback(yyv598, false) } } case "rktPath": @@ -4549,6 +4578,18 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode } else { x.RegisterSchedulable = bool(r.DecodeBool()) } + case "registerWithTaints": + if r.TryDecodeAsNil() { + x.RegisterWithTaints = nil + } else { + yyv618 := &x.RegisterWithTaints + yym619 := z.DecBinary() + _ = yym619 + if false { + } else { + h.decSliceapi_Taint((*[]pkg2_api.Taint)(yyv618), d) + } + } case "contentType": if r.TryDecodeAsNil() { x.ContentType = "" @@ -4577,15 +4618,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.OutOfDiskTransitionFrequency = pkg1_v1.Duration{} } else { - yyv619 := &x.OutOfDiskTransitionFrequency - yym620 := z.DecBinary() - _ = yym620 + yyv624 := &x.OutOfDiskTransitionFrequency + yym625 := z.DecBinary() + _ = yym625 if false { - } else if z.HasExtensions() && z.DecExt(yyv619) { - } else if !yym620 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv619) + } else if z.HasExtensions() && z.DecExt(yyv624) { + } else if !yym625 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv624) } else { - z.DecFallback(yyv619, false) + z.DecFallback(yyv624, false) } } case "nodeIP": @@ -4598,12 +4639,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.NodeLabels = nil } else { - yyv622 := &x.NodeLabels - yym623 := z.DecBinary() - _ = yym623 + yyv627 := &x.NodeLabels + yym628 := z.DecBinary() + _ = yym628 if false { } else { - z.F.DecMapStringStringX(yyv622, false, d) + z.F.DecMapStringStringX(yyv627, false, d) } } case "nonMasqueradeCIDR": @@ -4640,15 +4681,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.EvictionPressureTransitionPeriod = pkg1_v1.Duration{} } else { - yyv629 := &x.EvictionPressureTransitionPeriod - yym630 := z.DecBinary() - _ = yym630 + yyv634 := &x.EvictionPressureTransitionPeriod + yym635 := z.DecBinary() + _ = yym635 if false { - } else if z.HasExtensions() && z.DecExt(yyv629) { - } else if !yym630 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv629) + } else if z.HasExtensions() && z.DecExt(yyv634) { + } else if !yym635 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv634) } else { - z.DecFallback(yyv629, false) + z.DecFallback(yyv634, false) } } case "evictionMaxPodGracePeriod": @@ -4679,26 +4720,26 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SystemReserved = nil } else { - yyv635 := &x.SystemReserved - yym636 := z.DecBinary() - _ = yym636 + yyv640 := &x.SystemReserved + yym641 := z.DecBinary() + _ = yym641 if false { - } else if z.HasExtensions() && z.DecExt(yyv635) { + } else if z.HasExtensions() && z.DecExt(yyv640) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv635), d) + h.decconfig_ConfigurationMap((*pkg3_config.ConfigurationMap)(yyv640), d) } } case "kubeReserved": if r.TryDecodeAsNil() { x.KubeReserved = nil } else { - yyv637 := &x.KubeReserved - yym638 := z.DecBinary() - _ = yym638 + yyv642 := &x.KubeReserved + yym643 := z.DecBinary() + _ = yym643 if false { - } else if z.HasExtensions() && z.DecExt(yyv637) { + } else if z.HasExtensions() && z.DecExt(yyv642) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv637), d) + h.decconfig_ConfigurationMap((*pkg3_config.ConfigurationMap)(yyv642), d) } } case "protectKernelDefaults": @@ -4729,12 +4770,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.AllowedUnsafeSysctls = nil } else { - yyv643 := &x.AllowedUnsafeSysctls - yym644 := z.DecBinary() - _ = yym644 + yyv648 := &x.AllowedUnsafeSysctls + yym649 := z.DecBinary() + _ = yym649 if false { } else { - z.F.DecSliceStringX(yyv643, false, d) + z.F.DecSliceStringX(yyv648, false, d) } } case "featureGates": @@ -4762,9 +4803,9 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.ExperimentalCheckNodeCapabilitiesBeforeMount = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys517) - } // end switch yys517 - } // end for yyj517 + z.DecStructFieldNotFound(-1, yys520) + } // end switch yys520 + } // end for yyj520 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4772,16 +4813,16 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj649 int - var yyb649 bool - var yyhl649 bool = l >= 0 - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + var yyj654 int + var yyb654 bool + var yyhl654 bool = l >= 0 + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4791,13 +4832,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4807,13 +4848,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4823,13 +4864,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodManifestPath = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4837,24 +4878,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.SyncFrequency = pkg1_v1.Duration{} } else { - yyv653 := &x.SyncFrequency - yym654 := z.DecBinary() - _ = yym654 + yyv658 := &x.SyncFrequency + yym659 := z.DecBinary() + _ = yym659 if false { - } else if z.HasExtensions() && z.DecExt(yyv653) { - } else if !yym654 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv653) + } else if z.HasExtensions() && z.DecExt(yyv658) { + } else if !yym659 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv658) } else { - z.DecFallback(yyv653, false) + z.DecFallback(yyv658, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4862,24 +4903,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.FileCheckFrequency = pkg1_v1.Duration{} } else { - yyv655 := &x.FileCheckFrequency - yym656 := z.DecBinary() - _ = yym656 + yyv660 := &x.FileCheckFrequency + yym661 := z.DecBinary() + _ = yym661 if false { - } else if z.HasExtensions() && z.DecExt(yyv655) { - } else if !yym656 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv655) + } else if z.HasExtensions() && z.DecExt(yyv660) { + } else if !yym661 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv660) } else { - z.DecFallback(yyv655, false) + z.DecFallback(yyv660, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4887,24 +4928,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HTTPCheckFrequency = pkg1_v1.Duration{} } else { - yyv657 := &x.HTTPCheckFrequency - yym658 := z.DecBinary() - _ = yym658 + yyv662 := &x.HTTPCheckFrequency + yym663 := z.DecBinary() + _ = yym663 if false { - } else if z.HasExtensions() && z.DecExt(yyv657) { - } else if !yym658 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv657) + } else if z.HasExtensions() && z.DecExt(yyv662) { + } else if !yym663 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv662) } else { - z.DecFallback(yyv657, false) + z.DecFallback(yyv662, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4914,13 +4955,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ManifestURL = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4930,13 +4971,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ManifestURLHeader = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4946,13 +4987,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableServer = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4962,13 +5003,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Address = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4978,13 +5019,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Port = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4994,13 +5035,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ReadOnlyPort = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5010,13 +5051,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.TLSCertFile = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5026,13 +5067,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.TLSPrivateKeyFile = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5042,13 +5083,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CertDirectory = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5056,16 +5097,16 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Authentication = KubeletAuthentication{} } else { - yyv668 := &x.Authentication - yyv668.CodecDecodeSelf(d) + yyv673 := &x.Authentication + yyv673.CodecDecodeSelf(d) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5073,16 +5114,16 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Authorization = KubeletAuthorization{} } else { - yyv669 := &x.Authorization - yyv669.CodecDecodeSelf(d) + yyv674 := &x.Authorization + yyv674.CodecDecodeSelf(d) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5092,13 +5133,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HostnameOverride = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5108,13 +5149,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodInfraContainerImage = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5124,13 +5165,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.DockerEndpoint = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5140,13 +5181,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RootDirectory = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5156,13 +5197,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SeccompProfileRoot = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5172,13 +5213,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.AllowPrivileged = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5186,21 +5227,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostNetworkSources = nil } else { - yyv676 := &x.HostNetworkSources - yym677 := z.DecBinary() - _ = yym677 + yyv681 := &x.HostNetworkSources + yym682 := z.DecBinary() + _ = yym682 if false { } else { - z.F.DecSliceStringX(yyv676, false, d) + z.F.DecSliceStringX(yyv681, false, d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5208,21 +5249,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostPIDSources = nil } else { - yyv678 := &x.HostPIDSources - yym679 := z.DecBinary() - _ = yym679 + yyv683 := &x.HostPIDSources + yym684 := z.DecBinary() + _ = yym684 if false { } else { - z.F.DecSliceStringX(yyv678, false, d) + z.F.DecSliceStringX(yyv683, false, d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5230,21 +5271,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostIPCSources = nil } else { - yyv680 := &x.HostIPCSources - yym681 := z.DecBinary() - _ = yym681 + yyv685 := &x.HostIPCSources + yym686 := z.DecBinary() + _ = yym686 if false { } else { - z.F.DecSliceStringX(yyv680, false, d) + z.F.DecSliceStringX(yyv685, false, d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5254,13 +5295,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegistryPullQPS = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5270,13 +5311,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegistryBurst = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5286,13 +5327,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EventRecordQPS = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5302,13 +5343,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EventBurst = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5318,13 +5359,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableDebuggingHandlers = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5332,24 +5373,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.MinimumGCAge = pkg1_v1.Duration{} } else { - yyv687 := &x.MinimumGCAge - yym688 := z.DecBinary() - _ = yym688 + yyv692 := &x.MinimumGCAge + yym693 := z.DecBinary() + _ = yym693 if false { - } else if z.HasExtensions() && z.DecExt(yyv687) { - } else if !yym688 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv687) + } else if z.HasExtensions() && z.DecExt(yyv692) { + } else if !yym693 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv692) } else { - z.DecFallback(yyv687, false) + z.DecFallback(yyv692, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5359,13 +5400,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxPerPodContainerCount = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5375,13 +5416,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxContainerCount = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5391,13 +5432,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CAdvisorPort = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5407,13 +5448,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HealthzPort = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5423,13 +5464,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HealthzBindAddress = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5439,13 +5480,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.OOMScoreAdj = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5455,13 +5496,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegisterNode = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5471,13 +5512,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ClusterDomain = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5487,13 +5528,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MasterServiceNamespace = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5503,13 +5544,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ClusterDNS = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5517,24 +5558,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.StreamingConnectionIdleTimeout = pkg1_v1.Duration{} } else { - yyv699 := &x.StreamingConnectionIdleTimeout - yym700 := z.DecBinary() - _ = yym700 + yyv704 := &x.StreamingConnectionIdleTimeout + yym705 := z.DecBinary() + _ = yym705 if false { - } else if z.HasExtensions() && z.DecExt(yyv699) { - } else if !yym700 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv699) + } else if z.HasExtensions() && z.DecExt(yyv704) { + } else if !yym705 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv704) } else { - z.DecFallback(yyv699, false) + z.DecFallback(yyv704, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5542,24 +5583,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.NodeStatusUpdateFrequency = pkg1_v1.Duration{} } else { - yyv701 := &x.NodeStatusUpdateFrequency - yym702 := z.DecBinary() - _ = yym702 + yyv706 := &x.NodeStatusUpdateFrequency + yym707 := z.DecBinary() + _ = yym707 if false { - } else if z.HasExtensions() && z.DecExt(yyv701) { - } else if !yym702 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv701) + } else if z.HasExtensions() && z.DecExt(yyv706) { + } else if !yym707 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv706) } else { - z.DecFallback(yyv701, false) + z.DecFallback(yyv706, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5567,80 +5608,7 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ImageMinimumGCAge = pkg1_v1.Duration{} } else { - yyv703 := &x.ImageMinimumGCAge - yym704 := z.DecBinary() - _ = yym704 - if false { - } else if z.HasExtensions() && z.DecExt(yyv703) { - } else if !yym704 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv703) - } else { - z.DecFallback(yyv703, false) - } - } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l - } else { - yyb649 = r.CheckBreak() - } - if yyb649 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ImageGCHighThresholdPercent = 0 - } else { - x.ImageGCHighThresholdPercent = int32(r.DecodeInt(32)) - } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l - } else { - yyb649 = r.CheckBreak() - } - if yyb649 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ImageGCLowThresholdPercent = 0 - } else { - x.ImageGCLowThresholdPercent = int32(r.DecodeInt(32)) - } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l - } else { - yyb649 = r.CheckBreak() - } - if yyb649 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LowDiskSpaceThresholdMB = 0 - } else { - x.LowDiskSpaceThresholdMB = int32(r.DecodeInt(32)) - } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l - } else { - yyb649 = r.CheckBreak() - } - if yyb649 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.VolumeStatsAggPeriod = pkg1_v1.Duration{} - } else { - yyv708 := &x.VolumeStatsAggPeriod + yyv708 := &x.ImageMinimumGCAge yym709 := z.DecBinary() _ = yym709 if false { @@ -5651,13 +5619,86 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco z.DecFallback(yyv708, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ImageGCHighThresholdPercent = 0 + } else { + x.ImageGCHighThresholdPercent = int32(r.DecodeInt(32)) + } + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l + } else { + yyb654 = r.CheckBreak() + } + if yyb654 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ImageGCLowThresholdPercent = 0 + } else { + x.ImageGCLowThresholdPercent = int32(r.DecodeInt(32)) + } + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l + } else { + yyb654 = r.CheckBreak() + } + if yyb654 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LowDiskSpaceThresholdMB = 0 + } else { + x.LowDiskSpaceThresholdMB = int32(r.DecodeInt(32)) + } + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l + } else { + yyb654 = r.CheckBreak() + } + if yyb654 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.VolumeStatsAggPeriod = pkg1_v1.Duration{} + } else { + yyv713 := &x.VolumeStatsAggPeriod + yym714 := z.DecBinary() + _ = yym714 + if false { + } else if z.HasExtensions() && z.DecExt(yyv713) { + } else if !yym714 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv713) + } else { + z.DecFallback(yyv713, false) + } + } + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l + } else { + yyb654 = r.CheckBreak() + } + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5667,13 +5708,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginName = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5683,13 +5724,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginMTU = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5699,13 +5740,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginDir = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5715,13 +5756,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CNIConfDir = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5731,13 +5772,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CNIBinDir = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5747,13 +5788,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.VolumePluginDir = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5763,13 +5804,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CloudProvider = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5779,13 +5820,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CloudConfigFile = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5795,13 +5836,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeletCgroups = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5811,13 +5852,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExperimentalCgroupsPerQOS = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5827,13 +5868,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CgroupDriver = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5843,13 +5884,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RuntimeCgroups = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5859,13 +5900,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SystemCgroups = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5875,13 +5916,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CgroupRoot = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5891,13 +5932,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ContainerRuntime = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5907,13 +5948,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RemoteRuntimeEndpoint = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5923,13 +5964,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RemoteImageEndpoint = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5937,24 +5978,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.RuntimeRequestTimeout = pkg1_v1.Duration{} } else { - yyv727 := &x.RuntimeRequestTimeout - yym728 := z.DecBinary() - _ = yym728 + yyv732 := &x.RuntimeRequestTimeout + yym733 := z.DecBinary() + _ = yym733 if false { - } else if z.HasExtensions() && z.DecExt(yyv727) { - } else if !yym728 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv727) + } else if z.HasExtensions() && z.DecExt(yyv732) { + } else if !yym733 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv732) } else { - z.DecFallback(yyv727, false) + z.DecFallback(yyv732, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5964,13 +6005,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktPath = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5980,13 +6021,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExperimentalMounterPath = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5996,13 +6037,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktAPIEndpoint = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6012,13 +6053,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktStage1Image = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6028,13 +6069,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.LockFilePath = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6044,13 +6085,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExitOnLockContention = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6060,13 +6101,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HairpinMode = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6076,13 +6117,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.BabysitDaemons = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6092,13 +6133,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxPods = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6108,13 +6149,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NvidiaGPUs = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6124,13 +6165,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.DockerExecHandlerName = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6140,13 +6181,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodCIDR = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6156,13 +6197,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ResolverConfig = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6172,13 +6213,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CPUCFSQuota = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6188,13 +6229,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Containerized = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6204,13 +6245,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxOpenFiles = int64(r.DecodeInt(64)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6220,13 +6261,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ReconcileCIDR = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6236,13 +6277,35 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegisterSchedulable = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.RegisterWithTaints = nil + } else { + yyv752 := &x.RegisterWithTaints + yym753 := z.DecBinary() + _ = yym753 + if false { + } else { + h.decSliceapi_Taint((*[]pkg2_api.Taint)(yyv752), d) + } + } + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l + } else { + yyb654 = r.CheckBreak() + } + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6252,13 +6315,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ContentType = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6268,13 +6331,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeAPIQPS = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6284,13 +6347,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6300,13 +6363,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SerializeImagePulls = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6314,24 +6377,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.OutOfDiskTransitionFrequency = pkg1_v1.Duration{} } else { - yyv751 := &x.OutOfDiskTransitionFrequency - yym752 := z.DecBinary() - _ = yym752 + yyv758 := &x.OutOfDiskTransitionFrequency + yym759 := z.DecBinary() + _ = yym759 if false { - } else if z.HasExtensions() && z.DecExt(yyv751) { - } else if !yym752 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv751) + } else if z.HasExtensions() && z.DecExt(yyv758) { + } else if !yym759 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv758) } else { - z.DecFallback(yyv751, false) + z.DecFallback(yyv758, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6341,13 +6404,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NodeIP = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6355,21 +6418,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.NodeLabels = nil } else { - yyv754 := &x.NodeLabels - yym755 := z.DecBinary() - _ = yym755 + yyv761 := &x.NodeLabels + yym762 := z.DecBinary() + _ = yym762 if false { } else { - z.F.DecMapStringStringX(yyv754, false, d) + z.F.DecMapStringStringX(yyv761, false, d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6379,13 +6442,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NonMasqueradeCIDR = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6395,13 +6458,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableCustomMetrics = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6411,13 +6474,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionHard = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6427,13 +6490,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionSoft = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6443,13 +6506,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionSoftGracePeriod = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6457,24 +6520,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionPressureTransitionPeriod = pkg1_v1.Duration{} } else { - yyv761 := &x.EvictionPressureTransitionPeriod - yym762 := z.DecBinary() - _ = yym762 + yyv768 := &x.EvictionPressureTransitionPeriod + yym769 := z.DecBinary() + _ = yym769 if false { - } else if z.HasExtensions() && z.DecExt(yyv761) { - } else if !yym762 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv761) + } else if z.HasExtensions() && z.DecExt(yyv768) { + } else if !yym769 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv768) } else { - z.DecFallback(yyv761, false) + z.DecFallback(yyv768, false) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6484,13 +6547,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionMaxPodGracePeriod = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6500,13 +6563,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionMinimumReclaim = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6516,13 +6579,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodsPerCore = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6532,13 +6595,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableControllerAttachDetach = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6546,22 +6609,22 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.SystemReserved = nil } else { - yyv767 := &x.SystemReserved - yym768 := z.DecBinary() - _ = yym768 + yyv774 := &x.SystemReserved + yym775 := z.DecBinary() + _ = yym775 if false { - } else if z.HasExtensions() && z.DecExt(yyv767) { + } else if z.HasExtensions() && z.DecExt(yyv774) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv767), d) + h.decconfig_ConfigurationMap((*pkg3_config.ConfigurationMap)(yyv774), d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6569,22 +6632,22 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.KubeReserved = nil } else { - yyv769 := &x.KubeReserved - yym770 := z.DecBinary() - _ = yym770 + yyv776 := &x.KubeReserved + yym777 := z.DecBinary() + _ = yym777 if false { - } else if z.HasExtensions() && z.DecExt(yyv769) { + } else if z.HasExtensions() && z.DecExt(yyv776) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv769), d) + h.decconfig_ConfigurationMap((*pkg3_config.ConfigurationMap)(yyv776), d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6594,13 +6657,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ProtectKernelDefaults = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6610,13 +6673,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MakeIPTablesUtilChains = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6626,13 +6689,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.IPTablesMasqueradeBit = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6642,13 +6705,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.IPTablesDropBit = int32(r.DecodeInt(32)) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6656,21 +6719,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AllowedUnsafeSysctls = nil } else { - yyv775 := &x.AllowedUnsafeSysctls - yym776 := z.DecBinary() - _ = yym776 + yyv782 := &x.AllowedUnsafeSysctls + yym783 := z.DecBinary() + _ = yym783 if false { } else { - z.F.DecSliceStringX(yyv775, false, d) + z.F.DecSliceStringX(yyv782, false, d) } } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6680,13 +6743,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.FeatureGates = string(r.DecodeString()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6696,13 +6759,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableCRI = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6712,13 +6775,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExperimentalFailSwapOn = bool(r.DecodeBool()) } - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6729,17 +6792,17 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.ExperimentalCheckNodeCapabilitiesBeforeMount = bool(r.DecodeBool()) } for { - yyj649++ - if yyhl649 { - yyb649 = yyj649 > l + yyj654++ + if yyhl654 { + yyb654 = yyj654 > l } else { - yyb649 = r.CheckBreak() + yyb654 = r.CheckBreak() } - if yyb649 { + if yyb654 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj649-1, "") + z.DecStructFieldNotFound(yyj654-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -6748,8 +6811,8 @@ func (x KubeletAuthorizationMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym781 := z.EncBinary() - _ = yym781 + yym788 := z.EncBinary() + _ = yym788 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -6761,8 +6824,8 @@ func (x *KubeletAuthorizationMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym782 := z.DecBinary() - _ = yym782 + yym789 := z.DecBinary() + _ = yym789 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -6777,30 +6840,30 @@ func (x *KubeletAuthorization) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym783 := z.EncBinary() - _ = yym783 + yym790 := z.EncBinary() + _ = yym790 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep784 := !z.EncBinary() - yy2arr784 := z.EncBasicHandle().StructToArray - var yyq784 [2]bool - _, _, _ = yysep784, yyq784, yy2arr784 - const yyr784 bool = false - var yynn784 int - if yyr784 || yy2arr784 { + yysep791 := !z.EncBinary() + yy2arr791 := z.EncBasicHandle().StructToArray + var yyq791 [2]bool + _, _, _ = yysep791, yyq791, yy2arr791 + const yyr791 bool = false + var yynn791 int + if yyr791 || yy2arr791 { r.EncodeArrayStart(2) } else { - yynn784 = 2 - for _, b := range yyq784 { + yynn791 = 2 + for _, b := range yyq791 { if b { - yynn784++ + yynn791++ } } - r.EncodeMapStart(yynn784) - yynn784 = 0 + r.EncodeMapStart(yynn791) + yynn791 = 0 } - if yyr784 || yy2arr784 { + if yyr791 || yy2arr791 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Mode.CodecEncodeSelf(e) } else { @@ -6809,18 +6872,18 @@ func (x *KubeletAuthorization) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Mode.CodecEncodeSelf(e) } - if yyr784 || yy2arr784 { + if yyr791 || yy2arr791 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy787 := &x.Webhook - yy787.CodecEncodeSelf(e) + yy794 := &x.Webhook + yy794.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("webhook")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy788 := &x.Webhook - yy788.CodecEncodeSelf(e) + yy795 := &x.Webhook + yy795.CodecEncodeSelf(e) } - if yyr784 || yy2arr784 { + if yyr791 || yy2arr791 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6833,25 +6896,25 @@ func (x *KubeletAuthorization) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym789 := z.DecBinary() - _ = yym789 + yym796 := z.DecBinary() + _ = yym796 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct790 := r.ContainerType() - if yyct790 == codecSelferValueTypeMap1234 { - yyl790 := r.ReadMapStart() - if yyl790 == 0 { + yyct797 := r.ContainerType() + if yyct797 == codecSelferValueTypeMap1234 { + yyl797 := r.ReadMapStart() + if yyl797 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl790, d) + x.codecDecodeSelfFromMap(yyl797, d) } - } else if yyct790 == codecSelferValueTypeArray1234 { - yyl790 := r.ReadArrayStart() - if yyl790 == 0 { + } else if yyct797 == codecSelferValueTypeArray1234 { + yyl797 := r.ReadArrayStart() + if yyl797 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl790, d) + x.codecDecodeSelfFromArray(yyl797, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6863,12 +6926,12 @@ func (x *KubeletAuthorization) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys791Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys791Slc - var yyhl791 bool = l >= 0 - for yyj791 := 0; ; yyj791++ { - if yyhl791 { - if yyj791 >= l { + var yys798Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys798Slc + var yyhl798 bool = l >= 0 + for yyj798 := 0; ; yyj798++ { + if yyhl798 { + if yyj798 >= l { break } } else { @@ -6877,10 +6940,10 @@ func (x *KubeletAuthorization) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys791Slc = r.DecodeBytes(yys791Slc, true, true) - yys791 := string(yys791Slc) + yys798Slc = r.DecodeBytes(yys798Slc, true, true) + yys798 := string(yys798Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys791 { + switch yys798 { case "mode": if r.TryDecodeAsNil() { x.Mode = "" @@ -6891,13 +6954,13 @@ func (x *KubeletAuthorization) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Webhook = KubeletWebhookAuthorization{} } else { - yyv793 := &x.Webhook - yyv793.CodecDecodeSelf(d) + yyv800 := &x.Webhook + yyv800.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys791) - } // end switch yys791 - } // end for yyj791 + z.DecStructFieldNotFound(-1, yys798) + } // end switch yys798 + } // end for yyj798 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6905,16 +6968,16 @@ func (x *KubeletAuthorization) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj794 int - var yyb794 bool - var yyhl794 bool = l >= 0 - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + var yyj801 int + var yyb801 bool + var yyhl801 bool = l >= 0 + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb794 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb794 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6924,13 +6987,13 @@ func (x *KubeletAuthorization) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Mode = KubeletAuthorizationMode(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb794 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb794 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6938,21 +7001,21 @@ func (x *KubeletAuthorization) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Webhook = KubeletWebhookAuthorization{} } else { - yyv796 := &x.Webhook - yyv796.CodecDecodeSelf(d) + yyv803 := &x.Webhook + yyv803.CodecDecodeSelf(d) } for { - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb794 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb794 { + if yyb801 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj794-1, "") + z.DecStructFieldNotFound(yyj801-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -6964,73 +7027,32 @@ func (x *KubeletWebhookAuthorization) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym797 := z.EncBinary() - _ = yym797 + yym804 := z.EncBinary() + _ = yym804 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep798 := !z.EncBinary() - yy2arr798 := z.EncBasicHandle().StructToArray - var yyq798 [2]bool - _, _, _ = yysep798, yyq798, yy2arr798 - const yyr798 bool = false - var yynn798 int - if yyr798 || yy2arr798 { + yysep805 := !z.EncBinary() + yy2arr805 := z.EncBasicHandle().StructToArray + var yyq805 [2]bool + _, _, _ = yysep805, yyq805, yy2arr805 + const yyr805 bool = false + var yynn805 int + if yyr805 || yy2arr805 { r.EncodeArrayStart(2) } else { - yynn798 = 2 - for _, b := range yyq798 { + yynn805 = 2 + for _, b := range yyq805 { if b { - yynn798++ + yynn805++ } } - r.EncodeMapStart(yynn798) - yynn798 = 0 + r.EncodeMapStart(yynn805) + yynn805 = 0 } - if yyr798 || yy2arr798 { + if yyr805 || yy2arr805 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy800 := &x.CacheAuthorizedTTL - yym801 := z.EncBinary() - _ = yym801 - if false { - } else if z.HasExtensions() && z.EncExt(yy800) { - } else if !yym801 && z.IsJSONHandle() { - z.EncJSONMarshal(yy800) - } else { - z.EncFallback(yy800) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cacheAuthorizedTTL")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy802 := &x.CacheAuthorizedTTL - yym803 := z.EncBinary() - _ = yym803 - if false { - } else if z.HasExtensions() && z.EncExt(yy802) { - } else if !yym803 && z.IsJSONHandle() { - z.EncJSONMarshal(yy802) - } else { - z.EncFallback(yy802) - } - } - if yyr798 || yy2arr798 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy805 := &x.CacheUnauthorizedTTL - yym806 := z.EncBinary() - _ = yym806 - if false { - } else if z.HasExtensions() && z.EncExt(yy805) { - } else if !yym806 && z.IsJSONHandle() { - z.EncJSONMarshal(yy805) - } else { - z.EncFallback(yy805) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cacheUnauthorizedTTL")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy807 := &x.CacheUnauthorizedTTL + yy807 := &x.CacheAuthorizedTTL yym808 := z.EncBinary() _ = yym808 if false { @@ -7040,8 +7062,49 @@ func (x *KubeletWebhookAuthorization) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncFallback(yy807) } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cacheAuthorizedTTL")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy809 := &x.CacheAuthorizedTTL + yym810 := z.EncBinary() + _ = yym810 + if false { + } else if z.HasExtensions() && z.EncExt(yy809) { + } else if !yym810 && z.IsJSONHandle() { + z.EncJSONMarshal(yy809) + } else { + z.EncFallback(yy809) + } } - if yyr798 || yy2arr798 { + if yyr805 || yy2arr805 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy812 := &x.CacheUnauthorizedTTL + yym813 := z.EncBinary() + _ = yym813 + if false { + } else if z.HasExtensions() && z.EncExt(yy812) { + } else if !yym813 && z.IsJSONHandle() { + z.EncJSONMarshal(yy812) + } else { + z.EncFallback(yy812) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cacheUnauthorizedTTL")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy814 := &x.CacheUnauthorizedTTL + yym815 := z.EncBinary() + _ = yym815 + if false { + } else if z.HasExtensions() && z.EncExt(yy814) { + } else if !yym815 && z.IsJSONHandle() { + z.EncJSONMarshal(yy814) + } else { + z.EncFallback(yy814) + } + } + if yyr805 || yy2arr805 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7054,25 +7117,25 @@ func (x *KubeletWebhookAuthorization) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym809 := z.DecBinary() - _ = yym809 + yym816 := z.DecBinary() + _ = yym816 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct810 := r.ContainerType() - if yyct810 == codecSelferValueTypeMap1234 { - yyl810 := r.ReadMapStart() - if yyl810 == 0 { + yyct817 := r.ContainerType() + if yyct817 == codecSelferValueTypeMap1234 { + yyl817 := r.ReadMapStart() + if yyl817 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl810, d) + x.codecDecodeSelfFromMap(yyl817, d) } - } else if yyct810 == codecSelferValueTypeArray1234 { - yyl810 := r.ReadArrayStart() - if yyl810 == 0 { + } else if yyct817 == codecSelferValueTypeArray1234 { + yyl817 := r.ReadArrayStart() + if yyl817 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl810, d) + x.codecDecodeSelfFromArray(yyl817, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7084,12 +7147,12 @@ func (x *KubeletWebhookAuthorization) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys811Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys811Slc - var yyhl811 bool = l >= 0 - for yyj811 := 0; ; yyj811++ { - if yyhl811 { - if yyj811 >= l { + var yys818Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys818Slc + var yyhl818 bool = l >= 0 + for yyj818 := 0; ; yyj818++ { + if yyhl818 { + if yyj818 >= l { break } } else { @@ -7098,44 +7161,44 @@ func (x *KubeletWebhookAuthorization) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys811Slc = r.DecodeBytes(yys811Slc, true, true) - yys811 := string(yys811Slc) + yys818Slc = r.DecodeBytes(yys818Slc, true, true) + yys818 := string(yys818Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys811 { + switch yys818 { case "cacheAuthorizedTTL": if r.TryDecodeAsNil() { x.CacheAuthorizedTTL = pkg1_v1.Duration{} } else { - yyv812 := &x.CacheAuthorizedTTL - yym813 := z.DecBinary() - _ = yym813 + yyv819 := &x.CacheAuthorizedTTL + yym820 := z.DecBinary() + _ = yym820 if false { - } else if z.HasExtensions() && z.DecExt(yyv812) { - } else if !yym813 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv812) + } else if z.HasExtensions() && z.DecExt(yyv819) { + } else if !yym820 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv819) } else { - z.DecFallback(yyv812, false) + z.DecFallback(yyv819, false) } } case "cacheUnauthorizedTTL": if r.TryDecodeAsNil() { x.CacheUnauthorizedTTL = pkg1_v1.Duration{} } else { - yyv814 := &x.CacheUnauthorizedTTL - yym815 := z.DecBinary() - _ = yym815 + yyv821 := &x.CacheUnauthorizedTTL + yym822 := z.DecBinary() + _ = yym822 if false { - } else if z.HasExtensions() && z.DecExt(yyv814) { - } else if !yym815 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv814) + } else if z.HasExtensions() && z.DecExt(yyv821) { + } else if !yym822 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv821) } else { - z.DecFallback(yyv814, false) + z.DecFallback(yyv821, false) } } default: - z.DecStructFieldNotFound(-1, yys811) - } // end switch yys811 - } // end for yyj811 + z.DecStructFieldNotFound(-1, yys818) + } // end switch yys818 + } // end for yyj818 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7143,16 +7206,16 @@ func (x *KubeletWebhookAuthorization) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj816 int - var yyb816 bool - var yyhl816 bool = l >= 0 - yyj816++ - if yyhl816 { - yyb816 = yyj816 > l + var yyj823 int + var yyb823 bool + var yyhl823 bool = l >= 0 + yyj823++ + if yyhl823 { + yyb823 = yyj823 > l } else { - yyb816 = r.CheckBreak() + yyb823 = r.CheckBreak() } - if yyb816 { + if yyb823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7160,24 +7223,24 @@ func (x *KubeletWebhookAuthorization) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.CacheAuthorizedTTL = pkg1_v1.Duration{} } else { - yyv817 := &x.CacheAuthorizedTTL - yym818 := z.DecBinary() - _ = yym818 + yyv824 := &x.CacheAuthorizedTTL + yym825 := z.DecBinary() + _ = yym825 if false { - } else if z.HasExtensions() && z.DecExt(yyv817) { - } else if !yym818 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv817) + } else if z.HasExtensions() && z.DecExt(yyv824) { + } else if !yym825 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv824) } else { - z.DecFallback(yyv817, false) + z.DecFallback(yyv824, false) } } - yyj816++ - if yyhl816 { - yyb816 = yyj816 > l + yyj823++ + if yyhl823 { + yyb823 = yyj823 > l } else { - yyb816 = r.CheckBreak() + yyb823 = r.CheckBreak() } - if yyb816 { + if yyb823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7185,29 +7248,29 @@ func (x *KubeletWebhookAuthorization) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.CacheUnauthorizedTTL = pkg1_v1.Duration{} } else { - yyv819 := &x.CacheUnauthorizedTTL - yym820 := z.DecBinary() - _ = yym820 + yyv826 := &x.CacheUnauthorizedTTL + yym827 := z.DecBinary() + _ = yym827 if false { - } else if z.HasExtensions() && z.DecExt(yyv819) { - } else if !yym820 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv819) + } else if z.HasExtensions() && z.DecExt(yyv826) { + } else if !yym827 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv826) } else { - z.DecFallback(yyv819, false) + z.DecFallback(yyv826, false) } } for { - yyj816++ - if yyhl816 { - yyb816 = yyj816 > l + yyj823++ + if yyhl823 { + yyb823 = yyj823 > l } else { - yyb816 = r.CheckBreak() + yyb823 = r.CheckBreak() } - if yyb816 { + if yyb823 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj816-1, "") + z.DecStructFieldNotFound(yyj823-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7219,63 +7282,63 @@ func (x *KubeletAuthentication) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym821 := z.EncBinary() - _ = yym821 + yym828 := z.EncBinary() + _ = yym828 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep822 := !z.EncBinary() - yy2arr822 := z.EncBasicHandle().StructToArray - var yyq822 [3]bool - _, _, _ = yysep822, yyq822, yy2arr822 - const yyr822 bool = false - var yynn822 int - if yyr822 || yy2arr822 { + yysep829 := !z.EncBinary() + yy2arr829 := z.EncBasicHandle().StructToArray + var yyq829 [3]bool + _, _, _ = yysep829, yyq829, yy2arr829 + const yyr829 bool = false + var yynn829 int + if yyr829 || yy2arr829 { r.EncodeArrayStart(3) } else { - yynn822 = 3 - for _, b := range yyq822 { + yynn829 = 3 + for _, b := range yyq829 { if b { - yynn822++ + yynn829++ } } - r.EncodeMapStart(yynn822) - yynn822 = 0 + r.EncodeMapStart(yynn829) + yynn829 = 0 } - if yyr822 || yy2arr822 { + if yyr829 || yy2arr829 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy824 := &x.X509 - yy824.CodecEncodeSelf(e) + yy831 := &x.X509 + yy831.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("x509")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy825 := &x.X509 - yy825.CodecEncodeSelf(e) + yy832 := &x.X509 + yy832.CodecEncodeSelf(e) } - if yyr822 || yy2arr822 { + if yyr829 || yy2arr829 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy827 := &x.Webhook - yy827.CodecEncodeSelf(e) + yy834 := &x.Webhook + yy834.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("webhook")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy828 := &x.Webhook - yy828.CodecEncodeSelf(e) + yy835 := &x.Webhook + yy835.CodecEncodeSelf(e) } - if yyr822 || yy2arr822 { + if yyr829 || yy2arr829 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy830 := &x.Anonymous - yy830.CodecEncodeSelf(e) + yy837 := &x.Anonymous + yy837.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("anonymous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy831 := &x.Anonymous - yy831.CodecEncodeSelf(e) + yy838 := &x.Anonymous + yy838.CodecEncodeSelf(e) } - if yyr822 || yy2arr822 { + if yyr829 || yy2arr829 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7288,25 +7351,25 @@ func (x *KubeletAuthentication) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym832 := z.DecBinary() - _ = yym832 + yym839 := z.DecBinary() + _ = yym839 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct833 := r.ContainerType() - if yyct833 == codecSelferValueTypeMap1234 { - yyl833 := r.ReadMapStart() - if yyl833 == 0 { + yyct840 := r.ContainerType() + if yyct840 == codecSelferValueTypeMap1234 { + yyl840 := r.ReadMapStart() + if yyl840 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl833, d) + x.codecDecodeSelfFromMap(yyl840, d) } - } else if yyct833 == codecSelferValueTypeArray1234 { - yyl833 := r.ReadArrayStart() - if yyl833 == 0 { + } else if yyct840 == codecSelferValueTypeArray1234 { + yyl840 := r.ReadArrayStart() + if yyl840 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl833, d) + x.codecDecodeSelfFromArray(yyl840, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7318,12 +7381,12 @@ func (x *KubeletAuthentication) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys834Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys834Slc - var yyhl834 bool = l >= 0 - for yyj834 := 0; ; yyj834++ { - if yyhl834 { - if yyj834 >= l { + var yys841Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys841Slc + var yyhl841 bool = l >= 0 + for yyj841 := 0; ; yyj841++ { + if yyhl841 { + if yyj841 >= l { break } } else { @@ -7332,35 +7395,35 @@ func (x *KubeletAuthentication) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys834Slc = r.DecodeBytes(yys834Slc, true, true) - yys834 := string(yys834Slc) + yys841Slc = r.DecodeBytes(yys841Slc, true, true) + yys841 := string(yys841Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys834 { + switch yys841 { case "x509": if r.TryDecodeAsNil() { x.X509 = KubeletX509Authentication{} } else { - yyv835 := &x.X509 - yyv835.CodecDecodeSelf(d) + yyv842 := &x.X509 + yyv842.CodecDecodeSelf(d) } case "webhook": if r.TryDecodeAsNil() { x.Webhook = KubeletWebhookAuthentication{} } else { - yyv836 := &x.Webhook - yyv836.CodecDecodeSelf(d) + yyv843 := &x.Webhook + yyv843.CodecDecodeSelf(d) } case "anonymous": if r.TryDecodeAsNil() { x.Anonymous = KubeletAnonymousAuthentication{} } else { - yyv837 := &x.Anonymous - yyv837.CodecDecodeSelf(d) + yyv844 := &x.Anonymous + yyv844.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys834) - } // end switch yys834 - } // end for yyj834 + z.DecStructFieldNotFound(-1, yys841) + } // end switch yys841 + } // end for yyj841 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7368,16 +7431,16 @@ func (x *KubeletAuthentication) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj838 int - var yyb838 bool - var yyhl838 bool = l >= 0 - yyj838++ - if yyhl838 { - yyb838 = yyj838 > l + var yyj845 int + var yyb845 bool + var yyhl845 bool = l >= 0 + yyj845++ + if yyhl845 { + yyb845 = yyj845 > l } else { - yyb838 = r.CheckBreak() + yyb845 = r.CheckBreak() } - if yyb838 { + if yyb845 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7385,16 +7448,16 @@ func (x *KubeletAuthentication) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.X509 = KubeletX509Authentication{} } else { - yyv839 := &x.X509 - yyv839.CodecDecodeSelf(d) + yyv846 := &x.X509 + yyv846.CodecDecodeSelf(d) } - yyj838++ - if yyhl838 { - yyb838 = yyj838 > l + yyj845++ + if yyhl845 { + yyb845 = yyj845 > l } else { - yyb838 = r.CheckBreak() + yyb845 = r.CheckBreak() } - if yyb838 { + if yyb845 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7402,16 +7465,16 @@ func (x *KubeletAuthentication) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Webhook = KubeletWebhookAuthentication{} } else { - yyv840 := &x.Webhook - yyv840.CodecDecodeSelf(d) + yyv847 := &x.Webhook + yyv847.CodecDecodeSelf(d) } - yyj838++ - if yyhl838 { - yyb838 = yyj838 > l + yyj845++ + if yyhl845 { + yyb845 = yyj845 > l } else { - yyb838 = r.CheckBreak() + yyb845 = r.CheckBreak() } - if yyb838 { + if yyb845 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7419,21 +7482,21 @@ func (x *KubeletAuthentication) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Anonymous = KubeletAnonymousAuthentication{} } else { - yyv841 := &x.Anonymous - yyv841.CodecDecodeSelf(d) + yyv848 := &x.Anonymous + yyv848.CodecDecodeSelf(d) } for { - yyj838++ - if yyhl838 { - yyb838 = yyj838 > l + yyj845++ + if yyhl845 { + yyb845 = yyj845 > l } else { - yyb838 = r.CheckBreak() + yyb845 = r.CheckBreak() } - if yyb838 { + if yyb845 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj838-1, "") + z.DecStructFieldNotFound(yyj845-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7445,33 +7508,33 @@ func (x *KubeletX509Authentication) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym842 := z.EncBinary() - _ = yym842 + yym849 := z.EncBinary() + _ = yym849 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep843 := !z.EncBinary() - yy2arr843 := z.EncBasicHandle().StructToArray - var yyq843 [1]bool - _, _, _ = yysep843, yyq843, yy2arr843 - const yyr843 bool = false - var yynn843 int - if yyr843 || yy2arr843 { + yysep850 := !z.EncBinary() + yy2arr850 := z.EncBasicHandle().StructToArray + var yyq850 [1]bool + _, _, _ = yysep850, yyq850, yy2arr850 + const yyr850 bool = false + var yynn850 int + if yyr850 || yy2arr850 { r.EncodeArrayStart(1) } else { - yynn843 = 1 - for _, b := range yyq843 { + yynn850 = 1 + for _, b := range yyq850 { if b { - yynn843++ + yynn850++ } } - r.EncodeMapStart(yynn843) - yynn843 = 0 + r.EncodeMapStart(yynn850) + yynn850 = 0 } - if yyr843 || yy2arr843 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym845 := z.EncBinary() - _ = yym845 + yym852 := z.EncBinary() + _ = yym852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClientCAFile)) @@ -7480,14 +7543,14 @@ func (x *KubeletX509Authentication) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clientCAFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym846 := z.EncBinary() - _ = yym846 + yym853 := z.EncBinary() + _ = yym853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClientCAFile)) } } - if yyr843 || yy2arr843 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7500,25 +7563,25 @@ func (x *KubeletX509Authentication) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym847 := z.DecBinary() - _ = yym847 + yym854 := z.DecBinary() + _ = yym854 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct848 := r.ContainerType() - if yyct848 == codecSelferValueTypeMap1234 { - yyl848 := r.ReadMapStart() - if yyl848 == 0 { + yyct855 := r.ContainerType() + if yyct855 == codecSelferValueTypeMap1234 { + yyl855 := r.ReadMapStart() + if yyl855 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl848, d) + x.codecDecodeSelfFromMap(yyl855, d) } - } else if yyct848 == codecSelferValueTypeArray1234 { - yyl848 := r.ReadArrayStart() - if yyl848 == 0 { + } else if yyct855 == codecSelferValueTypeArray1234 { + yyl855 := r.ReadArrayStart() + if yyl855 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl848, d) + x.codecDecodeSelfFromArray(yyl855, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7530,12 +7593,12 @@ func (x *KubeletX509Authentication) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys849Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys849Slc - var yyhl849 bool = l >= 0 - for yyj849 := 0; ; yyj849++ { - if yyhl849 { - if yyj849 >= l { + var yys856Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys856Slc + var yyhl856 bool = l >= 0 + for yyj856 := 0; ; yyj856++ { + if yyhl856 { + if yyj856 >= l { break } } else { @@ -7544,10 +7607,10 @@ func (x *KubeletX509Authentication) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys849Slc = r.DecodeBytes(yys849Slc, true, true) - yys849 := string(yys849Slc) + yys856Slc = r.DecodeBytes(yys856Slc, true, true) + yys856 := string(yys856Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys849 { + switch yys856 { case "clientCAFile": if r.TryDecodeAsNil() { x.ClientCAFile = "" @@ -7555,9 +7618,9 @@ func (x *KubeletX509Authentication) codecDecodeSelfFromMap(l int, d *codec1978.D x.ClientCAFile = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys849) - } // end switch yys849 - } // end for yyj849 + z.DecStructFieldNotFound(-1, yys856) + } // end switch yys856 + } // end for yyj856 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7565,16 +7628,16 @@ func (x *KubeletX509Authentication) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj851 int - var yyb851 bool - var yyhl851 bool = l >= 0 - yyj851++ - if yyhl851 { - yyb851 = yyj851 > l + var yyj858 int + var yyb858 bool + var yyhl858 bool = l >= 0 + yyj858++ + if yyhl858 { + yyb858 = yyj858 > l } else { - yyb851 = r.CheckBreak() + yyb858 = r.CheckBreak() } - if yyb851 { + if yyb858 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7585,17 +7648,17 @@ func (x *KubeletX509Authentication) codecDecodeSelfFromArray(l int, d *codec1978 x.ClientCAFile = string(r.DecodeString()) } for { - yyj851++ - if yyhl851 { - yyb851 = yyj851 > l + yyj858++ + if yyhl858 { + yyb858 = yyj858 > l } else { - yyb851 = r.CheckBreak() + yyb858 = r.CheckBreak() } - if yyb851 { + if yyb858 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj851-1, "") + z.DecStructFieldNotFound(yyj858-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7607,33 +7670,33 @@ func (x *KubeletWebhookAuthentication) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym853 := z.EncBinary() - _ = yym853 + yym860 := z.EncBinary() + _ = yym860 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep854 := !z.EncBinary() - yy2arr854 := z.EncBasicHandle().StructToArray - var yyq854 [2]bool - _, _, _ = yysep854, yyq854, yy2arr854 - const yyr854 bool = false - var yynn854 int - if yyr854 || yy2arr854 { + yysep861 := !z.EncBinary() + yy2arr861 := z.EncBasicHandle().StructToArray + var yyq861 [2]bool + _, _, _ = yysep861, yyq861, yy2arr861 + const yyr861 bool = false + var yynn861 int + if yyr861 || yy2arr861 { r.EncodeArrayStart(2) } else { - yynn854 = 2 - for _, b := range yyq854 { + yynn861 = 2 + for _, b := range yyq861 { if b { - yynn854++ + yynn861++ } } - r.EncodeMapStart(yynn854) - yynn854 = 0 + r.EncodeMapStart(yynn861) + yynn861 = 0 } - if yyr854 || yy2arr854 { + if yyr861 || yy2arr861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym856 := z.EncBinary() - _ = yym856 + yym863 := z.EncBinary() + _ = yym863 if false { } else { r.EncodeBool(bool(x.Enabled)) @@ -7642,41 +7705,41 @@ func (x *KubeletWebhookAuthentication) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enabled")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym857 := z.EncBinary() - _ = yym857 + yym864 := z.EncBinary() + _ = yym864 if false { } else { r.EncodeBool(bool(x.Enabled)) } } - if yyr854 || yy2arr854 { + if yyr861 || yy2arr861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy859 := &x.CacheTTL - yym860 := z.EncBinary() - _ = yym860 + yy866 := &x.CacheTTL + yym867 := z.EncBinary() + _ = yym867 if false { - } else if z.HasExtensions() && z.EncExt(yy859) { - } else if !yym860 && z.IsJSONHandle() { - z.EncJSONMarshal(yy859) + } else if z.HasExtensions() && z.EncExt(yy866) { + } else if !yym867 && z.IsJSONHandle() { + z.EncJSONMarshal(yy866) } else { - z.EncFallback(yy859) + z.EncFallback(yy866) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cacheTTL")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy861 := &x.CacheTTL - yym862 := z.EncBinary() - _ = yym862 + yy868 := &x.CacheTTL + yym869 := z.EncBinary() + _ = yym869 if false { - } else if z.HasExtensions() && z.EncExt(yy861) { - } else if !yym862 && z.IsJSONHandle() { - z.EncJSONMarshal(yy861) + } else if z.HasExtensions() && z.EncExt(yy868) { + } else if !yym869 && z.IsJSONHandle() { + z.EncJSONMarshal(yy868) } else { - z.EncFallback(yy861) + z.EncFallback(yy868) } } - if yyr854 || yy2arr854 { + if yyr861 || yy2arr861 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7689,25 +7752,25 @@ func (x *KubeletWebhookAuthentication) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym863 := z.DecBinary() - _ = yym863 + yym870 := z.DecBinary() + _ = yym870 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct864 := r.ContainerType() - if yyct864 == codecSelferValueTypeMap1234 { - yyl864 := r.ReadMapStart() - if yyl864 == 0 { + yyct871 := r.ContainerType() + if yyct871 == codecSelferValueTypeMap1234 { + yyl871 := r.ReadMapStart() + if yyl871 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl864, d) + x.codecDecodeSelfFromMap(yyl871, d) } - } else if yyct864 == codecSelferValueTypeArray1234 { - yyl864 := r.ReadArrayStart() - if yyl864 == 0 { + } else if yyct871 == codecSelferValueTypeArray1234 { + yyl871 := r.ReadArrayStart() + if yyl871 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl864, d) + x.codecDecodeSelfFromArray(yyl871, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7719,12 +7782,12 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromMap(l int, d *codec197 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys865Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys865Slc - var yyhl865 bool = l >= 0 - for yyj865 := 0; ; yyj865++ { - if yyhl865 { - if yyj865 >= l { + var yys872Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys872Slc + var yyhl872 bool = l >= 0 + for yyj872 := 0; ; yyj872++ { + if yyhl872 { + if yyj872 >= l { break } } else { @@ -7733,10 +7796,10 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromMap(l int, d *codec197 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys865Slc = r.DecodeBytes(yys865Slc, true, true) - yys865 := string(yys865Slc) + yys872Slc = r.DecodeBytes(yys872Slc, true, true) + yys872 := string(yys872Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys865 { + switch yys872 { case "enabled": if r.TryDecodeAsNil() { x.Enabled = false @@ -7747,21 +7810,21 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromMap(l int, d *codec197 if r.TryDecodeAsNil() { x.CacheTTL = pkg1_v1.Duration{} } else { - yyv867 := &x.CacheTTL - yym868 := z.DecBinary() - _ = yym868 + yyv874 := &x.CacheTTL + yym875 := z.DecBinary() + _ = yym875 if false { - } else if z.HasExtensions() && z.DecExt(yyv867) { - } else if !yym868 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv867) + } else if z.HasExtensions() && z.DecExt(yyv874) { + } else if !yym875 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv874) } else { - z.DecFallback(yyv867, false) + z.DecFallback(yyv874, false) } } default: - z.DecStructFieldNotFound(-1, yys865) - } // end switch yys865 - } // end for yyj865 + z.DecStructFieldNotFound(-1, yys872) + } // end switch yys872 + } // end for yyj872 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7769,16 +7832,16 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromArray(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj869 int - var yyb869 bool - var yyhl869 bool = l >= 0 - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + var yyj876 int + var yyb876 bool + var yyhl876 bool = l >= 0 + yyj876++ + if yyhl876 { + yyb876 = yyj876 > l } else { - yyb869 = r.CheckBreak() + yyb876 = r.CheckBreak() } - if yyb869 { + if yyb876 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7788,13 +7851,13 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromArray(l int, d *codec1 } else { x.Enabled = bool(r.DecodeBool()) } - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj876++ + if yyhl876 { + yyb876 = yyj876 > l } else { - yyb869 = r.CheckBreak() + yyb876 = r.CheckBreak() } - if yyb869 { + if yyb876 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7802,29 +7865,29 @@ func (x *KubeletWebhookAuthentication) codecDecodeSelfFromArray(l int, d *codec1 if r.TryDecodeAsNil() { x.CacheTTL = pkg1_v1.Duration{} } else { - yyv871 := &x.CacheTTL - yym872 := z.DecBinary() - _ = yym872 + yyv878 := &x.CacheTTL + yym879 := z.DecBinary() + _ = yym879 if false { - } else if z.HasExtensions() && z.DecExt(yyv871) { - } else if !yym872 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv871) + } else if z.HasExtensions() && z.DecExt(yyv878) { + } else if !yym879 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv878) } else { - z.DecFallback(yyv871, false) + z.DecFallback(yyv878, false) } } for { - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj876++ + if yyhl876 { + yyb876 = yyj876 > l } else { - yyb869 = r.CheckBreak() + yyb876 = r.CheckBreak() } - if yyb869 { + if yyb876 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj869-1, "") + z.DecStructFieldNotFound(yyj876-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7836,33 +7899,33 @@ func (x *KubeletAnonymousAuthentication) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym873 := z.EncBinary() - _ = yym873 + yym880 := z.EncBinary() + _ = yym880 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep874 := !z.EncBinary() - yy2arr874 := z.EncBasicHandle().StructToArray - var yyq874 [1]bool - _, _, _ = yysep874, yyq874, yy2arr874 - const yyr874 bool = false - var yynn874 int - if yyr874 || yy2arr874 { + yysep881 := !z.EncBinary() + yy2arr881 := z.EncBasicHandle().StructToArray + var yyq881 [1]bool + _, _, _ = yysep881, yyq881, yy2arr881 + const yyr881 bool = false + var yynn881 int + if yyr881 || yy2arr881 { r.EncodeArrayStart(1) } else { - yynn874 = 1 - for _, b := range yyq874 { + yynn881 = 1 + for _, b := range yyq881 { if b { - yynn874++ + yynn881++ } } - r.EncodeMapStart(yynn874) - yynn874 = 0 + r.EncodeMapStart(yynn881) + yynn881 = 0 } - if yyr874 || yy2arr874 { + if yyr881 || yy2arr881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym876 := z.EncBinary() - _ = yym876 + yym883 := z.EncBinary() + _ = yym883 if false { } else { r.EncodeBool(bool(x.Enabled)) @@ -7871,14 +7934,14 @@ func (x *KubeletAnonymousAuthentication) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enabled")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym877 := z.EncBinary() - _ = yym877 + yym884 := z.EncBinary() + _ = yym884 if false { } else { r.EncodeBool(bool(x.Enabled)) } } - if yyr874 || yy2arr874 { + if yyr881 || yy2arr881 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7891,25 +7954,25 @@ func (x *KubeletAnonymousAuthentication) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym878 := z.DecBinary() - _ = yym878 + yym885 := z.DecBinary() + _ = yym885 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct879 := r.ContainerType() - if yyct879 == codecSelferValueTypeMap1234 { - yyl879 := r.ReadMapStart() - if yyl879 == 0 { + yyct886 := r.ContainerType() + if yyct886 == codecSelferValueTypeMap1234 { + yyl886 := r.ReadMapStart() + if yyl886 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl879, d) + x.codecDecodeSelfFromMap(yyl886, d) } - } else if yyct879 == codecSelferValueTypeArray1234 { - yyl879 := r.ReadArrayStart() - if yyl879 == 0 { + } else if yyct886 == codecSelferValueTypeArray1234 { + yyl886 := r.ReadArrayStart() + if yyl886 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl879, d) + x.codecDecodeSelfFromArray(yyl886, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7921,12 +7984,12 @@ func (x *KubeletAnonymousAuthentication) codecDecodeSelfFromMap(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys880Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys880Slc - var yyhl880 bool = l >= 0 - for yyj880 := 0; ; yyj880++ { - if yyhl880 { - if yyj880 >= l { + var yys887Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys887Slc + var yyhl887 bool = l >= 0 + for yyj887 := 0; ; yyj887++ { + if yyhl887 { + if yyj887 >= l { break } } else { @@ -7935,10 +7998,10 @@ func (x *KubeletAnonymousAuthentication) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys880Slc = r.DecodeBytes(yys880Slc, true, true) - yys880 := string(yys880Slc) + yys887Slc = r.DecodeBytes(yys887Slc, true, true) + yys887 := string(yys887Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys880 { + switch yys887 { case "enabled": if r.TryDecodeAsNil() { x.Enabled = false @@ -7946,9 +8009,9 @@ func (x *KubeletAnonymousAuthentication) codecDecodeSelfFromMap(l int, d *codec1 x.Enabled = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys880) - } // end switch yys880 - } // end for yyj880 + z.DecStructFieldNotFound(-1, yys887) + } // end switch yys887 + } // end for yyj887 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7956,16 +8019,16 @@ func (x *KubeletAnonymousAuthentication) codecDecodeSelfFromArray(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj882 int - var yyb882 bool - var yyhl882 bool = l >= 0 - yyj882++ - if yyhl882 { - yyb882 = yyj882 > l + var yyj889 int + var yyb889 bool + var yyhl889 bool = l >= 0 + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb882 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb882 { + if yyb889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7976,17 +8039,17 @@ func (x *KubeletAnonymousAuthentication) codecDecodeSelfFromArray(l int, d *code x.Enabled = bool(r.DecodeBool()) } for { - yyj882++ - if yyhl882 { - yyb882 = yyj882 > l + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb882 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb882 { + if yyb889 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj882-1, "") + z.DecStructFieldNotFound(yyj889-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7998,36 +8061,36 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym884 := z.EncBinary() - _ = yym884 + yym891 := z.EncBinary() + _ = yym891 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep885 := !z.EncBinary() - yy2arr885 := z.EncBasicHandle().StructToArray - var yyq885 [15]bool - _, _, _ = yysep885, yyq885, yy2arr885 - const yyr885 bool = false - yyq885[0] = x.Kind != "" - yyq885[1] = x.APIVersion != "" - var yynn885 int - if yyr885 || yy2arr885 { + yysep892 := !z.EncBinary() + yy2arr892 := z.EncBasicHandle().StructToArray + var yyq892 [15]bool + _, _, _ = yysep892, yyq892, yy2arr892 + const yyr892 bool = false + yyq892[0] = x.Kind != "" + yyq892[1] = x.APIVersion != "" + var yynn892 int + if yyr892 || yy2arr892 { r.EncodeArrayStart(15) } else { - yynn885 = 13 - for _, b := range yyq885 { + yynn892 = 13 + for _, b := range yyq892 { if b { - yynn885++ + yynn892++ } } - r.EncodeMapStart(yynn885) - yynn885 = 0 + r.EncodeMapStart(yynn892) + yynn892 = 0 } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq885[0] { - yym887 := z.EncBinary() - _ = yym887 + if yyq892[0] { + yym894 := z.EncBinary() + _ = yym894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -8036,23 +8099,23 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq885[0] { + if yyq892[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym888 := z.EncBinary() - _ = yym888 + yym895 := z.EncBinary() + _ = yym895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq885[1] { - yym890 := z.EncBinary() - _ = yym890 + if yyq892[1] { + yym897 := z.EncBinary() + _ = yym897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -8061,22 +8124,22 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq885[1] { + if yyq892[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym891 := z.EncBinary() - _ = yym891 + yym898 := z.EncBinary() + _ = yym898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym893 := z.EncBinary() - _ = yym893 + yym900 := z.EncBinary() + _ = yym900 if false { } else { r.EncodeInt(int64(x.Port)) @@ -8085,17 +8148,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym894 := z.EncBinary() - _ = yym894 + yym901 := z.EncBinary() + _ = yym901 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym896 := z.EncBinary() - _ = yym896 + yym903 := z.EncBinary() + _ = yym903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -8104,17 +8167,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym897 := z.EncBinary() - _ = yym897 + yym904 := z.EncBinary() + _ = yym904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym899 := z.EncBinary() - _ = yym899 + yym906 := z.EncBinary() + _ = yym906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.AlgorithmProvider)) @@ -8123,17 +8186,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("algorithmProvider")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym900 := z.EncBinary() - _ = yym900 + yym907 := z.EncBinary() + _ = yym907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.AlgorithmProvider)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym902 := z.EncBinary() - _ = yym902 + yym909 := z.EncBinary() + _ = yym909 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PolicyConfigFile)) @@ -8142,17 +8205,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("policyConfigFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym903 := z.EncBinary() - _ = yym903 + yym910 := z.EncBinary() + _ = yym910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PolicyConfigFile)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym905 := z.EncBinary() - _ = yym905 + yym912 := z.EncBinary() + _ = yym912 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) @@ -8161,17 +8224,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableProfiling")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym906 := z.EncBinary() - _ = yym906 + yym913 := z.EncBinary() + _ = yym913 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym908 := z.EncBinary() - _ = yym908 + yym915 := z.EncBinary() + _ = yym915 if false { } else { r.EncodeBool(bool(x.EnableContentionProfiling)) @@ -8180,17 +8243,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableContentionProfiling")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym909 := z.EncBinary() - _ = yym909 + yym916 := z.EncBinary() + _ = yym916 if false { } else { r.EncodeBool(bool(x.EnableContentionProfiling)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym911 := z.EncBinary() - _ = yym911 + yym918 := z.EncBinary() + _ = yym918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) @@ -8199,17 +8262,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym912 := z.EncBinary() - _ = yym912 + yym919 := z.EncBinary() + _ = yym919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym914 := z.EncBinary() - _ = yym914 + yym921 := z.EncBinary() + _ = yym921 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) @@ -8218,17 +8281,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym915 := z.EncBinary() - _ = yym915 + yym922 := z.EncBinary() + _ = yym922 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym917 := z.EncBinary() - _ = yym917 + yym924 := z.EncBinary() + _ = yym924 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) @@ -8237,17 +8300,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym918 := z.EncBinary() - _ = yym918 + yym925 := z.EncBinary() + _ = yym925 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym920 := z.EncBinary() - _ = yym920 + yym927 := z.EncBinary() + _ = yym927 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SchedulerName)) @@ -8256,17 +8319,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("schedulerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym921 := z.EncBinary() - _ = yym921 + yym928 := z.EncBinary() + _ = yym928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SchedulerName)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym923 := z.EncBinary() - _ = yym923 + yym930 := z.EncBinary() + _ = yym930 if false { } else { r.EncodeInt(int64(x.HardPodAffinitySymmetricWeight)) @@ -8275,17 +8338,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hardPodAffinitySymmetricWeight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym924 := z.EncBinary() - _ = yym924 + yym931 := z.EncBinary() + _ = yym931 if false { } else { r.EncodeInt(int64(x.HardPodAffinitySymmetricWeight)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym926 := z.EncBinary() - _ = yym926 + yym933 := z.EncBinary() + _ = yym933 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FailureDomains)) @@ -8294,25 +8357,25 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureDomains")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym927 := z.EncBinary() - _ = yym927 + yym934 := z.EncBinary() + _ = yym934 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FailureDomains)) } } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy929 := &x.LeaderElection - yy929.CodecEncodeSelf(e) + yy936 := &x.LeaderElection + yy936.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElection")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy930 := &x.LeaderElection - yy930.CodecEncodeSelf(e) + yy937 := &x.LeaderElection + yy937.CodecEncodeSelf(e) } - if yyr885 || yy2arr885 { + if yyr892 || yy2arr892 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8325,25 +8388,25 @@ func (x *KubeSchedulerConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym931 := z.DecBinary() - _ = yym931 + yym938 := z.DecBinary() + _ = yym938 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct932 := r.ContainerType() - if yyct932 == codecSelferValueTypeMap1234 { - yyl932 := r.ReadMapStart() - if yyl932 == 0 { + yyct939 := r.ContainerType() + if yyct939 == codecSelferValueTypeMap1234 { + yyl939 := r.ReadMapStart() + if yyl939 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl932, d) + x.codecDecodeSelfFromMap(yyl939, d) } - } else if yyct932 == codecSelferValueTypeArray1234 { - yyl932 := r.ReadArrayStart() - if yyl932 == 0 { + } else if yyct939 == codecSelferValueTypeArray1234 { + yyl939 := r.ReadArrayStart() + if yyl939 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl932, d) + x.codecDecodeSelfFromArray(yyl939, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8355,12 +8418,12 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys933Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys933Slc - var yyhl933 bool = l >= 0 - for yyj933 := 0; ; yyj933++ { - if yyhl933 { - if yyj933 >= l { + var yys940Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys940Slc + var yyhl940 bool = l >= 0 + for yyj940 := 0; ; yyj940++ { + if yyhl940 { + if yyj940 >= l { break } } else { @@ -8369,10 +8432,10 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys933Slc = r.DecodeBytes(yys933Slc, true, true) - yys933 := string(yys933Slc) + yys940Slc = r.DecodeBytes(yys940Slc, true, true) + yys940 := string(yys940Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys933 { + switch yys940 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8461,13 +8524,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv948 := &x.LeaderElection - yyv948.CodecDecodeSelf(d) + yyv955 := &x.LeaderElection + yyv955.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys933) - } // end switch yys933 - } // end for yyj933 + z.DecStructFieldNotFound(-1, yys940) + } // end switch yys940 + } // end for yyj940 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8475,16 +8538,16 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj949 int - var yyb949 bool - var yyhl949 bool = l >= 0 - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + var yyj956 int + var yyb956 bool + var yyhl956 bool = l >= 0 + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8494,13 +8557,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Kind = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8510,13 +8573,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.APIVersion = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8526,13 +8589,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Port = int32(r.DecodeInt(32)) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8542,13 +8605,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Address = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8558,13 +8621,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.AlgorithmProvider = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8574,13 +8637,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.PolicyConfigFile = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8590,13 +8653,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.EnableProfiling = bool(r.DecodeBool()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8606,13 +8669,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.EnableContentionProfiling = bool(r.DecodeBool()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8622,13 +8685,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.ContentType = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8638,13 +8701,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.KubeAPIQPS = float32(r.DecodeFloat(true)) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8654,13 +8717,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8670,13 +8733,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.SchedulerName = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8686,13 +8749,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.HardPodAffinitySymmetricWeight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8702,13 +8765,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.FailureDomains = string(r.DecodeString()) } - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8716,21 +8779,21 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv964 := &x.LeaderElection - yyv964.CodecDecodeSelf(d) + yyv971 := &x.LeaderElection + yyv971.CodecDecodeSelf(d) } for { - yyj949++ - if yyhl949 { - yyb949 = yyj949 > l + yyj956++ + if yyhl956 { + yyb956 = yyj956 > l } else { - yyb949 = r.CheckBreak() + yyb956 = r.CheckBreak() } - if yyb949 { + if yyb956 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj949-1, "") + z.DecStructFieldNotFound(yyj956-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8742,33 +8805,33 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym965 := z.EncBinary() - _ = yym965 + yym972 := z.EncBinary() + _ = yym972 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep966 := !z.EncBinary() - yy2arr966 := z.EncBasicHandle().StructToArray - var yyq966 [4]bool - _, _, _ = yysep966, yyq966, yy2arr966 - const yyr966 bool = false - var yynn966 int - if yyr966 || yy2arr966 { + yysep973 := !z.EncBinary() + yy2arr973 := z.EncBasicHandle().StructToArray + var yyq973 [4]bool + _, _, _ = yysep973, yyq973, yy2arr973 + const yyr973 bool = false + var yynn973 int + if yyr973 || yy2arr973 { r.EncodeArrayStart(4) } else { - yynn966 = 4 - for _, b := range yyq966 { + yynn973 = 4 + for _, b := range yyq973 { if b { - yynn966++ + yynn973++ } } - r.EncodeMapStart(yynn966) - yynn966 = 0 + r.EncodeMapStart(yynn973) + yynn973 = 0 } - if yyr966 || yy2arr966 { + if yyr973 || yy2arr973 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym968 := z.EncBinary() - _ = yym968 + yym975 := z.EncBinary() + _ = yym975 if false { } else { r.EncodeBool(bool(x.LeaderElect)) @@ -8777,57 +8840,16 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym969 := z.EncBinary() - _ = yym969 + yym976 := z.EncBinary() + _ = yym976 if false { } else { r.EncodeBool(bool(x.LeaderElect)) } } - if yyr966 || yy2arr966 { + if yyr973 || yy2arr973 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy971 := &x.LeaseDuration - yym972 := z.EncBinary() - _ = yym972 - if false { - } else if z.HasExtensions() && z.EncExt(yy971) { - } else if !yym972 && z.IsJSONHandle() { - z.EncJSONMarshal(yy971) - } else { - z.EncFallback(yy971) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("leaseDuration")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy973 := &x.LeaseDuration - yym974 := z.EncBinary() - _ = yym974 - if false { - } else if z.HasExtensions() && z.EncExt(yy973) { - } else if !yym974 && z.IsJSONHandle() { - z.EncJSONMarshal(yy973) - } else { - z.EncFallback(yy973) - } - } - if yyr966 || yy2arr966 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy976 := &x.RenewDeadline - yym977 := z.EncBinary() - _ = yym977 - if false { - } else if z.HasExtensions() && z.EncExt(yy976) { - } else if !yym977 && z.IsJSONHandle() { - z.EncJSONMarshal(yy976) - } else { - z.EncFallback(yy976) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("renewDeadline")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy978 := &x.RenewDeadline + yy978 := &x.LeaseDuration yym979 := z.EncBinary() _ = yym979 if false { @@ -8837,24 +8859,24 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncFallback(yy978) } - } - if yyr966 || yy2arr966 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy981 := &x.RetryPeriod - yym982 := z.EncBinary() - _ = yym982 - if false { - } else if z.HasExtensions() && z.EncExt(yy981) { - } else if !yym982 && z.IsJSONHandle() { - z.EncJSONMarshal(yy981) - } else { - z.EncFallback(yy981) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("retryPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("leaseDuration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy983 := &x.RetryPeriod + yy980 := &x.LeaseDuration + yym981 := z.EncBinary() + _ = yym981 + if false { + } else if z.HasExtensions() && z.EncExt(yy980) { + } else if !yym981 && z.IsJSONHandle() { + z.EncJSONMarshal(yy980) + } else { + z.EncFallback(yy980) + } + } + if yyr973 || yy2arr973 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy983 := &x.RenewDeadline yym984 := z.EncBinary() _ = yym984 if false { @@ -8864,8 +8886,49 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncFallback(yy983) } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("renewDeadline")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy985 := &x.RenewDeadline + yym986 := z.EncBinary() + _ = yym986 + if false { + } else if z.HasExtensions() && z.EncExt(yy985) { + } else if !yym986 && z.IsJSONHandle() { + z.EncJSONMarshal(yy985) + } else { + z.EncFallback(yy985) + } } - if yyr966 || yy2arr966 { + if yyr973 || yy2arr973 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy988 := &x.RetryPeriod + yym989 := z.EncBinary() + _ = yym989 + if false { + } else if z.HasExtensions() && z.EncExt(yy988) { + } else if !yym989 && z.IsJSONHandle() { + z.EncJSONMarshal(yy988) + } else { + z.EncFallback(yy988) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("retryPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy990 := &x.RetryPeriod + yym991 := z.EncBinary() + _ = yym991 + if false { + } else if z.HasExtensions() && z.EncExt(yy990) { + } else if !yym991 && z.IsJSONHandle() { + z.EncJSONMarshal(yy990) + } else { + z.EncFallback(yy990) + } + } + if yyr973 || yy2arr973 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8878,25 +8941,25 @@ func (x *LeaderElectionConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym985 := z.DecBinary() - _ = yym985 + yym992 := z.DecBinary() + _ = yym992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct986 := r.ContainerType() - if yyct986 == codecSelferValueTypeMap1234 { - yyl986 := r.ReadMapStart() - if yyl986 == 0 { + yyct993 := r.ContainerType() + if yyct993 == codecSelferValueTypeMap1234 { + yyl993 := r.ReadMapStart() + if yyl993 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl986, d) + x.codecDecodeSelfFromMap(yyl993, d) } - } else if yyct986 == codecSelferValueTypeArray1234 { - yyl986 := r.ReadArrayStart() - if yyl986 == 0 { + } else if yyct993 == codecSelferValueTypeArray1234 { + yyl993 := r.ReadArrayStart() + if yyl993 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl986, d) + x.codecDecodeSelfFromArray(yyl993, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8908,12 +8971,12 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys987Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys987Slc - var yyhl987 bool = l >= 0 - for yyj987 := 0; ; yyj987++ { - if yyhl987 { - if yyj987 >= l { + var yys994Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys994Slc + var yyhl994 bool = l >= 0 + for yyj994 := 0; ; yyj994++ { + if yyhl994 { + if yyj994 >= l { break } } else { @@ -8922,10 +8985,10 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys987Slc = r.DecodeBytes(yys987Slc, true, true) - yys987 := string(yys987Slc) + yys994Slc = r.DecodeBytes(yys994Slc, true, true) + yys994 := string(yys994Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys987 { + switch yys994 { case "leaderElect": if r.TryDecodeAsNil() { x.LeaderElect = false @@ -8936,51 +8999,51 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.LeaseDuration = pkg1_v1.Duration{} } else { - yyv989 := &x.LeaseDuration - yym990 := z.DecBinary() - _ = yym990 + yyv996 := &x.LeaseDuration + yym997 := z.DecBinary() + _ = yym997 if false { - } else if z.HasExtensions() && z.DecExt(yyv989) { - } else if !yym990 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv989) + } else if z.HasExtensions() && z.DecExt(yyv996) { + } else if !yym997 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv996) } else { - z.DecFallback(yyv989, false) + z.DecFallback(yyv996, false) } } case "renewDeadline": if r.TryDecodeAsNil() { x.RenewDeadline = pkg1_v1.Duration{} } else { - yyv991 := &x.RenewDeadline - yym992 := z.DecBinary() - _ = yym992 + yyv998 := &x.RenewDeadline + yym999 := z.DecBinary() + _ = yym999 if false { - } else if z.HasExtensions() && z.DecExt(yyv991) { - } else if !yym992 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv991) + } else if z.HasExtensions() && z.DecExt(yyv998) { + } else if !yym999 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv998) } else { - z.DecFallback(yyv991, false) + z.DecFallback(yyv998, false) } } case "retryPeriod": if r.TryDecodeAsNil() { x.RetryPeriod = pkg1_v1.Duration{} } else { - yyv993 := &x.RetryPeriod - yym994 := z.DecBinary() - _ = yym994 + yyv1000 := &x.RetryPeriod + yym1001 := z.DecBinary() + _ = yym1001 if false { - } else if z.HasExtensions() && z.DecExt(yyv993) { - } else if !yym994 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv993) + } else if z.HasExtensions() && z.DecExt(yyv1000) { + } else if !yym1001 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1000) } else { - z.DecFallback(yyv993, false) + z.DecFallback(yyv1000, false) } } default: - z.DecStructFieldNotFound(-1, yys987) - } // end switch yys987 - } // end for yyj987 + z.DecStructFieldNotFound(-1, yys994) + } // end switch yys994 + } // end for yyj994 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8988,16 +9051,16 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj995 int - var yyb995 bool - var yyhl995 bool = l >= 0 - yyj995++ - if yyhl995 { - yyb995 = yyj995 > l + var yyj1002 int + var yyb1002 bool + var yyhl1002 bool = l >= 0 + yyj1002++ + if yyhl1002 { + yyb1002 = yyj1002 > l } else { - yyb995 = r.CheckBreak() + yyb1002 = r.CheckBreak() } - if yyb995 { + if yyb1002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9007,13 +9070,13 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 } else { x.LeaderElect = bool(r.DecodeBool()) } - yyj995++ - if yyhl995 { - yyb995 = yyj995 > l + yyj1002++ + if yyhl1002 { + yyb1002 = yyj1002 > l } else { - yyb995 = r.CheckBreak() + yyb1002 = r.CheckBreak() } - if yyb995 { + if yyb1002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9021,24 +9084,24 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.LeaseDuration = pkg1_v1.Duration{} } else { - yyv997 := &x.LeaseDuration - yym998 := z.DecBinary() - _ = yym998 + yyv1004 := &x.LeaseDuration + yym1005 := z.DecBinary() + _ = yym1005 if false { - } else if z.HasExtensions() && z.DecExt(yyv997) { - } else if !yym998 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv997) + } else if z.HasExtensions() && z.DecExt(yyv1004) { + } else if !yym1005 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1004) } else { - z.DecFallback(yyv997, false) + z.DecFallback(yyv1004, false) } } - yyj995++ - if yyhl995 { - yyb995 = yyj995 > l + yyj1002++ + if yyhl1002 { + yyb1002 = yyj1002 > l } else { - yyb995 = r.CheckBreak() + yyb1002 = r.CheckBreak() } - if yyb995 { + if yyb1002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9046,24 +9109,24 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.RenewDeadline = pkg1_v1.Duration{} } else { - yyv999 := &x.RenewDeadline - yym1000 := z.DecBinary() - _ = yym1000 + yyv1006 := &x.RenewDeadline + yym1007 := z.DecBinary() + _ = yym1007 if false { - } else if z.HasExtensions() && z.DecExt(yyv999) { - } else if !yym1000 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv999) + } else if z.HasExtensions() && z.DecExt(yyv1006) { + } else if !yym1007 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1006) } else { - z.DecFallback(yyv999, false) + z.DecFallback(yyv1006, false) } } - yyj995++ - if yyhl995 { - yyb995 = yyj995 > l + yyj1002++ + if yyhl1002 { + yyb1002 = yyj1002 > l } else { - yyb995 = r.CheckBreak() + yyb1002 = r.CheckBreak() } - if yyb995 { + if yyb1002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9071,29 +9134,29 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.RetryPeriod = pkg1_v1.Duration{} } else { - yyv1001 := &x.RetryPeriod - yym1002 := z.DecBinary() - _ = yym1002 + yyv1008 := &x.RetryPeriod + yym1009 := z.DecBinary() + _ = yym1009 if false { - } else if z.HasExtensions() && z.DecExt(yyv1001) { - } else if !yym1002 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1001) + } else if z.HasExtensions() && z.DecExt(yyv1008) { + } else if !yym1009 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1008) } else { - z.DecFallback(yyv1001, false) + z.DecFallback(yyv1008, false) } } for { - yyj995++ - if yyhl995 { - yyb995 = yyj995 > l + yyj1002++ + if yyhl1002 { + yyb1002 = yyj1002 > l } else { - yyb995 = r.CheckBreak() + yyb1002 = r.CheckBreak() } - if yyb995 { + if yyb1002 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj995-1, "") + z.DecStructFieldNotFound(yyj1002-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9105,36 +9168,36 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode if x == nil { r.EncodeNil() } else { - yym1003 := z.EncBinary() - _ = yym1003 + yym1010 := z.EncBinary() + _ = yym1010 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1004 := !z.EncBinary() - yy2arr1004 := z.EncBasicHandle().StructToArray - var yyq1004 [61]bool - _, _, _ = yysep1004, yyq1004, yy2arr1004 - const yyr1004 bool = false - yyq1004[0] = x.Kind != "" - yyq1004[1] = x.APIVersion != "" - var yynn1004 int - if yyr1004 || yy2arr1004 { + yysep1011 := !z.EncBinary() + yy2arr1011 := z.EncBasicHandle().StructToArray + var yyq1011 [61]bool + _, _, _ = yysep1011, yyq1011, yy2arr1011 + const yyr1011 bool = false + yyq1011[0] = x.Kind != "" + yyq1011[1] = x.APIVersion != "" + var yynn1011 int + if yyr1011 || yy2arr1011 { r.EncodeArrayStart(61) } else { - yynn1004 = 59 - for _, b := range yyq1004 { + yynn1011 = 59 + for _, b := range yyq1011 { if b { - yynn1004++ + yynn1011++ } } - r.EncodeMapStart(yynn1004) - yynn1004 = 0 + r.EncodeMapStart(yynn1011) + yynn1011 = 0 } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1004[0] { - yym1006 := z.EncBinary() - _ = yym1006 + if yyq1011[0] { + yym1013 := z.EncBinary() + _ = yym1013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -9143,23 +9206,23 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1004[0] { + if yyq1011[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1007 := z.EncBinary() - _ = yym1007 + yym1014 := z.EncBinary() + _ = yym1014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1004[1] { - yym1009 := z.EncBinary() - _ = yym1009 + if yyq1011[1] { + yym1016 := z.EncBinary() + _ = yym1016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -9168,22 +9231,22 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1004[1] { + if yyq1011[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1010 := z.EncBinary() - _ = yym1010 + yym1017 := z.EncBinary() + _ = yym1017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1012 := z.EncBinary() - _ = yym1012 + yym1019 := z.EncBinary() + _ = yym1019 if false { } else { r.EncodeInt(int64(x.Port)) @@ -9192,17 +9255,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1013 := z.EncBinary() - _ = yym1013 + yym1020 := z.EncBinary() + _ = yym1020 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1015 := z.EncBinary() - _ = yym1015 + yym1022 := z.EncBinary() + _ = yym1022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -9211,17 +9274,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1016 := z.EncBinary() - _ = yym1016 + yym1023 := z.EncBinary() + _ = yym1023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1018 := z.EncBinary() - _ = yym1018 + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeBool(bool(x.UseServiceAccountCredentials)) @@ -9230,17 +9293,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("useServiceAccountCredentials")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1019 := z.EncBinary() - _ = yym1019 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeBool(bool(x.UseServiceAccountCredentials)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1021 := z.EncBinary() - _ = yym1021 + yym1028 := z.EncBinary() + _ = yym1028 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) @@ -9249,17 +9312,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cloudProvider")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1022 := z.EncBinary() - _ = yym1022 + yym1029 := z.EncBinary() + _ = yym1029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1024 := z.EncBinary() - _ = yym1024 + yym1031 := z.EncBinary() + _ = yym1031 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) @@ -9268,17 +9331,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cloudConfigFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1025 := z.EncBinary() - _ = yym1025 + yym1032 := z.EncBinary() + _ = yym1032 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1027 := z.EncBinary() - _ = yym1027 + yym1034 := z.EncBinary() + _ = yym1034 if false { } else { r.EncodeInt(int64(x.ConcurrentEndpointSyncs)) @@ -9287,17 +9350,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentEndpointSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1028 := z.EncBinary() - _ = yym1028 + yym1035 := z.EncBinary() + _ = yym1035 if false { } else { r.EncodeInt(int64(x.ConcurrentEndpointSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1030 := z.EncBinary() - _ = yym1030 + yym1037 := z.EncBinary() + _ = yym1037 if false { } else { r.EncodeInt(int64(x.ConcurrentRSSyncs)) @@ -9306,17 +9369,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentRSSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1031 := z.EncBinary() - _ = yym1031 + yym1038 := z.EncBinary() + _ = yym1038 if false { } else { r.EncodeInt(int64(x.ConcurrentRSSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1033 := z.EncBinary() - _ = yym1033 + yym1040 := z.EncBinary() + _ = yym1040 if false { } else { r.EncodeInt(int64(x.ConcurrentRCSyncs)) @@ -9325,17 +9388,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentRCSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1034 := z.EncBinary() - _ = yym1034 + yym1041 := z.EncBinary() + _ = yym1041 if false { } else { r.EncodeInt(int64(x.ConcurrentRCSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1036 := z.EncBinary() - _ = yym1036 + yym1043 := z.EncBinary() + _ = yym1043 if false { } else { r.EncodeInt(int64(x.ConcurrentServiceSyncs)) @@ -9344,17 +9407,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentServiceSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1037 := z.EncBinary() - _ = yym1037 + yym1044 := z.EncBinary() + _ = yym1044 if false { } else { r.EncodeInt(int64(x.ConcurrentServiceSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1039 := z.EncBinary() - _ = yym1039 + yym1046 := z.EncBinary() + _ = yym1046 if false { } else { r.EncodeInt(int64(x.ConcurrentResourceQuotaSyncs)) @@ -9363,17 +9426,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentResourceQuotaSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1040 := z.EncBinary() - _ = yym1040 + yym1047 := z.EncBinary() + _ = yym1047 if false { } else { r.EncodeInt(int64(x.ConcurrentResourceQuotaSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1042 := z.EncBinary() - _ = yym1042 + yym1049 := z.EncBinary() + _ = yym1049 if false { } else { r.EncodeInt(int64(x.ConcurrentDeploymentSyncs)) @@ -9382,17 +9445,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentDeploymentSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1043 := z.EncBinary() - _ = yym1043 + yym1050 := z.EncBinary() + _ = yym1050 if false { } else { r.EncodeInt(int64(x.ConcurrentDeploymentSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1045 := z.EncBinary() - _ = yym1045 + yym1052 := z.EncBinary() + _ = yym1052 if false { } else { r.EncodeInt(int64(x.ConcurrentDaemonSetSyncs)) @@ -9401,17 +9464,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentDaemonSetSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1046 := z.EncBinary() - _ = yym1046 + yym1053 := z.EncBinary() + _ = yym1053 if false { } else { r.EncodeInt(int64(x.ConcurrentDaemonSetSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1048 := z.EncBinary() - _ = yym1048 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeInt(int64(x.ConcurrentJobSyncs)) @@ -9420,17 +9483,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentJobSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1049 := z.EncBinary() - _ = yym1049 + yym1056 := z.EncBinary() + _ = yym1056 if false { } else { r.EncodeInt(int64(x.ConcurrentJobSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1051 := z.EncBinary() - _ = yym1051 + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { r.EncodeInt(int64(x.ConcurrentNamespaceSyncs)) @@ -9439,17 +9502,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentNamespaceSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1052 := z.EncBinary() - _ = yym1052 + yym1059 := z.EncBinary() + _ = yym1059 if false { } else { r.EncodeInt(int64(x.ConcurrentNamespaceSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1054 := z.EncBinary() - _ = yym1054 + yym1061 := z.EncBinary() + _ = yym1061 if false { } else { r.EncodeInt(int64(x.ConcurrentSATokenSyncs)) @@ -9458,17 +9521,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentSATokenSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1055 := z.EncBinary() - _ = yym1055 + yym1062 := z.EncBinary() + _ = yym1062 if false { } else { r.EncodeInt(int64(x.ConcurrentSATokenSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1057 := z.EncBinary() - _ = yym1057 + yym1064 := z.EncBinary() + _ = yym1064 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRC)) @@ -9477,17 +9540,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForRC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1058 := z.EncBinary() - _ = yym1058 + yym1065 := z.EncBinary() + _ = yym1065 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRC)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1060 := z.EncBinary() - _ = yym1060 + yym1067 := z.EncBinary() + _ = yym1067 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRS)) @@ -9496,17 +9559,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForRS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1061 := z.EncBinary() - _ = yym1061 + yym1068 := z.EncBinary() + _ = yym1068 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRS)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1063 := z.EncBinary() - _ = yym1063 + yym1070 := z.EncBinary() + _ = yym1070 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForDaemonSet)) @@ -9515,57 +9578,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForDaemonSet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1064 := z.EncBinary() - _ = yym1064 + yym1071 := z.EncBinary() + _ = yym1071 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForDaemonSet)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1066 := &x.ServiceSyncPeriod - yym1067 := z.EncBinary() - _ = yym1067 - if false { - } else if z.HasExtensions() && z.EncExt(yy1066) { - } else if !yym1067 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1066) - } else { - z.EncFallback(yy1066) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("serviceSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1068 := &x.ServiceSyncPeriod - yym1069 := z.EncBinary() - _ = yym1069 - if false { - } else if z.HasExtensions() && z.EncExt(yy1068) { - } else if !yym1069 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1068) - } else { - z.EncFallback(yy1068) - } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1071 := &x.NodeSyncPeriod - yym1072 := z.EncBinary() - _ = yym1072 - if false { - } else if z.HasExtensions() && z.EncExt(yy1071) { - } else if !yym1072 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1071) - } else { - z.EncFallback(yy1071) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1073 := &x.NodeSyncPeriod + yy1073 := &x.ServiceSyncPeriod yym1074 := z.EncBinary() _ = yym1074 if false { @@ -9575,24 +9597,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1073) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1076 := &x.RouteReconciliationPeriod - yym1077 := z.EncBinary() - _ = yym1077 - if false { - } else if z.HasExtensions() && z.EncExt(yy1076) { - } else if !yym1077 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1076) - } else { - z.EncFallback(yy1076) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("routeReconciliationPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("serviceSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1078 := &x.RouteReconciliationPeriod + yy1075 := &x.ServiceSyncPeriod + yym1076 := z.EncBinary() + _ = yym1076 + if false { + } else if z.HasExtensions() && z.EncExt(yy1075) { + } else if !yym1076 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1075) + } else { + z.EncFallback(yy1075) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1078 := &x.NodeSyncPeriod yym1079 := z.EncBinary() _ = yym1079 if false { @@ -9602,24 +9624,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1078) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1081 := &x.ResourceQuotaSyncPeriod - yym1082 := z.EncBinary() - _ = yym1082 - if false { - } else if z.HasExtensions() && z.EncExt(yy1081) { - } else if !yym1082 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1081) - } else { - z.EncFallback(yy1081) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resourceQuotaSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("nodeSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1083 := &x.ResourceQuotaSyncPeriod + yy1080 := &x.NodeSyncPeriod + yym1081 := z.EncBinary() + _ = yym1081 + if false { + } else if z.HasExtensions() && z.EncExt(yy1080) { + } else if !yym1081 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1080) + } else { + z.EncFallback(yy1080) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1083 := &x.RouteReconciliationPeriod yym1084 := z.EncBinary() _ = yym1084 if false { @@ -9629,24 +9651,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1083) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1086 := &x.NamespaceSyncPeriod - yym1087 := z.EncBinary() - _ = yym1087 - if false { - } else if z.HasExtensions() && z.EncExt(yy1086) { - } else if !yym1087 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1086) - } else { - z.EncFallback(yy1086) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("namespaceSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("routeReconciliationPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1088 := &x.NamespaceSyncPeriod + yy1085 := &x.RouteReconciliationPeriod + yym1086 := z.EncBinary() + _ = yym1086 + if false { + } else if z.HasExtensions() && z.EncExt(yy1085) { + } else if !yym1086 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1085) + } else { + z.EncFallback(yy1085) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1088 := &x.ResourceQuotaSyncPeriod yym1089 := z.EncBinary() _ = yym1089 if false { @@ -9656,24 +9678,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1088) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1091 := &x.PVClaimBinderSyncPeriod - yym1092 := z.EncBinary() - _ = yym1092 - if false { - } else if z.HasExtensions() && z.EncExt(yy1091) { - } else if !yym1092 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1091) - } else { - z.EncFallback(yy1091) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("pvClaimBinderSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("resourceQuotaSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1093 := &x.PVClaimBinderSyncPeriod + yy1090 := &x.ResourceQuotaSyncPeriod + yym1091 := z.EncBinary() + _ = yym1091 + if false { + } else if z.HasExtensions() && z.EncExt(yy1090) { + } else if !yym1091 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1090) + } else { + z.EncFallback(yy1090) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1093 := &x.NamespaceSyncPeriod yym1094 := z.EncBinary() _ = yym1094 if false { @@ -9683,24 +9705,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1093) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1096 := &x.MinResyncPeriod - yym1097 := z.EncBinary() - _ = yym1097 - if false { - } else if z.HasExtensions() && z.EncExt(yy1096) { - } else if !yym1097 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1096) - } else { - z.EncFallback(yy1096) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("minResyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("namespaceSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1098 := &x.MinResyncPeriod + yy1095 := &x.NamespaceSyncPeriod + yym1096 := z.EncBinary() + _ = yym1096 + if false { + } else if z.HasExtensions() && z.EncExt(yy1095) { + } else if !yym1096 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1095) + } else { + z.EncFallback(yy1095) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1098 := &x.PVClaimBinderSyncPeriod yym1099 := z.EncBinary() _ = yym1099 if false { @@ -9710,12 +9732,53 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1098) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("pvClaimBinderSyncPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1100 := &x.PVClaimBinderSyncPeriod yym1101 := z.EncBinary() _ = yym1101 if false { + } else if z.HasExtensions() && z.EncExt(yy1100) { + } else if !yym1101 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1100) + } else { + z.EncFallback(yy1100) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1103 := &x.MinResyncPeriod + yym1104 := z.EncBinary() + _ = yym1104 + if false { + } else if z.HasExtensions() && z.EncExt(yy1103) { + } else if !yym1104 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1103) + } else { + z.EncFallback(yy1103) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("minResyncPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1105 := &x.MinResyncPeriod + yym1106 := z.EncBinary() + _ = yym1106 + if false { + } else if z.HasExtensions() && z.EncExt(yy1105) { + } else if !yym1106 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1105) + } else { + z.EncFallback(yy1105) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1108 := z.EncBinary() + _ = yym1108 + if false { } else { r.EncodeInt(int64(x.TerminatedPodGCThreshold)) } @@ -9723,57 +9786,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminatedPodGCThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1102 := z.EncBinary() - _ = yym1102 + yym1109 := z.EncBinary() + _ = yym1109 if false { } else { r.EncodeInt(int64(x.TerminatedPodGCThreshold)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1104 := &x.HorizontalPodAutoscalerSyncPeriod - yym1105 := z.EncBinary() - _ = yym1105 - if false { - } else if z.HasExtensions() && z.EncExt(yy1104) { - } else if !yym1105 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1104) - } else { - z.EncFallback(yy1104) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("horizontalPodAutoscalerSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1106 := &x.HorizontalPodAutoscalerSyncPeriod - yym1107 := z.EncBinary() - _ = yym1107 - if false { - } else if z.HasExtensions() && z.EncExt(yy1106) { - } else if !yym1107 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1106) - } else { - z.EncFallback(yy1106) - } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1109 := &x.DeploymentControllerSyncPeriod - yym1110 := z.EncBinary() - _ = yym1110 - if false { - } else if z.HasExtensions() && z.EncExt(yy1109) { - } else if !yym1110 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1109) - } else { - z.EncFallback(yy1109) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("deploymentControllerSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1111 := &x.DeploymentControllerSyncPeriod + yy1111 := &x.HorizontalPodAutoscalerSyncPeriod yym1112 := z.EncBinary() _ = yym1112 if false { @@ -9783,24 +9805,24 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1111) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1114 := &x.PodEvictionTimeout - yym1115 := z.EncBinary() - _ = yym1115 - if false { - } else if z.HasExtensions() && z.EncExt(yy1114) { - } else if !yym1115 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1114) - } else { - z.EncFallback(yy1114) - } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podEvictionTimeout")) + r.EncodeString(codecSelferC_UTF81234, string("horizontalPodAutoscalerSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1116 := &x.PodEvictionTimeout + yy1113 := &x.HorizontalPodAutoscalerSyncPeriod + yym1114 := z.EncBinary() + _ = yym1114 + if false { + } else if z.HasExtensions() && z.EncExt(yy1113) { + } else if !yym1114 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1113) + } else { + z.EncFallback(yy1113) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1116 := &x.DeploymentControllerSyncPeriod yym1117 := z.EncBinary() _ = yym1117 if false { @@ -9810,12 +9832,53 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1116) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("deploymentControllerSyncPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1118 := &x.DeploymentControllerSyncPeriod yym1119 := z.EncBinary() _ = yym1119 if false { + } else if z.HasExtensions() && z.EncExt(yy1118) { + } else if !yym1119 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1118) + } else { + z.EncFallback(yy1118) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1121 := &x.PodEvictionTimeout + yym1122 := z.EncBinary() + _ = yym1122 + if false { + } else if z.HasExtensions() && z.EncExt(yy1121) { + } else if !yym1122 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1121) + } else { + z.EncFallback(yy1121) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podEvictionTimeout")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1123 := &x.PodEvictionTimeout + yym1124 := z.EncBinary() + _ = yym1124 + if false { + } else if z.HasExtensions() && z.EncExt(yy1123) { + } else if !yym1124 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1123) + } else { + z.EncFallback(yy1123) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1126 := z.EncBinary() + _ = yym1126 + if false { } else { r.EncodeFloat32(float32(x.DeletingPodsQps)) } @@ -9823,17 +9886,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deletingPodsQps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1120 := z.EncBinary() - _ = yym1120 + yym1127 := z.EncBinary() + _ = yym1127 if false { } else { r.EncodeFloat32(float32(x.DeletingPodsQps)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1122 := z.EncBinary() - _ = yym1122 + yym1129 := z.EncBinary() + _ = yym1129 if false { } else { r.EncodeInt(int64(x.DeletingPodsBurst)) @@ -9842,44 +9905,44 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deletingPodsBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1123 := z.EncBinary() - _ = yym1123 + yym1130 := z.EncBinary() + _ = yym1130 if false { } else { r.EncodeInt(int64(x.DeletingPodsBurst)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1125 := &x.NodeMonitorGracePeriod - yym1126 := z.EncBinary() - _ = yym1126 + yy1132 := &x.NodeMonitorGracePeriod + yym1133 := z.EncBinary() + _ = yym1133 if false { - } else if z.HasExtensions() && z.EncExt(yy1125) { - } else if !yym1126 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1125) + } else if z.HasExtensions() && z.EncExt(yy1132) { + } else if !yym1133 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1132) } else { - z.EncFallback(yy1125) + z.EncFallback(yy1132) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorGracePeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1127 := &x.NodeMonitorGracePeriod - yym1128 := z.EncBinary() - _ = yym1128 + yy1134 := &x.NodeMonitorGracePeriod + yym1135 := z.EncBinary() + _ = yym1135 if false { - } else if z.HasExtensions() && z.EncExt(yy1127) { - } else if !yym1128 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1127) + } else if z.HasExtensions() && z.EncExt(yy1134) { + } else if !yym1135 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1134) } else { - z.EncFallback(yy1127) + z.EncFallback(yy1134) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1130 := z.EncBinary() - _ = yym1130 + yym1137 := z.EncBinary() + _ = yym1137 if false { } else { r.EncodeInt(int64(x.RegisterRetryCount)) @@ -9888,57 +9951,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registerRetryCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1131 := z.EncBinary() - _ = yym1131 + yym1138 := z.EncBinary() + _ = yym1138 if false { } else { r.EncodeInt(int64(x.RegisterRetryCount)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1133 := &x.NodeStartupGracePeriod - yym1134 := z.EncBinary() - _ = yym1134 - if false { - } else if z.HasExtensions() && z.EncExt(yy1133) { - } else if !yym1134 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1133) - } else { - z.EncFallback(yy1133) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeStartupGracePeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1135 := &x.NodeStartupGracePeriod - yym1136 := z.EncBinary() - _ = yym1136 - if false { - } else if z.HasExtensions() && z.EncExt(yy1135) { - } else if !yym1136 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1135) - } else { - z.EncFallback(yy1135) - } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1138 := &x.NodeMonitorPeriod - yym1139 := z.EncBinary() - _ = yym1139 - if false { - } else if z.HasExtensions() && z.EncExt(yy1138) { - } else if !yym1139 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1138) - } else { - z.EncFallback(yy1138) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1140 := &x.NodeMonitorPeriod + yy1140 := &x.NodeStartupGracePeriod yym1141 := z.EncBinary() _ = yym1141 if false { @@ -9948,12 +9970,53 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } else { z.EncFallback(yy1140) } - } - if yyr1004 || yy2arr1004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeStartupGracePeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1142 := &x.NodeStartupGracePeriod yym1143 := z.EncBinary() _ = yym1143 if false { + } else if z.HasExtensions() && z.EncExt(yy1142) { + } else if !yym1143 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1142) + } else { + z.EncFallback(yy1142) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1145 := &x.NodeMonitorPeriod + yym1146 := z.EncBinary() + _ = yym1146 + if false { + } else if z.HasExtensions() && z.EncExt(yy1145) { + } else if !yym1146 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1145) + } else { + z.EncFallback(yy1145) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1147 := &x.NodeMonitorPeriod + yym1148 := z.EncBinary() + _ = yym1148 + if false { + } else if z.HasExtensions() && z.EncExt(yy1147) { + } else if !yym1148 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1147) + } else { + z.EncFallback(yy1147) + } + } + if yyr1011 || yy2arr1011 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1150 := z.EncBinary() + _ = yym1150 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountKeyFile)) } @@ -9961,17 +10024,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountKeyFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1144 := z.EncBinary() - _ = yym1144 + yym1151 := z.EncBinary() + _ = yym1151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountKeyFile)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1146 := z.EncBinary() - _ = yym1146 + yym1153 := z.EncBinary() + _ = yym1153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningCertFile)) @@ -9980,17 +10043,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterSigningCertFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1147 := z.EncBinary() - _ = yym1147 + yym1154 := z.EncBinary() + _ = yym1154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningCertFile)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1149 := z.EncBinary() - _ = yym1149 + yym1156 := z.EncBinary() + _ = yym1156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningKeyFile)) @@ -9999,17 +10062,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterSigningKeyFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1150 := z.EncBinary() - _ = yym1150 + yym1157 := z.EncBinary() + _ = yym1157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningKeyFile)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1152 := z.EncBinary() - _ = yym1152 + yym1159 := z.EncBinary() + _ = yym1159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ApproveAllKubeletCSRsForGroup)) @@ -10018,17 +10081,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("approveAllKubeletCSRsForGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1153 := z.EncBinary() - _ = yym1153 + yym1160 := z.EncBinary() + _ = yym1160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ApproveAllKubeletCSRsForGroup)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1155 := z.EncBinary() - _ = yym1155 + yym1162 := z.EncBinary() + _ = yym1162 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) @@ -10037,17 +10100,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableProfiling")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1156 := z.EncBinary() - _ = yym1156 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1158 := z.EncBinary() - _ = yym1158 + yym1165 := z.EncBinary() + _ = yym1165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterName)) @@ -10056,17 +10119,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1159 := z.EncBinary() - _ = yym1159 + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterName)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1161 := z.EncBinary() - _ = yym1161 + yym1168 := z.EncBinary() + _ = yym1168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterCIDR)) @@ -10075,17 +10138,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1162 := z.EncBinary() - _ = yym1162 + yym1169 := z.EncBinary() + _ = yym1169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterCIDR)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1164 := z.EncBinary() - _ = yym1164 + yym1171 := z.EncBinary() + _ = yym1171 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceCIDR)) @@ -10094,17 +10157,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1165 := z.EncBinary() - _ = yym1165 + yym1172 := z.EncBinary() + _ = yym1172 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceCIDR)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1167 := z.EncBinary() - _ = yym1167 + yym1174 := z.EncBinary() + _ = yym1174 if false { } else { r.EncodeInt(int64(x.NodeCIDRMaskSize)) @@ -10113,17 +10176,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeCIDRMaskSize")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1168 := z.EncBinary() - _ = yym1168 + yym1175 := z.EncBinary() + _ = yym1175 if false { } else { r.EncodeInt(int64(x.NodeCIDRMaskSize)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1170 := z.EncBinary() - _ = yym1170 + yym1177 := z.EncBinary() + _ = yym1177 if false { } else { r.EncodeBool(bool(x.AllocateNodeCIDRs)) @@ -10132,17 +10195,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocateNodeCIDRs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1171 := z.EncBinary() - _ = yym1171 + yym1178 := z.EncBinary() + _ = yym1178 if false { } else { r.EncodeBool(bool(x.AllocateNodeCIDRs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1173 := z.EncBinary() - _ = yym1173 + yym1180 := z.EncBinary() + _ = yym1180 if false { } else { r.EncodeBool(bool(x.ConfigureCloudRoutes)) @@ -10151,17 +10214,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configureCloudRoutes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1174 := z.EncBinary() - _ = yym1174 + yym1181 := z.EncBinary() + _ = yym1181 if false { } else { r.EncodeBool(bool(x.ConfigureCloudRoutes)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1176 := z.EncBinary() - _ = yym1176 + yym1183 := z.EncBinary() + _ = yym1183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootCAFile)) @@ -10170,17 +10233,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rootCAFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1177 := z.EncBinary() - _ = yym1177 + yym1184 := z.EncBinary() + _ = yym1184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootCAFile)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1179 := z.EncBinary() - _ = yym1179 + yym1186 := z.EncBinary() + _ = yym1186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) @@ -10189,17 +10252,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1180 := z.EncBinary() - _ = yym1180 + yym1187 := z.EncBinary() + _ = yym1187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1182 := z.EncBinary() - _ = yym1182 + yym1189 := z.EncBinary() + _ = yym1189 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) @@ -10208,17 +10271,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1183 := z.EncBinary() - _ = yym1183 + yym1190 := z.EncBinary() + _ = yym1190 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1185 := z.EncBinary() - _ = yym1185 + yym1192 := z.EncBinary() + _ = yym1192 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) @@ -10227,66 +10290,66 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1186 := z.EncBinary() - _ = yym1186 + yym1193 := z.EncBinary() + _ = yym1193 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1188 := &x.LeaderElection - yy1188.CodecEncodeSelf(e) + yy1195 := &x.LeaderElection + yy1195.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElection")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1189 := &x.LeaderElection - yy1189.CodecEncodeSelf(e) + yy1196 := &x.LeaderElection + yy1196.CodecEncodeSelf(e) } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1191 := &x.VolumeConfiguration - yy1191.CodecEncodeSelf(e) + yy1198 := &x.VolumeConfiguration + yy1198.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeConfiguration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1192 := &x.VolumeConfiguration - yy1192.CodecEncodeSelf(e) + yy1199 := &x.VolumeConfiguration + yy1199.CodecEncodeSelf(e) } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1194 := &x.ControllerStartInterval - yym1195 := z.EncBinary() - _ = yym1195 + yy1201 := &x.ControllerStartInterval + yym1202 := z.EncBinary() + _ = yym1202 if false { - } else if z.HasExtensions() && z.EncExt(yy1194) { - } else if !yym1195 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1194) + } else if z.HasExtensions() && z.EncExt(yy1201) { + } else if !yym1202 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1201) } else { - z.EncFallback(yy1194) + z.EncFallback(yy1201) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controllerStartInterval")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1196 := &x.ControllerStartInterval - yym1197 := z.EncBinary() - _ = yym1197 + yy1203 := &x.ControllerStartInterval + yym1204 := z.EncBinary() + _ = yym1204 if false { - } else if z.HasExtensions() && z.EncExt(yy1196) { - } else if !yym1197 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1196) + } else if z.HasExtensions() && z.EncExt(yy1203) { + } else if !yym1204 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1203) } else { - z.EncFallback(yy1196) + z.EncFallback(yy1203) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1199 := z.EncBinary() - _ = yym1199 + yym1206 := z.EncBinary() + _ = yym1206 if false { } else { r.EncodeBool(bool(x.EnableGarbageCollector)) @@ -10295,17 +10358,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableGarbageCollector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1200 := z.EncBinary() - _ = yym1200 + yym1207 := z.EncBinary() + _ = yym1207 if false { } else { r.EncodeBool(bool(x.EnableGarbageCollector)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1202 := z.EncBinary() - _ = yym1202 + yym1209 := z.EncBinary() + _ = yym1209 if false { } else { r.EncodeInt(int64(x.ConcurrentGCSyncs)) @@ -10314,17 +10377,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentGCSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1203 := z.EncBinary() - _ = yym1203 + yym1210 := z.EncBinary() + _ = yym1210 if false { } else { r.EncodeInt(int64(x.ConcurrentGCSyncs)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1205 := z.EncBinary() - _ = yym1205 + yym1212 := z.EncBinary() + _ = yym1212 if false { } else { r.EncodeFloat32(float32(x.NodeEvictionRate)) @@ -10333,17 +10396,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeEvictionRate")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1206 := z.EncBinary() - _ = yym1206 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else { r.EncodeFloat32(float32(x.NodeEvictionRate)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1208 := z.EncBinary() - _ = yym1208 + yym1215 := z.EncBinary() + _ = yym1215 if false { } else { r.EncodeFloat32(float32(x.SecondaryNodeEvictionRate)) @@ -10352,17 +10415,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secondaryNodeEvictionRate")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1209 := z.EncBinary() - _ = yym1209 + yym1216 := z.EncBinary() + _ = yym1216 if false { } else { r.EncodeFloat32(float32(x.SecondaryNodeEvictionRate)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1211 := z.EncBinary() - _ = yym1211 + yym1218 := z.EncBinary() + _ = yym1218 if false { } else { r.EncodeInt(int64(x.LargeClusterSizeThreshold)) @@ -10371,17 +10434,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("largeClusterSizeThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1212 := z.EncBinary() - _ = yym1212 + yym1219 := z.EncBinary() + _ = yym1219 if false { } else { r.EncodeInt(int64(x.LargeClusterSizeThreshold)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1214 := z.EncBinary() - _ = yym1214 + yym1221 := z.EncBinary() + _ = yym1221 if false { } else { r.EncodeFloat32(float32(x.UnhealthyZoneThreshold)) @@ -10390,14 +10453,14 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unhealthyZoneThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1222 := z.EncBinary() + _ = yym1222 if false { } else { r.EncodeFloat32(float32(x.UnhealthyZoneThreshold)) } } - if yyr1004 || yy2arr1004 { + if yyr1011 || yy2arr1011 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10410,25 +10473,25 @@ func (x *KubeControllerManagerConfiguration) CodecDecodeSelf(d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1216 := z.DecBinary() - _ = yym1216 + yym1223 := z.DecBinary() + _ = yym1223 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1217 := r.ContainerType() - if yyct1217 == codecSelferValueTypeMap1234 { - yyl1217 := r.ReadMapStart() - if yyl1217 == 0 { + yyct1224 := r.ContainerType() + if yyct1224 == codecSelferValueTypeMap1234 { + yyl1224 := r.ReadMapStart() + if yyl1224 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1217, d) + x.codecDecodeSelfFromMap(yyl1224, d) } - } else if yyct1217 == codecSelferValueTypeArray1234 { - yyl1217 := r.ReadArrayStart() - if yyl1217 == 0 { + } else if yyct1224 == codecSelferValueTypeArray1234 { + yyl1224 := r.ReadArrayStart() + if yyl1224 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1217, d) + x.codecDecodeSelfFromArray(yyl1224, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10440,12 +10503,12 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1218Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1218Slc - var yyhl1218 bool = l >= 0 - for yyj1218 := 0; ; yyj1218++ { - if yyhl1218 { - if yyj1218 >= l { + var yys1225Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1225Slc + var yyhl1225 bool = l >= 0 + for yyj1225 := 0; ; yyj1225++ { + if yyhl1225 { + if yyj1225 >= l { break } } else { @@ -10454,10 +10517,10 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1218Slc = r.DecodeBytes(yys1218Slc, true, true) - yys1218 := string(yys1218Slc) + yys1225Slc = r.DecodeBytes(yys1225Slc, true, true) + yys1225 := string(yys1225Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1218 { + switch yys1225 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -10582,105 +10645,105 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.ServiceSyncPeriod = pkg1_v1.Duration{} } else { - yyv1239 := &x.ServiceSyncPeriod - yym1240 := z.DecBinary() - _ = yym1240 + yyv1246 := &x.ServiceSyncPeriod + yym1247 := z.DecBinary() + _ = yym1247 if false { - } else if z.HasExtensions() && z.DecExt(yyv1239) { - } else if !yym1240 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1239) + } else if z.HasExtensions() && z.DecExt(yyv1246) { + } else if !yym1247 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1246) } else { - z.DecFallback(yyv1239, false) + z.DecFallback(yyv1246, false) } } case "nodeSyncPeriod": if r.TryDecodeAsNil() { x.NodeSyncPeriod = pkg1_v1.Duration{} } else { - yyv1241 := &x.NodeSyncPeriod - yym1242 := z.DecBinary() - _ = yym1242 + yyv1248 := &x.NodeSyncPeriod + yym1249 := z.DecBinary() + _ = yym1249 if false { - } else if z.HasExtensions() && z.DecExt(yyv1241) { - } else if !yym1242 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1241) + } else if z.HasExtensions() && z.DecExt(yyv1248) { + } else if !yym1249 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1248) } else { - z.DecFallback(yyv1241, false) + z.DecFallback(yyv1248, false) } } case "routeReconciliationPeriod": if r.TryDecodeAsNil() { x.RouteReconciliationPeriod = pkg1_v1.Duration{} } else { - yyv1243 := &x.RouteReconciliationPeriod - yym1244 := z.DecBinary() - _ = yym1244 + yyv1250 := &x.RouteReconciliationPeriod + yym1251 := z.DecBinary() + _ = yym1251 if false { - } else if z.HasExtensions() && z.DecExt(yyv1243) { - } else if !yym1244 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1243) + } else if z.HasExtensions() && z.DecExt(yyv1250) { + } else if !yym1251 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1250) } else { - z.DecFallback(yyv1243, false) + z.DecFallback(yyv1250, false) } } case "resourceQuotaSyncPeriod": if r.TryDecodeAsNil() { x.ResourceQuotaSyncPeriod = pkg1_v1.Duration{} } else { - yyv1245 := &x.ResourceQuotaSyncPeriod - yym1246 := z.DecBinary() - _ = yym1246 + yyv1252 := &x.ResourceQuotaSyncPeriod + yym1253 := z.DecBinary() + _ = yym1253 if false { - } else if z.HasExtensions() && z.DecExt(yyv1245) { - } else if !yym1246 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1245) + } else if z.HasExtensions() && z.DecExt(yyv1252) { + } else if !yym1253 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1252) } else { - z.DecFallback(yyv1245, false) + z.DecFallback(yyv1252, false) } } case "namespaceSyncPeriod": if r.TryDecodeAsNil() { x.NamespaceSyncPeriod = pkg1_v1.Duration{} } else { - yyv1247 := &x.NamespaceSyncPeriod - yym1248 := z.DecBinary() - _ = yym1248 + yyv1254 := &x.NamespaceSyncPeriod + yym1255 := z.DecBinary() + _ = yym1255 if false { - } else if z.HasExtensions() && z.DecExt(yyv1247) { - } else if !yym1248 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1247) + } else if z.HasExtensions() && z.DecExt(yyv1254) { + } else if !yym1255 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1254) } else { - z.DecFallback(yyv1247, false) + z.DecFallback(yyv1254, false) } } case "pvClaimBinderSyncPeriod": if r.TryDecodeAsNil() { x.PVClaimBinderSyncPeriod = pkg1_v1.Duration{} } else { - yyv1249 := &x.PVClaimBinderSyncPeriod - yym1250 := z.DecBinary() - _ = yym1250 + yyv1256 := &x.PVClaimBinderSyncPeriod + yym1257 := z.DecBinary() + _ = yym1257 if false { - } else if z.HasExtensions() && z.DecExt(yyv1249) { - } else if !yym1250 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1249) + } else if z.HasExtensions() && z.DecExt(yyv1256) { + } else if !yym1257 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1256) } else { - z.DecFallback(yyv1249, false) + z.DecFallback(yyv1256, false) } } case "minResyncPeriod": if r.TryDecodeAsNil() { x.MinResyncPeriod = pkg1_v1.Duration{} } else { - yyv1251 := &x.MinResyncPeriod - yym1252 := z.DecBinary() - _ = yym1252 + yyv1258 := &x.MinResyncPeriod + yym1259 := z.DecBinary() + _ = yym1259 if false { - } else if z.HasExtensions() && z.DecExt(yyv1251) { - } else if !yym1252 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1251) + } else if z.HasExtensions() && z.DecExt(yyv1258) { + } else if !yym1259 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1258) } else { - z.DecFallback(yyv1251, false) + z.DecFallback(yyv1258, false) } } case "terminatedPodGCThreshold": @@ -10693,45 +10756,45 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.HorizontalPodAutoscalerSyncPeriod = pkg1_v1.Duration{} } else { - yyv1254 := &x.HorizontalPodAutoscalerSyncPeriod - yym1255 := z.DecBinary() - _ = yym1255 + yyv1261 := &x.HorizontalPodAutoscalerSyncPeriod + yym1262 := z.DecBinary() + _ = yym1262 if false { - } else if z.HasExtensions() && z.DecExt(yyv1254) { - } else if !yym1255 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1254) + } else if z.HasExtensions() && z.DecExt(yyv1261) { + } else if !yym1262 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1261) } else { - z.DecFallback(yyv1254, false) + z.DecFallback(yyv1261, false) } } case "deploymentControllerSyncPeriod": if r.TryDecodeAsNil() { x.DeploymentControllerSyncPeriod = pkg1_v1.Duration{} } else { - yyv1256 := &x.DeploymentControllerSyncPeriod - yym1257 := z.DecBinary() - _ = yym1257 + yyv1263 := &x.DeploymentControllerSyncPeriod + yym1264 := z.DecBinary() + _ = yym1264 if false { - } else if z.HasExtensions() && z.DecExt(yyv1256) { - } else if !yym1257 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1256) + } else if z.HasExtensions() && z.DecExt(yyv1263) { + } else if !yym1264 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1263) } else { - z.DecFallback(yyv1256, false) + z.DecFallback(yyv1263, false) } } case "podEvictionTimeout": if r.TryDecodeAsNil() { x.PodEvictionTimeout = pkg1_v1.Duration{} } else { - yyv1258 := &x.PodEvictionTimeout - yym1259 := z.DecBinary() - _ = yym1259 + yyv1265 := &x.PodEvictionTimeout + yym1266 := z.DecBinary() + _ = yym1266 if false { - } else if z.HasExtensions() && z.DecExt(yyv1258) { - } else if !yym1259 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1258) + } else if z.HasExtensions() && z.DecExt(yyv1265) { + } else if !yym1266 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1265) } else { - z.DecFallback(yyv1258, false) + z.DecFallback(yyv1265, false) } } case "deletingPodsQps": @@ -10750,15 +10813,15 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.NodeMonitorGracePeriod = pkg1_v1.Duration{} } else { - yyv1262 := &x.NodeMonitorGracePeriod - yym1263 := z.DecBinary() - _ = yym1263 + yyv1269 := &x.NodeMonitorGracePeriod + yym1270 := z.DecBinary() + _ = yym1270 if false { - } else if z.HasExtensions() && z.DecExt(yyv1262) { - } else if !yym1263 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1262) + } else if z.HasExtensions() && z.DecExt(yyv1269) { + } else if !yym1270 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1269) } else { - z.DecFallback(yyv1262, false) + z.DecFallback(yyv1269, false) } } case "registerRetryCount": @@ -10771,30 +10834,30 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.NodeStartupGracePeriod = pkg1_v1.Duration{} } else { - yyv1265 := &x.NodeStartupGracePeriod - yym1266 := z.DecBinary() - _ = yym1266 + yyv1272 := &x.NodeStartupGracePeriod + yym1273 := z.DecBinary() + _ = yym1273 if false { - } else if z.HasExtensions() && z.DecExt(yyv1265) { - } else if !yym1266 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1265) + } else if z.HasExtensions() && z.DecExt(yyv1272) { + } else if !yym1273 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1272) } else { - z.DecFallback(yyv1265, false) + z.DecFallback(yyv1272, false) } } case "nodeMonitorPeriod": if r.TryDecodeAsNil() { x.NodeMonitorPeriod = pkg1_v1.Duration{} } else { - yyv1267 := &x.NodeMonitorPeriod - yym1268 := z.DecBinary() - _ = yym1268 + yyv1274 := &x.NodeMonitorPeriod + yym1275 := z.DecBinary() + _ = yym1275 if false { - } else if z.HasExtensions() && z.DecExt(yyv1267) { - } else if !yym1268 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1267) + } else if z.HasExtensions() && z.DecExt(yyv1274) { + } else if !yym1275 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1274) } else { - z.DecFallback(yyv1267, false) + z.DecFallback(yyv1274, false) } } case "serviceAccountKeyFile": @@ -10891,29 +10954,29 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv1284 := &x.LeaderElection - yyv1284.CodecDecodeSelf(d) + yyv1291 := &x.LeaderElection + yyv1291.CodecDecodeSelf(d) } case "volumeConfiguration": if r.TryDecodeAsNil() { x.VolumeConfiguration = VolumeConfiguration{} } else { - yyv1285 := &x.VolumeConfiguration - yyv1285.CodecDecodeSelf(d) + yyv1292 := &x.VolumeConfiguration + yyv1292.CodecDecodeSelf(d) } case "controllerStartInterval": if r.TryDecodeAsNil() { x.ControllerStartInterval = pkg1_v1.Duration{} } else { - yyv1286 := &x.ControllerStartInterval - yym1287 := z.DecBinary() - _ = yym1287 + yyv1293 := &x.ControllerStartInterval + yym1294 := z.DecBinary() + _ = yym1294 if false { - } else if z.HasExtensions() && z.DecExt(yyv1286) { - } else if !yym1287 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1286) + } else if z.HasExtensions() && z.DecExt(yyv1293) { + } else if !yym1294 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1293) } else { - z.DecFallback(yyv1286, false) + z.DecFallback(yyv1293, false) } } case "enableGarbageCollector": @@ -10953,9 +11016,9 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co x.UnhealthyZoneThreshold = float32(r.DecodeFloat(true)) } default: - z.DecStructFieldNotFound(-1, yys1218) - } // end switch yys1218 - } // end for yyj1218 + z.DecStructFieldNotFound(-1, yys1225) + } // end switch yys1225 + } // end for yyj1225 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10963,16 +11026,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1294 int - var yyb1294 bool - var yyhl1294 bool = l >= 0 - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + var yyj1301 int + var yyb1301 bool + var yyhl1301 bool = l >= 0 + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10982,13 +11045,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Kind = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10998,13 +11061,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.APIVersion = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11014,13 +11077,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Port = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11030,13 +11093,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Address = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11046,13 +11109,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.UseServiceAccountCredentials = bool(r.DecodeBool()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11062,13 +11125,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.CloudProvider = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11078,13 +11141,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.CloudConfigFile = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11094,13 +11157,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentEndpointSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11110,13 +11173,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentRSSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11126,13 +11189,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentRCSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11142,13 +11205,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentServiceSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11158,13 +11221,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentResourceQuotaSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11174,13 +11237,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentDeploymentSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11190,13 +11253,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentDaemonSetSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11206,13 +11269,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentJobSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11222,13 +11285,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentNamespaceSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11238,13 +11301,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentSATokenSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11254,13 +11317,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForRC = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11270,13 +11333,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForRS = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11286,13 +11349,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForDaemonSet = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11300,24 +11363,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ServiceSyncPeriod = pkg1_v1.Duration{} } else { - yyv1315 := &x.ServiceSyncPeriod - yym1316 := z.DecBinary() - _ = yym1316 + yyv1322 := &x.ServiceSyncPeriod + yym1323 := z.DecBinary() + _ = yym1323 if false { - } else if z.HasExtensions() && z.DecExt(yyv1315) { - } else if !yym1316 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1315) + } else if z.HasExtensions() && z.DecExt(yyv1322) { + } else if !yym1323 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1322) } else { - z.DecFallback(yyv1315, false) + z.DecFallback(yyv1322, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11325,24 +11388,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NodeSyncPeriod = pkg1_v1.Duration{} } else { - yyv1317 := &x.NodeSyncPeriod - yym1318 := z.DecBinary() - _ = yym1318 + yyv1324 := &x.NodeSyncPeriod + yym1325 := z.DecBinary() + _ = yym1325 if false { - } else if z.HasExtensions() && z.DecExt(yyv1317) { - } else if !yym1318 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1317) + } else if z.HasExtensions() && z.DecExt(yyv1324) { + } else if !yym1325 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1324) } else { - z.DecFallback(yyv1317, false) + z.DecFallback(yyv1324, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11350,24 +11413,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.RouteReconciliationPeriod = pkg1_v1.Duration{} } else { - yyv1319 := &x.RouteReconciliationPeriod - yym1320 := z.DecBinary() - _ = yym1320 + yyv1326 := &x.RouteReconciliationPeriod + yym1327 := z.DecBinary() + _ = yym1327 if false { - } else if z.HasExtensions() && z.DecExt(yyv1319) { - } else if !yym1320 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1319) + } else if z.HasExtensions() && z.DecExt(yyv1326) { + } else if !yym1327 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1326) } else { - z.DecFallback(yyv1319, false) + z.DecFallback(yyv1326, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11375,24 +11438,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ResourceQuotaSyncPeriod = pkg1_v1.Duration{} } else { - yyv1321 := &x.ResourceQuotaSyncPeriod - yym1322 := z.DecBinary() - _ = yym1322 + yyv1328 := &x.ResourceQuotaSyncPeriod + yym1329 := z.DecBinary() + _ = yym1329 if false { - } else if z.HasExtensions() && z.DecExt(yyv1321) { - } else if !yym1322 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1321) + } else if z.HasExtensions() && z.DecExt(yyv1328) { + } else if !yym1329 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1328) } else { - z.DecFallback(yyv1321, false) + z.DecFallback(yyv1328, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11400,98 +11463,7 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NamespaceSyncPeriod = pkg1_v1.Duration{} } else { - yyv1323 := &x.NamespaceSyncPeriod - yym1324 := z.DecBinary() - _ = yym1324 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1323) { - } else if !yym1324 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1323) - } else { - z.DecFallback(yyv1323, false) - } - } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l - } else { - yyb1294 = r.CheckBreak() - } - if yyb1294 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PVClaimBinderSyncPeriod = pkg1_v1.Duration{} - } else { - yyv1325 := &x.PVClaimBinderSyncPeriod - yym1326 := z.DecBinary() - _ = yym1326 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1325) { - } else if !yym1326 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1325) - } else { - z.DecFallback(yyv1325, false) - } - } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l - } else { - yyb1294 = r.CheckBreak() - } - if yyb1294 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MinResyncPeriod = pkg1_v1.Duration{} - } else { - yyv1327 := &x.MinResyncPeriod - yym1328 := z.DecBinary() - _ = yym1328 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1327) { - } else if !yym1328 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1327) - } else { - z.DecFallback(yyv1327, false) - } - } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l - } else { - yyb1294 = r.CheckBreak() - } - if yyb1294 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.TerminatedPodGCThreshold = 0 - } else { - x.TerminatedPodGCThreshold = int32(r.DecodeInt(32)) - } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l - } else { - yyb1294 = r.CheckBreak() - } - if yyb1294 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.HorizontalPodAutoscalerSyncPeriod = pkg1_v1.Duration{} - } else { - yyv1330 := &x.HorizontalPodAutoscalerSyncPeriod + yyv1330 := &x.NamespaceSyncPeriod yym1331 := z.DecBinary() _ = yym1331 if false { @@ -11502,21 +11474,21 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1330, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.DeploymentControllerSyncPeriod = pkg1_v1.Duration{} + x.PVClaimBinderSyncPeriod = pkg1_v1.Duration{} } else { - yyv1332 := &x.DeploymentControllerSyncPeriod + yyv1332 := &x.PVClaimBinderSyncPeriod yym1333 := z.DecBinary() _ = yym1333 if false { @@ -11527,21 +11499,21 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1332, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.PodEvictionTimeout = pkg1_v1.Duration{} + x.MinResyncPeriod = pkg1_v1.Duration{} } else { - yyv1334 := &x.PodEvictionTimeout + yyv1334 := &x.MinResyncPeriod yym1335 := z.DecBinary() _ = yym1335 if false { @@ -11552,94 +11524,87 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1334, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.DeletingPodsQps = 0 + x.TerminatedPodGCThreshold = 0 } else { - x.DeletingPodsQps = float32(r.DecodeFloat(true)) + x.TerminatedPodGCThreshold = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.DeletingPodsBurst = 0 + x.HorizontalPodAutoscalerSyncPeriod = pkg1_v1.Duration{} } else { - x.DeletingPodsBurst = int32(r.DecodeInt(32)) - } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l - } else { - yyb1294 = r.CheckBreak() - } - if yyb1294 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodeMonitorGracePeriod = pkg1_v1.Duration{} - } else { - yyv1338 := &x.NodeMonitorGracePeriod - yym1339 := z.DecBinary() - _ = yym1339 + yyv1337 := &x.HorizontalPodAutoscalerSyncPeriod + yym1338 := z.DecBinary() + _ = yym1338 if false { - } else if z.HasExtensions() && z.DecExt(yyv1338) { - } else if !yym1339 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1338) + } else if z.HasExtensions() && z.DecExt(yyv1337) { + } else if !yym1338 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1337) } else { - z.DecFallback(yyv1338, false) + z.DecFallback(yyv1337, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.RegisterRetryCount = 0 + x.DeploymentControllerSyncPeriod = pkg1_v1.Duration{} } else { - x.RegisterRetryCount = int32(r.DecodeInt(32)) + yyv1339 := &x.DeploymentControllerSyncPeriod + yym1340 := z.DecBinary() + _ = yym1340 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1339) { + } else if !yym1340 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1339) + } else { + z.DecFallback(yyv1339, false) + } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.NodeStartupGracePeriod = pkg1_v1.Duration{} + x.PodEvictionTimeout = pkg1_v1.Duration{} } else { - yyv1341 := &x.NodeStartupGracePeriod + yyv1341 := &x.PodEvictionTimeout yym1342 := z.DecBinary() _ = yym1342 if false { @@ -11650,13 +11615,111 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1341, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DeletingPodsQps = 0 + } else { + x.DeletingPodsQps = float32(r.DecodeFloat(true)) + } + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l + } else { + yyb1301 = r.CheckBreak() + } + if yyb1301 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DeletingPodsBurst = 0 + } else { + x.DeletingPodsBurst = int32(r.DecodeInt(32)) + } + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l + } else { + yyb1301 = r.CheckBreak() + } + if yyb1301 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeMonitorGracePeriod = pkg1_v1.Duration{} + } else { + yyv1345 := &x.NodeMonitorGracePeriod + yym1346 := z.DecBinary() + _ = yym1346 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1345) { + } else if !yym1346 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1345) + } else { + z.DecFallback(yyv1345, false) + } + } + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l + } else { + yyb1301 = r.CheckBreak() + } + if yyb1301 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.RegisterRetryCount = 0 + } else { + x.RegisterRetryCount = int32(r.DecodeInt(32)) + } + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l + } else { + yyb1301 = r.CheckBreak() + } + if yyb1301 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeStartupGracePeriod = pkg1_v1.Duration{} + } else { + yyv1348 := &x.NodeStartupGracePeriod + yym1349 := z.DecBinary() + _ = yym1349 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1348) { + } else if !yym1349 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1348) + } else { + z.DecFallback(yyv1348, false) + } + } + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l + } else { + yyb1301 = r.CheckBreak() + } + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11664,24 +11727,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NodeMonitorPeriod = pkg1_v1.Duration{} } else { - yyv1343 := &x.NodeMonitorPeriod - yym1344 := z.DecBinary() - _ = yym1344 + yyv1350 := &x.NodeMonitorPeriod + yym1351 := z.DecBinary() + _ = yym1351 if false { - } else if z.HasExtensions() && z.DecExt(yyv1343) { - } else if !yym1344 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1343) + } else if z.HasExtensions() && z.DecExt(yyv1350) { + } else if !yym1351 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1350) } else { - z.DecFallback(yyv1343, false) + z.DecFallback(yyv1350, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11691,13 +11754,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ServiceAccountKeyFile = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11707,13 +11770,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterSigningCertFile = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11723,13 +11786,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterSigningKeyFile = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11739,13 +11802,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ApproveAllKubeletCSRsForGroup = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11755,13 +11818,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.EnableProfiling = bool(r.DecodeBool()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11771,13 +11834,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterName = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11787,13 +11850,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterCIDR = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11803,13 +11866,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ServiceCIDR = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11819,13 +11882,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.NodeCIDRMaskSize = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11835,13 +11898,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.AllocateNodeCIDRs = bool(r.DecodeBool()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11851,13 +11914,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConfigureCloudRoutes = bool(r.DecodeBool()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11867,13 +11930,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.RootCAFile = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11883,13 +11946,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ContentType = string(r.DecodeString()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11899,13 +11962,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.KubeAPIQPS = float32(r.DecodeFloat(true)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11915,13 +11978,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11929,16 +11992,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv1360 := &x.LeaderElection - yyv1360.CodecDecodeSelf(d) + yyv1367 := &x.LeaderElection + yyv1367.CodecDecodeSelf(d) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11946,16 +12009,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.VolumeConfiguration = VolumeConfiguration{} } else { - yyv1361 := &x.VolumeConfiguration - yyv1361.CodecDecodeSelf(d) + yyv1368 := &x.VolumeConfiguration + yyv1368.CodecDecodeSelf(d) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11963,24 +12026,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ControllerStartInterval = pkg1_v1.Duration{} } else { - yyv1362 := &x.ControllerStartInterval - yym1363 := z.DecBinary() - _ = yym1363 + yyv1369 := &x.ControllerStartInterval + yym1370 := z.DecBinary() + _ = yym1370 if false { - } else if z.HasExtensions() && z.DecExt(yyv1362) { - } else if !yym1363 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1362) + } else if z.HasExtensions() && z.DecExt(yyv1369) { + } else if !yym1370 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1369) } else { - z.DecFallback(yyv1362, false) + z.DecFallback(yyv1369, false) } } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11990,13 +12053,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.EnableGarbageCollector = bool(r.DecodeBool()) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12006,13 +12069,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentGCSyncs = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12022,13 +12085,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.NodeEvictionRate = float32(r.DecodeFloat(true)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12038,13 +12101,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.SecondaryNodeEvictionRate = float32(r.DecodeFloat(true)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12054,13 +12117,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LargeClusterSizeThreshold = int32(r.DecodeInt(32)) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12071,17 +12134,17 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * x.UnhealthyZoneThreshold = float32(r.DecodeFloat(true)) } for { - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1294 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1294 { + if yyb1301 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1294-1, "") + z.DecStructFieldNotFound(yyj1301-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12093,33 +12156,33 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1370 := z.EncBinary() - _ = yym1370 + yym1377 := z.EncBinary() + _ = yym1377 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1371 := !z.EncBinary() - yy2arr1371 := z.EncBasicHandle().StructToArray - var yyq1371 [4]bool - _, _, _ = yysep1371, yyq1371, yy2arr1371 - const yyr1371 bool = false - var yynn1371 int - if yyr1371 || yy2arr1371 { + yysep1378 := !z.EncBinary() + yy2arr1378 := z.EncBasicHandle().StructToArray + var yyq1378 [4]bool + _, _, _ = yysep1378, yyq1378, yy2arr1378 + const yyr1378 bool = false + var yynn1378 int + if yyr1378 || yy2arr1378 { r.EncodeArrayStart(4) } else { - yynn1371 = 4 - for _, b := range yyq1371 { + yynn1378 = 4 + for _, b := range yyq1378 { if b { - yynn1371++ + yynn1378++ } } - r.EncodeMapStart(yynn1371) - yynn1371 = 0 + r.EncodeMapStart(yynn1378) + yynn1378 = 0 } - if yyr1371 || yy2arr1371 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1373 := z.EncBinary() - _ = yym1373 + yym1380 := z.EncBinary() + _ = yym1380 if false { } else { r.EncodeBool(bool(x.EnableHostPathProvisioning)) @@ -12128,17 +12191,17 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableHostPathProvisioning")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1374 := z.EncBinary() - _ = yym1374 + yym1381 := z.EncBinary() + _ = yym1381 if false { } else { r.EncodeBool(bool(x.EnableHostPathProvisioning)) } } - if yyr1371 || yy2arr1371 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1376 := z.EncBinary() - _ = yym1376 + yym1383 := z.EncBinary() + _ = yym1383 if false { } else { r.EncodeBool(bool(x.EnableDynamicProvisioning)) @@ -12147,28 +12210,28 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableDynamicProvisioning")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1377 := z.EncBinary() - _ = yym1377 + yym1384 := z.EncBinary() + _ = yym1384 if false { } else { r.EncodeBool(bool(x.EnableDynamicProvisioning)) } } - if yyr1371 || yy2arr1371 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1379 := &x.PersistentVolumeRecyclerConfiguration - yy1379.CodecEncodeSelf(e) + yy1386 := &x.PersistentVolumeRecyclerConfiguration + yy1386.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persitentVolumeRecyclerConfiguration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1380 := &x.PersistentVolumeRecyclerConfiguration - yy1380.CodecEncodeSelf(e) + yy1387 := &x.PersistentVolumeRecyclerConfiguration + yy1387.CodecEncodeSelf(e) } - if yyr1371 || yy2arr1371 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1382 := z.EncBinary() - _ = yym1382 + yym1389 := z.EncBinary() + _ = yym1389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FlexVolumePluginDir)) @@ -12177,14 +12240,14 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolumePluginDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1383 := z.EncBinary() - _ = yym1383 + yym1390 := z.EncBinary() + _ = yym1390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FlexVolumePluginDir)) } } - if yyr1371 || yy2arr1371 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12197,25 +12260,25 @@ func (x *VolumeConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1384 := z.DecBinary() - _ = yym1384 + yym1391 := z.DecBinary() + _ = yym1391 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1385 := r.ContainerType() - if yyct1385 == codecSelferValueTypeMap1234 { - yyl1385 := r.ReadMapStart() - if yyl1385 == 0 { + yyct1392 := r.ContainerType() + if yyct1392 == codecSelferValueTypeMap1234 { + yyl1392 := r.ReadMapStart() + if yyl1392 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1385, d) + x.codecDecodeSelfFromMap(yyl1392, d) } - } else if yyct1385 == codecSelferValueTypeArray1234 { - yyl1385 := r.ReadArrayStart() - if yyl1385 == 0 { + } else if yyct1392 == codecSelferValueTypeArray1234 { + yyl1392 := r.ReadArrayStart() + if yyl1392 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1385, d) + x.codecDecodeSelfFromArray(yyl1392, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12227,12 +12290,12 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1386Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1386Slc - var yyhl1386 bool = l >= 0 - for yyj1386 := 0; ; yyj1386++ { - if yyhl1386 { - if yyj1386 >= l { + var yys1393Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1393Slc + var yyhl1393 bool = l >= 0 + for yyj1393 := 0; ; yyj1393++ { + if yyhl1393 { + if yyj1393 >= l { break } } else { @@ -12241,10 +12304,10 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1386Slc = r.DecodeBytes(yys1386Slc, true, true) - yys1386 := string(yys1386Slc) + yys1393Slc = r.DecodeBytes(yys1393Slc, true, true) + yys1393 := string(yys1393Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1386 { + switch yys1393 { case "enableHostPathProvisioning": if r.TryDecodeAsNil() { x.EnableHostPathProvisioning = false @@ -12261,8 +12324,8 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.PersistentVolumeRecyclerConfiguration = PersistentVolumeRecyclerConfiguration{} } else { - yyv1389 := &x.PersistentVolumeRecyclerConfiguration - yyv1389.CodecDecodeSelf(d) + yyv1396 := &x.PersistentVolumeRecyclerConfiguration + yyv1396.CodecDecodeSelf(d) } case "flexVolumePluginDir": if r.TryDecodeAsNil() { @@ -12271,9 +12334,9 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FlexVolumePluginDir = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1386) - } // end switch yys1386 - } // end for yyj1386 + z.DecStructFieldNotFound(-1, yys1393) + } // end switch yys1393 + } // end for yyj1393 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12281,16 +12344,16 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1391 int - var yyb1391 bool - var yyhl1391 bool = l >= 0 - yyj1391++ - if yyhl1391 { - yyb1391 = yyj1391 > l + var yyj1398 int + var yyb1398 bool + var yyhl1398 bool = l >= 0 + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1391 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1391 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12300,13 +12363,13 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.EnableHostPathProvisioning = bool(r.DecodeBool()) } - yyj1391++ - if yyhl1391 { - yyb1391 = yyj1391 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1391 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1391 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12316,13 +12379,13 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.EnableDynamicProvisioning = bool(r.DecodeBool()) } - yyj1391++ - if yyhl1391 { - yyb1391 = yyj1391 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1391 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1391 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12330,16 +12393,16 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.PersistentVolumeRecyclerConfiguration = PersistentVolumeRecyclerConfiguration{} } else { - yyv1394 := &x.PersistentVolumeRecyclerConfiguration - yyv1394.CodecDecodeSelf(d) + yyv1401 := &x.PersistentVolumeRecyclerConfiguration + yyv1401.CodecDecodeSelf(d) } - yyj1391++ - if yyhl1391 { - yyb1391 = yyj1391 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1391 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1391 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12350,17 +12413,17 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FlexVolumePluginDir = string(r.DecodeString()) } for { - yyj1391++ - if yyhl1391 { - yyb1391 = yyj1391 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1391 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1391 { + if yyb1398 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1391-1, "") + z.DecStructFieldNotFound(yyj1398-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12372,33 +12435,33 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc if x == nil { r.EncodeNil() } else { - yym1396 := z.EncBinary() - _ = yym1396 + yym1403 := z.EncBinary() + _ = yym1403 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1397 := !z.EncBinary() - yy2arr1397 := z.EncBasicHandle().StructToArray - var yyq1397 [7]bool - _, _, _ = yysep1397, yyq1397, yy2arr1397 - const yyr1397 bool = false - var yynn1397 int - if yyr1397 || yy2arr1397 { + yysep1404 := !z.EncBinary() + yy2arr1404 := z.EncBasicHandle().StructToArray + var yyq1404 [7]bool + _, _, _ = yysep1404, yyq1404, yy2arr1404 + const yyr1404 bool = false + var yynn1404 int + if yyr1404 || yy2arr1404 { r.EncodeArrayStart(7) } else { - yynn1397 = 7 - for _, b := range yyq1397 { + yynn1404 = 7 + for _, b := range yyq1404 { if b { - yynn1397++ + yynn1404++ } } - r.EncodeMapStart(yynn1397) - yynn1397 = 0 + r.EncodeMapStart(yynn1404) + yynn1404 = 0 } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1399 := z.EncBinary() - _ = yym1399 + yym1406 := z.EncBinary() + _ = yym1406 if false { } else { r.EncodeInt(int64(x.MaximumRetry)) @@ -12407,17 +12470,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maximumRetry")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1400 := z.EncBinary() - _ = yym1400 + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { r.EncodeInt(int64(x.MaximumRetry)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1402 := z.EncBinary() - _ = yym1402 + yym1409 := z.EncBinary() + _ = yym1409 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutNFS)) @@ -12426,17 +12489,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minimumTimeoutNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1403 := z.EncBinary() - _ = yym1403 + yym1410 := z.EncBinary() + _ = yym1410 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutNFS)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1405 := z.EncBinary() - _ = yym1405 + yym1412 := z.EncBinary() + _ = yym1412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathNFS)) @@ -12445,17 +12508,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podTemplateFilePathNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1406 := z.EncBinary() - _ = yym1406 + yym1413 := z.EncBinary() + _ = yym1413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathNFS)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1408 := z.EncBinary() - _ = yym1408 + yym1415 := z.EncBinary() + _ = yym1415 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutNFS)) @@ -12464,17 +12527,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("incrementTimeoutNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1409 := z.EncBinary() - _ = yym1409 + yym1416 := z.EncBinary() + _ = yym1416 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutNFS)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1411 := z.EncBinary() - _ = yym1411 + yym1418 := z.EncBinary() + _ = yym1418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathHostPath)) @@ -12483,17 +12546,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podTemplateFilePathHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1412 := z.EncBinary() - _ = yym1412 + yym1419 := z.EncBinary() + _ = yym1419 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathHostPath)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1414 := z.EncBinary() - _ = yym1414 + yym1421 := z.EncBinary() + _ = yym1421 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutHostPath)) @@ -12502,17 +12565,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minimumTimeoutHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1415 := z.EncBinary() - _ = yym1415 + yym1422 := z.EncBinary() + _ = yym1422 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutHostPath)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1417 := z.EncBinary() - _ = yym1417 + yym1424 := z.EncBinary() + _ = yym1424 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutHostPath)) @@ -12521,14 +12584,14 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("incrementTimeoutHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1418 := z.EncBinary() - _ = yym1418 + yym1425 := z.EncBinary() + _ = yym1425 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutHostPath)) } } - if yyr1397 || yy2arr1397 { + if yyr1404 || yy2arr1404 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12541,25 +12604,25 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecDecodeSelf(d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1419 := z.DecBinary() - _ = yym1419 + yym1426 := z.DecBinary() + _ = yym1426 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1420 := r.ContainerType() - if yyct1420 == codecSelferValueTypeMap1234 { - yyl1420 := r.ReadMapStart() - if yyl1420 == 0 { + yyct1427 := r.ContainerType() + if yyct1427 == codecSelferValueTypeMap1234 { + yyl1427 := r.ReadMapStart() + if yyl1427 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1420, d) + x.codecDecodeSelfFromMap(yyl1427, d) } - } else if yyct1420 == codecSelferValueTypeArray1234 { - yyl1420 := r.ReadArrayStart() - if yyl1420 == 0 { + } else if yyct1427 == codecSelferValueTypeArray1234 { + yyl1427 := r.ReadArrayStart() + if yyl1427 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1420, d) + x.codecDecodeSelfFromArray(yyl1427, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12571,12 +12634,12 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1421Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1421Slc - var yyhl1421 bool = l >= 0 - for yyj1421 := 0; ; yyj1421++ { - if yyhl1421 { - if yyj1421 >= l { + var yys1428Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1428Slc + var yyhl1428 bool = l >= 0 + for yyj1428 := 0; ; yyj1428++ { + if yyhl1428 { + if yyj1428 >= l { break } } else { @@ -12585,10 +12648,10 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1421Slc = r.DecodeBytes(yys1421Slc, true, true) - yys1421 := string(yys1421Slc) + yys1428Slc = r.DecodeBytes(yys1428Slc, true, true) + yys1428 := string(yys1428Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1421 { + switch yys1428 { case "maximumRetry": if r.TryDecodeAsNil() { x.MaximumRetry = 0 @@ -12632,9 +12695,9 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d x.IncrementTimeoutHostPath = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1421) - } // end switch yys1421 - } // end for yyj1421 + z.DecStructFieldNotFound(-1, yys1428) + } // end switch yys1428 + } // end for yyj1428 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12642,16 +12705,16 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1429 int - var yyb1429 bool - var yyhl1429 bool = l >= 0 - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + var yyj1436 int + var yyb1436 bool + var yyhl1436 bool = l >= 0 + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12661,13 +12724,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MaximumRetry = int32(r.DecodeInt(32)) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12677,13 +12740,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MinimumTimeoutNFS = int32(r.DecodeInt(32)) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12693,13 +12756,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.PodTemplateFilePathNFS = string(r.DecodeString()) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12709,13 +12772,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.IncrementTimeoutNFS = int32(r.DecodeInt(32)) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12725,13 +12788,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.PodTemplateFilePathHostPath = string(r.DecodeString()) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12741,13 +12804,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MinimumTimeoutHostPath = int32(r.DecodeInt(32)) } - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12758,107 +12821,223 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, x.IncrementTimeoutHostPath = int32(r.DecodeInt(32)) } for { - yyj1429++ - if yyhl1429 { - yyb1429 = yyj1429 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1429 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1429 { + if yyb1436 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1429-1, "") + z.DecStructFieldNotFound(yyj1436-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) encconfig_ConfigurationMap(v pkg2_config.ConfigurationMap, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceapi_Taint(v []pkg2_api.Taint, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv1444 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1445 := &yyv1444 + yy1445.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceapi_Taint(v *[]pkg2_api.Taint, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1446 := *v + yyh1446, yyl1446 := z.DecSliceHelperStart() + var yyc1446 bool + if yyl1446 == 0 { + if yyv1446 == nil { + yyv1446 = []pkg2_api.Taint{} + yyc1446 = true + } else if len(yyv1446) != 0 { + yyv1446 = yyv1446[:0] + yyc1446 = true + } + } else if yyl1446 > 0 { + var yyrr1446, yyrl1446 int + var yyrt1446 bool + if yyl1446 > cap(yyv1446) { + + yyrg1446 := len(yyv1446) > 0 + yyv21446 := yyv1446 + yyrl1446, yyrt1446 = z.DecInferLen(yyl1446, z.DecBasicHandle().MaxInitLen, 48) + if yyrt1446 { + if yyrl1446 <= cap(yyv1446) { + yyv1446 = yyv1446[:yyrl1446] + } else { + yyv1446 = make([]pkg2_api.Taint, yyrl1446) + } + } else { + yyv1446 = make([]pkg2_api.Taint, yyrl1446) + } + yyc1446 = true + yyrr1446 = len(yyv1446) + if yyrg1446 { + copy(yyv1446, yyv21446) + } + } else if yyl1446 != len(yyv1446) { + yyv1446 = yyv1446[:yyl1446] + yyc1446 = true + } + yyj1446 := 0 + for ; yyj1446 < yyrr1446; yyj1446++ { + yyh1446.ElemContainerState(yyj1446) + if r.TryDecodeAsNil() { + yyv1446[yyj1446] = pkg2_api.Taint{} + } else { + yyv1447 := &yyv1446[yyj1446] + yyv1447.CodecDecodeSelf(d) + } + + } + if yyrt1446 { + for ; yyj1446 < yyl1446; yyj1446++ { + yyv1446 = append(yyv1446, pkg2_api.Taint{}) + yyh1446.ElemContainerState(yyj1446) + if r.TryDecodeAsNil() { + yyv1446[yyj1446] = pkg2_api.Taint{} + } else { + yyv1448 := &yyv1446[yyj1446] + yyv1448.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj1446 := 0 + for ; !r.CheckBreak(); yyj1446++ { + + if yyj1446 >= len(yyv1446) { + yyv1446 = append(yyv1446, pkg2_api.Taint{}) // var yyz1446 pkg2_api.Taint + yyc1446 = true + } + yyh1446.ElemContainerState(yyj1446) + if yyj1446 < len(yyv1446) { + if r.TryDecodeAsNil() { + yyv1446[yyj1446] = pkg2_api.Taint{} + } else { + yyv1449 := &yyv1446[yyj1446] + yyv1449.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj1446 < len(yyv1446) { + yyv1446 = yyv1446[:yyj1446] + yyc1446 = true + } else if yyj1446 == 0 && yyv1446 == nil { + yyv1446 = []pkg2_api.Taint{} + yyc1446 = true + } + } + yyh1446.End() + if yyc1446 { + *v = yyv1446 + } +} + +func (x codecSelfer1234) encconfig_ConfigurationMap(v pkg3_config.ConfigurationMap, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk1437, yyv1437 := range v { + for yyk1450, yyv1450 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym1438 := z.EncBinary() - _ = yym1438 + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk1437)) + r.EncodeString(codecSelferC_UTF81234, string(yyk1450)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1439 := z.EncBinary() - _ = yym1439 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyv1437)) + r.EncodeString(codecSelferC_UTF81234, string(yyv1450)) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) } -func (x codecSelfer1234) decconfig_ConfigurationMap(v *pkg2_config.ConfigurationMap, d *codec1978.Decoder) { +func (x codecSelfer1234) decconfig_ConfigurationMap(v *pkg3_config.ConfigurationMap, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1440 := *v - yyl1440 := r.ReadMapStart() - yybh1440 := z.DecBasicHandle() - if yyv1440 == nil { - yyrl1440, _ := z.DecInferLen(yyl1440, yybh1440.MaxInitLen, 32) - yyv1440 = make(map[string]string, yyrl1440) - *v = yyv1440 + yyv1453 := *v + yyl1453 := r.ReadMapStart() + yybh1453 := z.DecBasicHandle() + if yyv1453 == nil { + yyrl1453, _ := z.DecInferLen(yyl1453, yybh1453.MaxInitLen, 32) + yyv1453 = make(map[string]string, yyrl1453) + *v = yyv1453 } - var yymk1440 string - var yymv1440 string - var yymg1440 bool - if yybh1440.MapValueReset { + var yymk1453 string + var yymv1453 string + var yymg1453 bool + if yybh1453.MapValueReset { } - if yyl1440 > 0 { - for yyj1440 := 0; yyj1440 < yyl1440; yyj1440++ { + if yyl1453 > 0 { + for yyj1453 := 0; yyj1453 < yyl1453; yyj1453++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk1440 = "" + yymk1453 = "" } else { - yymk1440 = string(r.DecodeString()) + yymk1453 = string(r.DecodeString()) } - if yymg1440 { - yymv1440 = yyv1440[yymk1440] + if yymg1453 { + yymv1453 = yyv1453[yymk1453] } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv1440 = "" + yymv1453 = "" } else { - yymv1440 = string(r.DecodeString()) + yymv1453 = string(r.DecodeString()) } - if yyv1440 != nil { - yyv1440[yymk1440] = yymv1440 + if yyv1453 != nil { + yyv1453[yymk1453] = yymv1453 } } - } else if yyl1440 < 0 { - for yyj1440 := 0; !r.CheckBreak(); yyj1440++ { + } else if yyl1453 < 0 { + for yyj1453 := 0; !r.CheckBreak(); yyj1453++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk1440 = "" + yymk1453 = "" } else { - yymk1440 = string(r.DecodeString()) + yymk1453 = string(r.DecodeString()) } - if yymg1440 { - yymv1440 = yyv1440[yymk1440] + if yymg1453 { + yymv1453 = yyv1453[yymk1453] } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv1440 = "" + yymv1453 = "" } else { - yymv1440 = string(r.DecodeString()) + yymv1453 = string(r.DecodeString()) } - if yyv1440 != nil { - yyv1440[yymk1440] = yymv1440 + if yyv1453 != nil { + yyv1453[yymk1453] = yymv1453 } } } // else len==0: TODO: Should we clear map entries? diff --git a/pkg/apis/componentconfig/v1alpha1/BUILD b/pkg/apis/componentconfig/v1alpha1/BUILD index 33015e77dfa..18be14b37d5 100644 --- a/pkg/apis/componentconfig/v1alpha1/BUILD +++ b/pkg/apis/componentconfig/v1alpha1/BUILD @@ -24,6 +24,7 @@ go_library( tags = ["automanaged"], deps = [ "//pkg/api:go_default_library", + "//pkg/api/v1:go_default_library", "//pkg/apis/componentconfig:go_default_library", "//pkg/apis/meta/v1:go_default_library", "//pkg/conversion:go_default_library", diff --git a/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go b/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go index 8ed771f2577..cdd4ac1744e 100644 --- a/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go +++ b/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go @@ -22,6 +22,7 @@ package v1alpha1 import ( api "k8s.io/kubernetes/pkg/api" + v1 "k8s.io/kubernetes/pkg/api/v1" componentconfig "k8s.io/kubernetes/pkg/apis/componentconfig" conversion "k8s.io/kubernetes/pkg/conversion" runtime "k8s.io/kubernetes/pkg/runtime" @@ -368,6 +369,7 @@ func autoConvert_v1alpha1_KubeletConfiguration_To_componentconfig_KubeletConfigu if err := api.Convert_Pointer_bool_To_bool(&in.RegisterSchedulable, &out.RegisterSchedulable, s); err != nil { return err } + out.RegisterWithTaints = *(*[]api.Taint)(unsafe.Pointer(&in.RegisterWithTaints)) out.ContentType = in.ContentType if err := api.Convert_Pointer_int32_To_int32(&in.KubeAPIQPS, &out.KubeAPIQPS, s); err != nil { return err @@ -537,6 +539,7 @@ func autoConvert_componentconfig_KubeletConfiguration_To_v1alpha1_KubeletConfigu if err := api.Convert_bool_To_Pointer_bool(&in.RegisterSchedulable, &out.RegisterSchedulable, s); err != nil { return err } + out.RegisterWithTaints = *(*[]v1.Taint)(unsafe.Pointer(&in.RegisterWithTaints)) out.ContentType = in.ContentType if err := api.Convert_int32_To_Pointer_int32(&in.KubeAPIQPS, &out.KubeAPIQPS, s); err != nil { return err diff --git a/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go index bf3660caaa9..44d91f1eee9 100644 --- a/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go @@ -21,6 +21,7 @@ limitations under the License. package v1alpha1 import ( + v1 "k8s.io/kubernetes/pkg/api/v1" conversion "k8s.io/kubernetes/pkg/conversion" runtime "k8s.io/kubernetes/pkg/runtime" reflect "reflect" @@ -363,6 +364,15 @@ func DeepCopy_v1alpha1_KubeletConfiguration(in interface{}, out interface{}, c * } else { out.RegisterSchedulable = nil } + if in.RegisterWithTaints != nil { + in, out := &in.RegisterWithTaints, &out.RegisterWithTaints + *out = make([]v1.Taint, len(*in)) + for i := range *in { + (*out)[i] = (*in)[i] + } + } else { + out.RegisterWithTaints = nil + } out.ContentType = in.ContentType if in.KubeAPIQPS != nil { in, out := &in.KubeAPIQPS, &out.KubeAPIQPS diff --git a/pkg/apis/componentconfig/zz_generated.deepcopy.go b/pkg/apis/componentconfig/zz_generated.deepcopy.go index 32ce565f8ef..62a72569b84 100644 --- a/pkg/apis/componentconfig/zz_generated.deepcopy.go +++ b/pkg/apis/componentconfig/zz_generated.deepcopy.go @@ -21,6 +21,7 @@ limitations under the License. package componentconfig import ( + api "k8s.io/kubernetes/pkg/api" conversion "k8s.io/kubernetes/pkg/conversion" runtime "k8s.io/kubernetes/pkg/runtime" config "k8s.io/kubernetes/pkg/util/config" @@ -336,6 +337,15 @@ func DeepCopy_componentconfig_KubeletConfiguration(in interface{}, out interface out.MaxOpenFiles = in.MaxOpenFiles out.ReconcileCIDR = in.ReconcileCIDR out.RegisterSchedulable = in.RegisterSchedulable + if in.RegisterWithTaints != nil { + in, out := &in.RegisterWithTaints, &out.RegisterWithTaints + *out = make([]api.Taint, len(*in)) + for i := range *in { + (*out)[i] = (*in)[i] + } + } else { + out.RegisterWithTaints = nil + } out.ContentType = in.ContentType out.KubeAPIQPS = in.KubeAPIQPS out.KubeAPIBurst = in.KubeAPIBurst diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 5a9324a4ea1..5a7502f76d7 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -2790,11 +2790,24 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, "registerSchedulable": { SchemaProps: spec.SchemaProps{ - Description: "registerSchedulable tells the kubelet to register the node as schedulable. Won't have any effect if register-node is false.", + Description: "registerSchedulable tells the kubelet to register the node as schedulable. Won't have any effect if register-node is false. DEPRECATED: use registerWithTaints instead", Type: []string{"boolean"}, Format: "", }, }, + "registerWithTaints": { + SchemaProps: spec.SchemaProps{ + Description: "registerWithTaints are an array of taints to add to a node object when the kubelet registers itself. This only takes effect when registerNode is true and upon the initial registration of the node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/api.Taint"), + }, + }, + }, + }, + }, "contentType": { SchemaProps: spec.SchemaProps{ Description: "contentType is contentType of requests sent to apiserver.", @@ -3018,11 +3031,11 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, }, - Required: []string{"TypeMeta", "podManifestPath", "syncFrequency", "fileCheckFrequency", "httpCheckFrequency", "manifestURL", "manifestURLHeader", "enableServer", "address", "port", "readOnlyPort", "tlsCertFile", "tlsPrivateKeyFile", "certDirectory", "authentication", "authorization", "hostnameOverride", "podInfraContainerImage", "dockerEndpoint", "rootDirectory", "seccompProfileRoot", "allowPrivileged", "hostNetworkSources", "hostPIDSources", "hostIPCSources", "registryPullQPS", "registryBurst", "eventRecordQPS", "eventBurst", "enableDebuggingHandlers", "minimumGCAge", "maxPerPodContainerCount", "maxContainerCount", "cAdvisorPort", "healthzPort", "healthzBindAddress", "oomScoreAdj", "registerNode", "clusterDomain", "masterServiceNamespace", "clusterDNS", "streamingConnectionIdleTimeout", "nodeStatusUpdateFrequency", "imageMinimumGCAge", "imageGCHighThresholdPercent", "imageGCLowThresholdPercent", "lowDiskSpaceThresholdMB", "volumeStatsAggPeriod", "networkPluginName", "networkPluginMTU", "networkPluginDir", "cniConfDir", "cniBinDir", "volumePluginDir", "containerRuntime", "remoteRuntimeEndpoint", "remoteImageEndpoint", "lockFilePath", "exitOnLockContention", "hairpinMode", "babysitDaemons", "maxPods", "nvidiaGPUs", "dockerExecHandlerName", "podCIDR", "resolvConf", "cpuCFSQuota", "containerized", "maxOpenFiles", "reconcileCIDR", "registerSchedulable", "contentType", "kubeAPIQPS", "kubeAPIBurst", "serializeImagePulls", "nodeLabels", "nonMasqueradeCIDR", "enableCustomMetrics", "podsPerCore", "enableControllerAttachDetach", "systemReserved", "kubeReserved", "protectKernelDefaults", "makeIPTablesUtilChains", "iptablesMasqueradeBit", "iptablesDropBit", "featureGates"}, + Required: []string{"TypeMeta", "podManifestPath", "syncFrequency", "fileCheckFrequency", "httpCheckFrequency", "manifestURL", "manifestURLHeader", "enableServer", "address", "port", "readOnlyPort", "tlsCertFile", "tlsPrivateKeyFile", "certDirectory", "authentication", "authorization", "hostnameOverride", "podInfraContainerImage", "dockerEndpoint", "rootDirectory", "seccompProfileRoot", "allowPrivileged", "hostNetworkSources", "hostPIDSources", "hostIPCSources", "registryPullQPS", "registryBurst", "eventRecordQPS", "eventBurst", "enableDebuggingHandlers", "minimumGCAge", "maxPerPodContainerCount", "maxContainerCount", "cAdvisorPort", "healthzPort", "healthzBindAddress", "oomScoreAdj", "registerNode", "clusterDomain", "masterServiceNamespace", "clusterDNS", "streamingConnectionIdleTimeout", "nodeStatusUpdateFrequency", "imageMinimumGCAge", "imageGCHighThresholdPercent", "imageGCLowThresholdPercent", "lowDiskSpaceThresholdMB", "volumeStatsAggPeriod", "networkPluginName", "networkPluginMTU", "networkPluginDir", "cniConfDir", "cniBinDir", "volumePluginDir", "containerRuntime", "remoteRuntimeEndpoint", "remoteImageEndpoint", "lockFilePath", "exitOnLockContention", "hairpinMode", "babysitDaemons", "maxPods", "nvidiaGPUs", "dockerExecHandlerName", "podCIDR", "resolvConf", "cpuCFSQuota", "containerized", "maxOpenFiles", "reconcileCIDR", "registerSchedulable", "registerWithTaints", "contentType", "kubeAPIQPS", "kubeAPIBurst", "serializeImagePulls", "nodeLabels", "nonMasqueradeCIDR", "enableCustomMetrics", "podsPerCore", "enableControllerAttachDetach", "systemReserved", "kubeReserved", "protectKernelDefaults", "makeIPTablesUtilChains", "iptablesMasqueradeBit", "iptablesDropBit", "featureGates"}, }, }, Dependencies: []string{ - "componentconfig.KubeletAuthentication", "componentconfig.KubeletAuthorization", "v1.Duration", "v1.TypeMeta"}, + "api.Taint", "componentconfig.KubeletAuthentication", "componentconfig.KubeletAuthorization", "v1.Duration", "v1.TypeMeta"}, }, "componentconfig.KubeletWebhookAuthentication": { Schema: spec.Schema{ @@ -14665,11 +14678,24 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, "registerSchedulable": { SchemaProps: spec.SchemaProps{ - Description: "registerSchedulable tells the kubelet to register the node as schedulable. Won't have any effect if register-node is false.", + Description: "registerSchedulable tells the kubelet to register the node as schedulable. Won't have any effect if register-node is false. DEPRECATED: use registerWithTaints instead", Type: []string{"boolean"}, Format: "", }, }, + "registerWithTaints": { + SchemaProps: spec.SchemaProps{ + Description: "registerWithTaints are an array of taints to add to a node object when the kubelet registers itself. This only takes effect when registerNode is true and upon the initial registration of the node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/v1.Taint"), + }, + }, + }, + }, + }, "contentType": { SchemaProps: spec.SchemaProps{ Description: "contentType is contentType of requests sent to apiserver.", @@ -14893,11 +14919,11 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, }, - Required: []string{"TypeMeta", "podManifestPath", "syncFrequency", "fileCheckFrequency", "httpCheckFrequency", "manifestURL", "manifestURLHeader", "enableServer", "address", "port", "readOnlyPort", "tlsCertFile", "tlsPrivateKeyFile", "certDirectory", "authentication", "authorization", "hostnameOverride", "podInfraContainerImage", "dockerEndpoint", "rootDirectory", "seccompProfileRoot", "allowPrivileged", "hostNetworkSources", "hostPIDSources", "hostIPCSources", "registryPullQPS", "registryBurst", "eventRecordQPS", "eventBurst", "enableDebuggingHandlers", "minimumGCAge", "maxPerPodContainerCount", "maxContainerCount", "cAdvisorPort", "healthzPort", "healthzBindAddress", "oomScoreAdj", "registerNode", "clusterDomain", "masterServiceNamespace", "clusterDNS", "streamingConnectionIdleTimeout", "nodeStatusUpdateFrequency", "imageMinimumGCAge", "imageGCHighThresholdPercent", "imageGCLowThresholdPercent", "lowDiskSpaceThresholdMB", "volumeStatsAggPeriod", "networkPluginName", "networkPluginDir", "cniConfDir", "cniBinDir", "networkPluginMTU", "volumePluginDir", "cloudProvider", "cloudConfigFile", "kubeletCgroups", "runtimeCgroups", "systemCgroups", "cgroupRoot", "containerRuntime", "remoteRuntimeEndpoint", "remoteImageEndpoint", "runtimeRequestTimeout", "rktPath", "rktAPIEndpoint", "rktStage1Image", "lockFilePath", "exitOnLockContention", "hairpinMode", "babysitDaemons", "maxPods", "nvidiaGPUs", "dockerExecHandlerName", "podCIDR", "resolvConf", "cpuCFSQuota", "containerized", "maxOpenFiles", "reconcileCIDR", "registerSchedulable", "contentType", "kubeAPIQPS", "kubeAPIBurst", "serializeImagePulls", "outOfDiskTransitionFrequency", "nodeIP", "nodeLabels", "nonMasqueradeCIDR", "enableCustomMetrics", "evictionHard", "evictionSoft", "evictionSoftGracePeriod", "evictionPressureTransitionPeriod", "evictionMaxPodGracePeriod", "evictionMinimumReclaim", "podsPerCore", "enableControllerAttachDetach", "systemReserved", "kubeReserved", "protectKernelDefaults", "makeIPTablesUtilChains", "iptablesMasqueradeBit", "iptablesDropBit"}, + Required: []string{"TypeMeta", "podManifestPath", "syncFrequency", "fileCheckFrequency", "httpCheckFrequency", "manifestURL", "manifestURLHeader", "enableServer", "address", "port", "readOnlyPort", "tlsCertFile", "tlsPrivateKeyFile", "certDirectory", "authentication", "authorization", "hostnameOverride", "podInfraContainerImage", "dockerEndpoint", "rootDirectory", "seccompProfileRoot", "allowPrivileged", "hostNetworkSources", "hostPIDSources", "hostIPCSources", "registryPullQPS", "registryBurst", "eventRecordQPS", "eventBurst", "enableDebuggingHandlers", "minimumGCAge", "maxPerPodContainerCount", "maxContainerCount", "cAdvisorPort", "healthzPort", "healthzBindAddress", "oomScoreAdj", "registerNode", "clusterDomain", "masterServiceNamespace", "clusterDNS", "streamingConnectionIdleTimeout", "nodeStatusUpdateFrequency", "imageMinimumGCAge", "imageGCHighThresholdPercent", "imageGCLowThresholdPercent", "lowDiskSpaceThresholdMB", "volumeStatsAggPeriod", "networkPluginName", "networkPluginDir", "cniConfDir", "cniBinDir", "networkPluginMTU", "volumePluginDir", "cloudProvider", "cloudConfigFile", "kubeletCgroups", "runtimeCgroups", "systemCgroups", "cgroupRoot", "containerRuntime", "remoteRuntimeEndpoint", "remoteImageEndpoint", "runtimeRequestTimeout", "rktPath", "rktAPIEndpoint", "rktStage1Image", "lockFilePath", "exitOnLockContention", "hairpinMode", "babysitDaemons", "maxPods", "nvidiaGPUs", "dockerExecHandlerName", "podCIDR", "resolvConf", "cpuCFSQuota", "containerized", "maxOpenFiles", "reconcileCIDR", "registerSchedulable", "registerWithTaints", "contentType", "kubeAPIQPS", "kubeAPIBurst", "serializeImagePulls", "outOfDiskTransitionFrequency", "nodeIP", "nodeLabels", "nonMasqueradeCIDR", "enableCustomMetrics", "evictionHard", "evictionSoft", "evictionSoftGracePeriod", "evictionPressureTransitionPeriod", "evictionMaxPodGracePeriod", "evictionMinimumReclaim", "podsPerCore", "enableControllerAttachDetach", "systemReserved", "kubeReserved", "protectKernelDefaults", "makeIPTablesUtilChains", "iptablesMasqueradeBit", "iptablesDropBit"}, }, }, Dependencies: []string{ - "v1.Duration", "v1.TypeMeta", "v1alpha1.KubeletAuthentication", "v1alpha1.KubeletAuthorization"}, + "v1.Duration", "v1.Taint", "v1.TypeMeta", "v1alpha1.KubeletAuthentication", "v1alpha1.KubeletAuthorization"}, }, "v1alpha1.KubeletWebhookAuthentication": { Schema: spec.Schema{