diff --git a/cmd/kube-proxy/app/options/options.go b/cmd/kube-proxy/app/options/options.go index 848b1a9babd..40d89e3ea9f 100644 --- a/cmd/kube-proxy/app/options/options.go +++ b/cmd/kube-proxy/app/options/options.go @@ -85,9 +85,12 @@ func (s *ProxyServerConfig) AddFlags(fs *pflag.FlagSet) { fs.Int32Var(&s.KubeAPIBurst, "kube-api-burst", s.KubeAPIBurst, "Burst to use while talking with kubernetes apiserver") fs.DurationVar(&s.UDPIdleTimeout.Duration, "udp-timeout", s.UDPIdleTimeout.Duration, "How long an idle UDP connection will be kept open (e.g. '250ms', '2s'). Must be greater than 0. Only applicable for proxy-mode=userspace") fs.Int32Var(&s.ConntrackMax, "conntrack-max", s.ConntrackMax, - "Maximum number of NAT connections to track (0 to leave as-is).") + "Maximum number of NAT connections to track (0 to leave as-is). This overrides conntrack-max-per-core and conntrack-min.") + fs.MarkDeprecated("conntrack-max", "This feature will be removed in a later release.") fs.Int32Var(&s.ConntrackMaxPerCore, "conntrack-max-per-core", s.ConntrackMaxPerCore, - "Maximum number of NAT connections to track per CPU core (0 to leave as-is). This is only considered if conntrack-max is 0.") + "Maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrack-min).") + fs.Int32Var(&s.ConntrackMin, "conntrack-min", s.ConntrackMin, + "Minimum number of conntrack entries to allocate, regardless of conntrack-max-per-core (set conntrack-max-per-core=0 to leave the limit as-is).") fs.DurationVar(&s.ConntrackTCPEstablishedTimeout.Duration, "conntrack-tcp-timeout-established", s.ConntrackTCPEstablishedTimeout.Duration, "Idle timeout for established TCP connections (0 to leave as-is)") config.DefaultFeatureGate.AddFlag(fs) } diff --git a/cmd/kube-proxy/app/server.go b/cmd/kube-proxy/app/server.go index 7706b012685..1f9674debaf 100644 --- a/cmd/kube-proxy/app/server.go +++ b/cmd/kube-proxy/app/server.go @@ -339,10 +339,18 @@ func getConntrackMax(config *options.ProxyServerConfig) (int, error) { if config.ConntrackMaxPerCore > 0 { return -1, fmt.Errorf("invalid config: ConntrackMax and ConntrackMaxPerCore are mutually exclusive") } + glog.V(3).Infof("getConntrackMax: using absolute conntrax-max (deprecated)") return int(config.ConntrackMax), nil } if config.ConntrackMaxPerCore > 0 { - return (int(config.ConntrackMaxPerCore) * runtime.NumCPU()), nil + floor := int(config.ConntrackMin) + scaled := int(config.ConntrackMaxPerCore) * runtime.NumCPU() + if scaled > floor { + glog.V(3).Infof("getConntrackMax: using scaled conntrax-max-per-core") + return scaled, nil + } + glog.V(3).Infof("getConntrackMax: using conntrax-min") + return floor, nil } return 0, nil } diff --git a/cmd/kube-proxy/app/server_test.go b/cmd/kube-proxy/app/server_test.go index 33c100ed7c1..97fc28db54a 100644 --- a/cmd/kube-proxy/app/server_test.go +++ b/cmd/kube-proxy/app/server_test.go @@ -313,10 +313,25 @@ func TestGetConntrackMax(t *testing.T) { }, { config: componentconfig.KubeProxyConfiguration{ - ConntrackMaxPerCore: 67890, // use this if other is 0 + ConntrackMaxPerCore: 67890, // use this if Max is 0 + ConntrackMin: 1, // avoid 0 default }, expected: 67890 * ncores, }, + { + config: componentconfig.KubeProxyConfiguration{ + ConntrackMaxPerCore: 1, // ensure that Min is considered + ConntrackMin: 123456, + }, + expected: 123456, + }, + { + config: componentconfig.KubeProxyConfiguration{ + ConntrackMaxPerCore: 0, // leave system setting + ConntrackMin: 123456, + }, + expected: 0, + }, } for i, tc := range testCases { diff --git a/hack/verify-flags/known-flags.txt b/hack/verify-flags/known-flags.txt index 7435cf1a08f..cb412523647 100644 --- a/hack/verify-flags/known-flags.txt +++ b/hack/verify-flags/known-flags.txt @@ -88,6 +88,7 @@ configure-cbr0 configure-cloud-routes conntrack-max conntrack-max-per-core +conntrack-min conntrack-tcp-timeout-established consumer-port consumer-service-name diff --git a/pkg/apis/componentconfig/types.generated.go b/pkg/apis/componentconfig/types.generated.go index 191c93364e4..9369715a7d5 100644 --- a/pkg/apis/componentconfig/types.generated.go +++ b/pkg/apis/componentconfig/types.generated.go @@ -83,16 +83,16 @@ func (x *KubeProxyConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2 := !z.EncBinary() yy2arr2 := z.EncBasicHandle().StructToArray - var yyq2 [20]bool + var yyq2 [21]bool _, _, _ = yysep2, yyq2, yy2arr2 const yyr2 bool = false yyq2[0] = x.Kind != "" yyq2[1] = x.APIVersion != "" var yynn2 int if yyr2 || yy2arr2 { - r.EncodeArrayStart(20) + r.EncodeArrayStart(21) } else { - yynn2 = 18 + yynn2 = 19 for _, b := range yyq2 { if b { yynn2++ @@ -502,29 +502,48 @@ func (x *KubeProxyConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2 || yy2arr2 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy67 := &x.ConntrackTCPEstablishedTimeout + yym67 := z.EncBinary() + _ = yym67 + if false { + } else { + r.EncodeInt(int64(x.ConntrackMin)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conntrackMin")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) yym68 := z.EncBinary() _ = yym68 if false { - } else if z.HasExtensions() && z.EncExt(yy67) { - } else if !yym68 && z.IsJSONHandle() { - z.EncJSONMarshal(yy67) } else { - z.EncFallback(yy67) + r.EncodeInt(int64(x.ConntrackMin)) + } + } + if yyr2 || yy2arr2 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy70 := &x.ConntrackTCPEstablishedTimeout + yym71 := z.EncBinary() + _ = yym71 + if false { + } else if z.HasExtensions() && z.EncExt(yy70) { + } else if !yym71 && z.IsJSONHandle() { + z.EncJSONMarshal(yy70) + } else { + z.EncFallback(yy70) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conntrackTCPEstablishedTimeout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy69 := &x.ConntrackTCPEstablishedTimeout - yym70 := z.EncBinary() - _ = yym70 + yy72 := &x.ConntrackTCPEstablishedTimeout + yym73 := z.EncBinary() + _ = yym73 if false { - } else if z.HasExtensions() && z.EncExt(yy69) { - } else if !yym70 && z.IsJSONHandle() { - z.EncJSONMarshal(yy69) + } else if z.HasExtensions() && z.EncExt(yy72) { + } else if !yym73 && z.IsJSONHandle() { + z.EncJSONMarshal(yy72) } else { - z.EncFallback(yy69) + z.EncFallback(yy72) } } if yyr2 || yy2arr2 { @@ -540,25 +559,25 @@ func (x *KubeProxyConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym71 := z.DecBinary() - _ = yym71 + yym74 := z.DecBinary() + _ = yym74 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct72 := r.ContainerType() - if yyct72 == codecSelferValueTypeMap1234 { - yyl72 := r.ReadMapStart() - if yyl72 == 0 { + yyct75 := r.ContainerType() + if yyct75 == codecSelferValueTypeMap1234 { + yyl75 := r.ReadMapStart() + if yyl75 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl72, d) + x.codecDecodeSelfFromMap(yyl75, d) } - } else if yyct72 == codecSelferValueTypeArray1234 { - yyl72 := r.ReadArrayStart() - if yyl72 == 0 { + } else if yyct75 == codecSelferValueTypeArray1234 { + yyl75 := r.ReadArrayStart() + if yyl75 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl72, d) + x.codecDecodeSelfFromArray(yyl75, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -570,12 +589,12 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys73Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys73Slc - var yyhl73 bool = l >= 0 - for yyj73 := 0; ; yyj73++ { - if yyhl73 { - if yyj73 >= l { + var yys76Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys76Slc + var yyhl76 bool = l >= 0 + for yyj76 := 0; ; yyj76++ { + if yyhl76 { + if yyj76 >= l { break } } else { @@ -584,10 +603,10 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys73Slc = r.DecodeBytes(yys73Slc, true, true) - yys73 := string(yys73Slc) + yys76Slc = r.DecodeBytes(yys76Slc, true, true) + yys76 := string(yys76Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys73 { + switch yys76 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -639,8 +658,8 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco if x.IPTablesMasqueradeBit == nil { x.IPTablesMasqueradeBit = new(int32) } - yym82 := z.DecBinary() - _ = yym82 + yym85 := z.DecBinary() + _ = yym85 if false { } else { *((*int32)(x.IPTablesMasqueradeBit)) = int32(r.DecodeInt(32)) @@ -650,15 +669,15 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.IPTablesSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv83 := &x.IPTablesSyncPeriod - yym84 := z.DecBinary() - _ = yym84 + yyv86 := &x.IPTablesSyncPeriod + yym87 := z.DecBinary() + _ = yym87 if false { - } else if z.HasExtensions() && z.DecExt(yyv83) { - } else if !yym84 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv83) + } else if z.HasExtensions() && z.DecExt(yyv86) { + } else if !yym87 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv86) } else { - z.DecFallback(yyv83, false) + z.DecFallback(yyv86, false) } } case "kubeconfigPath": @@ -688,8 +707,8 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco if x.OOMScoreAdj == nil { x.OOMScoreAdj = new(int32) } - yym89 := z.DecBinary() - _ = yym89 + yym92 := z.DecBinary() + _ = yym92 if false { } else { *((*int32)(x.OOMScoreAdj)) = int32(r.DecodeInt(32)) @@ -717,15 +736,15 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.UDPIdleTimeout = pkg1_unversioned.Duration{} } else { - yyv93 := &x.UDPIdleTimeout - yym94 := z.DecBinary() - _ = yym94 + yyv96 := &x.UDPIdleTimeout + yym97 := z.DecBinary() + _ = yym97 if false { - } else if z.HasExtensions() && z.DecExt(yyv93) { - } else if !yym94 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv93) + } else if z.HasExtensions() && z.DecExt(yyv96) { + } else if !yym97 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv96) } else { - z.DecFallback(yyv93, false) + z.DecFallback(yyv96, false) } } case "conntrackMax": @@ -740,25 +759,31 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Deco } else { x.ConntrackMaxPerCore = int32(r.DecodeInt(32)) } + case "conntrackMin": + if r.TryDecodeAsNil() { + x.ConntrackMin = 0 + } else { + x.ConntrackMin = int32(r.DecodeInt(32)) + } case "conntrackTCPEstablishedTimeout": if r.TryDecodeAsNil() { x.ConntrackTCPEstablishedTimeout = pkg1_unversioned.Duration{} } else { - yyv97 := &x.ConntrackTCPEstablishedTimeout - yym98 := z.DecBinary() - _ = yym98 + yyv101 := &x.ConntrackTCPEstablishedTimeout + yym102 := z.DecBinary() + _ = yym102 if false { - } else if z.HasExtensions() && z.DecExt(yyv97) { - } else if !yym98 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv97) + } else if z.HasExtensions() && z.DecExt(yyv101) { + } else if !yym102 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv101) } else { - z.DecFallback(yyv97, false) + z.DecFallback(yyv101, false) } } default: - z.DecStructFieldNotFound(-1, yys73) - } // end switch yys73 - } // end for yyj73 + z.DecStructFieldNotFound(-1, yys76) + } // end switch yys76 + } // end for yyj76 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -766,16 +791,16 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj99 int - var yyb99 bool - var yyhl99 bool = l >= 0 - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + var yyj103 int + var yyb103 bool + var yyhl103 bool = l >= 0 + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -785,13 +810,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Kind = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -801,13 +826,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.APIVersion = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -817,13 +842,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.BindAddress = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -833,13 +858,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.ClusterCIDR = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -849,13 +874,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.HealthzBindAddress = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -865,13 +890,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.HealthzPort = int32(r.DecodeInt(32)) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -881,13 +906,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.HostnameOverride = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -900,20 +925,20 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De if x.IPTablesMasqueradeBit == nil { x.IPTablesMasqueradeBit = new(int32) } - yym108 := z.DecBinary() - _ = yym108 + yym112 := z.DecBinary() + _ = yym112 if false { } else { *((*int32)(x.IPTablesMasqueradeBit)) = int32(r.DecodeInt(32)) } } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -921,24 +946,24 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De if r.TryDecodeAsNil() { x.IPTablesSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv109 := &x.IPTablesSyncPeriod - yym110 := z.DecBinary() - _ = yym110 + yyv113 := &x.IPTablesSyncPeriod + yym114 := z.DecBinary() + _ = yym114 if false { - } else if z.HasExtensions() && z.DecExt(yyv109) { - } else if !yym110 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv109) + } else if z.HasExtensions() && z.DecExt(yyv113) { + } else if !yym114 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv113) } else { - z.DecFallback(yyv109, false) + z.DecFallback(yyv113, false) } } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -948,13 +973,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.KubeconfigPath = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -964,13 +989,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.MasqueradeAll = bool(r.DecodeBool()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -980,13 +1005,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Master = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -999,20 +1024,20 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De if x.OOMScoreAdj == nil { x.OOMScoreAdj = new(int32) } - yym115 := z.DecBinary() - _ = yym115 + yym119 := z.DecBinary() + _ = yym119 if false { } else { *((*int32)(x.OOMScoreAdj)) = int32(r.DecodeInt(32)) } } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -1022,13 +1047,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Mode = ProxyMode(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -1038,13 +1063,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.PortRange = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -1054,13 +1079,13 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.ResourceContainer = string(r.DecodeString()) } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l } else { - yyb99 = r.CheckBreak() + yyb103 = r.CheckBreak() } - if yyb99 { + if yyb103 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -1068,64 +1093,7 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De if r.TryDecodeAsNil() { x.UDPIdleTimeout = pkg1_unversioned.Duration{} } else { - yyv119 := &x.UDPIdleTimeout - yym120 := z.DecBinary() - _ = yym120 - if false { - } else if z.HasExtensions() && z.DecExt(yyv119) { - } else if !yym120 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv119) - } else { - z.DecFallback(yyv119, false) - } - } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l - } else { - yyb99 = r.CheckBreak() - } - if yyb99 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ConntrackMax = 0 - } else { - x.ConntrackMax = int32(r.DecodeInt(32)) - } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l - } else { - yyb99 = r.CheckBreak() - } - if yyb99 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ConntrackMaxPerCore = 0 - } else { - x.ConntrackMaxPerCore = int32(r.DecodeInt(32)) - } - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l - } else { - yyb99 = r.CheckBreak() - } - if yyb99 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ConntrackTCPEstablishedTimeout = pkg1_unversioned.Duration{} - } else { - yyv123 := &x.ConntrackTCPEstablishedTimeout + yyv123 := &x.UDPIdleTimeout yym124 := z.DecBinary() _ = yym124 if false { @@ -1136,18 +1104,91 @@ func (x *KubeProxyConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.De z.DecFallback(yyv123, false) } } - for { - yyj99++ - if yyhl99 { - yyb99 = yyj99 > l + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l + } else { + yyb103 = r.CheckBreak() + } + if yyb103 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ConntrackMax = 0 + } else { + x.ConntrackMax = int32(r.DecodeInt(32)) + } + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l + } else { + yyb103 = r.CheckBreak() + } + if yyb103 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ConntrackMaxPerCore = 0 + } else { + x.ConntrackMaxPerCore = int32(r.DecodeInt(32)) + } + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l + } else { + yyb103 = r.CheckBreak() + } + if yyb103 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ConntrackMin = 0 + } else { + x.ConntrackMin = int32(r.DecodeInt(32)) + } + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l + } else { + yyb103 = r.CheckBreak() + } + if yyb103 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ConntrackTCPEstablishedTimeout = pkg1_unversioned.Duration{} + } else { + yyv128 := &x.ConntrackTCPEstablishedTimeout + yym129 := z.DecBinary() + _ = yym129 + if false { + } else if z.HasExtensions() && z.DecExt(yyv128) { + } else if !yym129 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv128) } else { - yyb99 = r.CheckBreak() + z.DecFallback(yyv128, false) } - if yyb99 { + } + for { + yyj103++ + if yyhl103 { + yyb103 = yyj103 > l + } else { + yyb103 = r.CheckBreak() + } + if yyb103 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj99-1, "") + z.DecStructFieldNotFound(yyj103-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -1156,8 +1197,8 @@ func (x ProxyMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym125 := z.EncBinary() - _ = yym125 + yym130 := z.EncBinary() + _ = yym130 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -1169,8 +1210,8 @@ func (x *ProxyMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym126 := z.DecBinary() - _ = yym126 + yym131 := z.DecBinary() + _ = yym131 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -1182,8 +1223,8 @@ func (x HairpinMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym127 := z.EncBinary() - _ = yym127 + yym132 := z.EncBinary() + _ = yym132 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -1195,8 +1236,8 @@ func (x *HairpinMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym128 := z.DecBinary() - _ = yym128 + yym133 := z.DecBinary() + _ = yym133 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -1211,57 +1252,57 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym129 := z.EncBinary() - _ = yym129 + yym134 := z.EncBinary() + _ = yym134 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep130 := !z.EncBinary() - yy2arr130 := z.EncBasicHandle().StructToArray - var yyq130 [108]bool - _, _, _ = yysep130, yyq130, yy2arr130 - const yyr130 bool = false - yyq130[0] = x.Kind != "" - yyq130[1] = x.APIVersion != "" - yyq130[53] = x.CloudProvider != "" - yyq130[54] = x.CloudConfigFile != "" - yyq130[55] = x.KubeletCgroups != "" - yyq130[56] = x.CgroupsPerQOS != false - yyq130[57] = x.RuntimeCgroups != "" - yyq130[58] = x.SystemCgroups != "" - yyq130[59] = x.CgroupRoot != "" - yyq130[63] = true - yyq130[64] = x.RktPath != "" - yyq130[65] = x.RktAPIEndpoint != "" - yyq130[66] = x.RktStage1Image != "" - yyq130[87] = true - yyq130[88] = x.NodeIP != "" - yyq130[92] = x.EvictionHard != "" - yyq130[93] = x.EvictionSoft != "" - yyq130[94] = x.EvictionSoftGracePeriod != "" - yyq130[95] = true - yyq130[96] = x.EvictionMaxPodGracePeriod != 0 - yyq130[97] = x.EvictionMinimumReclaim != "" - yyq130[106] = len(x.AllowedUnsafeSysctls) != 0 - yyq130[107] = x.ExperimentalRuntimeIntegrationType != "" - var yynn130 int - if yyr130 || yy2arr130 { + yysep135 := !z.EncBinary() + yy2arr135 := z.EncBasicHandle().StructToArray + var yyq135 [108]bool + _, _, _ = yysep135, yyq135, yy2arr135 + const yyr135 bool = false + yyq135[0] = x.Kind != "" + yyq135[1] = x.APIVersion != "" + yyq135[53] = x.CloudProvider != "" + yyq135[54] = x.CloudConfigFile != "" + yyq135[55] = x.KubeletCgroups != "" + yyq135[56] = x.CgroupsPerQOS != false + yyq135[57] = x.RuntimeCgroups != "" + yyq135[58] = x.SystemCgroups != "" + yyq135[59] = x.CgroupRoot != "" + yyq135[63] = true + yyq135[64] = x.RktPath != "" + yyq135[65] = x.RktAPIEndpoint != "" + yyq135[66] = x.RktStage1Image != "" + yyq135[87] = true + yyq135[88] = x.NodeIP != "" + yyq135[92] = x.EvictionHard != "" + yyq135[93] = x.EvictionSoft != "" + yyq135[94] = x.EvictionSoftGracePeriod != "" + yyq135[95] = true + yyq135[96] = x.EvictionMaxPodGracePeriod != 0 + yyq135[97] = x.EvictionMinimumReclaim != "" + yyq135[106] = len(x.AllowedUnsafeSysctls) != 0 + yyq135[107] = x.ExperimentalRuntimeIntegrationType != "" + var yynn135 int + if yyr135 || yy2arr135 { r.EncodeArrayStart(108) } else { - yynn130 = 85 - for _, b := range yyq130 { + yynn135 = 85 + for _, b := range yyq135 { if b { - yynn130++ + yynn135++ } } - r.EncodeMapStart(yynn130) - yynn130 = 0 + r.EncodeMapStart(yynn135) + yynn135 = 0 } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[0] { - yym132 := z.EncBinary() - _ = yym132 + if yyq135[0] { + yym137 := z.EncBinary() + _ = yym137 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -1270,23 +1311,23 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[0] { + if yyq135[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym133 := z.EncBinary() - _ = yym133 + yym138 := z.EncBinary() + _ = yym138 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[1] { - yym135 := z.EncBinary() - _ = yym135 + if yyq135[1] { + yym140 := z.EncBinary() + _ = yym140 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -1295,22 +1336,22 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[1] { + if yyq135[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym136 := z.EncBinary() - _ = yym136 + yym141 := z.EncBinary() + _ = yym141 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym138 := z.EncBinary() - _ = yym138 + yym143 := z.EncBinary() + _ = yym143 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodManifestPath)) @@ -1319,43 +1360,16 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podManifestPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym139 := z.EncBinary() - _ = yym139 + yym144 := z.EncBinary() + _ = yym144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodManifestPath)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy141 := &x.SyncFrequency - yym142 := z.EncBinary() - _ = yym142 - if false { - } else if z.HasExtensions() && z.EncExt(yy141) { - } else if !yym142 && z.IsJSONHandle() { - z.EncJSONMarshal(yy141) - } else { - z.EncFallback(yy141) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("syncFrequency")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy143 := &x.SyncFrequency - yym144 := z.EncBinary() - _ = yym144 - if false { - } else if z.HasExtensions() && z.EncExt(yy143) { - } else if !yym144 && z.IsJSONHandle() { - z.EncJSONMarshal(yy143) - } else { - z.EncFallback(yy143) - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy146 := &x.FileCheckFrequency + yy146 := &x.SyncFrequency yym147 := z.EncBinary() _ = yym147 if false { @@ -1367,9 +1381,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fileCheckFrequency")) + r.EncodeString(codecSelferC_UTF81234, string("syncFrequency")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy148 := &x.FileCheckFrequency + yy148 := &x.SyncFrequency yym149 := z.EncBinary() _ = yym149 if false { @@ -1380,9 +1394,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy148) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy151 := &x.HTTPCheckFrequency + yy151 := &x.FileCheckFrequency yym152 := z.EncBinary() _ = yym152 if false { @@ -1394,9 +1408,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("httpCheckFrequency")) + r.EncodeString(codecSelferC_UTF81234, string("fileCheckFrequency")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy153 := &x.HTTPCheckFrequency + yy153 := &x.FileCheckFrequency yym154 := z.EncBinary() _ = yym154 if false { @@ -1407,10 +1421,37 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy153) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym156 := z.EncBinary() - _ = yym156 + yy156 := &x.HTTPCheckFrequency + yym157 := z.EncBinary() + _ = yym157 + if false { + } else if z.HasExtensions() && z.EncExt(yy156) { + } else if !yym157 && z.IsJSONHandle() { + z.EncJSONMarshal(yy156) + } else { + z.EncFallback(yy156) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("httpCheckFrequency")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy158 := &x.HTTPCheckFrequency + yym159 := z.EncBinary() + _ = yym159 + if false { + } else if z.HasExtensions() && z.EncExt(yy158) { + } else if !yym159 && z.IsJSONHandle() { + z.EncJSONMarshal(yy158) + } else { + z.EncFallback(yy158) + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym161 := z.EncBinary() + _ = yym161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ManifestURL)) @@ -1419,17 +1460,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("manifestURL")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym157 := z.EncBinary() - _ = yym157 + yym162 := z.EncBinary() + _ = yym162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ManifestURL)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym159 := z.EncBinary() - _ = yym159 + yym164 := z.EncBinary() + _ = yym164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ManifestURLHeader)) @@ -1438,17 +1479,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("manifestURLHeader")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym160 := z.EncBinary() - _ = yym160 + yym165 := z.EncBinary() + _ = yym165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ManifestURLHeader)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym162 := z.EncBinary() - _ = yym162 + yym167 := z.EncBinary() + _ = yym167 if false { } else { r.EncodeBool(bool(x.EnableServer)) @@ -1457,17 +1498,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableServer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym163 := z.EncBinary() - _ = yym163 + yym168 := z.EncBinary() + _ = yym168 if false { } else { r.EncodeBool(bool(x.EnableServer)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym165 := z.EncBinary() - _ = yym165 + yym170 := z.EncBinary() + _ = yym170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -1476,17 +1517,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym166 := z.EncBinary() - _ = yym166 + yym171 := z.EncBinary() + _ = yym171 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym168 := z.EncBinary() - _ = yym168 + yym173 := z.EncBinary() + _ = yym173 if false { } else { r.EncodeInt(int64(x.Port)) @@ -1495,17 +1536,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym169 := z.EncBinary() - _ = yym169 + yym174 := z.EncBinary() + _ = yym174 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym171 := z.EncBinary() - _ = yym171 + yym176 := z.EncBinary() + _ = yym176 if false { } else { r.EncodeInt(int64(x.ReadOnlyPort)) @@ -1514,17 +1555,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym172 := z.EncBinary() - _ = yym172 + yym177 := z.EncBinary() + _ = yym177 if false { } else { r.EncodeInt(int64(x.ReadOnlyPort)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym174 := z.EncBinary() - _ = yym174 + yym179 := z.EncBinary() + _ = yym179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TLSCertFile)) @@ -1533,17 +1574,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tlsCertFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym175 := z.EncBinary() - _ = yym175 + yym180 := z.EncBinary() + _ = yym180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TLSCertFile)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym177 := z.EncBinary() - _ = yym177 + yym182 := z.EncBinary() + _ = yym182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TLSPrivateKeyFile)) @@ -1552,17 +1593,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tlsPrivateKeyFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym178 := z.EncBinary() - _ = yym178 + yym183 := z.EncBinary() + _ = yym183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TLSPrivateKeyFile)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym180 := z.EncBinary() - _ = yym180 + yym185 := z.EncBinary() + _ = yym185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CertDirectory)) @@ -1571,17 +1612,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("certDirectory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym181 := z.EncBinary() - _ = yym181 + yym186 := z.EncBinary() + _ = yym186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CertDirectory)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym183 := z.EncBinary() - _ = yym183 + yym188 := z.EncBinary() + _ = yym188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostnameOverride)) @@ -1590,17 +1631,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostnameOverride")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym184 := z.EncBinary() - _ = yym184 + yym189 := z.EncBinary() + _ = yym189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostnameOverride)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym186 := z.EncBinary() - _ = yym186 + yym191 := z.EncBinary() + _ = yym191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodInfraContainerImage)) @@ -1609,17 +1650,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podInfraContainerImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym187 := z.EncBinary() - _ = yym187 + yym192 := z.EncBinary() + _ = yym192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodInfraContainerImage)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym189 := z.EncBinary() - _ = yym189 + yym194 := z.EncBinary() + _ = yym194 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DockerEndpoint)) @@ -1628,17 +1669,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dockerEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym190 := z.EncBinary() - _ = yym190 + yym195 := z.EncBinary() + _ = yym195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DockerEndpoint)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym192 := z.EncBinary() - _ = yym192 + yym197 := z.EncBinary() + _ = yym197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootDirectory)) @@ -1647,17 +1688,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rootDirectory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym193 := z.EncBinary() - _ = yym193 + yym198 := z.EncBinary() + _ = yym198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootDirectory)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym195 := z.EncBinary() - _ = yym195 + yym200 := z.EncBinary() + _ = yym200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SeccompProfileRoot)) @@ -1666,17 +1707,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seccompProfileRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym196 := z.EncBinary() - _ = yym196 + yym201 := z.EncBinary() + _ = yym201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SeccompProfileRoot)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym198 := z.EncBinary() - _ = yym198 + yym203 := z.EncBinary() + _ = yym203 if false { } else { r.EncodeBool(bool(x.AllowPrivileged)) @@ -1685,20 +1726,20 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allowPrivileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym199 := z.EncBinary() - _ = yym199 + yym204 := z.EncBinary() + _ = yym204 if false { } else { r.EncodeBool(bool(x.AllowPrivileged)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.HostNetworkSources == nil { r.EncodeNil() } else { - yym201 := z.EncBinary() - _ = yym201 + yym206 := z.EncBinary() + _ = yym206 if false { } else { z.F.EncSliceStringV(x.HostNetworkSources, false, e) @@ -1711,21 +1752,21 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.HostNetworkSources == nil { r.EncodeNil() } else { - yym202 := z.EncBinary() - _ = yym202 + yym207 := z.EncBinary() + _ = yym207 if false { } else { z.F.EncSliceStringV(x.HostNetworkSources, false, e) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.HostPIDSources == nil { r.EncodeNil() } else { - yym204 := z.EncBinary() - _ = yym204 + yym209 := z.EncBinary() + _ = yym209 if false { } else { z.F.EncSliceStringV(x.HostPIDSources, false, e) @@ -1738,21 +1779,21 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.HostPIDSources == nil { r.EncodeNil() } else { - yym205 := z.EncBinary() - _ = yym205 + yym210 := z.EncBinary() + _ = yym210 if false { } else { z.F.EncSliceStringV(x.HostPIDSources, false, e) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.HostIPCSources == nil { r.EncodeNil() } else { - yym207 := z.EncBinary() - _ = yym207 + yym212 := z.EncBinary() + _ = yym212 if false { } else { z.F.EncSliceStringV(x.HostIPCSources, false, e) @@ -1765,18 +1806,18 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.HostIPCSources == nil { r.EncodeNil() } else { - yym208 := z.EncBinary() - _ = yym208 + yym213 := z.EncBinary() + _ = yym213 if false { } else { z.F.EncSliceStringV(x.HostIPCSources, false, e) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym210 := z.EncBinary() - _ = yym210 + yym215 := z.EncBinary() + _ = yym215 if false { } else { r.EncodeInt(int64(x.RegistryPullQPS)) @@ -1785,17 +1826,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registryPullQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym211 := z.EncBinary() - _ = yym211 + yym216 := z.EncBinary() + _ = yym216 if false { } else { r.EncodeInt(int64(x.RegistryPullQPS)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym213 := z.EncBinary() - _ = yym213 + yym218 := z.EncBinary() + _ = yym218 if false { } else { r.EncodeInt(int64(x.RegistryBurst)) @@ -1804,17 +1845,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registryBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym214 := z.EncBinary() - _ = yym214 + yym219 := z.EncBinary() + _ = yym219 if false { } else { r.EncodeInt(int64(x.RegistryBurst)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym216 := z.EncBinary() - _ = yym216 + yym221 := z.EncBinary() + _ = yym221 if false { } else { r.EncodeInt(int64(x.EventRecordQPS)) @@ -1823,17 +1864,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("eventRecordQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym217 := z.EncBinary() - _ = yym217 + yym222 := z.EncBinary() + _ = yym222 if false { } else { r.EncodeInt(int64(x.EventRecordQPS)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym219 := z.EncBinary() - _ = yym219 + yym224 := z.EncBinary() + _ = yym224 if false { } else { r.EncodeInt(int64(x.EventBurst)) @@ -1842,17 +1883,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("eventBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym220 := z.EncBinary() - _ = yym220 + yym225 := z.EncBinary() + _ = yym225 if false { } else { r.EncodeInt(int64(x.EventBurst)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym222 := z.EncBinary() - _ = yym222 + yym227 := z.EncBinary() + _ = yym227 if false { } else { r.EncodeBool(bool(x.EnableDebuggingHandlers)) @@ -1861,44 +1902,44 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableDebuggingHandlers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym223 := z.EncBinary() - _ = yym223 + yym228 := z.EncBinary() + _ = yym228 if false { } else { r.EncodeBool(bool(x.EnableDebuggingHandlers)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy225 := &x.MinimumGCAge - yym226 := z.EncBinary() - _ = yym226 + yy230 := &x.MinimumGCAge + yym231 := z.EncBinary() + _ = yym231 if false { - } else if z.HasExtensions() && z.EncExt(yy225) { - } else if !yym226 && z.IsJSONHandle() { - z.EncJSONMarshal(yy225) + } else if z.HasExtensions() && z.EncExt(yy230) { + } else if !yym231 && z.IsJSONHandle() { + z.EncJSONMarshal(yy230) } else { - z.EncFallback(yy225) + z.EncFallback(yy230) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minimumGCAge")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy227 := &x.MinimumGCAge - yym228 := z.EncBinary() - _ = yym228 + yy232 := &x.MinimumGCAge + yym233 := z.EncBinary() + _ = yym233 if false { - } else if z.HasExtensions() && z.EncExt(yy227) { - } else if !yym228 && z.IsJSONHandle() { - z.EncJSONMarshal(yy227) + } else if z.HasExtensions() && z.EncExt(yy232) { + } else if !yym233 && z.IsJSONHandle() { + z.EncJSONMarshal(yy232) } else { - z.EncFallback(yy227) + z.EncFallback(yy232) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym230 := z.EncBinary() - _ = yym230 + yym235 := z.EncBinary() + _ = yym235 if false { } else { r.EncodeInt(int64(x.MaxPerPodContainerCount)) @@ -1907,17 +1948,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxPerPodContainerCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym231 := z.EncBinary() - _ = yym231 + yym236 := z.EncBinary() + _ = yym236 if false { } else { r.EncodeInt(int64(x.MaxPerPodContainerCount)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym233 := z.EncBinary() - _ = yym233 + yym238 := z.EncBinary() + _ = yym238 if false { } else { r.EncodeInt(int64(x.MaxContainerCount)) @@ -1926,17 +1967,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxContainerCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym234 := z.EncBinary() - _ = yym234 + yym239 := z.EncBinary() + _ = yym239 if false { } else { r.EncodeInt(int64(x.MaxContainerCount)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym236 := z.EncBinary() - _ = yym236 + yym241 := z.EncBinary() + _ = yym241 if false { } else { r.EncodeInt(int64(x.CAdvisorPort)) @@ -1945,17 +1986,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cAdvisorPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym237 := z.EncBinary() - _ = yym237 + yym242 := z.EncBinary() + _ = yym242 if false { } else { r.EncodeInt(int64(x.CAdvisorPort)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym239 := z.EncBinary() - _ = yym239 + yym244 := z.EncBinary() + _ = yym244 if false { } else { r.EncodeInt(int64(x.HealthzPort)) @@ -1964,17 +2005,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("healthzPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym240 := z.EncBinary() - _ = yym240 + yym245 := z.EncBinary() + _ = yym245 if false { } else { r.EncodeInt(int64(x.HealthzPort)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym242 := z.EncBinary() - _ = yym242 + yym247 := z.EncBinary() + _ = yym247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HealthzBindAddress)) @@ -1983,17 +2024,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("healthzBindAddress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym243 := z.EncBinary() - _ = yym243 + yym248 := z.EncBinary() + _ = yym248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HealthzBindAddress)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym245 := z.EncBinary() - _ = yym245 + yym250 := z.EncBinary() + _ = yym250 if false { } else { r.EncodeInt(int64(x.OOMScoreAdj)) @@ -2002,17 +2043,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("oomScoreAdj")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym246 := z.EncBinary() - _ = yym246 + yym251 := z.EncBinary() + _ = yym251 if false { } else { r.EncodeInt(int64(x.OOMScoreAdj)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym248 := z.EncBinary() - _ = yym248 + yym253 := z.EncBinary() + _ = yym253 if false { } else { r.EncodeBool(bool(x.RegisterNode)) @@ -2021,17 +2062,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registerNode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym249 := z.EncBinary() - _ = yym249 + yym254 := z.EncBinary() + _ = yym254 if false { } else { r.EncodeBool(bool(x.RegisterNode)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym251 := z.EncBinary() - _ = yym251 + yym256 := z.EncBinary() + _ = yym256 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterDomain)) @@ -2040,17 +2081,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterDomain")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym252 := z.EncBinary() - _ = yym252 + yym257 := z.EncBinary() + _ = yym257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterDomain)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym254 := z.EncBinary() - _ = yym254 + yym259 := z.EncBinary() + _ = yym259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MasterServiceNamespace)) @@ -2059,17 +2100,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("masterServiceNamespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym255 := z.EncBinary() - _ = yym255 + yym260 := z.EncBinary() + _ = yym260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MasterServiceNamespace)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym257 := z.EncBinary() - _ = yym257 + yym262 := z.EncBinary() + _ = yym262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterDNS)) @@ -2078,43 +2119,16 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterDNS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym258 := z.EncBinary() - _ = yym258 + yym263 := z.EncBinary() + _ = yym263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterDNS)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy260 := &x.StreamingConnectionIdleTimeout - yym261 := z.EncBinary() - _ = yym261 - if false { - } else if z.HasExtensions() && z.EncExt(yy260) { - } else if !yym261 && z.IsJSONHandle() { - z.EncJSONMarshal(yy260) - } else { - z.EncFallback(yy260) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("streamingConnectionIdleTimeout")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy262 := &x.StreamingConnectionIdleTimeout - yym263 := z.EncBinary() - _ = yym263 - if false { - } else if z.HasExtensions() && z.EncExt(yy262) { - } else if !yym263 && z.IsJSONHandle() { - z.EncJSONMarshal(yy262) - } else { - z.EncFallback(yy262) - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy265 := &x.NodeStatusUpdateFrequency + yy265 := &x.StreamingConnectionIdleTimeout yym266 := z.EncBinary() _ = yym266 if false { @@ -2126,9 +2140,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeStatusUpdateFrequency")) + r.EncodeString(codecSelferC_UTF81234, string("streamingConnectionIdleTimeout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy267 := &x.NodeStatusUpdateFrequency + yy267 := &x.StreamingConnectionIdleTimeout yym268 := z.EncBinary() _ = yym268 if false { @@ -2139,9 +2153,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy267) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy270 := &x.ImageMinimumGCAge + yy270 := &x.NodeStatusUpdateFrequency yym271 := z.EncBinary() _ = yym271 if false { @@ -2153,9 +2167,9 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("imageMinimumGCAge")) + r.EncodeString(codecSelferC_UTF81234, string("nodeStatusUpdateFrequency")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy272 := &x.ImageMinimumGCAge + yy272 := &x.NodeStatusUpdateFrequency yym273 := z.EncBinary() _ = yym273 if false { @@ -2166,10 +2180,37 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy272) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym275 := z.EncBinary() - _ = yym275 + yy275 := &x.ImageMinimumGCAge + yym276 := z.EncBinary() + _ = yym276 + if false { + } else if z.HasExtensions() && z.EncExt(yy275) { + } else if !yym276 && z.IsJSONHandle() { + z.EncJSONMarshal(yy275) + } else { + z.EncFallback(yy275) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("imageMinimumGCAge")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy277 := &x.ImageMinimumGCAge + yym278 := z.EncBinary() + _ = yym278 + if false { + } else if z.HasExtensions() && z.EncExt(yy277) { + } else if !yym278 && z.IsJSONHandle() { + z.EncJSONMarshal(yy277) + } else { + z.EncFallback(yy277) + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym280 := z.EncBinary() + _ = yym280 if false { } else { r.EncodeInt(int64(x.ImageGCHighThresholdPercent)) @@ -2178,17 +2219,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageGCHighThresholdPercent")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym276 := z.EncBinary() - _ = yym276 + yym281 := z.EncBinary() + _ = yym281 if false { } else { r.EncodeInt(int64(x.ImageGCHighThresholdPercent)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym278 := z.EncBinary() - _ = yym278 + yym283 := z.EncBinary() + _ = yym283 if false { } else { r.EncodeInt(int64(x.ImageGCLowThresholdPercent)) @@ -2197,17 +2238,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageGCLowThresholdPercent")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym279 := z.EncBinary() - _ = yym279 + yym284 := z.EncBinary() + _ = yym284 if false { } else { r.EncodeInt(int64(x.ImageGCLowThresholdPercent)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym281 := z.EncBinary() - _ = yym281 + yym286 := z.EncBinary() + _ = yym286 if false { } else { r.EncodeInt(int64(x.LowDiskSpaceThresholdMB)) @@ -2216,44 +2257,44 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lowDiskSpaceThresholdMB")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym282 := z.EncBinary() - _ = yym282 + yym287 := z.EncBinary() + _ = yym287 if false { } else { r.EncodeInt(int64(x.LowDiskSpaceThresholdMB)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy284 := &x.VolumeStatsAggPeriod - yym285 := z.EncBinary() - _ = yym285 + yy289 := &x.VolumeStatsAggPeriod + yym290 := z.EncBinary() + _ = yym290 if false { - } else if z.HasExtensions() && z.EncExt(yy284) { - } else if !yym285 && z.IsJSONHandle() { - z.EncJSONMarshal(yy284) + } else if z.HasExtensions() && z.EncExt(yy289) { + } else if !yym290 && z.IsJSONHandle() { + z.EncJSONMarshal(yy289) } else { - z.EncFallback(yy284) + z.EncFallback(yy289) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeStatsAggPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy286 := &x.VolumeStatsAggPeriod - yym287 := z.EncBinary() - _ = yym287 + yy291 := &x.VolumeStatsAggPeriod + yym292 := z.EncBinary() + _ = yym292 if false { - } else if z.HasExtensions() && z.EncExt(yy286) { - } else if !yym287 && z.IsJSONHandle() { - z.EncJSONMarshal(yy286) + } else if z.HasExtensions() && z.EncExt(yy291) { + } else if !yym292 && z.IsJSONHandle() { + z.EncJSONMarshal(yy291) } else { - z.EncFallback(yy286) + z.EncFallback(yy291) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym289 := z.EncBinary() - _ = yym289 + yym294 := z.EncBinary() + _ = yym294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NetworkPluginName)) @@ -2262,17 +2303,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("networkPluginName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym290 := z.EncBinary() - _ = yym290 + yym295 := z.EncBinary() + _ = yym295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NetworkPluginName)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym292 := z.EncBinary() - _ = yym292 + yym297 := z.EncBinary() + _ = yym297 if false { } else { r.EncodeInt(int64(x.NetworkPluginMTU)) @@ -2281,17 +2322,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("networkPluginMTU")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym293 := z.EncBinary() - _ = yym293 + yym298 := z.EncBinary() + _ = yym298 if false { } else { r.EncodeInt(int64(x.NetworkPluginMTU)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym295 := z.EncBinary() - _ = yym295 + yym300 := z.EncBinary() + _ = yym300 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NetworkPluginDir)) @@ -2300,17 +2341,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("networkPluginDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym296 := z.EncBinary() - _ = yym296 + yym301 := z.EncBinary() + _ = yym301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NetworkPluginDir)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym298 := z.EncBinary() - _ = yym298 + yym303 := z.EncBinary() + _ = yym303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CNIConfDir)) @@ -2319,17 +2360,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cniConfDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym299 := z.EncBinary() - _ = yym299 + yym304 := z.EncBinary() + _ = yym304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CNIConfDir)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym301 := z.EncBinary() - _ = yym301 + yym306 := z.EncBinary() + _ = yym306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CNIBinDir)) @@ -2338,17 +2379,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cniBinDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym302 := z.EncBinary() - _ = yym302 + yym307 := z.EncBinary() + _ = yym307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CNIBinDir)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym304 := z.EncBinary() - _ = yym304 + yym309 := z.EncBinary() + _ = yym309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePluginDir)) @@ -2357,18 +2398,18 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumePluginDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym305 := z.EncBinary() - _ = yym305 + yym310 := z.EncBinary() + _ = yym310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePluginDir)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[53] { - yym307 := z.EncBinary() - _ = yym307 + if yyq135[53] { + yym312 := z.EncBinary() + _ = yym312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) @@ -2377,49 +2418,49 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[53] { + if yyq135[53] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cloudProvider")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym308 := z.EncBinary() - _ = yym308 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[54] { - yym310 := z.EncBinary() - _ = yym310 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq130[54] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cloudConfigFile")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym311 := z.EncBinary() - _ = yym311 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[55] { yym313 := z.EncBinary() _ = yym313 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[54] { + yym315 := z.EncBinary() + _ = yym315 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq135[54] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cloudConfigFile")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym316 := z.EncBinary() + _ = yym316 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[55] { + yym318 := z.EncBinary() + _ = yym318 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletCgroups)) } @@ -2427,23 +2468,23 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[55] { + if yyq135[55] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletCgroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym314 := z.EncBinary() - _ = yym314 + yym319 := z.EncBinary() + _ = yym319 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletCgroups)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[56] { - yym316 := z.EncBinary() - _ = yym316 + if yyq135[56] { + yym321 := z.EncBinary() + _ = yym321 if false { } else { r.EncodeBool(bool(x.CgroupsPerQOS)) @@ -2452,23 +2493,23 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq130[56] { + if yyq135[56] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("CgroupsPerQOS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym317 := z.EncBinary() - _ = yym317 + yym322 := z.EncBinary() + _ = yym322 if false { } else { r.EncodeBool(bool(x.CgroupsPerQOS)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[57] { - yym319 := z.EncBinary() - _ = yym319 + if yyq135[57] { + yym324 := z.EncBinary() + _ = yym324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RuntimeCgroups)) @@ -2477,49 +2518,49 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[57] { + if yyq135[57] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runtimeCgroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym320 := z.EncBinary() - _ = yym320 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.RuntimeCgroups)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[58] { - yym322 := z.EncBinary() - _ = yym322 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.SystemCgroups)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq130[58] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("systemCgroups")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym323 := z.EncBinary() - _ = yym323 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.SystemCgroups)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[59] { yym325 := z.EncBinary() _ = yym325 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.RuntimeCgroups)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[58] { + yym327 := z.EncBinary() + _ = yym327 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.SystemCgroups)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq135[58] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("systemCgroups")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym328 := z.EncBinary() + _ = yym328 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.SystemCgroups)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[59] { + yym330 := z.EncBinary() + _ = yym330 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CgroupRoot)) } @@ -2527,22 +2568,22 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[59] { + if yyq135[59] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cgroupRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym326 := z.EncBinary() - _ = yym326 + yym331 := z.EncBinary() + _ = yym331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CgroupRoot)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym328 := z.EncBinary() - _ = yym328 + yym333 := z.EncBinary() + _ = yym333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntime)) @@ -2551,17 +2592,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym329 := z.EncBinary() - _ = yym329 + yym334 := z.EncBinary() + _ = yym334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntime)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym331 := z.EncBinary() - _ = yym331 + yym336 := z.EncBinary() + _ = yym336 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RemoteRuntimeEndpoint)) @@ -2570,17 +2611,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("remoteRuntimeEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym332 := z.EncBinary() - _ = yym332 + yym337 := z.EncBinary() + _ = yym337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RemoteRuntimeEndpoint)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym334 := z.EncBinary() - _ = yym334 + yym339 := z.EncBinary() + _ = yym339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RemoteImageEndpoint)) @@ -2589,102 +2630,102 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("remoteImageEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym335 := z.EncBinary() - _ = yym335 + yym340 := z.EncBinary() + _ = yym340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RemoteImageEndpoint)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[63] { - yy337 := &x.RuntimeRequestTimeout - yym338 := z.EncBinary() - _ = yym338 + if yyq135[63] { + yy342 := &x.RuntimeRequestTimeout + yym343 := z.EncBinary() + _ = yym343 if false { - } else if z.HasExtensions() && z.EncExt(yy337) { - } else if !yym338 && z.IsJSONHandle() { - z.EncJSONMarshal(yy337) + } else if z.HasExtensions() && z.EncExt(yy342) { + } else if !yym343 && z.IsJSONHandle() { + z.EncJSONMarshal(yy342) } else { - z.EncFallback(yy337) + z.EncFallback(yy342) } } else { r.EncodeNil() } } else { - if yyq130[63] { + if yyq135[63] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runtimeRequestTimeout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy339 := &x.RuntimeRequestTimeout - yym340 := z.EncBinary() - _ = yym340 - if false { - } else if z.HasExtensions() && z.EncExt(yy339) { - } else if !yym340 && z.IsJSONHandle() { - z.EncJSONMarshal(yy339) - } else { - z.EncFallback(yy339) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[64] { - yym342 := z.EncBinary() - _ = yym342 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.RktPath)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq130[64] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("rktPath")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym343 := z.EncBinary() - _ = yym343 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.RktPath)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[65] { + yy344 := &x.RuntimeRequestTimeout yym345 := z.EncBinary() _ = yym345 if false { + } else if z.HasExtensions() && z.EncExt(yy344) { + } else if !yym345 && z.IsJSONHandle() { + z.EncJSONMarshal(yy344) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.RktAPIEndpoint)) + z.EncFallback(yy344) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[64] { + yym347 := z.EncBinary() + _ = yym347 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.RktPath)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[65] { + if yyq135[64] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("rktAPIEndpoint")) + r.EncodeString(codecSelferC_UTF81234, string("rktPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym346 := z.EncBinary() - _ = yym346 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.RktAPIEndpoint)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[66] { yym348 := z.EncBinary() _ = yym348 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.RktPath)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[65] { + yym350 := z.EncBinary() + _ = yym350 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.RktAPIEndpoint)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq135[65] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("rktAPIEndpoint")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym351 := z.EncBinary() + _ = yym351 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.RktAPIEndpoint)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[66] { + yym353 := z.EncBinary() + _ = yym353 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RktStage1Image)) } @@ -2692,22 +2733,22 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[66] { + if yyq135[66] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rktStage1Image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym349 := z.EncBinary() - _ = yym349 + yym354 := z.EncBinary() + _ = yym354 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RktStage1Image)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym351 := z.EncBinary() - _ = yym351 + yym356 := z.EncBinary() + _ = yym356 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LockFilePath)) @@ -2716,17 +2757,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lockFilePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym352 := z.EncBinary() - _ = yym352 + yym357 := z.EncBinary() + _ = yym357 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LockFilePath)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym354 := z.EncBinary() - _ = yym354 + yym359 := z.EncBinary() + _ = yym359 if false { } else { r.EncodeBool(bool(x.ExitOnLockContention)) @@ -2735,17 +2776,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitOnLockContention")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym355 := z.EncBinary() - _ = yym355 + yym360 := z.EncBinary() + _ = yym360 if false { } else { r.EncodeBool(bool(x.ExitOnLockContention)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym357 := z.EncBinary() - _ = yym357 + yym362 := z.EncBinary() + _ = yym362 if false { } else { r.EncodeBool(bool(x.ConfigureCBR0)) @@ -2754,17 +2795,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configureCbr0")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym358 := z.EncBinary() - _ = yym358 + yym363 := z.EncBinary() + _ = yym363 if false { } else { r.EncodeBool(bool(x.ConfigureCBR0)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym360 := z.EncBinary() - _ = yym360 + yym365 := z.EncBinary() + _ = yym365 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HairpinMode)) @@ -2773,17 +2814,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hairpinMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym361 := z.EncBinary() - _ = yym361 + yym366 := z.EncBinary() + _ = yym366 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HairpinMode)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym363 := z.EncBinary() - _ = yym363 + yym368 := z.EncBinary() + _ = yym368 if false { } else { r.EncodeBool(bool(x.BabysitDaemons)) @@ -2792,17 +2833,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("babysitDaemons")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym364 := z.EncBinary() - _ = yym364 + yym369 := z.EncBinary() + _ = yym369 if false { } else { r.EncodeBool(bool(x.BabysitDaemons)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym366 := z.EncBinary() - _ = yym366 + yym371 := z.EncBinary() + _ = yym371 if false { } else { r.EncodeInt(int64(x.MaxPods)) @@ -2811,17 +2852,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym367 := z.EncBinary() - _ = yym367 + yym372 := z.EncBinary() + _ = yym372 if false { } else { r.EncodeInt(int64(x.MaxPods)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym369 := z.EncBinary() - _ = yym369 + yym374 := z.EncBinary() + _ = yym374 if false { } else { r.EncodeInt(int64(x.NvidiaGPUs)) @@ -2830,17 +2871,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nvidiaGPUs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym370 := z.EncBinary() - _ = yym370 + yym375 := z.EncBinary() + _ = yym375 if false { } else { r.EncodeInt(int64(x.NvidiaGPUs)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym372 := z.EncBinary() - _ = yym372 + yym377 := z.EncBinary() + _ = yym377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DockerExecHandlerName)) @@ -2849,17 +2890,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dockerExecHandlerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym373 := z.EncBinary() - _ = yym373 + yym378 := z.EncBinary() + _ = yym378 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DockerExecHandlerName)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym375 := z.EncBinary() - _ = yym375 + yym380 := z.EncBinary() + _ = yym380 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -2868,17 +2909,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym376 := z.EncBinary() - _ = yym376 + yym381 := z.EncBinary() + _ = yym381 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym378 := z.EncBinary() - _ = yym378 + yym383 := z.EncBinary() + _ = yym383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResolverConfig)) @@ -2887,17 +2928,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resolvConf")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym379 := z.EncBinary() - _ = yym379 + yym384 := z.EncBinary() + _ = yym384 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResolverConfig)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym381 := z.EncBinary() - _ = yym381 + yym386 := z.EncBinary() + _ = yym386 if false { } else { r.EncodeBool(bool(x.CPUCFSQuota)) @@ -2906,17 +2947,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cpuCFSQuota")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym382 := z.EncBinary() - _ = yym382 + yym387 := z.EncBinary() + _ = yym387 if false { } else { r.EncodeBool(bool(x.CPUCFSQuota)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym384 := z.EncBinary() - _ = yym384 + yym389 := z.EncBinary() + _ = yym389 if false { } else { r.EncodeBool(bool(x.Containerized)) @@ -2925,17 +2966,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerized")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym385 := z.EncBinary() - _ = yym385 + yym390 := z.EncBinary() + _ = yym390 if false { } else { r.EncodeBool(bool(x.Containerized)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym387 := z.EncBinary() - _ = yym387 + yym392 := z.EncBinary() + _ = yym392 if false { } else { r.EncodeInt(int64(x.MaxOpenFiles)) @@ -2944,17 +2985,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxOpenFiles")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym388 := z.EncBinary() - _ = yym388 + yym393 := z.EncBinary() + _ = yym393 if false { } else { r.EncodeInt(int64(x.MaxOpenFiles)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym390 := z.EncBinary() - _ = yym390 + yym395 := z.EncBinary() + _ = yym395 if false { } else { r.EncodeBool(bool(x.ReconcileCIDR)) @@ -2963,17 +3004,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reconcileCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym391 := z.EncBinary() - _ = yym391 + yym396 := z.EncBinary() + _ = yym396 if false { } else { r.EncodeBool(bool(x.ReconcileCIDR)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym393 := z.EncBinary() - _ = yym393 + yym398 := z.EncBinary() + _ = yym398 if false { } else { r.EncodeBool(bool(x.RegisterSchedulable)) @@ -2982,17 +3023,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registerSchedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym394 := z.EncBinary() - _ = yym394 + yym399 := z.EncBinary() + _ = yym399 if false { } else { r.EncodeBool(bool(x.RegisterSchedulable)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym396 := z.EncBinary() - _ = yym396 + yym401 := z.EncBinary() + _ = yym401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) @@ -3001,17 +3042,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym397 := z.EncBinary() - _ = yym397 + yym402 := z.EncBinary() + _ = yym402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym399 := z.EncBinary() - _ = yym399 + yym404 := z.EncBinary() + _ = yym404 if false { } else { r.EncodeInt(int64(x.KubeAPIQPS)) @@ -3020,17 +3061,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym400 := z.EncBinary() - _ = yym400 + yym405 := z.EncBinary() + _ = yym405 if false { } else { r.EncodeInt(int64(x.KubeAPIQPS)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym402 := z.EncBinary() - _ = yym402 + yym407 := z.EncBinary() + _ = yym407 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) @@ -3039,17 +3080,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym403 := z.EncBinary() - _ = yym403 + yym408 := z.EncBinary() + _ = yym408 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym405 := z.EncBinary() - _ = yym405 + yym410 := z.EncBinary() + _ = yym410 if false { } else { r.EncodeBool(bool(x.SerializeImagePulls)) @@ -3058,17 +3099,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serializeImagePulls")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym406 := z.EncBinary() - _ = yym406 + yym411 := z.EncBinary() + _ = yym411 if false { } else { r.EncodeBool(bool(x.SerializeImagePulls)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym408 := z.EncBinary() - _ = yym408 + yym413 := z.EncBinary() + _ = yym413 if false { } else { r.EncodeBool(bool(x.ExperimentalFlannelOverlay)) @@ -3077,51 +3118,51 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("experimentalFlannelOverlay")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym409 := z.EncBinary() - _ = yym409 + yym414 := z.EncBinary() + _ = yym414 if false { } else { r.EncodeBool(bool(x.ExperimentalFlannelOverlay)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[87] { - yy411 := &x.OutOfDiskTransitionFrequency - yym412 := z.EncBinary() - _ = yym412 + if yyq135[87] { + yy416 := &x.OutOfDiskTransitionFrequency + yym417 := z.EncBinary() + _ = yym417 if false { - } else if z.HasExtensions() && z.EncExt(yy411) { - } else if !yym412 && z.IsJSONHandle() { - z.EncJSONMarshal(yy411) + } else if z.HasExtensions() && z.EncExt(yy416) { + } else if !yym417 && z.IsJSONHandle() { + z.EncJSONMarshal(yy416) } else { - z.EncFallback(yy411) + z.EncFallback(yy416) } } else { r.EncodeNil() } } else { - if yyq130[87] { + if yyq135[87] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("outOfDiskTransitionFrequency")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy413 := &x.OutOfDiskTransitionFrequency - yym414 := z.EncBinary() - _ = yym414 + yy418 := &x.OutOfDiskTransitionFrequency + yym419 := z.EncBinary() + _ = yym419 if false { - } else if z.HasExtensions() && z.EncExt(yy413) { - } else if !yym414 && z.IsJSONHandle() { - z.EncJSONMarshal(yy413) + } else if z.HasExtensions() && z.EncExt(yy418) { + } else if !yym419 && z.IsJSONHandle() { + z.EncJSONMarshal(yy418) } else { - z.EncFallback(yy413) + z.EncFallback(yy418) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[88] { - yym416 := z.EncBinary() - _ = yym416 + if yyq135[88] { + yym421 := z.EncBinary() + _ = yym421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeIP)) @@ -3130,25 +3171,25 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[88] { + if yyq135[88] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym417 := z.EncBinary() - _ = yym417 + yym422 := z.EncBinary() + _ = yym422 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeIP)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NodeLabels == nil { r.EncodeNil() } else { - yym419 := z.EncBinary() - _ = yym419 + yym424 := z.EncBinary() + _ = yym424 if false { } else { z.F.EncMapStringStringV(x.NodeLabels, false, e) @@ -3161,18 +3202,18 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeLabels == nil { r.EncodeNil() } else { - yym420 := z.EncBinary() - _ = yym420 + yym425 := z.EncBinary() + _ = yym425 if false { } else { z.F.EncMapStringStringV(x.NodeLabels, false, e) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym422 := z.EncBinary() - _ = yym422 + yym427 := z.EncBinary() + _ = yym427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NonMasqueradeCIDR)) @@ -3181,17 +3222,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nonMasqueradeCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym423 := z.EncBinary() - _ = yym423 + yym428 := z.EncBinary() + _ = yym428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NonMasqueradeCIDR)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym425 := z.EncBinary() - _ = yym425 + yym430 := z.EncBinary() + _ = yym430 if false { } else { r.EncodeBool(bool(x.EnableCustomMetrics)) @@ -3200,18 +3241,18 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableCustomMetrics")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym426 := z.EncBinary() - _ = yym426 + yym431 := z.EncBinary() + _ = yym431 if false { } else { r.EncodeBool(bool(x.EnableCustomMetrics)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[92] { - yym428 := z.EncBinary() - _ = yym428 + if yyq135[92] { + yym433 := z.EncBinary() + _ = yym433 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) @@ -3220,49 +3261,49 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[92] { + if yyq135[92] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionHard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym429 := z.EncBinary() - _ = yym429 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[93] { - yym431 := z.EncBinary() - _ = yym431 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq130[93] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionSoft")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym432 := z.EncBinary() - _ = yym432 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) - } - } - } - if yyr130 || yy2arr130 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[94] { yym434 := z.EncBinary() _ = yym434 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionHard)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[93] { + yym436 := z.EncBinary() + _ = yym436 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq135[93] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("evictionSoft")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym437 := z.EncBinary() + _ = yym437 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoft)) + } + } + } + if yyr135 || yy2arr135 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq135[94] { + yym439 := z.EncBinary() + _ = yym439 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoftGracePeriod)) } @@ -3270,56 +3311,56 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[94] { + if yyq135[94] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionSoftGracePeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym435 := z.EncBinary() - _ = yym435 + yym440 := z.EncBinary() + _ = yym440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionSoftGracePeriod)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[95] { - yy437 := &x.EvictionPressureTransitionPeriod - yym438 := z.EncBinary() - _ = yym438 + if yyq135[95] { + yy442 := &x.EvictionPressureTransitionPeriod + yym443 := z.EncBinary() + _ = yym443 if false { - } else if z.HasExtensions() && z.EncExt(yy437) { - } else if !yym438 && z.IsJSONHandle() { - z.EncJSONMarshal(yy437) + } else if z.HasExtensions() && z.EncExt(yy442) { + } else if !yym443 && z.IsJSONHandle() { + z.EncJSONMarshal(yy442) } else { - z.EncFallback(yy437) + z.EncFallback(yy442) } } else { r.EncodeNil() } } else { - if yyq130[95] { + if yyq135[95] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionPressureTransitionPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy439 := &x.EvictionPressureTransitionPeriod - yym440 := z.EncBinary() - _ = yym440 + yy444 := &x.EvictionPressureTransitionPeriod + yym445 := z.EncBinary() + _ = yym445 if false { - } else if z.HasExtensions() && z.EncExt(yy439) { - } else if !yym440 && z.IsJSONHandle() { - z.EncJSONMarshal(yy439) + } else if z.HasExtensions() && z.EncExt(yy444) { + } else if !yym445 && z.IsJSONHandle() { + z.EncJSONMarshal(yy444) } else { - z.EncFallback(yy439) + z.EncFallback(yy444) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[96] { - yym442 := z.EncBinary() - _ = yym442 + if yyq135[96] { + yym447 := z.EncBinary() + _ = yym447 if false { } else { r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) @@ -3328,23 +3369,23 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq130[96] { + if yyq135[96] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionMaxPodGracePeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym443 := z.EncBinary() - _ = yym443 + yym448 := z.EncBinary() + _ = yym448 if false { } else { r.EncodeInt(int64(x.EvictionMaxPodGracePeriod)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[97] { - yym445 := z.EncBinary() - _ = yym445 + if yyq135[97] { + yym450 := z.EncBinary() + _ = yym450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionMinimumReclaim)) @@ -3353,22 +3394,22 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[97] { + if yyq135[97] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionMinimumReclaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym446 := z.EncBinary() - _ = yym446 + yym451 := z.EncBinary() + _ = yym451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EvictionMinimumReclaim)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym448 := z.EncBinary() - _ = yym448 + yym453 := z.EncBinary() + _ = yym453 if false { } else { r.EncodeInt(int64(x.PodsPerCore)) @@ -3377,17 +3418,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podsPerCore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym449 := z.EncBinary() - _ = yym449 + yym454 := z.EncBinary() + _ = yym454 if false { } else { r.EncodeInt(int64(x.PodsPerCore)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym451 := z.EncBinary() - _ = yym451 + yym456 := z.EncBinary() + _ = yym456 if false { } else { r.EncodeBool(bool(x.EnableControllerAttachDetach)) @@ -3396,20 +3437,20 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableControllerAttachDetach")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym452 := z.EncBinary() - _ = yym452 + yym457 := z.EncBinary() + _ = yym457 if false { } else { r.EncodeBool(bool(x.EnableControllerAttachDetach)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SystemReserved == nil { r.EncodeNil() } else { - yym454 := z.EncBinary() - _ = yym454 + yym459 := z.EncBinary() + _ = yym459 if false { } else if z.HasExtensions() && z.EncExt(x.SystemReserved) { } else { @@ -3423,8 +3464,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.SystemReserved == nil { r.EncodeNil() } else { - yym455 := z.EncBinary() - _ = yym455 + yym460 := z.EncBinary() + _ = yym460 if false { } else if z.HasExtensions() && z.EncExt(x.SystemReserved) { } else { @@ -3432,13 +3473,13 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.KubeReserved == nil { r.EncodeNil() } else { - yym457 := z.EncBinary() - _ = yym457 + yym462 := z.EncBinary() + _ = yym462 if false { } else if z.HasExtensions() && z.EncExt(x.KubeReserved) { } else { @@ -3452,8 +3493,8 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x.KubeReserved == nil { r.EncodeNil() } else { - yym458 := z.EncBinary() - _ = yym458 + yym463 := z.EncBinary() + _ = yym463 if false { } else if z.HasExtensions() && z.EncExt(x.KubeReserved) { } else { @@ -3461,10 +3502,10 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym460 := z.EncBinary() - _ = yym460 + yym465 := z.EncBinary() + _ = yym465 if false { } else { r.EncodeBool(bool(x.ProtectKernelDefaults)) @@ -3473,17 +3514,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protectKernelDefaults")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym461 := z.EncBinary() - _ = yym461 + yym466 := z.EncBinary() + _ = yym466 if false { } else { r.EncodeBool(bool(x.ProtectKernelDefaults)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym463 := z.EncBinary() - _ = yym463 + yym468 := z.EncBinary() + _ = yym468 if false { } else { r.EncodeBool(bool(x.MakeIPTablesUtilChains)) @@ -3492,17 +3533,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("makeIPTablesUtilChains")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym464 := z.EncBinary() - _ = yym464 + yym469 := z.EncBinary() + _ = yym469 if false { } else { r.EncodeBool(bool(x.MakeIPTablesUtilChains)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym466 := z.EncBinary() - _ = yym466 + yym471 := z.EncBinary() + _ = yym471 if false { } else { r.EncodeInt(int64(x.IPTablesMasqueradeBit)) @@ -3511,17 +3552,17 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iptablesMasqueradeBit")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym467 := z.EncBinary() - _ = yym467 + yym472 := z.EncBinary() + _ = yym472 if false { } else { r.EncodeInt(int64(x.IPTablesMasqueradeBit)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym469 := z.EncBinary() - _ = yym469 + yym474 := z.EncBinary() + _ = yym474 if false { } else { r.EncodeInt(int64(x.IPTablesDropBit)) @@ -3530,21 +3571,21 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iptablesDropBit")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym470 := z.EncBinary() - _ = yym470 + yym475 := z.EncBinary() + _ = yym475 if false { } else { r.EncodeInt(int64(x.IPTablesDropBit)) } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[106] { + if yyq135[106] { if x.AllowedUnsafeSysctls == nil { r.EncodeNil() } else { - yym472 := z.EncBinary() - _ = yym472 + yym477 := z.EncBinary() + _ = yym477 if false { } else { z.F.EncSliceStringV(x.AllowedUnsafeSysctls, false, e) @@ -3554,15 +3595,15 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq130[106] { + if yyq135[106] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("experimentalAllowedUnsafeSysctls")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AllowedUnsafeSysctls == nil { r.EncodeNil() } else { - yym473 := z.EncBinary() - _ = yym473 + yym478 := z.EncBinary() + _ = yym478 if false { } else { z.F.EncSliceStringV(x.AllowedUnsafeSysctls, false, e) @@ -3570,11 +3611,11 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq130[107] { - yym475 := z.EncBinary() - _ = yym475 + if yyq135[107] { + yym480 := z.EncBinary() + _ = yym480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExperimentalRuntimeIntegrationType)) @@ -3583,19 +3624,19 @@ func (x *KubeletConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq130[107] { + if yyq135[107] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("experimentalRuntimeIntegrationType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym476 := z.EncBinary() - _ = yym476 + yym481 := z.EncBinary() + _ = yym481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExperimentalRuntimeIntegrationType)) } } } - if yyr130 || yy2arr130 { + if yyr135 || yy2arr135 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -3608,25 +3649,25 @@ func (x *KubeletConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym477 := z.DecBinary() - _ = yym477 + yym482 := z.DecBinary() + _ = yym482 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct478 := r.ContainerType() - if yyct478 == codecSelferValueTypeMap1234 { - yyl478 := r.ReadMapStart() - if yyl478 == 0 { + yyct483 := r.ContainerType() + if yyct483 == codecSelferValueTypeMap1234 { + yyl483 := r.ReadMapStart() + if yyl483 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl478, d) + x.codecDecodeSelfFromMap(yyl483, d) } - } else if yyct478 == codecSelferValueTypeArray1234 { - yyl478 := r.ReadArrayStart() - if yyl478 == 0 { + } else if yyct483 == codecSelferValueTypeArray1234 { + yyl483 := r.ReadArrayStart() + if yyl483 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl478, d) + x.codecDecodeSelfFromArray(yyl483, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3638,12 +3679,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys479Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys479Slc - var yyhl479 bool = l >= 0 - for yyj479 := 0; ; yyj479++ { - if yyhl479 { - if yyj479 >= l { + var yys484Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys484Slc + var yyhl484 bool = l >= 0 + for yyj484 := 0; ; yyj484++ { + if yyhl484 { + if yyj484 >= l { break } } else { @@ -3652,10 +3693,10 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys479Slc = r.DecodeBytes(yys479Slc, true, true) - yys479 := string(yys479Slc) + yys484Slc = r.DecodeBytes(yys484Slc, true, true) + yys484 := string(yys484Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys479 { + switch yys484 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -3678,45 +3719,45 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SyncFrequency = pkg1_unversioned.Duration{} } else { - yyv483 := &x.SyncFrequency - yym484 := z.DecBinary() - _ = yym484 + yyv488 := &x.SyncFrequency + yym489 := z.DecBinary() + _ = yym489 if false { - } else if z.HasExtensions() && z.DecExt(yyv483) { - } else if !yym484 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv483) + } else if z.HasExtensions() && z.DecExt(yyv488) { + } else if !yym489 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv488) } else { - z.DecFallback(yyv483, false) + z.DecFallback(yyv488, false) } } case "fileCheckFrequency": if r.TryDecodeAsNil() { x.FileCheckFrequency = pkg1_unversioned.Duration{} } else { - yyv485 := &x.FileCheckFrequency - yym486 := z.DecBinary() - _ = yym486 + yyv490 := &x.FileCheckFrequency + yym491 := z.DecBinary() + _ = yym491 if false { - } else if z.HasExtensions() && z.DecExt(yyv485) { - } else if !yym486 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv485) + } else if z.HasExtensions() && z.DecExt(yyv490) { + } else if !yym491 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv490) } else { - z.DecFallback(yyv485, false) + z.DecFallback(yyv490, false) } } case "httpCheckFrequency": if r.TryDecodeAsNil() { x.HTTPCheckFrequency = pkg1_unversioned.Duration{} } else { - yyv487 := &x.HTTPCheckFrequency - yym488 := z.DecBinary() - _ = yym488 + yyv492 := &x.HTTPCheckFrequency + yym493 := z.DecBinary() + _ = yym493 if false { - } else if z.HasExtensions() && z.DecExt(yyv487) { - } else if !yym488 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv487) + } else if z.HasExtensions() && z.DecExt(yyv492) { + } else if !yym493 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv492) } else { - z.DecFallback(yyv487, false) + z.DecFallback(yyv492, false) } } case "manifestURL": @@ -3813,36 +3854,36 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.HostNetworkSources = nil } else { - yyv504 := &x.HostNetworkSources - yym505 := z.DecBinary() - _ = yym505 + yyv509 := &x.HostNetworkSources + yym510 := z.DecBinary() + _ = yym510 if false { } else { - z.F.DecSliceStringX(yyv504, false, d) + z.F.DecSliceStringX(yyv509, false, d) } } case "hostPIDSources": if r.TryDecodeAsNil() { x.HostPIDSources = nil } else { - yyv506 := &x.HostPIDSources - yym507 := z.DecBinary() - _ = yym507 + yyv511 := &x.HostPIDSources + yym512 := z.DecBinary() + _ = yym512 if false { } else { - z.F.DecSliceStringX(yyv506, false, d) + z.F.DecSliceStringX(yyv511, false, d) } } case "hostIPCSources": if r.TryDecodeAsNil() { x.HostIPCSources = nil } else { - yyv508 := &x.HostIPCSources - yym509 := z.DecBinary() - _ = yym509 + yyv513 := &x.HostIPCSources + yym514 := z.DecBinary() + _ = yym514 if false { } else { - z.F.DecSliceStringX(yyv508, false, d) + z.F.DecSliceStringX(yyv513, false, d) } } case "registryPullQPS": @@ -3879,15 +3920,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.MinimumGCAge = pkg1_unversioned.Duration{} } else { - yyv515 := &x.MinimumGCAge - yym516 := z.DecBinary() - _ = yym516 + yyv520 := &x.MinimumGCAge + yym521 := z.DecBinary() + _ = yym521 if false { - } else if z.HasExtensions() && z.DecExt(yyv515) { - } else if !yym516 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv515) + } else if z.HasExtensions() && z.DecExt(yyv520) { + } else if !yym521 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv520) } else { - z.DecFallback(yyv515, false) + z.DecFallback(yyv520, false) } } case "maxPerPodContainerCount": @@ -3954,45 +3995,45 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.StreamingConnectionIdleTimeout = pkg1_unversioned.Duration{} } else { - yyv527 := &x.StreamingConnectionIdleTimeout - yym528 := z.DecBinary() - _ = yym528 + yyv532 := &x.StreamingConnectionIdleTimeout + yym533 := z.DecBinary() + _ = yym533 if false { - } else if z.HasExtensions() && z.DecExt(yyv527) { - } else if !yym528 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv527) + } else if z.HasExtensions() && z.DecExt(yyv532) { + } else if !yym533 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv532) } else { - z.DecFallback(yyv527, false) + z.DecFallback(yyv532, false) } } case "nodeStatusUpdateFrequency": if r.TryDecodeAsNil() { x.NodeStatusUpdateFrequency = pkg1_unversioned.Duration{} } else { - yyv529 := &x.NodeStatusUpdateFrequency - yym530 := z.DecBinary() - _ = yym530 + yyv534 := &x.NodeStatusUpdateFrequency + yym535 := z.DecBinary() + _ = yym535 if false { - } else if z.HasExtensions() && z.DecExt(yyv529) { - } else if !yym530 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv529) + } else if z.HasExtensions() && z.DecExt(yyv534) { + } else if !yym535 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv534) } else { - z.DecFallback(yyv529, false) + z.DecFallback(yyv534, false) } } case "imageMinimumGCAge": if r.TryDecodeAsNil() { x.ImageMinimumGCAge = pkg1_unversioned.Duration{} } else { - yyv531 := &x.ImageMinimumGCAge - yym532 := z.DecBinary() - _ = yym532 + yyv536 := &x.ImageMinimumGCAge + yym537 := z.DecBinary() + _ = yym537 if false { - } else if z.HasExtensions() && z.DecExt(yyv531) { - } else if !yym532 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv531) + } else if z.HasExtensions() && z.DecExt(yyv536) { + } else if !yym537 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv536) } else { - z.DecFallback(yyv531, false) + z.DecFallback(yyv536, false) } } case "imageGCHighThresholdPercent": @@ -4017,15 +4058,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.VolumeStatsAggPeriod = pkg1_unversioned.Duration{} } else { - yyv536 := &x.VolumeStatsAggPeriod - yym537 := z.DecBinary() - _ = yym537 + yyv541 := &x.VolumeStatsAggPeriod + yym542 := z.DecBinary() + _ = yym542 if false { - } else if z.HasExtensions() && z.DecExt(yyv536) { - } else if !yym537 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv536) + } else if z.HasExtensions() && z.DecExt(yyv541) { + } else if !yym542 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv541) } else { - z.DecFallback(yyv536, false) + z.DecFallback(yyv541, false) } } case "networkPluginName": @@ -4128,15 +4169,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.RuntimeRequestTimeout = pkg1_unversioned.Duration{} } else { - yyv554 := &x.RuntimeRequestTimeout - yym555 := z.DecBinary() - _ = yym555 + yyv559 := &x.RuntimeRequestTimeout + yym560 := z.DecBinary() + _ = yym560 if false { - } else if z.HasExtensions() && z.DecExt(yyv554) { - } else if !yym555 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv554) + } else if z.HasExtensions() && z.DecExt(yyv559) { + } else if !yym560 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv559) } else { - z.DecFallback(yyv554, false) + z.DecFallback(yyv559, false) } } case "rktPath": @@ -4281,15 +4322,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.OutOfDiskTransitionFrequency = pkg1_unversioned.Duration{} } else { - yyv579 := &x.OutOfDiskTransitionFrequency - yym580 := z.DecBinary() - _ = yym580 + yyv584 := &x.OutOfDiskTransitionFrequency + yym585 := z.DecBinary() + _ = yym585 if false { - } else if z.HasExtensions() && z.DecExt(yyv579) { - } else if !yym580 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv579) + } else if z.HasExtensions() && z.DecExt(yyv584) { + } else if !yym585 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv584) } else { - z.DecFallback(yyv579, false) + z.DecFallback(yyv584, false) } } case "nodeIP": @@ -4302,12 +4343,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.NodeLabels = nil } else { - yyv582 := &x.NodeLabels - yym583 := z.DecBinary() - _ = yym583 + yyv587 := &x.NodeLabels + yym588 := z.DecBinary() + _ = yym588 if false { } else { - z.F.DecMapStringStringX(yyv582, false, d) + z.F.DecMapStringStringX(yyv587, false, d) } } case "nonMasqueradeCIDR": @@ -4344,15 +4385,15 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.EvictionPressureTransitionPeriod = pkg1_unversioned.Duration{} } else { - yyv589 := &x.EvictionPressureTransitionPeriod - yym590 := z.DecBinary() - _ = yym590 + yyv594 := &x.EvictionPressureTransitionPeriod + yym595 := z.DecBinary() + _ = yym595 if false { - } else if z.HasExtensions() && z.DecExt(yyv589) { - } else if !yym590 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv589) + } else if z.HasExtensions() && z.DecExt(yyv594) { + } else if !yym595 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv594) } else { - z.DecFallback(yyv589, false) + z.DecFallback(yyv594, false) } } case "evictionMaxPodGracePeriod": @@ -4383,26 +4424,26 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SystemReserved = nil } else { - yyv595 := &x.SystemReserved - yym596 := z.DecBinary() - _ = yym596 + yyv600 := &x.SystemReserved + yym601 := z.DecBinary() + _ = yym601 if false { - } else if z.HasExtensions() && z.DecExt(yyv595) { + } else if z.HasExtensions() && z.DecExt(yyv600) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv595), d) + h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv600), d) } } case "kubeReserved": if r.TryDecodeAsNil() { x.KubeReserved = nil } else { - yyv597 := &x.KubeReserved - yym598 := z.DecBinary() - _ = yym598 + yyv602 := &x.KubeReserved + yym603 := z.DecBinary() + _ = yym603 if false { - } else if z.HasExtensions() && z.DecExt(yyv597) { + } else if z.HasExtensions() && z.DecExt(yyv602) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv597), d) + h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv602), d) } } case "protectKernelDefaults": @@ -4433,12 +4474,12 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.AllowedUnsafeSysctls = nil } else { - yyv603 := &x.AllowedUnsafeSysctls - yym604 := z.DecBinary() - _ = yym604 + yyv608 := &x.AllowedUnsafeSysctls + yym609 := z.DecBinary() + _ = yym609 if false { } else { - z.F.DecSliceStringX(yyv603, false, d) + z.F.DecSliceStringX(yyv608, false, d) } } case "experimentalRuntimeIntegrationType": @@ -4448,9 +4489,9 @@ func (x *KubeletConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.ExperimentalRuntimeIntegrationType = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys479) - } // end switch yys479 - } // end for yyj479 + z.DecStructFieldNotFound(-1, yys484) + } // end switch yys484 + } // end for yyj484 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4458,16 +4499,16 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj606 int - var yyb606 bool - var yyhl606 bool = l >= 0 - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + var yyj611 int + var yyb611 bool + var yyhl611 bool = l >= 0 + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4477,13 +4518,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4493,13 +4534,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4509,13 +4550,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodManifestPath = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4523,24 +4564,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.SyncFrequency = pkg1_unversioned.Duration{} } else { - yyv610 := &x.SyncFrequency - yym611 := z.DecBinary() - _ = yym611 + yyv615 := &x.SyncFrequency + yym616 := z.DecBinary() + _ = yym616 if false { - } else if z.HasExtensions() && z.DecExt(yyv610) { - } else if !yym611 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv610) + } else if z.HasExtensions() && z.DecExt(yyv615) { + } else if !yym616 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv615) } else { - z.DecFallback(yyv610, false) + z.DecFallback(yyv615, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4548,24 +4589,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.FileCheckFrequency = pkg1_unversioned.Duration{} } else { - yyv612 := &x.FileCheckFrequency - yym613 := z.DecBinary() - _ = yym613 + yyv617 := &x.FileCheckFrequency + yym618 := z.DecBinary() + _ = yym618 if false { - } else if z.HasExtensions() && z.DecExt(yyv612) { - } else if !yym613 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv612) + } else if z.HasExtensions() && z.DecExt(yyv617) { + } else if !yym618 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv617) } else { - z.DecFallback(yyv612, false) + z.DecFallback(yyv617, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4573,24 +4614,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HTTPCheckFrequency = pkg1_unversioned.Duration{} } else { - yyv614 := &x.HTTPCheckFrequency - yym615 := z.DecBinary() - _ = yym615 + yyv619 := &x.HTTPCheckFrequency + yym620 := z.DecBinary() + _ = yym620 if false { - } else if z.HasExtensions() && z.DecExt(yyv614) { - } else if !yym615 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv614) + } else if z.HasExtensions() && z.DecExt(yyv619) { + } else if !yym620 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv619) } else { - z.DecFallback(yyv614, false) + z.DecFallback(yyv619, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4600,13 +4641,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ManifestURL = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4616,13 +4657,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ManifestURLHeader = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4632,13 +4673,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableServer = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4648,13 +4689,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Address = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4664,13 +4705,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Port = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4680,13 +4721,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ReadOnlyPort = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4696,13 +4737,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.TLSCertFile = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4712,13 +4753,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.TLSPrivateKeyFile = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4728,13 +4769,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CertDirectory = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4744,13 +4785,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HostnameOverride = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4760,13 +4801,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodInfraContainerImage = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4776,13 +4817,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.DockerEndpoint = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4792,13 +4833,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RootDirectory = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4808,13 +4849,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SeccompProfileRoot = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4824,13 +4865,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.AllowPrivileged = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4838,21 +4879,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostNetworkSources = nil } else { - yyv631 := &x.HostNetworkSources - yym632 := z.DecBinary() - _ = yym632 + yyv636 := &x.HostNetworkSources + yym637 := z.DecBinary() + _ = yym637 if false { } else { - z.F.DecSliceStringX(yyv631, false, d) + z.F.DecSliceStringX(yyv636, false, d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4860,21 +4901,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostPIDSources = nil } else { - yyv633 := &x.HostPIDSources - yym634 := z.DecBinary() - _ = yym634 + yyv638 := &x.HostPIDSources + yym639 := z.DecBinary() + _ = yym639 if false { } else { - z.F.DecSliceStringX(yyv633, false, d) + z.F.DecSliceStringX(yyv638, false, d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4882,21 +4923,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.HostIPCSources = nil } else { - yyv635 := &x.HostIPCSources - yym636 := z.DecBinary() - _ = yym636 + yyv640 := &x.HostIPCSources + yym641 := z.DecBinary() + _ = yym641 if false { } else { - z.F.DecSliceStringX(yyv635, false, d) + z.F.DecSliceStringX(yyv640, false, d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4906,13 +4947,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegistryPullQPS = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4922,13 +4963,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegistryBurst = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4938,13 +4979,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EventRecordQPS = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4954,13 +4995,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EventBurst = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4970,13 +5011,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableDebuggingHandlers = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4984,24 +5025,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.MinimumGCAge = pkg1_unversioned.Duration{} } else { - yyv642 := &x.MinimumGCAge - yym643 := z.DecBinary() - _ = yym643 + yyv647 := &x.MinimumGCAge + yym648 := z.DecBinary() + _ = yym648 if false { - } else if z.HasExtensions() && z.DecExt(yyv642) { - } else if !yym643 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv642) + } else if z.HasExtensions() && z.DecExt(yyv647) { + } else if !yym648 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv647) } else { - z.DecFallback(yyv642, false) + z.DecFallback(yyv647, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5011,13 +5052,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxPerPodContainerCount = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5027,13 +5068,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxContainerCount = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5043,13 +5084,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CAdvisorPort = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5059,13 +5100,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HealthzPort = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5075,13 +5116,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HealthzBindAddress = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5091,13 +5132,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.OOMScoreAdj = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5107,13 +5148,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegisterNode = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5123,13 +5164,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ClusterDomain = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5139,13 +5180,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MasterServiceNamespace = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5155,13 +5196,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ClusterDNS = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5169,24 +5210,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.StreamingConnectionIdleTimeout = pkg1_unversioned.Duration{} } else { - yyv654 := &x.StreamingConnectionIdleTimeout - yym655 := z.DecBinary() - _ = yym655 + yyv659 := &x.StreamingConnectionIdleTimeout + yym660 := z.DecBinary() + _ = yym660 if false { - } else if z.HasExtensions() && z.DecExt(yyv654) { - } else if !yym655 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv654) + } else if z.HasExtensions() && z.DecExt(yyv659) { + } else if !yym660 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv659) } else { - z.DecFallback(yyv654, false) + z.DecFallback(yyv659, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5194,24 +5235,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.NodeStatusUpdateFrequency = pkg1_unversioned.Duration{} } else { - yyv656 := &x.NodeStatusUpdateFrequency - yym657 := z.DecBinary() - _ = yym657 + yyv661 := &x.NodeStatusUpdateFrequency + yym662 := z.DecBinary() + _ = yym662 if false { - } else if z.HasExtensions() && z.DecExt(yyv656) { - } else if !yym657 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv656) + } else if z.HasExtensions() && z.DecExt(yyv661) { + } else if !yym662 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv661) } else { - z.DecFallback(yyv656, false) + z.DecFallback(yyv661, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5219,80 +5260,7 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ImageMinimumGCAge = pkg1_unversioned.Duration{} } else { - yyv658 := &x.ImageMinimumGCAge - yym659 := z.DecBinary() - _ = yym659 - if false { - } else if z.HasExtensions() && z.DecExt(yyv658) { - } else if !yym659 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv658) - } else { - z.DecFallback(yyv658, false) - } - } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l - } else { - yyb606 = r.CheckBreak() - } - if yyb606 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ImageGCHighThresholdPercent = 0 - } else { - x.ImageGCHighThresholdPercent = int32(r.DecodeInt(32)) - } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l - } else { - yyb606 = r.CheckBreak() - } - if yyb606 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ImageGCLowThresholdPercent = 0 - } else { - x.ImageGCLowThresholdPercent = int32(r.DecodeInt(32)) - } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l - } else { - yyb606 = r.CheckBreak() - } - if yyb606 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LowDiskSpaceThresholdMB = 0 - } else { - x.LowDiskSpaceThresholdMB = int32(r.DecodeInt(32)) - } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l - } else { - yyb606 = r.CheckBreak() - } - if yyb606 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.VolumeStatsAggPeriod = pkg1_unversioned.Duration{} - } else { - yyv663 := &x.VolumeStatsAggPeriod + yyv663 := &x.ImageMinimumGCAge yym664 := z.DecBinary() _ = yym664 if false { @@ -5303,13 +5271,86 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco z.DecFallback(yyv663, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ImageGCHighThresholdPercent = 0 + } else { + x.ImageGCHighThresholdPercent = int32(r.DecodeInt(32)) + } + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l + } else { + yyb611 = r.CheckBreak() + } + if yyb611 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ImageGCLowThresholdPercent = 0 + } else { + x.ImageGCLowThresholdPercent = int32(r.DecodeInt(32)) + } + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l + } else { + yyb611 = r.CheckBreak() + } + if yyb611 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LowDiskSpaceThresholdMB = 0 + } else { + x.LowDiskSpaceThresholdMB = int32(r.DecodeInt(32)) + } + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l + } else { + yyb611 = r.CheckBreak() + } + if yyb611 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.VolumeStatsAggPeriod = pkg1_unversioned.Duration{} + } else { + yyv668 := &x.VolumeStatsAggPeriod + yym669 := z.DecBinary() + _ = yym669 + if false { + } else if z.HasExtensions() && z.DecExt(yyv668) { + } else if !yym669 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv668) + } else { + z.DecFallback(yyv668, false) + } + } + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l + } else { + yyb611 = r.CheckBreak() + } + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5319,13 +5360,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginName = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5335,13 +5376,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginMTU = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5351,13 +5392,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NetworkPluginDir = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5367,13 +5408,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CNIConfDir = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5383,13 +5424,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CNIBinDir = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5399,13 +5440,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.VolumePluginDir = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5415,13 +5456,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CloudProvider = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5431,13 +5472,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CloudConfigFile = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5447,13 +5488,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeletCgroups = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5463,13 +5504,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CgroupsPerQOS = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5479,13 +5520,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RuntimeCgroups = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5495,13 +5536,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SystemCgroups = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5511,13 +5552,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CgroupRoot = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5527,13 +5568,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ContainerRuntime = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5543,13 +5584,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RemoteRuntimeEndpoint = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5559,13 +5600,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RemoteImageEndpoint = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5573,24 +5614,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.RuntimeRequestTimeout = pkg1_unversioned.Duration{} } else { - yyv681 := &x.RuntimeRequestTimeout - yym682 := z.DecBinary() - _ = yym682 + yyv686 := &x.RuntimeRequestTimeout + yym687 := z.DecBinary() + _ = yym687 if false { - } else if z.HasExtensions() && z.DecExt(yyv681) { - } else if !yym682 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv681) + } else if z.HasExtensions() && z.DecExt(yyv686) { + } else if !yym687 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv686) } else { - z.DecFallback(yyv681, false) + z.DecFallback(yyv686, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5600,13 +5641,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktPath = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5616,13 +5657,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktAPIEndpoint = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5632,13 +5673,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RktStage1Image = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5648,13 +5689,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.LockFilePath = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5664,13 +5705,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExitOnLockContention = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5680,13 +5721,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ConfigureCBR0 = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5696,13 +5737,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.HairpinMode = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5712,13 +5753,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.BabysitDaemons = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5728,13 +5769,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxPods = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5744,13 +5785,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NvidiaGPUs = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5760,13 +5801,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.DockerExecHandlerName = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5776,13 +5817,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodCIDR = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5792,13 +5833,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ResolverConfig = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5808,13 +5849,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.CPUCFSQuota = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5824,13 +5865,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Containerized = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5840,13 +5881,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MaxOpenFiles = int64(r.DecodeInt(64)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5856,13 +5897,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ReconcileCIDR = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5872,13 +5913,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.RegisterSchedulable = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5888,13 +5929,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ContentType = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5904,13 +5945,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeAPIQPS = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5920,13 +5961,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5936,13 +5977,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.SerializeImagePulls = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5952,13 +5993,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ExperimentalFlannelOverlay = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5966,24 +6007,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.OutOfDiskTransitionFrequency = pkg1_unversioned.Duration{} } else { - yyv706 := &x.OutOfDiskTransitionFrequency - yym707 := z.DecBinary() - _ = yym707 + yyv711 := &x.OutOfDiskTransitionFrequency + yym712 := z.DecBinary() + _ = yym712 if false { - } else if z.HasExtensions() && z.DecExt(yyv706) { - } else if !yym707 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv706) + } else if z.HasExtensions() && z.DecExt(yyv711) { + } else if !yym712 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv711) } else { - z.DecFallback(yyv706, false) + z.DecFallback(yyv711, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5993,13 +6034,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NodeIP = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6007,21 +6048,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.NodeLabels = nil } else { - yyv709 := &x.NodeLabels - yym710 := z.DecBinary() - _ = yym710 + yyv714 := &x.NodeLabels + yym715 := z.DecBinary() + _ = yym715 if false { } else { - z.F.DecMapStringStringX(yyv709, false, d) + z.F.DecMapStringStringX(yyv714, false, d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6031,13 +6072,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.NonMasqueradeCIDR = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6047,13 +6088,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableCustomMetrics = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6063,13 +6104,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionHard = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6079,13 +6120,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionSoft = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6095,13 +6136,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionSoftGracePeriod = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6109,24 +6150,24 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionPressureTransitionPeriod = pkg1_unversioned.Duration{} } else { - yyv716 := &x.EvictionPressureTransitionPeriod - yym717 := z.DecBinary() - _ = yym717 + yyv721 := &x.EvictionPressureTransitionPeriod + yym722 := z.DecBinary() + _ = yym722 if false { - } else if z.HasExtensions() && z.DecExt(yyv716) { - } else if !yym717 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv716) + } else if z.HasExtensions() && z.DecExt(yyv721) { + } else if !yym722 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv721) } else { - z.DecFallback(yyv716, false) + z.DecFallback(yyv721, false) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6136,13 +6177,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionMaxPodGracePeriod = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6152,13 +6193,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EvictionMinimumReclaim = string(r.DecodeString()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6168,13 +6209,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.PodsPerCore = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6184,13 +6225,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.EnableControllerAttachDetach = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6198,22 +6239,22 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.SystemReserved = nil } else { - yyv722 := &x.SystemReserved - yym723 := z.DecBinary() - _ = yym723 + yyv727 := &x.SystemReserved + yym728 := z.DecBinary() + _ = yym728 if false { - } else if z.HasExtensions() && z.DecExt(yyv722) { + } else if z.HasExtensions() && z.DecExt(yyv727) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv722), d) + h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv727), d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6221,22 +6262,22 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.KubeReserved = nil } else { - yyv724 := &x.KubeReserved - yym725 := z.DecBinary() - _ = yym725 + yyv729 := &x.KubeReserved + yym730 := z.DecBinary() + _ = yym730 if false { - } else if z.HasExtensions() && z.DecExt(yyv724) { + } else if z.HasExtensions() && z.DecExt(yyv729) { } else { - h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv724), d) + h.decconfig_ConfigurationMap((*pkg2_config.ConfigurationMap)(yyv729), d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6246,13 +6287,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.ProtectKernelDefaults = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6262,13 +6303,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.MakeIPTablesUtilChains = bool(r.DecodeBool()) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6278,13 +6319,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.IPTablesMasqueradeBit = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6294,13 +6335,13 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.IPTablesDropBit = int32(r.DecodeInt(32)) } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6308,21 +6349,21 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AllowedUnsafeSysctls = nil } else { - yyv730 := &x.AllowedUnsafeSysctls - yym731 := z.DecBinary() - _ = yym731 + yyv735 := &x.AllowedUnsafeSysctls + yym736 := z.DecBinary() + _ = yym736 if false { } else { - z.F.DecSliceStringX(yyv730, false, d) + z.F.DecSliceStringX(yyv735, false, d) } } - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6333,17 +6374,17 @@ func (x *KubeletConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.ExperimentalRuntimeIntegrationType = string(r.DecodeString()) } for { - yyj606++ - if yyhl606 { - yyb606 = yyj606 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb606 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb606 { + if yyb611 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj606-1, "") + z.DecStructFieldNotFound(yyj611-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -6355,36 +6396,36 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym733 := z.EncBinary() - _ = yym733 + yym738 := z.EncBinary() + _ = yym738 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep734 := !z.EncBinary() - yy2arr734 := z.EncBasicHandle().StructToArray - var yyq734 [14]bool - _, _, _ = yysep734, yyq734, yy2arr734 - const yyr734 bool = false - yyq734[0] = x.Kind != "" - yyq734[1] = x.APIVersion != "" - var yynn734 int - if yyr734 || yy2arr734 { + yysep739 := !z.EncBinary() + yy2arr739 := z.EncBasicHandle().StructToArray + var yyq739 [14]bool + _, _, _ = yysep739, yyq739, yy2arr739 + const yyr739 bool = false + yyq739[0] = x.Kind != "" + yyq739[1] = x.APIVersion != "" + var yynn739 int + if yyr739 || yy2arr739 { r.EncodeArrayStart(14) } else { - yynn734 = 12 - for _, b := range yyq734 { + yynn739 = 12 + for _, b := range yyq739 { if b { - yynn734++ + yynn739++ } } - r.EncodeMapStart(yynn734) - yynn734 = 0 + r.EncodeMapStart(yynn739) + yynn739 = 0 } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq734[0] { - yym736 := z.EncBinary() - _ = yym736 + if yyq739[0] { + yym741 := z.EncBinary() + _ = yym741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -6393,23 +6434,23 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq734[0] { + if yyq739[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym737 := z.EncBinary() - _ = yym737 + yym742 := z.EncBinary() + _ = yym742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq734[1] { - yym739 := z.EncBinary() - _ = yym739 + if yyq739[1] { + yym744 := z.EncBinary() + _ = yym744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -6418,22 +6459,22 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq734[1] { + if yyq739[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym740 := z.EncBinary() - _ = yym740 + yym745 := z.EncBinary() + _ = yym745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym742 := z.EncBinary() - _ = yym742 + yym747 := z.EncBinary() + _ = yym747 if false { } else { r.EncodeInt(int64(x.Port)) @@ -6442,17 +6483,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym743 := z.EncBinary() - _ = yym743 + yym748 := z.EncBinary() + _ = yym748 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym745 := z.EncBinary() - _ = yym745 + yym750 := z.EncBinary() + _ = yym750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -6461,17 +6502,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym746 := z.EncBinary() - _ = yym746 + yym751 := z.EncBinary() + _ = yym751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym748 := z.EncBinary() - _ = yym748 + yym753 := z.EncBinary() + _ = yym753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.AlgorithmProvider)) @@ -6480,17 +6521,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("algorithmProvider")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym749 := z.EncBinary() - _ = yym749 + yym754 := z.EncBinary() + _ = yym754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.AlgorithmProvider)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym751 := z.EncBinary() - _ = yym751 + yym756 := z.EncBinary() + _ = yym756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PolicyConfigFile)) @@ -6499,17 +6540,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("policyConfigFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym752 := z.EncBinary() - _ = yym752 + yym757 := z.EncBinary() + _ = yym757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PolicyConfigFile)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym754 := z.EncBinary() - _ = yym754 + yym759 := z.EncBinary() + _ = yym759 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) @@ -6518,17 +6559,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableProfiling")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym755 := z.EncBinary() - _ = yym755 + yym760 := z.EncBinary() + _ = yym760 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym757 := z.EncBinary() - _ = yym757 + yym762 := z.EncBinary() + _ = yym762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) @@ -6537,17 +6578,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym758 := z.EncBinary() - _ = yym758 + yym763 := z.EncBinary() + _ = yym763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym760 := z.EncBinary() - _ = yym760 + yym765 := z.EncBinary() + _ = yym765 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) @@ -6556,17 +6597,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym761 := z.EncBinary() - _ = yym761 + yym766 := z.EncBinary() + _ = yym766 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym763 := z.EncBinary() - _ = yym763 + yym768 := z.EncBinary() + _ = yym768 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) @@ -6575,17 +6616,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym764 := z.EncBinary() - _ = yym764 + yym769 := z.EncBinary() + _ = yym769 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym766 := z.EncBinary() - _ = yym766 + yym771 := z.EncBinary() + _ = yym771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SchedulerName)) @@ -6594,17 +6635,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("schedulerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym767 := z.EncBinary() - _ = yym767 + yym772 := z.EncBinary() + _ = yym772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SchedulerName)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym769 := z.EncBinary() - _ = yym769 + yym774 := z.EncBinary() + _ = yym774 if false { } else { r.EncodeInt(int64(x.HardPodAffinitySymmetricWeight)) @@ -6613,17 +6654,17 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hardPodAffinitySymmetricWeight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym770 := z.EncBinary() - _ = yym770 + yym775 := z.EncBinary() + _ = yym775 if false { } else { r.EncodeInt(int64(x.HardPodAffinitySymmetricWeight)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym772 := z.EncBinary() - _ = yym772 + yym777 := z.EncBinary() + _ = yym777 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FailureDomains)) @@ -6632,25 +6673,25 @@ func (x *KubeSchedulerConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureDomains")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym773 := z.EncBinary() - _ = yym773 + yym778 := z.EncBinary() + _ = yym778 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FailureDomains)) } } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy775 := &x.LeaderElection - yy775.CodecEncodeSelf(e) + yy780 := &x.LeaderElection + yy780.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElection")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy776 := &x.LeaderElection - yy776.CodecEncodeSelf(e) + yy781 := &x.LeaderElection + yy781.CodecEncodeSelf(e) } - if yyr734 || yy2arr734 { + if yyr739 || yy2arr739 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6663,25 +6704,25 @@ func (x *KubeSchedulerConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym777 := z.DecBinary() - _ = yym777 + yym782 := z.DecBinary() + _ = yym782 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct778 := r.ContainerType() - if yyct778 == codecSelferValueTypeMap1234 { - yyl778 := r.ReadMapStart() - if yyl778 == 0 { + yyct783 := r.ContainerType() + if yyct783 == codecSelferValueTypeMap1234 { + yyl783 := r.ReadMapStart() + if yyl783 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl778, d) + x.codecDecodeSelfFromMap(yyl783, d) } - } else if yyct778 == codecSelferValueTypeArray1234 { - yyl778 := r.ReadArrayStart() - if yyl778 == 0 { + } else if yyct783 == codecSelferValueTypeArray1234 { + yyl783 := r.ReadArrayStart() + if yyl783 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl778, d) + x.codecDecodeSelfFromArray(yyl783, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6693,12 +6734,12 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys779Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys779Slc - var yyhl779 bool = l >= 0 - for yyj779 := 0; ; yyj779++ { - if yyhl779 { - if yyj779 >= l { + var yys784Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys784Slc + var yyhl784 bool = l >= 0 + for yyj784 := 0; ; yyj784++ { + if yyhl784 { + if yyj784 >= l { break } } else { @@ -6707,10 +6748,10 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys779Slc = r.DecodeBytes(yys779Slc, true, true) - yys779 := string(yys779Slc) + yys784Slc = r.DecodeBytes(yys784Slc, true, true) + yys784 := string(yys784Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys779 { + switch yys784 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -6793,13 +6834,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromMap(l int, d *codec1978. if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv793 := &x.LeaderElection - yyv793.CodecDecodeSelf(d) + yyv798 := &x.LeaderElection + yyv798.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys779) - } // end switch yys779 - } // end for yyj779 + z.DecStructFieldNotFound(-1, yys784) + } // end switch yys784 + } // end for yyj784 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6807,16 +6848,16 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 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 yyj799 int + var yyb799 bool + var yyhl799 bool = l >= 0 + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6826,13 +6867,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Kind = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6842,13 +6883,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.APIVersion = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6858,13 +6899,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Port = int32(r.DecodeInt(32)) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6874,13 +6915,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.Address = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6890,13 +6931,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.AlgorithmProvider = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6906,13 +6947,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.PolicyConfigFile = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6922,13 +6963,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.EnableProfiling = bool(r.DecodeBool()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6938,13 +6979,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.ContentType = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6954,13 +6995,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.KubeAPIQPS = float32(r.DecodeFloat(true)) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6970,13 +7011,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6986,13 +7027,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.SchedulerName = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7002,13 +7043,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.HardPodAffinitySymmetricWeight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7018,13 +7059,13 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 } else { x.FailureDomains = string(r.DecodeString()) } - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7032,21 +7073,21 @@ func (x *KubeSchedulerConfiguration) codecDecodeSelfFromArray(l int, d *codec197 if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv808 := &x.LeaderElection - yyv808.CodecDecodeSelf(d) + yyv813 := &x.LeaderElection + yyv813.CodecDecodeSelf(d) } for { - yyj794++ - if yyhl794 { - yyb794 = yyj794 > l + yyj799++ + if yyhl799 { + yyb799 = yyj799 > l } else { - yyb794 = r.CheckBreak() + yyb799 = r.CheckBreak() } - if yyb794 { + if yyb799 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj794-1, "") + z.DecStructFieldNotFound(yyj799-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7058,33 +7099,33 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym809 := z.EncBinary() - _ = yym809 + yym814 := z.EncBinary() + _ = yym814 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep810 := !z.EncBinary() - yy2arr810 := z.EncBasicHandle().StructToArray - var yyq810 [4]bool - _, _, _ = yysep810, yyq810, yy2arr810 - const yyr810 bool = false - var yynn810 int - if yyr810 || yy2arr810 { + yysep815 := !z.EncBinary() + yy2arr815 := z.EncBasicHandle().StructToArray + var yyq815 [4]bool + _, _, _ = yysep815, yyq815, yy2arr815 + const yyr815 bool = false + var yynn815 int + if yyr815 || yy2arr815 { r.EncodeArrayStart(4) } else { - yynn810 = 4 - for _, b := range yyq810 { + yynn815 = 4 + for _, b := range yyq815 { if b { - yynn810++ + yynn815++ } } - r.EncodeMapStart(yynn810) - yynn810 = 0 + r.EncodeMapStart(yynn815) + yynn815 = 0 } - if yyr810 || yy2arr810 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym812 := z.EncBinary() - _ = yym812 + yym817 := z.EncBinary() + _ = yym817 if false { } else { r.EncodeBool(bool(x.LeaderElect)) @@ -7093,43 +7134,16 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym813 := z.EncBinary() - _ = yym813 + yym818 := z.EncBinary() + _ = yym818 if false { } else { r.EncodeBool(bool(x.LeaderElect)) } } - if yyr810 || yy2arr810 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy815 := &x.LeaseDuration - yym816 := z.EncBinary() - _ = yym816 - if false { - } else if z.HasExtensions() && z.EncExt(yy815) { - } else if !yym816 && z.IsJSONHandle() { - z.EncJSONMarshal(yy815) - } else { - z.EncFallback(yy815) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("leaseDuration")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy817 := &x.LeaseDuration - yym818 := z.EncBinary() - _ = yym818 - if false { - } else if z.HasExtensions() && z.EncExt(yy817) { - } else if !yym818 && z.IsJSONHandle() { - z.EncJSONMarshal(yy817) - } else { - z.EncFallback(yy817) - } - } - if yyr810 || yy2arr810 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy820 := &x.RenewDeadline + yy820 := &x.LeaseDuration yym821 := z.EncBinary() _ = yym821 if false { @@ -7141,9 +7155,9 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("renewDeadline")) + r.EncodeString(codecSelferC_UTF81234, string("leaseDuration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy822 := &x.RenewDeadline + yy822 := &x.LeaseDuration yym823 := z.EncBinary() _ = yym823 if false { @@ -7154,9 +7168,9 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy822) } } - if yyr810 || yy2arr810 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy825 := &x.RetryPeriod + yy825 := &x.RenewDeadline yym826 := z.EncBinary() _ = yym826 if false { @@ -7168,9 +7182,9 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("retryPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("renewDeadline")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy827 := &x.RetryPeriod + yy827 := &x.RenewDeadline yym828 := z.EncBinary() _ = yym828 if false { @@ -7181,7 +7195,34 @@ func (x *LeaderElectionConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncFallback(yy827) } } - if yyr810 || yy2arr810 { + if yyr815 || yy2arr815 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy830 := &x.RetryPeriod + yym831 := z.EncBinary() + _ = yym831 + if false { + } else if z.HasExtensions() && z.EncExt(yy830) { + } else if !yym831 && z.IsJSONHandle() { + z.EncJSONMarshal(yy830) + } else { + z.EncFallback(yy830) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("retryPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy832 := &x.RetryPeriod + yym833 := z.EncBinary() + _ = yym833 + if false { + } else if z.HasExtensions() && z.EncExt(yy832) { + } else if !yym833 && z.IsJSONHandle() { + z.EncJSONMarshal(yy832) + } else { + z.EncFallback(yy832) + } + } + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7194,25 +7235,25 @@ func (x *LeaderElectionConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym829 := z.DecBinary() - _ = yym829 + yym834 := z.DecBinary() + _ = yym834 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct830 := r.ContainerType() - if yyct830 == codecSelferValueTypeMap1234 { - yyl830 := r.ReadMapStart() - if yyl830 == 0 { + yyct835 := r.ContainerType() + if yyct835 == codecSelferValueTypeMap1234 { + yyl835 := r.ReadMapStart() + if yyl835 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl830, d) + x.codecDecodeSelfFromMap(yyl835, d) } - } else if yyct830 == codecSelferValueTypeArray1234 { - yyl830 := r.ReadArrayStart() - if yyl830 == 0 { + } else if yyct835 == codecSelferValueTypeArray1234 { + yyl835 := r.ReadArrayStart() + if yyl835 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl830, d) + x.codecDecodeSelfFromArray(yyl835, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7224,12 +7265,12 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys831Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys831Slc - var yyhl831 bool = l >= 0 - for yyj831 := 0; ; yyj831++ { - if yyhl831 { - if yyj831 >= l { + var yys836Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys836Slc + var yyhl836 bool = l >= 0 + for yyj836 := 0; ; yyj836++ { + if yyhl836 { + if yyj836 >= l { break } } else { @@ -7238,10 +7279,10 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys831Slc = r.DecodeBytes(yys831Slc, true, true) - yys831 := string(yys831Slc) + yys836Slc = r.DecodeBytes(yys836Slc, true, true) + yys836 := string(yys836Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys831 { + switch yys836 { case "leaderElect": if r.TryDecodeAsNil() { x.LeaderElect = false @@ -7252,51 +7293,51 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.LeaseDuration = pkg1_unversioned.Duration{} } else { - yyv833 := &x.LeaseDuration - yym834 := z.DecBinary() - _ = yym834 + yyv838 := &x.LeaseDuration + yym839 := z.DecBinary() + _ = yym839 if false { - } else if z.HasExtensions() && z.DecExt(yyv833) { - } else if !yym834 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv833) + } else if z.HasExtensions() && z.DecExt(yyv838) { + } else if !yym839 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv838) } else { - z.DecFallback(yyv833, false) + z.DecFallback(yyv838, false) } } case "renewDeadline": if r.TryDecodeAsNil() { x.RenewDeadline = pkg1_unversioned.Duration{} } else { - yyv835 := &x.RenewDeadline - yym836 := z.DecBinary() - _ = yym836 + yyv840 := &x.RenewDeadline + yym841 := z.DecBinary() + _ = yym841 if false { - } else if z.HasExtensions() && z.DecExt(yyv835) { - } else if !yym836 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv835) + } else if z.HasExtensions() && z.DecExt(yyv840) { + } else if !yym841 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv840) } else { - z.DecFallback(yyv835, false) + z.DecFallback(yyv840, false) } } case "retryPeriod": if r.TryDecodeAsNil() { x.RetryPeriod = pkg1_unversioned.Duration{} } else { - yyv837 := &x.RetryPeriod - yym838 := z.DecBinary() - _ = yym838 + yyv842 := &x.RetryPeriod + yym843 := z.DecBinary() + _ = yym843 if false { - } else if z.HasExtensions() && z.DecExt(yyv837) { - } else if !yym838 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv837) + } else if z.HasExtensions() && z.DecExt(yyv842) { + } else if !yym843 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv842) } else { - z.DecFallback(yyv837, false) + z.DecFallback(yyv842, false) } } default: - z.DecStructFieldNotFound(-1, yys831) - } // end switch yys831 - } // end for yyj831 + z.DecStructFieldNotFound(-1, yys836) + } // end switch yys836 + } // end for yyj836 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7304,16 +7345,16 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj839 int - var yyb839 bool - var yyhl839 bool = l >= 0 - yyj839++ - if yyhl839 { - yyb839 = yyj839 > l + var yyj844 int + var yyb844 bool + var yyhl844 bool = l >= 0 + yyj844++ + if yyhl844 { + yyb844 = yyj844 > l } else { - yyb839 = r.CheckBreak() + yyb844 = r.CheckBreak() } - if yyb839 { + if yyb844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7323,13 +7364,13 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 } else { x.LeaderElect = bool(r.DecodeBool()) } - yyj839++ - if yyhl839 { - yyb839 = yyj839 > l + yyj844++ + if yyhl844 { + yyb844 = yyj844 > l } else { - yyb839 = r.CheckBreak() + yyb844 = r.CheckBreak() } - if yyb839 { + if yyb844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7337,24 +7378,24 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.LeaseDuration = pkg1_unversioned.Duration{} } else { - yyv841 := &x.LeaseDuration - yym842 := z.DecBinary() - _ = yym842 + yyv846 := &x.LeaseDuration + yym847 := z.DecBinary() + _ = yym847 if false { - } else if z.HasExtensions() && z.DecExt(yyv841) { - } else if !yym842 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv841) + } else if z.HasExtensions() && z.DecExt(yyv846) { + } else if !yym847 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv846) } else { - z.DecFallback(yyv841, false) + z.DecFallback(yyv846, false) } } - yyj839++ - if yyhl839 { - yyb839 = yyj839 > l + yyj844++ + if yyhl844 { + yyb844 = yyj844 > l } else { - yyb839 = r.CheckBreak() + yyb844 = r.CheckBreak() } - if yyb839 { + if yyb844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7362,24 +7403,24 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.RenewDeadline = pkg1_unversioned.Duration{} } else { - yyv843 := &x.RenewDeadline - yym844 := z.DecBinary() - _ = yym844 + yyv848 := &x.RenewDeadline + yym849 := z.DecBinary() + _ = yym849 if false { - } else if z.HasExtensions() && z.DecExt(yyv843) { - } else if !yym844 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv843) + } else if z.HasExtensions() && z.DecExt(yyv848) { + } else if !yym849 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv848) } else { - z.DecFallback(yyv843, false) + z.DecFallback(yyv848, false) } } - yyj839++ - if yyhl839 { - yyb839 = yyj839 > l + yyj844++ + if yyhl844 { + yyb844 = yyj844 > l } else { - yyb839 = r.CheckBreak() + yyb844 = r.CheckBreak() } - if yyb839 { + if yyb844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7387,29 +7428,29 @@ func (x *LeaderElectionConfiguration) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.RetryPeriod = pkg1_unversioned.Duration{} } else { - yyv845 := &x.RetryPeriod - yym846 := z.DecBinary() - _ = yym846 + yyv850 := &x.RetryPeriod + yym851 := z.DecBinary() + _ = yym851 if false { - } else if z.HasExtensions() && z.DecExt(yyv845) { - } else if !yym846 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv845) + } else if z.HasExtensions() && z.DecExt(yyv850) { + } else if !yym851 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv850) } else { - z.DecFallback(yyv845, false) + z.DecFallback(yyv850, false) } } for { - yyj839++ - if yyhl839 { - yyb839 = yyj839 > l + yyj844++ + if yyhl844 { + yyb844 = yyj844 > l } else { - yyb839 = r.CheckBreak() + yyb844 = r.CheckBreak() } - if yyb839 { + if yyb844 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj839-1, "") + z.DecStructFieldNotFound(yyj844-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7421,36 +7462,36 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode if x == nil { r.EncodeNil() } else { - yym847 := z.EncBinary() - _ = yym847 + yym852 := z.EncBinary() + _ = yym852 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep848 := !z.EncBinary() - yy2arr848 := z.EncBasicHandle().StructToArray - var yyq848 [60]bool - _, _, _ = yysep848, yyq848, yy2arr848 - const yyr848 bool = false - yyq848[0] = x.Kind != "" - yyq848[1] = x.APIVersion != "" - var yynn848 int - if yyr848 || yy2arr848 { + yysep853 := !z.EncBinary() + yy2arr853 := z.EncBasicHandle().StructToArray + var yyq853 [60]bool + _, _, _ = yysep853, yyq853, yy2arr853 + const yyr853 bool = false + yyq853[0] = x.Kind != "" + yyq853[1] = x.APIVersion != "" + var yynn853 int + if yyr853 || yy2arr853 { r.EncodeArrayStart(60) } else { - yynn848 = 58 - for _, b := range yyq848 { + yynn853 = 58 + for _, b := range yyq853 { if b { - yynn848++ + yynn853++ } } - r.EncodeMapStart(yynn848) - yynn848 = 0 + r.EncodeMapStart(yynn853) + yynn853 = 0 } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq848[0] { - yym850 := z.EncBinary() - _ = yym850 + if yyq853[0] { + yym855 := z.EncBinary() + _ = yym855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7459,23 +7500,23 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq848[0] { + if yyq853[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym851 := z.EncBinary() - _ = yym851 + yym856 := z.EncBinary() + _ = yym856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq848[1] { - yym853 := z.EncBinary() - _ = yym853 + if yyq853[1] { + yym858 := z.EncBinary() + _ = yym858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7484,22 +7525,22 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq848[1] { + if yyq853[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym854 := z.EncBinary() - _ = yym854 + yym859 := z.EncBinary() + _ = yym859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym856 := z.EncBinary() - _ = yym856 + yym861 := z.EncBinary() + _ = yym861 if false { } else { r.EncodeInt(int64(x.Port)) @@ -7508,17 +7549,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym857 := z.EncBinary() - _ = yym857 + yym862 := z.EncBinary() + _ = yym862 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym859 := z.EncBinary() - _ = yym859 + yym864 := z.EncBinary() + _ = yym864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -7527,17 +7568,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym860 := z.EncBinary() - _ = yym860 + yym865 := z.EncBinary() + _ = yym865 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym862 := z.EncBinary() - _ = yym862 + yym867 := z.EncBinary() + _ = yym867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) @@ -7546,17 +7587,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cloudProvider")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym863 := z.EncBinary() - _ = yym863 + yym868 := z.EncBinary() + _ = yym868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudProvider)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym865 := z.EncBinary() - _ = yym865 + yym870 := z.EncBinary() + _ = yym870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) @@ -7565,17 +7606,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cloudConfigFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym866 := z.EncBinary() - _ = yym866 + yym871 := z.EncBinary() + _ = yym871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.CloudConfigFile)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym868 := z.EncBinary() - _ = yym868 + yym873 := z.EncBinary() + _ = yym873 if false { } else { r.EncodeInt(int64(x.ConcurrentEndpointSyncs)) @@ -7584,17 +7625,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentEndpointSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym869 := z.EncBinary() - _ = yym869 + yym874 := z.EncBinary() + _ = yym874 if false { } else { r.EncodeInt(int64(x.ConcurrentEndpointSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym871 := z.EncBinary() - _ = yym871 + yym876 := z.EncBinary() + _ = yym876 if false { } else { r.EncodeInt(int64(x.ConcurrentRSSyncs)) @@ -7603,17 +7644,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentRSSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym872 := z.EncBinary() - _ = yym872 + yym877 := z.EncBinary() + _ = yym877 if false { } else { r.EncodeInt(int64(x.ConcurrentRSSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym874 := z.EncBinary() - _ = yym874 + yym879 := z.EncBinary() + _ = yym879 if false { } else { r.EncodeInt(int64(x.ConcurrentRCSyncs)) @@ -7622,17 +7663,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentRCSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym875 := z.EncBinary() - _ = yym875 + yym880 := z.EncBinary() + _ = yym880 if false { } else { r.EncodeInt(int64(x.ConcurrentRCSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym877 := z.EncBinary() - _ = yym877 + yym882 := z.EncBinary() + _ = yym882 if false { } else { r.EncodeInt(int64(x.ConcurrentServiceSyncs)) @@ -7641,17 +7682,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentServiceSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym878 := z.EncBinary() - _ = yym878 + yym883 := z.EncBinary() + _ = yym883 if false { } else { r.EncodeInt(int64(x.ConcurrentServiceSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym880 := z.EncBinary() - _ = yym880 + yym885 := z.EncBinary() + _ = yym885 if false { } else { r.EncodeInt(int64(x.ConcurrentResourceQuotaSyncs)) @@ -7660,17 +7701,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentResourceQuotaSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym881 := z.EncBinary() - _ = yym881 + yym886 := z.EncBinary() + _ = yym886 if false { } else { r.EncodeInt(int64(x.ConcurrentResourceQuotaSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym883 := z.EncBinary() - _ = yym883 + yym888 := z.EncBinary() + _ = yym888 if false { } else { r.EncodeInt(int64(x.ConcurrentDeploymentSyncs)) @@ -7679,17 +7720,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentDeploymentSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym884 := z.EncBinary() - _ = yym884 + yym889 := z.EncBinary() + _ = yym889 if false { } else { r.EncodeInt(int64(x.ConcurrentDeploymentSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym886 := z.EncBinary() - _ = yym886 + yym891 := z.EncBinary() + _ = yym891 if false { } else { r.EncodeInt(int64(x.ConcurrentDaemonSetSyncs)) @@ -7698,17 +7739,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentDaemonSetSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym887 := z.EncBinary() - _ = yym887 + yym892 := z.EncBinary() + _ = yym892 if false { } else { r.EncodeInt(int64(x.ConcurrentDaemonSetSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym889 := z.EncBinary() - _ = yym889 + yym894 := z.EncBinary() + _ = yym894 if false { } else { r.EncodeInt(int64(x.ConcurrentJobSyncs)) @@ -7717,17 +7758,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentJobSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym890 := z.EncBinary() - _ = yym890 + yym895 := z.EncBinary() + _ = yym895 if false { } else { r.EncodeInt(int64(x.ConcurrentJobSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym892 := z.EncBinary() - _ = yym892 + yym897 := z.EncBinary() + _ = yym897 if false { } else { r.EncodeInt(int64(x.ConcurrentNamespaceSyncs)) @@ -7736,17 +7777,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentNamespaceSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym893 := z.EncBinary() - _ = yym893 + yym898 := z.EncBinary() + _ = yym898 if false { } else { r.EncodeInt(int64(x.ConcurrentNamespaceSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym895 := z.EncBinary() - _ = yym895 + yym900 := z.EncBinary() + _ = yym900 if false { } else { r.EncodeInt(int64(x.ConcurrentSATokenSyncs)) @@ -7755,17 +7796,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentSATokenSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym896 := z.EncBinary() - _ = yym896 + yym901 := z.EncBinary() + _ = yym901 if false { } else { r.EncodeInt(int64(x.ConcurrentSATokenSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym898 := z.EncBinary() - _ = yym898 + yym903 := z.EncBinary() + _ = yym903 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRC)) @@ -7774,17 +7815,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForRC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym899 := z.EncBinary() - _ = yym899 + yym904 := z.EncBinary() + _ = yym904 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRC)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym901 := z.EncBinary() - _ = yym901 + yym906 := z.EncBinary() + _ = yym906 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRS)) @@ -7793,17 +7834,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForRS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym902 := z.EncBinary() - _ = yym902 + yym907 := z.EncBinary() + _ = yym907 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForRS)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym904 := z.EncBinary() - _ = yym904 + yym909 := z.EncBinary() + _ = yym909 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForDaemonSet)) @@ -7812,43 +7853,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lookupCacheSizeForDaemonSet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym905 := z.EncBinary() - _ = yym905 + yym910 := z.EncBinary() + _ = yym910 if false { } else { r.EncodeInt(int64(x.LookupCacheSizeForDaemonSet)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy907 := &x.ServiceSyncPeriod - yym908 := z.EncBinary() - _ = yym908 - if false { - } else if z.HasExtensions() && z.EncExt(yy907) { - } else if !yym908 && z.IsJSONHandle() { - z.EncJSONMarshal(yy907) - } else { - z.EncFallback(yy907) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("serviceSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy909 := &x.ServiceSyncPeriod - yym910 := z.EncBinary() - _ = yym910 - if false { - } else if z.HasExtensions() && z.EncExt(yy909) { - } else if !yym910 && z.IsJSONHandle() { - z.EncJSONMarshal(yy909) - } else { - z.EncFallback(yy909) - } - } - if yyr848 || yy2arr848 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy912 := &x.NodeSyncPeriod + yy912 := &x.ServiceSyncPeriod yym913 := z.EncBinary() _ = yym913 if false { @@ -7860,9 +7874,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("serviceSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy914 := &x.NodeSyncPeriod + yy914 := &x.ServiceSyncPeriod yym915 := z.EncBinary() _ = yym915 if false { @@ -7873,9 +7887,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy914) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy917 := &x.RouteReconciliationPeriod + yy917 := &x.NodeSyncPeriod yym918 := z.EncBinary() _ = yym918 if false { @@ -7887,9 +7901,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("routeReconciliationPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("nodeSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy919 := &x.RouteReconciliationPeriod + yy919 := &x.NodeSyncPeriod yym920 := z.EncBinary() _ = yym920 if false { @@ -7900,9 +7914,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy919) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy922 := &x.ResourceQuotaSyncPeriod + yy922 := &x.RouteReconciliationPeriod yym923 := z.EncBinary() _ = yym923 if false { @@ -7914,9 +7928,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resourceQuotaSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("routeReconciliationPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy924 := &x.ResourceQuotaSyncPeriod + yy924 := &x.RouteReconciliationPeriod yym925 := z.EncBinary() _ = yym925 if false { @@ -7927,9 +7941,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy924) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy927 := &x.NamespaceSyncPeriod + yy927 := &x.ResourceQuotaSyncPeriod yym928 := z.EncBinary() _ = yym928 if false { @@ -7941,9 +7955,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("namespaceSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("resourceQuotaSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy929 := &x.NamespaceSyncPeriod + yy929 := &x.ResourceQuotaSyncPeriod yym930 := z.EncBinary() _ = yym930 if false { @@ -7954,9 +7968,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy929) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy932 := &x.PVClaimBinderSyncPeriod + yy932 := &x.NamespaceSyncPeriod yym933 := z.EncBinary() _ = yym933 if false { @@ -7968,9 +7982,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("pvClaimBinderSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("namespaceSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy934 := &x.PVClaimBinderSyncPeriod + yy934 := &x.NamespaceSyncPeriod yym935 := z.EncBinary() _ = yym935 if false { @@ -7981,9 +7995,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy934) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy937 := &x.MinResyncPeriod + yy937 := &x.PVClaimBinderSyncPeriod yym938 := z.EncBinary() _ = yym938 if false { @@ -7995,9 +8009,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("minResyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("pvClaimBinderSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy939 := &x.MinResyncPeriod + yy939 := &x.PVClaimBinderSyncPeriod yym940 := z.EncBinary() _ = yym940 if false { @@ -8008,10 +8022,37 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy939) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym942 := z.EncBinary() - _ = yym942 + yy942 := &x.MinResyncPeriod + yym943 := z.EncBinary() + _ = yym943 + if false { + } else if z.HasExtensions() && z.EncExt(yy942) { + } else if !yym943 && z.IsJSONHandle() { + z.EncJSONMarshal(yy942) + } else { + z.EncFallback(yy942) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("minResyncPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy944 := &x.MinResyncPeriod + yym945 := z.EncBinary() + _ = yym945 + if false { + } else if z.HasExtensions() && z.EncExt(yy944) { + } else if !yym945 && z.IsJSONHandle() { + z.EncJSONMarshal(yy944) + } else { + z.EncFallback(yy944) + } + } + if yyr853 || yy2arr853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym947 := z.EncBinary() + _ = yym947 if false { } else { r.EncodeInt(int64(x.TerminatedPodGCThreshold)) @@ -8020,43 +8061,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminatedPodGCThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym943 := z.EncBinary() - _ = yym943 + yym948 := z.EncBinary() + _ = yym948 if false { } else { r.EncodeInt(int64(x.TerminatedPodGCThreshold)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy945 := &x.HorizontalPodAutoscalerSyncPeriod - yym946 := z.EncBinary() - _ = yym946 - if false { - } else if z.HasExtensions() && z.EncExt(yy945) { - } else if !yym946 && z.IsJSONHandle() { - z.EncJSONMarshal(yy945) - } else { - z.EncFallback(yy945) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("horizontalPodAutoscalerSyncPeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy947 := &x.HorizontalPodAutoscalerSyncPeriod - yym948 := z.EncBinary() - _ = yym948 - if false { - } else if z.HasExtensions() && z.EncExt(yy947) { - } else if !yym948 && z.IsJSONHandle() { - z.EncJSONMarshal(yy947) - } else { - z.EncFallback(yy947) - } - } - if yyr848 || yy2arr848 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy950 := &x.DeploymentControllerSyncPeriod + yy950 := &x.HorizontalPodAutoscalerSyncPeriod yym951 := z.EncBinary() _ = yym951 if false { @@ -8068,9 +8082,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("deploymentControllerSyncPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("horizontalPodAutoscalerSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy952 := &x.DeploymentControllerSyncPeriod + yy952 := &x.HorizontalPodAutoscalerSyncPeriod yym953 := z.EncBinary() _ = yym953 if false { @@ -8081,9 +8095,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy952) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy955 := &x.PodEvictionTimeout + yy955 := &x.DeploymentControllerSyncPeriod yym956 := z.EncBinary() _ = yym956 if false { @@ -8095,9 +8109,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podEvictionTimeout")) + r.EncodeString(codecSelferC_UTF81234, string("deploymentControllerSyncPeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy957 := &x.PodEvictionTimeout + yy957 := &x.DeploymentControllerSyncPeriod yym958 := z.EncBinary() _ = yym958 if false { @@ -8108,10 +8122,37 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy957) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym960 := z.EncBinary() - _ = yym960 + yy960 := &x.PodEvictionTimeout + yym961 := z.EncBinary() + _ = yym961 + if false { + } else if z.HasExtensions() && z.EncExt(yy960) { + } else if !yym961 && z.IsJSONHandle() { + z.EncJSONMarshal(yy960) + } else { + z.EncFallback(yy960) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podEvictionTimeout")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy962 := &x.PodEvictionTimeout + yym963 := z.EncBinary() + _ = yym963 + if false { + } else if z.HasExtensions() && z.EncExt(yy962) { + } else if !yym963 && z.IsJSONHandle() { + z.EncJSONMarshal(yy962) + } else { + z.EncFallback(yy962) + } + } + if yyr853 || yy2arr853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym965 := z.EncBinary() + _ = yym965 if false { } else { r.EncodeFloat32(float32(x.DeletingPodsQps)) @@ -8120,17 +8161,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deletingPodsQps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym961 := z.EncBinary() - _ = yym961 + yym966 := z.EncBinary() + _ = yym966 if false { } else { r.EncodeFloat32(float32(x.DeletingPodsQps)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym963 := z.EncBinary() - _ = yym963 + yym968 := z.EncBinary() + _ = yym968 if false { } else { r.EncodeInt(int64(x.DeletingPodsBurst)) @@ -8139,44 +8180,44 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deletingPodsBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym964 := z.EncBinary() - _ = yym964 + yym969 := z.EncBinary() + _ = yym969 if false { } else { r.EncodeInt(int64(x.DeletingPodsBurst)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy966 := &x.NodeMonitorGracePeriod - yym967 := z.EncBinary() - _ = yym967 + yy971 := &x.NodeMonitorGracePeriod + yym972 := z.EncBinary() + _ = yym972 if false { - } else if z.HasExtensions() && z.EncExt(yy966) { - } else if !yym967 && z.IsJSONHandle() { - z.EncJSONMarshal(yy966) + } else if z.HasExtensions() && z.EncExt(yy971) { + } else if !yym972 && z.IsJSONHandle() { + z.EncJSONMarshal(yy971) } else { - z.EncFallback(yy966) + z.EncFallback(yy971) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorGracePeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy968 := &x.NodeMonitorGracePeriod - yym969 := z.EncBinary() - _ = yym969 + yy973 := &x.NodeMonitorGracePeriod + yym974 := z.EncBinary() + _ = yym974 if false { - } else if z.HasExtensions() && z.EncExt(yy968) { - } else if !yym969 && z.IsJSONHandle() { - z.EncJSONMarshal(yy968) + } else if z.HasExtensions() && z.EncExt(yy973) { + } else if !yym974 && z.IsJSONHandle() { + z.EncJSONMarshal(yy973) } else { - z.EncFallback(yy968) + z.EncFallback(yy973) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym971 := z.EncBinary() - _ = yym971 + yym976 := z.EncBinary() + _ = yym976 if false { } else { r.EncodeInt(int64(x.RegisterRetryCount)) @@ -8185,43 +8226,16 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registerRetryCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym972 := z.EncBinary() - _ = yym972 + yym977 := z.EncBinary() + _ = yym977 if false { } else { r.EncodeInt(int64(x.RegisterRetryCount)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy974 := &x.NodeStartupGracePeriod - yym975 := z.EncBinary() - _ = yym975 - if false { - } else if z.HasExtensions() && z.EncExt(yy974) { - } else if !yym975 && z.IsJSONHandle() { - z.EncJSONMarshal(yy974) - } else { - z.EncFallback(yy974) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeStartupGracePeriod")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy976 := &x.NodeStartupGracePeriod - 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) - } - } - if yyr848 || yy2arr848 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy979 := &x.NodeMonitorPeriod + yy979 := &x.NodeStartupGracePeriod yym980 := z.EncBinary() _ = yym980 if false { @@ -8233,9 +8247,9 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorPeriod")) + r.EncodeString(codecSelferC_UTF81234, string("nodeStartupGracePeriod")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy981 := &x.NodeMonitorPeriod + yy981 := &x.NodeStartupGracePeriod yym982 := z.EncBinary() _ = yym982 if false { @@ -8246,10 +8260,37 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncFallback(yy981) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym984 := z.EncBinary() - _ = yym984 + yy984 := &x.NodeMonitorPeriod + yym985 := z.EncBinary() + _ = yym985 + if false { + } else if z.HasExtensions() && z.EncExt(yy984) { + } else if !yym985 && z.IsJSONHandle() { + z.EncJSONMarshal(yy984) + } else { + z.EncFallback(yy984) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeMonitorPeriod")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy986 := &x.NodeMonitorPeriod + yym987 := z.EncBinary() + _ = yym987 + if false { + } else if z.HasExtensions() && z.EncExt(yy986) { + } else if !yym987 && z.IsJSONHandle() { + z.EncJSONMarshal(yy986) + } else { + z.EncFallback(yy986) + } + } + if yyr853 || yy2arr853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym989 := z.EncBinary() + _ = yym989 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountKeyFile)) @@ -8258,17 +8299,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountKeyFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym985 := z.EncBinary() - _ = yym985 + yym990 := z.EncBinary() + _ = yym990 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountKeyFile)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym987 := z.EncBinary() - _ = yym987 + yym992 := z.EncBinary() + _ = yym992 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningCertFile)) @@ -8277,17 +8318,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterSigningCertFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym988 := z.EncBinary() - _ = yym988 + yym993 := z.EncBinary() + _ = yym993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningCertFile)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym990 := z.EncBinary() - _ = yym990 + yym995 := z.EncBinary() + _ = yym995 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningKeyFile)) @@ -8296,17 +8337,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterSigningKeyFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym991 := z.EncBinary() - _ = yym991 + yym996 := z.EncBinary() + _ = yym996 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterSigningKeyFile)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym993 := z.EncBinary() - _ = yym993 + yym998 := z.EncBinary() + _ = yym998 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ApproveAllKubeletCSRsForGroup)) @@ -8315,17 +8356,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("approveAllKubeletCSRsForGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym994 := z.EncBinary() - _ = yym994 + yym999 := z.EncBinary() + _ = yym999 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ApproveAllKubeletCSRsForGroup)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym996 := z.EncBinary() - _ = yym996 + yym1001 := z.EncBinary() + _ = yym1001 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) @@ -8334,17 +8375,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableProfiling")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym997 := z.EncBinary() - _ = yym997 + yym1002 := z.EncBinary() + _ = yym1002 if false { } else { r.EncodeBool(bool(x.EnableProfiling)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym999 := z.EncBinary() - _ = yym999 + yym1004 := z.EncBinary() + _ = yym1004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterName)) @@ -8353,17 +8394,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1000 := z.EncBinary() - _ = yym1000 + yym1005 := z.EncBinary() + _ = yym1005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterName)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1002 := z.EncBinary() - _ = yym1002 + yym1007 := z.EncBinary() + _ = yym1007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterCIDR)) @@ -8372,17 +8413,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1003 := z.EncBinary() - _ = yym1003 + yym1008 := z.EncBinary() + _ = yym1008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterCIDR)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1005 := z.EncBinary() - _ = yym1005 + yym1010 := z.EncBinary() + _ = yym1010 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceCIDR)) @@ -8391,17 +8432,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1006 := z.EncBinary() - _ = yym1006 + yym1011 := z.EncBinary() + _ = yym1011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceCIDR)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1008 := z.EncBinary() - _ = yym1008 + yym1013 := z.EncBinary() + _ = yym1013 if false { } else { r.EncodeInt(int64(x.NodeCIDRMaskSize)) @@ -8410,17 +8451,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeCIDRMaskSize")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1009 := z.EncBinary() - _ = yym1009 + yym1014 := z.EncBinary() + _ = yym1014 if false { } else { r.EncodeInt(int64(x.NodeCIDRMaskSize)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1011 := z.EncBinary() - _ = yym1011 + yym1016 := z.EncBinary() + _ = yym1016 if false { } else { r.EncodeBool(bool(x.AllocateNodeCIDRs)) @@ -8429,17 +8470,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocateNodeCIDRs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1012 := z.EncBinary() - _ = yym1012 + yym1017 := z.EncBinary() + _ = yym1017 if false { } else { r.EncodeBool(bool(x.AllocateNodeCIDRs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1014 := z.EncBinary() - _ = yym1014 + yym1019 := z.EncBinary() + _ = yym1019 if false { } else { r.EncodeBool(bool(x.ConfigureCloudRoutes)) @@ -8448,17 +8489,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configureCloudRoutes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1015 := z.EncBinary() - _ = yym1015 + yym1020 := z.EncBinary() + _ = yym1020 if false { } else { r.EncodeBool(bool(x.ConfigureCloudRoutes)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1017 := z.EncBinary() - _ = yym1017 + yym1022 := z.EncBinary() + _ = yym1022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootCAFile)) @@ -8467,17 +8508,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rootCAFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1018 := z.EncBinary() - _ = yym1018 + yym1023 := z.EncBinary() + _ = yym1023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RootCAFile)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1020 := z.EncBinary() - _ = yym1020 + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) @@ -8486,17 +8527,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("contentType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1021 := z.EncBinary() - _ = yym1021 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContentType)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1023 := z.EncBinary() - _ = yym1023 + yym1028 := z.EncBinary() + _ = yym1028 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) @@ -8505,17 +8546,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIQPS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1024 := z.EncBinary() - _ = yym1024 + yym1029 := z.EncBinary() + _ = yym1029 if false { } else { r.EncodeFloat32(float32(x.KubeAPIQPS)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1026 := z.EncBinary() - _ = yym1026 + yym1031 := z.EncBinary() + _ = yym1031 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) @@ -8524,66 +8565,66 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeAPIBurst")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1027 := z.EncBinary() - _ = yym1027 + yym1032 := z.EncBinary() + _ = yym1032 if false { } else { r.EncodeInt(int64(x.KubeAPIBurst)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1029 := &x.LeaderElection - yy1029.CodecEncodeSelf(e) + yy1034 := &x.LeaderElection + yy1034.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("leaderElection")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1030 := &x.LeaderElection - yy1030.CodecEncodeSelf(e) + yy1035 := &x.LeaderElection + yy1035.CodecEncodeSelf(e) } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1032 := &x.VolumeConfiguration - yy1032.CodecEncodeSelf(e) + yy1037 := &x.VolumeConfiguration + yy1037.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeConfiguration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1033 := &x.VolumeConfiguration - yy1033.CodecEncodeSelf(e) + yy1038 := &x.VolumeConfiguration + yy1038.CodecEncodeSelf(e) } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1035 := &x.ControllerStartInterval - yym1036 := z.EncBinary() - _ = yym1036 + yy1040 := &x.ControllerStartInterval + yym1041 := z.EncBinary() + _ = yym1041 if false { - } else if z.HasExtensions() && z.EncExt(yy1035) { - } else if !yym1036 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1035) + } else if z.HasExtensions() && z.EncExt(yy1040) { + } else if !yym1041 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1040) } else { - z.EncFallback(yy1035) + z.EncFallback(yy1040) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controllerStartInterval")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1037 := &x.ControllerStartInterval - yym1038 := z.EncBinary() - _ = yym1038 + yy1042 := &x.ControllerStartInterval + yym1043 := z.EncBinary() + _ = yym1043 if false { - } else if z.HasExtensions() && z.EncExt(yy1037) { - } else if !yym1038 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1037) + } else if z.HasExtensions() && z.EncExt(yy1042) { + } else if !yym1043 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1042) } else { - z.EncFallback(yy1037) + z.EncFallback(yy1042) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1040 := z.EncBinary() - _ = yym1040 + yym1045 := z.EncBinary() + _ = yym1045 if false { } else { r.EncodeBool(bool(x.EnableGarbageCollector)) @@ -8592,17 +8633,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableGarbageCollector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1041 := z.EncBinary() - _ = yym1041 + yym1046 := z.EncBinary() + _ = yym1046 if false { } else { r.EncodeBool(bool(x.EnableGarbageCollector)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1043 := z.EncBinary() - _ = yym1043 + yym1048 := z.EncBinary() + _ = yym1048 if false { } else { r.EncodeInt(int64(x.ConcurrentGCSyncs)) @@ -8611,17 +8652,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("concurrentGCSyncs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1044 := z.EncBinary() - _ = yym1044 + yym1049 := z.EncBinary() + _ = yym1049 if false { } else { r.EncodeInt(int64(x.ConcurrentGCSyncs)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1046 := z.EncBinary() - _ = yym1046 + yym1051 := z.EncBinary() + _ = yym1051 if false { } else { r.EncodeFloat32(float32(x.NodeEvictionRate)) @@ -8630,17 +8671,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeEvictionRate")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1047 := z.EncBinary() - _ = yym1047 + yym1052 := z.EncBinary() + _ = yym1052 if false { } else { r.EncodeFloat32(float32(x.NodeEvictionRate)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1049 := z.EncBinary() - _ = yym1049 + yym1054 := z.EncBinary() + _ = yym1054 if false { } else { r.EncodeFloat32(float32(x.SecondaryNodeEvictionRate)) @@ -8649,17 +8690,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secondaryNodeEvictionRate")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1050 := z.EncBinary() - _ = yym1050 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeFloat32(float32(x.SecondaryNodeEvictionRate)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1052 := z.EncBinary() - _ = yym1052 + yym1057 := z.EncBinary() + _ = yym1057 if false { } else { r.EncodeInt(int64(x.LargeClusterSizeThreshold)) @@ -8668,17 +8709,17 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("largeClusterSizeThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1053 := z.EncBinary() - _ = yym1053 + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { r.EncodeInt(int64(x.LargeClusterSizeThreshold)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1055 := z.EncBinary() - _ = yym1055 + yym1060 := z.EncBinary() + _ = yym1060 if false { } else { r.EncodeFloat32(float32(x.UnhealthyZoneThreshold)) @@ -8687,14 +8728,14 @@ func (x *KubeControllerManagerConfiguration) CodecEncodeSelf(e *codec1978.Encode z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unhealthyZoneThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1056 := z.EncBinary() - _ = yym1056 + yym1061 := z.EncBinary() + _ = yym1061 if false { } else { r.EncodeFloat32(float32(x.UnhealthyZoneThreshold)) } } - if yyr848 || yy2arr848 { + if yyr853 || yy2arr853 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8707,25 +8748,25 @@ func (x *KubeControllerManagerConfiguration) CodecDecodeSelf(d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1057 := z.DecBinary() - _ = yym1057 + yym1062 := z.DecBinary() + _ = yym1062 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1058 := r.ContainerType() - if yyct1058 == codecSelferValueTypeMap1234 { - yyl1058 := r.ReadMapStart() - if yyl1058 == 0 { + yyct1063 := r.ContainerType() + if yyct1063 == codecSelferValueTypeMap1234 { + yyl1063 := r.ReadMapStart() + if yyl1063 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1058, d) + x.codecDecodeSelfFromMap(yyl1063, d) } - } else if yyct1058 == codecSelferValueTypeArray1234 { - yyl1058 := r.ReadArrayStart() - if yyl1058 == 0 { + } else if yyct1063 == codecSelferValueTypeArray1234 { + yyl1063 := r.ReadArrayStart() + if yyl1063 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1058, d) + x.codecDecodeSelfFromArray(yyl1063, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8737,12 +8778,12 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1059Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1059Slc - var yyhl1059 bool = l >= 0 - for yyj1059 := 0; ; yyj1059++ { - if yyhl1059 { - if yyj1059 >= l { + var yys1064Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1064Slc + var yyhl1064 bool = l >= 0 + for yyj1064 := 0; ; yyj1064++ { + if yyhl1064 { + if yyj1064 >= l { break } } else { @@ -8751,10 +8792,10 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1059Slc = r.DecodeBytes(yys1059Slc, true, true) - yys1059 := string(yys1059Slc) + yys1064Slc = r.DecodeBytes(yys1064Slc, true, true) + yys1064 := string(yys1064Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1059 { + switch yys1064 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8873,105 +8914,105 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.ServiceSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1079 := &x.ServiceSyncPeriod - yym1080 := z.DecBinary() - _ = yym1080 + yyv1084 := &x.ServiceSyncPeriod + yym1085 := z.DecBinary() + _ = yym1085 if false { - } else if z.HasExtensions() && z.DecExt(yyv1079) { - } else if !yym1080 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1079) + } else if z.HasExtensions() && z.DecExt(yyv1084) { + } else if !yym1085 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1084) } else { - z.DecFallback(yyv1079, false) + z.DecFallback(yyv1084, false) } } case "nodeSyncPeriod": if r.TryDecodeAsNil() { x.NodeSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1081 := &x.NodeSyncPeriod - yym1082 := z.DecBinary() - _ = yym1082 + yyv1086 := &x.NodeSyncPeriod + yym1087 := z.DecBinary() + _ = yym1087 if false { - } else if z.HasExtensions() && z.DecExt(yyv1081) { - } else if !yym1082 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1081) + } else if z.HasExtensions() && z.DecExt(yyv1086) { + } else if !yym1087 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1086) } else { - z.DecFallback(yyv1081, false) + z.DecFallback(yyv1086, false) } } case "routeReconciliationPeriod": if r.TryDecodeAsNil() { x.RouteReconciliationPeriod = pkg1_unversioned.Duration{} } else { - yyv1083 := &x.RouteReconciliationPeriod - yym1084 := z.DecBinary() - _ = yym1084 + yyv1088 := &x.RouteReconciliationPeriod + yym1089 := z.DecBinary() + _ = yym1089 if false { - } else if z.HasExtensions() && z.DecExt(yyv1083) { - } else if !yym1084 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1083) + } else if z.HasExtensions() && z.DecExt(yyv1088) { + } else if !yym1089 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1088) } else { - z.DecFallback(yyv1083, false) + z.DecFallback(yyv1088, false) } } case "resourceQuotaSyncPeriod": if r.TryDecodeAsNil() { x.ResourceQuotaSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1085 := &x.ResourceQuotaSyncPeriod - yym1086 := z.DecBinary() - _ = yym1086 + yyv1090 := &x.ResourceQuotaSyncPeriod + yym1091 := z.DecBinary() + _ = yym1091 if false { - } else if z.HasExtensions() && z.DecExt(yyv1085) { - } else if !yym1086 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1085) + } else if z.HasExtensions() && z.DecExt(yyv1090) { + } else if !yym1091 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1090) } else { - z.DecFallback(yyv1085, false) + z.DecFallback(yyv1090, false) } } case "namespaceSyncPeriod": if r.TryDecodeAsNil() { x.NamespaceSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1087 := &x.NamespaceSyncPeriod - yym1088 := z.DecBinary() - _ = yym1088 + yyv1092 := &x.NamespaceSyncPeriod + yym1093 := z.DecBinary() + _ = yym1093 if false { - } else if z.HasExtensions() && z.DecExt(yyv1087) { - } else if !yym1088 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1087) + } else if z.HasExtensions() && z.DecExt(yyv1092) { + } else if !yym1093 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1092) } else { - z.DecFallback(yyv1087, false) + z.DecFallback(yyv1092, false) } } case "pvClaimBinderSyncPeriod": if r.TryDecodeAsNil() { x.PVClaimBinderSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1089 := &x.PVClaimBinderSyncPeriod - yym1090 := z.DecBinary() - _ = yym1090 + yyv1094 := &x.PVClaimBinderSyncPeriod + yym1095 := z.DecBinary() + _ = yym1095 if false { - } else if z.HasExtensions() && z.DecExt(yyv1089) { - } else if !yym1090 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1089) + } else if z.HasExtensions() && z.DecExt(yyv1094) { + } else if !yym1095 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1094) } else { - z.DecFallback(yyv1089, false) + z.DecFallback(yyv1094, false) } } case "minResyncPeriod": if r.TryDecodeAsNil() { x.MinResyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1091 := &x.MinResyncPeriod - yym1092 := z.DecBinary() - _ = yym1092 + yyv1096 := &x.MinResyncPeriod + yym1097 := z.DecBinary() + _ = yym1097 if false { - } else if z.HasExtensions() && z.DecExt(yyv1091) { - } else if !yym1092 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1091) + } else if z.HasExtensions() && z.DecExt(yyv1096) { + } else if !yym1097 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1096) } else { - z.DecFallback(yyv1091, false) + z.DecFallback(yyv1096, false) } } case "terminatedPodGCThreshold": @@ -8984,45 +9025,45 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.HorizontalPodAutoscalerSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1094 := &x.HorizontalPodAutoscalerSyncPeriod - yym1095 := z.DecBinary() - _ = yym1095 + yyv1099 := &x.HorizontalPodAutoscalerSyncPeriod + yym1100 := z.DecBinary() + _ = yym1100 if false { - } else if z.HasExtensions() && z.DecExt(yyv1094) { - } else if !yym1095 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1094) + } else if z.HasExtensions() && z.DecExt(yyv1099) { + } else if !yym1100 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1099) } else { - z.DecFallback(yyv1094, false) + z.DecFallback(yyv1099, false) } } case "deploymentControllerSyncPeriod": if r.TryDecodeAsNil() { x.DeploymentControllerSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1096 := &x.DeploymentControllerSyncPeriod - yym1097 := z.DecBinary() - _ = yym1097 + yyv1101 := &x.DeploymentControllerSyncPeriod + yym1102 := z.DecBinary() + _ = yym1102 if false { - } else if z.HasExtensions() && z.DecExt(yyv1096) { - } else if !yym1097 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1096) + } else if z.HasExtensions() && z.DecExt(yyv1101) { + } else if !yym1102 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1101) } else { - z.DecFallback(yyv1096, false) + z.DecFallback(yyv1101, false) } } case "podEvictionTimeout": if r.TryDecodeAsNil() { x.PodEvictionTimeout = pkg1_unversioned.Duration{} } else { - yyv1098 := &x.PodEvictionTimeout - yym1099 := z.DecBinary() - _ = yym1099 + yyv1103 := &x.PodEvictionTimeout + yym1104 := z.DecBinary() + _ = yym1104 if false { - } else if z.HasExtensions() && z.DecExt(yyv1098) { - } else if !yym1099 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1098) + } else if z.HasExtensions() && z.DecExt(yyv1103) { + } else if !yym1104 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1103) } else { - z.DecFallback(yyv1098, false) + z.DecFallback(yyv1103, false) } } case "deletingPodsQps": @@ -9041,15 +9082,15 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.NodeMonitorGracePeriod = pkg1_unversioned.Duration{} } else { - yyv1102 := &x.NodeMonitorGracePeriod - yym1103 := z.DecBinary() - _ = yym1103 + yyv1107 := &x.NodeMonitorGracePeriod + yym1108 := z.DecBinary() + _ = yym1108 if false { - } else if z.HasExtensions() && z.DecExt(yyv1102) { - } else if !yym1103 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1102) + } else if z.HasExtensions() && z.DecExt(yyv1107) { + } else if !yym1108 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1107) } else { - z.DecFallback(yyv1102, false) + z.DecFallback(yyv1107, false) } } case "registerRetryCount": @@ -9062,30 +9103,30 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.NodeStartupGracePeriod = pkg1_unversioned.Duration{} } else { - yyv1105 := &x.NodeStartupGracePeriod - yym1106 := z.DecBinary() - _ = yym1106 + yyv1110 := &x.NodeStartupGracePeriod + yym1111 := z.DecBinary() + _ = yym1111 if false { - } else if z.HasExtensions() && z.DecExt(yyv1105) { - } else if !yym1106 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1105) + } else if z.HasExtensions() && z.DecExt(yyv1110) { + } else if !yym1111 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1110) } else { - z.DecFallback(yyv1105, false) + z.DecFallback(yyv1110, false) } } case "nodeMonitorPeriod": if r.TryDecodeAsNil() { x.NodeMonitorPeriod = pkg1_unversioned.Duration{} } else { - yyv1107 := &x.NodeMonitorPeriod - yym1108 := z.DecBinary() - _ = yym1108 + yyv1112 := &x.NodeMonitorPeriod + yym1113 := z.DecBinary() + _ = yym1113 if false { - } else if z.HasExtensions() && z.DecExt(yyv1107) { - } else if !yym1108 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1107) + } else if z.HasExtensions() && z.DecExt(yyv1112) { + } else if !yym1113 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1112) } else { - z.DecFallback(yyv1107, false) + z.DecFallback(yyv1112, false) } } case "serviceAccountKeyFile": @@ -9182,29 +9223,29 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv1124 := &x.LeaderElection - yyv1124.CodecDecodeSelf(d) + yyv1129 := &x.LeaderElection + yyv1129.CodecDecodeSelf(d) } case "volumeConfiguration": if r.TryDecodeAsNil() { x.VolumeConfiguration = VolumeConfiguration{} } else { - yyv1125 := &x.VolumeConfiguration - yyv1125.CodecDecodeSelf(d) + yyv1130 := &x.VolumeConfiguration + yyv1130.CodecDecodeSelf(d) } case "controllerStartInterval": if r.TryDecodeAsNil() { x.ControllerStartInterval = pkg1_unversioned.Duration{} } else { - yyv1126 := &x.ControllerStartInterval - yym1127 := z.DecBinary() - _ = yym1127 + yyv1131 := &x.ControllerStartInterval + yym1132 := z.DecBinary() + _ = yym1132 if false { - } else if z.HasExtensions() && z.DecExt(yyv1126) { - } else if !yym1127 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1126) + } else if z.HasExtensions() && z.DecExt(yyv1131) { + } else if !yym1132 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1131) } else { - z.DecFallback(yyv1126, false) + z.DecFallback(yyv1131, false) } } case "enableGarbageCollector": @@ -9244,9 +9285,9 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromMap(l int, d *co x.UnhealthyZoneThreshold = float32(r.DecodeFloat(true)) } default: - z.DecStructFieldNotFound(-1, yys1059) - } // end switch yys1059 - } // end for yyj1059 + z.DecStructFieldNotFound(-1, yys1064) + } // end switch yys1064 + } // end for yyj1064 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9254,16 +9295,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1134 int - var yyb1134 bool - var yyhl1134 bool = l >= 0 - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + var yyj1139 int + var yyb1139 bool + var yyhl1139 bool = l >= 0 + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9273,13 +9314,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Kind = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9289,13 +9330,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.APIVersion = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9305,13 +9346,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Port = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9321,13 +9362,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.Address = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9337,13 +9378,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.CloudProvider = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9353,13 +9394,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.CloudConfigFile = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9369,13 +9410,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentEndpointSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9385,13 +9426,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentRSSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9401,13 +9442,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentRCSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9417,13 +9458,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentServiceSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9433,13 +9474,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentResourceQuotaSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9449,13 +9490,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentDeploymentSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9465,13 +9506,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentDaemonSetSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9481,13 +9522,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentJobSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9497,13 +9538,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentNamespaceSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9513,13 +9554,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentSATokenSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9529,13 +9570,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForRC = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9545,13 +9586,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForRS = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9561,13 +9602,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LookupCacheSizeForDaemonSet = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9575,24 +9616,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ServiceSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1154 := &x.ServiceSyncPeriod - yym1155 := z.DecBinary() - _ = yym1155 + yyv1159 := &x.ServiceSyncPeriod + yym1160 := z.DecBinary() + _ = yym1160 if false { - } else if z.HasExtensions() && z.DecExt(yyv1154) { - } else if !yym1155 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1154) + } else if z.HasExtensions() && z.DecExt(yyv1159) { + } else if !yym1160 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1159) } else { - z.DecFallback(yyv1154, false) + z.DecFallback(yyv1159, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9600,24 +9641,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NodeSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1156 := &x.NodeSyncPeriod - yym1157 := z.DecBinary() - _ = yym1157 + yyv1161 := &x.NodeSyncPeriod + yym1162 := z.DecBinary() + _ = yym1162 if false { - } else if z.HasExtensions() && z.DecExt(yyv1156) { - } else if !yym1157 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1156) + } else if z.HasExtensions() && z.DecExt(yyv1161) { + } else if !yym1162 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1161) } else { - z.DecFallback(yyv1156, false) + z.DecFallback(yyv1161, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9625,24 +9666,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.RouteReconciliationPeriod = pkg1_unversioned.Duration{} } else { - yyv1158 := &x.RouteReconciliationPeriod - yym1159 := z.DecBinary() - _ = yym1159 + yyv1163 := &x.RouteReconciliationPeriod + yym1164 := z.DecBinary() + _ = yym1164 if false { - } else if z.HasExtensions() && z.DecExt(yyv1158) { - } else if !yym1159 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1158) + } else if z.HasExtensions() && z.DecExt(yyv1163) { + } else if !yym1164 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1163) } else { - z.DecFallback(yyv1158, false) + z.DecFallback(yyv1163, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9650,24 +9691,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ResourceQuotaSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1160 := &x.ResourceQuotaSyncPeriod - yym1161 := z.DecBinary() - _ = yym1161 + yyv1165 := &x.ResourceQuotaSyncPeriod + yym1166 := z.DecBinary() + _ = yym1166 if false { - } else if z.HasExtensions() && z.DecExt(yyv1160) { - } else if !yym1161 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1160) + } else if z.HasExtensions() && z.DecExt(yyv1165) { + } else if !yym1166 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1165) } else { - z.DecFallback(yyv1160, false) + z.DecFallback(yyv1165, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9675,24 +9716,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NamespaceSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1162 := &x.NamespaceSyncPeriod - yym1163 := z.DecBinary() - _ = yym1163 + yyv1167 := &x.NamespaceSyncPeriod + yym1168 := z.DecBinary() + _ = yym1168 if false { - } else if z.HasExtensions() && z.DecExt(yyv1162) { - } else if !yym1163 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1162) + } else if z.HasExtensions() && z.DecExt(yyv1167) { + } else if !yym1168 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1167) } else { - z.DecFallback(yyv1162, false) + z.DecFallback(yyv1167, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9700,73 +9741,7 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.PVClaimBinderSyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1164 := &x.PVClaimBinderSyncPeriod - yym1165 := z.DecBinary() - _ = yym1165 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1164) { - } else if !yym1165 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1164) - } else { - z.DecFallback(yyv1164, false) - } - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MinResyncPeriod = pkg1_unversioned.Duration{} - } else { - yyv1166 := &x.MinResyncPeriod - yym1167 := z.DecBinary() - _ = yym1167 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1166) { - } else if !yym1167 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1166) - } else { - z.DecFallback(yyv1166, false) - } - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.TerminatedPodGCThreshold = 0 - } else { - x.TerminatedPodGCThreshold = int32(r.DecodeInt(32)) - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.HorizontalPodAutoscalerSyncPeriod = pkg1_unversioned.Duration{} - } else { - yyv1169 := &x.HorizontalPodAutoscalerSyncPeriod + yyv1169 := &x.PVClaimBinderSyncPeriod yym1170 := z.DecBinary() _ = yym1170 if false { @@ -9777,21 +9752,21 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1169, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.DeploymentControllerSyncPeriod = pkg1_unversioned.Duration{} + x.MinResyncPeriod = pkg1_unversioned.Duration{} } else { - yyv1171 := &x.DeploymentControllerSyncPeriod + yyv1171 := &x.MinResyncPeriod yym1172 := z.DecBinary() _ = yym1172 if false { @@ -9802,13 +9777,79 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1171, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.TerminatedPodGCThreshold = 0 + } else { + x.TerminatedPodGCThreshold = int32(r.DecodeInt(32)) + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.HorizontalPodAutoscalerSyncPeriod = pkg1_unversioned.Duration{} + } else { + yyv1174 := &x.HorizontalPodAutoscalerSyncPeriod + yym1175 := z.DecBinary() + _ = yym1175 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1174) { + } else if !yym1175 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1174) + } else { + z.DecFallback(yyv1174, false) + } + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DeploymentControllerSyncPeriod = pkg1_unversioned.Duration{} + } else { + yyv1176 := &x.DeploymentControllerSyncPeriod + yym1177 := z.DecBinary() + _ = yym1177 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1176) { + } else if !yym1177 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1176) + } else { + z.DecFallback(yyv1176, false) + } + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9816,24 +9857,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.PodEvictionTimeout = pkg1_unversioned.Duration{} } else { - yyv1173 := &x.PodEvictionTimeout - yym1174 := z.DecBinary() - _ = yym1174 + yyv1178 := &x.PodEvictionTimeout + yym1179 := z.DecBinary() + _ = yym1179 if false { - } else if z.HasExtensions() && z.DecExt(yyv1173) { - } else if !yym1174 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1173) + } else if z.HasExtensions() && z.DecExt(yyv1178) { + } else if !yym1179 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1178) } else { - z.DecFallback(yyv1173, false) + z.DecFallback(yyv1178, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9843,13 +9884,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.DeletingPodsQps = float32(r.DecodeFloat(true)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9859,13 +9900,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.DeletingPodsBurst = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9873,73 +9914,7 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.NodeMonitorGracePeriod = pkg1_unversioned.Duration{} } else { - yyv1177 := &x.NodeMonitorGracePeriod - yym1178 := z.DecBinary() - _ = yym1178 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1177) { - } else if !yym1178 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1177) - } else { - z.DecFallback(yyv1177, false) - } - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.RegisterRetryCount = 0 - } else { - x.RegisterRetryCount = int32(r.DecodeInt(32)) - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodeStartupGracePeriod = pkg1_unversioned.Duration{} - } else { - yyv1180 := &x.NodeStartupGracePeriod - yym1181 := z.DecBinary() - _ = yym1181 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1180) { - } else if !yym1181 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1180) - } else { - z.DecFallback(yyv1180, false) - } - } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l - } else { - yyb1134 = r.CheckBreak() - } - if yyb1134 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodeMonitorPeriod = pkg1_unversioned.Duration{} - } else { - yyv1182 := &x.NodeMonitorPeriod + yyv1182 := &x.NodeMonitorGracePeriod yym1183 := z.DecBinary() _ = yym1183 if false { @@ -9950,13 +9925,79 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * z.DecFallback(yyv1182, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.RegisterRetryCount = 0 + } else { + x.RegisterRetryCount = int32(r.DecodeInt(32)) + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeStartupGracePeriod = pkg1_unversioned.Duration{} + } else { + yyv1185 := &x.NodeStartupGracePeriod + yym1186 := z.DecBinary() + _ = yym1186 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1185) { + } else if !yym1186 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1185) + } else { + z.DecFallback(yyv1185, false) + } + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeMonitorPeriod = pkg1_unversioned.Duration{} + } else { + yyv1187 := &x.NodeMonitorPeriod + yym1188 := z.DecBinary() + _ = yym1188 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1187) { + } else if !yym1188 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1187) + } else { + z.DecFallback(yyv1187, false) + } + } + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l + } else { + yyb1139 = r.CheckBreak() + } + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9966,13 +10007,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ServiceAccountKeyFile = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9982,13 +10023,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterSigningCertFile = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9998,13 +10039,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterSigningKeyFile = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10014,13 +10055,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ApproveAllKubeletCSRsForGroup = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10030,13 +10071,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.EnableProfiling = bool(r.DecodeBool()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10046,13 +10087,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterName = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10062,13 +10103,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ClusterCIDR = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10078,13 +10119,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ServiceCIDR = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10094,13 +10135,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.NodeCIDRMaskSize = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10110,13 +10151,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.AllocateNodeCIDRs = bool(r.DecodeBool()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10126,13 +10167,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConfigureCloudRoutes = bool(r.DecodeBool()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10142,13 +10183,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.RootCAFile = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10158,13 +10199,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ContentType = string(r.DecodeString()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10174,13 +10215,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.KubeAPIQPS = float32(r.DecodeFloat(true)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10190,13 +10231,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.KubeAPIBurst = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10204,16 +10245,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.LeaderElection = LeaderElectionConfiguration{} } else { - yyv1199 := &x.LeaderElection - yyv1199.CodecDecodeSelf(d) + yyv1204 := &x.LeaderElection + yyv1204.CodecDecodeSelf(d) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10221,16 +10262,16 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.VolumeConfiguration = VolumeConfiguration{} } else { - yyv1200 := &x.VolumeConfiguration - yyv1200.CodecDecodeSelf(d) + yyv1205 := &x.VolumeConfiguration + yyv1205.CodecDecodeSelf(d) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10238,24 +10279,24 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * if r.TryDecodeAsNil() { x.ControllerStartInterval = pkg1_unversioned.Duration{} } else { - yyv1201 := &x.ControllerStartInterval - yym1202 := z.DecBinary() - _ = yym1202 + yyv1206 := &x.ControllerStartInterval + yym1207 := z.DecBinary() + _ = yym1207 if false { - } else if z.HasExtensions() && z.DecExt(yyv1201) { - } else if !yym1202 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1201) + } else if z.HasExtensions() && z.DecExt(yyv1206) { + } else if !yym1207 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1206) } else { - z.DecFallback(yyv1201, false) + z.DecFallback(yyv1206, false) } } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10265,13 +10306,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.EnableGarbageCollector = bool(r.DecodeBool()) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10281,13 +10322,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.ConcurrentGCSyncs = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10297,13 +10338,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.NodeEvictionRate = float32(r.DecodeFloat(true)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10313,13 +10354,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.SecondaryNodeEvictionRate = float32(r.DecodeFloat(true)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10329,13 +10370,13 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * } else { x.LargeClusterSizeThreshold = int32(r.DecodeInt(32)) } - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10346,17 +10387,17 @@ func (x *KubeControllerManagerConfiguration) codecDecodeSelfFromArray(l int, d * x.UnhealthyZoneThreshold = float32(r.DecodeFloat(true)) } for { - yyj1134++ - if yyhl1134 { - yyb1134 = yyj1134 > l + yyj1139++ + if yyhl1139 { + yyb1139 = yyj1139 > l } else { - yyb1134 = r.CheckBreak() + yyb1139 = r.CheckBreak() } - if yyb1134 { + if yyb1139 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1134-1, "") + z.DecStructFieldNotFound(yyj1139-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10368,33 +10409,33 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1209 := z.EncBinary() - _ = yym1209 + yym1214 := z.EncBinary() + _ = yym1214 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1210 := !z.EncBinary() - yy2arr1210 := z.EncBasicHandle().StructToArray - var yyq1210 [4]bool - _, _, _ = yysep1210, yyq1210, yy2arr1210 - const yyr1210 bool = false - var yynn1210 int - if yyr1210 || yy2arr1210 { + yysep1215 := !z.EncBinary() + yy2arr1215 := z.EncBasicHandle().StructToArray + var yyq1215 [4]bool + _, _, _ = yysep1215, yyq1215, yy2arr1215 + const yyr1215 bool = false + var yynn1215 int + if yyr1215 || yy2arr1215 { r.EncodeArrayStart(4) } else { - yynn1210 = 4 - for _, b := range yyq1210 { + yynn1215 = 4 + for _, b := range yyq1215 { if b { - yynn1210++ + yynn1215++ } } - r.EncodeMapStart(yynn1210) - yynn1210 = 0 + r.EncodeMapStart(yynn1215) + yynn1215 = 0 } - if yyr1210 || yy2arr1210 { + if yyr1215 || yy2arr1215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1212 := z.EncBinary() - _ = yym1212 + yym1217 := z.EncBinary() + _ = yym1217 if false { } else { r.EncodeBool(bool(x.EnableHostPathProvisioning)) @@ -10403,17 +10444,17 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableHostPathProvisioning")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1213 := z.EncBinary() - _ = yym1213 + yym1218 := z.EncBinary() + _ = yym1218 if false { } else { r.EncodeBool(bool(x.EnableHostPathProvisioning)) } } - if yyr1210 || yy2arr1210 { + if yyr1215 || yy2arr1215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { r.EncodeBool(bool(x.EnableDynamicProvisioning)) @@ -10422,28 +10463,28 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("enableDynamicProvisioning")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1216 := z.EncBinary() - _ = yym1216 + yym1221 := z.EncBinary() + _ = yym1221 if false { } else { r.EncodeBool(bool(x.EnableDynamicProvisioning)) } } - if yyr1210 || yy2arr1210 { + if yyr1215 || yy2arr1215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1218 := &x.PersistentVolumeRecyclerConfiguration - yy1218.CodecEncodeSelf(e) + yy1223 := &x.PersistentVolumeRecyclerConfiguration + yy1223.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persitentVolumeRecyclerConfiguration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1219 := &x.PersistentVolumeRecyclerConfiguration - yy1219.CodecEncodeSelf(e) + yy1224 := &x.PersistentVolumeRecyclerConfiguration + yy1224.CodecEncodeSelf(e) } - if yyr1210 || yy2arr1210 { + if yyr1215 || yy2arr1215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1221 := z.EncBinary() - _ = yym1221 + yym1226 := z.EncBinary() + _ = yym1226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FlexVolumePluginDir)) @@ -10452,14 +10493,14 @@ func (x *VolumeConfiguration) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolumePluginDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1222 := z.EncBinary() - _ = yym1222 + yym1227 := z.EncBinary() + _ = yym1227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FlexVolumePluginDir)) } } - if yyr1210 || yy2arr1210 { + if yyr1215 || yy2arr1215 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10472,25 +10513,25 @@ func (x *VolumeConfiguration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1223 := z.DecBinary() - _ = yym1223 + yym1228 := z.DecBinary() + _ = yym1228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1224 := r.ContainerType() - if yyct1224 == codecSelferValueTypeMap1234 { - yyl1224 := r.ReadMapStart() - if yyl1224 == 0 { + yyct1229 := r.ContainerType() + if yyct1229 == codecSelferValueTypeMap1234 { + yyl1229 := r.ReadMapStart() + if yyl1229 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1224, d) + x.codecDecodeSelfFromMap(yyl1229, d) } - } else if yyct1224 == codecSelferValueTypeArray1234 { - yyl1224 := r.ReadArrayStart() - if yyl1224 == 0 { + } else if yyct1229 == codecSelferValueTypeArray1234 { + yyl1229 := r.ReadArrayStart() + if yyl1229 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1224, d) + x.codecDecodeSelfFromArray(yyl1229, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10502,12 +10543,12 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1225Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1225Slc - var yyhl1225 bool = l >= 0 - for yyj1225 := 0; ; yyj1225++ { - if yyhl1225 { - if yyj1225 >= l { + var yys1230Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1230Slc + var yyhl1230 bool = l >= 0 + for yyj1230 := 0; ; yyj1230++ { + if yyhl1230 { + if yyj1230 >= l { break } } else { @@ -10516,10 +10557,10 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1225Slc = r.DecodeBytes(yys1225Slc, true, true) - yys1225 := string(yys1225Slc) + yys1230Slc = r.DecodeBytes(yys1230Slc, true, true) + yys1230 := string(yys1230Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1225 { + switch yys1230 { case "enableHostPathProvisioning": if r.TryDecodeAsNil() { x.EnableHostPathProvisioning = false @@ -10536,8 +10577,8 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.PersistentVolumeRecyclerConfiguration = PersistentVolumeRecyclerConfiguration{} } else { - yyv1228 := &x.PersistentVolumeRecyclerConfiguration - yyv1228.CodecDecodeSelf(d) + yyv1233 := &x.PersistentVolumeRecyclerConfiguration + yyv1233.CodecDecodeSelf(d) } case "flexVolumePluginDir": if r.TryDecodeAsNil() { @@ -10546,9 +10587,9 @@ func (x *VolumeConfiguration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FlexVolumePluginDir = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1225) - } // end switch yys1225 - } // end for yyj1225 + z.DecStructFieldNotFound(-1, yys1230) + } // end switch yys1230 + } // end for yyj1230 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10556,16 +10597,16 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1230 int - var yyb1230 bool - var yyhl1230 bool = l >= 0 - yyj1230++ - if yyhl1230 { - yyb1230 = yyj1230 > l + var yyj1235 int + var yyb1235 bool + var yyhl1235 bool = l >= 0 + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1230 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1230 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10575,13 +10616,13 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.EnableHostPathProvisioning = bool(r.DecodeBool()) } - yyj1230++ - if yyhl1230 { - yyb1230 = yyj1230 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1230 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1230 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10591,13 +10632,13 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.EnableDynamicProvisioning = bool(r.DecodeBool()) } - yyj1230++ - if yyhl1230 { - yyb1230 = yyj1230 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1230 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1230 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10605,16 +10646,16 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.PersistentVolumeRecyclerConfiguration = PersistentVolumeRecyclerConfiguration{} } else { - yyv1233 := &x.PersistentVolumeRecyclerConfiguration - yyv1233.CodecDecodeSelf(d) + yyv1238 := &x.PersistentVolumeRecyclerConfiguration + yyv1238.CodecDecodeSelf(d) } - yyj1230++ - if yyhl1230 { - yyb1230 = yyj1230 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1230 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1230 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10625,17 +10666,17 @@ func (x *VolumeConfiguration) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FlexVolumePluginDir = string(r.DecodeString()) } for { - yyj1230++ - if yyhl1230 { - yyb1230 = yyj1230 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1230 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1230 { + if yyb1235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1230-1, "") + z.DecStructFieldNotFound(yyj1235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10647,33 +10688,33 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc if x == nil { r.EncodeNil() } else { - yym1235 := z.EncBinary() - _ = yym1235 + yym1240 := z.EncBinary() + _ = yym1240 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1236 := !z.EncBinary() - yy2arr1236 := z.EncBasicHandle().StructToArray - var yyq1236 [7]bool - _, _, _ = yysep1236, yyq1236, yy2arr1236 - const yyr1236 bool = false - var yynn1236 int - if yyr1236 || yy2arr1236 { + yysep1241 := !z.EncBinary() + yy2arr1241 := z.EncBasicHandle().StructToArray + var yyq1241 [7]bool + _, _, _ = yysep1241, yyq1241, yy2arr1241 + const yyr1241 bool = false + var yynn1241 int + if yyr1241 || yy2arr1241 { r.EncodeArrayStart(7) } else { - yynn1236 = 7 - for _, b := range yyq1236 { + yynn1241 = 7 + for _, b := range yyq1241 { if b { - yynn1236++ + yynn1241++ } } - r.EncodeMapStart(yynn1236) - yynn1236 = 0 + r.EncodeMapStart(yynn1241) + yynn1241 = 0 } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1238 := z.EncBinary() - _ = yym1238 + yym1243 := z.EncBinary() + _ = yym1243 if false { } else { r.EncodeInt(int64(x.MaximumRetry)) @@ -10682,17 +10723,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maximumRetry")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1239 := z.EncBinary() - _ = yym1239 + yym1244 := z.EncBinary() + _ = yym1244 if false { } else { r.EncodeInt(int64(x.MaximumRetry)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1241 := z.EncBinary() - _ = yym1241 + yym1246 := z.EncBinary() + _ = yym1246 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutNFS)) @@ -10701,17 +10742,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minimumTimeoutNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1242 := z.EncBinary() - _ = yym1242 + yym1247 := z.EncBinary() + _ = yym1247 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutNFS)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1244 := z.EncBinary() - _ = yym1244 + yym1249 := z.EncBinary() + _ = yym1249 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathNFS)) @@ -10720,17 +10761,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podTemplateFilePathNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1245 := z.EncBinary() - _ = yym1245 + yym1250 := z.EncBinary() + _ = yym1250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathNFS)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1247 := z.EncBinary() - _ = yym1247 + yym1252 := z.EncBinary() + _ = yym1252 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutNFS)) @@ -10739,17 +10780,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("incrementTimeoutNFS")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1248 := z.EncBinary() - _ = yym1248 + yym1253 := z.EncBinary() + _ = yym1253 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutNFS)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1250 := z.EncBinary() - _ = yym1250 + yym1255 := z.EncBinary() + _ = yym1255 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathHostPath)) @@ -10758,17 +10799,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podTemplateFilePathHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1251 := z.EncBinary() - _ = yym1251 + yym1256 := z.EncBinary() + _ = yym1256 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodTemplateFilePathHostPath)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1253 := z.EncBinary() - _ = yym1253 + yym1258 := z.EncBinary() + _ = yym1258 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutHostPath)) @@ -10777,17 +10818,17 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minimumTimeoutHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1254 := z.EncBinary() - _ = yym1254 + yym1259 := z.EncBinary() + _ = yym1259 if false { } else { r.EncodeInt(int64(x.MinimumTimeoutHostPath)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1256 := z.EncBinary() - _ = yym1256 + yym1261 := z.EncBinary() + _ = yym1261 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutHostPath)) @@ -10796,14 +10837,14 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecEncodeSelf(e *codec1978.Enc z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("incrementTimeoutHostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1257 := z.EncBinary() - _ = yym1257 + yym1262 := z.EncBinary() + _ = yym1262 if false { } else { r.EncodeInt(int64(x.IncrementTimeoutHostPath)) } } - if yyr1236 || yy2arr1236 { + if yyr1241 || yy2arr1241 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10816,25 +10857,25 @@ func (x *PersistentVolumeRecyclerConfiguration) CodecDecodeSelf(d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1258 := z.DecBinary() - _ = yym1258 + yym1263 := z.DecBinary() + _ = yym1263 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1259 := r.ContainerType() - if yyct1259 == codecSelferValueTypeMap1234 { - yyl1259 := r.ReadMapStart() - if yyl1259 == 0 { + yyct1264 := r.ContainerType() + if yyct1264 == codecSelferValueTypeMap1234 { + yyl1264 := r.ReadMapStart() + if yyl1264 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1259, d) + x.codecDecodeSelfFromMap(yyl1264, d) } - } else if yyct1259 == codecSelferValueTypeArray1234 { - yyl1259 := r.ReadArrayStart() - if yyl1259 == 0 { + } else if yyct1264 == codecSelferValueTypeArray1234 { + yyl1264 := r.ReadArrayStart() + if yyl1264 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1259, d) + x.codecDecodeSelfFromArray(yyl1264, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10846,12 +10887,12 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1260Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1260Slc - var yyhl1260 bool = l >= 0 - for yyj1260 := 0; ; yyj1260++ { - if yyhl1260 { - if yyj1260 >= l { + var yys1265Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1265Slc + var yyhl1265 bool = l >= 0 + for yyj1265 := 0; ; yyj1265++ { + if yyhl1265 { + if yyj1265 >= l { break } } else { @@ -10860,10 +10901,10 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1260Slc = r.DecodeBytes(yys1260Slc, true, true) - yys1260 := string(yys1260Slc) + yys1265Slc = r.DecodeBytes(yys1265Slc, true, true) + yys1265 := string(yys1265Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1260 { + switch yys1265 { case "maximumRetry": if r.TryDecodeAsNil() { x.MaximumRetry = 0 @@ -10907,9 +10948,9 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromMap(l int, d x.IncrementTimeoutHostPath = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1260) - } // end switch yys1260 - } // end for yyj1260 + z.DecStructFieldNotFound(-1, yys1265) + } // end switch yys1265 + } // end for yyj1265 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10917,16 +10958,16 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1268 int - var yyb1268 bool - var yyhl1268 bool = l >= 0 - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + var yyj1273 int + var yyb1273 bool + var yyhl1273 bool = l >= 0 + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10936,13 +10977,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MaximumRetry = int32(r.DecodeInt(32)) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10952,13 +10993,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MinimumTimeoutNFS = int32(r.DecodeInt(32)) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10968,13 +11009,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.PodTemplateFilePathNFS = string(r.DecodeString()) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10984,13 +11025,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.IncrementTimeoutNFS = int32(r.DecodeInt(32)) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11000,13 +11041,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.PodTemplateFilePathHostPath = string(r.DecodeString()) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11016,13 +11057,13 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, } else { x.MinimumTimeoutHostPath = int32(r.DecodeInt(32)) } - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11033,17 +11074,17 @@ func (x *PersistentVolumeRecyclerConfiguration) codecDecodeSelfFromArray(l int, x.IncrementTimeoutHostPath = int32(r.DecodeInt(32)) } for { - yyj1268++ - if yyhl1268 { - yyb1268 = yyj1268 > l + yyj1273++ + if yyhl1273 { + yyb1273 = yyj1273 > l } else { - yyb1268 = r.CheckBreak() + yyb1273 = r.CheckBreak() } - if yyb1268 { + if yyb1273 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1268-1, "") + z.DecStructFieldNotFound(yyj1273-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11053,20 +11094,20 @@ func (x codecSelfer1234) encconfig_ConfigurationMap(v pkg2_config.ConfigurationM z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk1276, yyv1276 := range v { + for yyk1281, yyv1281 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym1277 := z.EncBinary() - _ = yym1277 + yym1282 := z.EncBinary() + _ = yym1282 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk1276)) + r.EncodeString(codecSelferC_UTF81234, string(yyk1281)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1278 := z.EncBinary() - _ = yym1278 + yym1283 := z.EncBinary() + _ = yym1283 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyv1276)) + r.EncodeString(codecSelferC_UTF81234, string(yyv1281)) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11077,63 +11118,63 @@ func (x codecSelfer1234) decconfig_ConfigurationMap(v *pkg2_config.Configuration z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1279 := *v - yyl1279 := r.ReadMapStart() - yybh1279 := z.DecBasicHandle() - if yyv1279 == nil { - yyrl1279, _ := z.DecInferLen(yyl1279, yybh1279.MaxInitLen, 32) - yyv1279 = make(map[string]string, yyrl1279) - *v = yyv1279 + yyv1284 := *v + yyl1284 := r.ReadMapStart() + yybh1284 := z.DecBasicHandle() + if yyv1284 == nil { + yyrl1284, _ := z.DecInferLen(yyl1284, yybh1284.MaxInitLen, 32) + yyv1284 = make(map[string]string, yyrl1284) + *v = yyv1284 } - var yymk1279 string - var yymv1279 string - var yymg1279 bool - if yybh1279.MapValueReset { + var yymk1284 string + var yymv1284 string + var yymg1284 bool + if yybh1284.MapValueReset { } - if yyl1279 > 0 { - for yyj1279 := 0; yyj1279 < yyl1279; yyj1279++ { + if yyl1284 > 0 { + for yyj1284 := 0; yyj1284 < yyl1284; yyj1284++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk1279 = "" + yymk1284 = "" } else { - yymk1279 = string(r.DecodeString()) + yymk1284 = string(r.DecodeString()) } - if yymg1279 { - yymv1279 = yyv1279[yymk1279] + if yymg1284 { + yymv1284 = yyv1284[yymk1284] } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv1279 = "" + yymv1284 = "" } else { - yymv1279 = string(r.DecodeString()) + yymv1284 = string(r.DecodeString()) } - if yyv1279 != nil { - yyv1279[yymk1279] = yymv1279 + if yyv1284 != nil { + yyv1284[yymk1284] = yymv1284 } } - } else if yyl1279 < 0 { - for yyj1279 := 0; !r.CheckBreak(); yyj1279++ { + } else if yyl1284 < 0 { + for yyj1284 := 0; !r.CheckBreak(); yyj1284++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk1279 = "" + yymk1284 = "" } else { - yymk1279 = string(r.DecodeString()) + yymk1284 = string(r.DecodeString()) } - if yymg1279 { - yymv1279 = yyv1279[yymk1279] + if yymg1284 { + yymv1284 = yyv1284[yymk1284] } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv1279 = "" + yymv1284 = "" } else { - yymv1279 = string(r.DecodeString()) + yymv1284 = string(r.DecodeString()) } - if yyv1279 != nil { - yyv1279[yymk1279] = yymv1279 + if yyv1284 != nil { + yyv1284[yymk1284] = yymv1284 } } } // else len==0: TODO: Should we clear map entries? diff --git a/pkg/apis/componentconfig/types.go b/pkg/apis/componentconfig/types.go index e277d5a62f1..bf9eb9bc190 100644 --- a/pkg/apis/componentconfig/types.go +++ b/pkg/apis/componentconfig/types.go @@ -66,12 +66,14 @@ type KubeProxyConfiguration struct { // Must be greater than 0. Only applicable for proxyMode=userspace. UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"` // conntrackMax is the maximum number of NAT connections to track (0 to - // leave as-is). This takes precedence over conntrackMaxPerCore. + // leave as-is). This takes precedence over conntrackMaxPerCore and conntrackMin. ConntrackMax int32 `json:"conntrackMax"` // conntrackMaxPerCore is the maximum number of NAT connections to track - // per CPU core (0 to leave as-is). This value is only considered if - // conntrackMax == 0. + // per CPU core (0 to leave the limit as-is and ignore conntrackMin). ConntrackMaxPerCore int32 `json:"conntrackMaxPerCore"` + // conntrackMin is the minimum value of connect-tracking records to allocate, + // regardless of conntrackMaxPerCore (set conntrackMaxPerCore=0 to leave the limit as-is). + ConntrackMin int32 `json:"conntrackMin"` // conntrackTCPEstablishedTimeout is how long an idle TCP connection will be kept open // (e.g. '250ms', '2s'). Must be greater than 0. ConntrackTCPEstablishedTimeout unversioned.Duration `json:"conntrackTCPEstablishedTimeout"` diff --git a/pkg/apis/componentconfig/v1alpha1/defaults.go b/pkg/apis/componentconfig/v1alpha1/defaults.go index 72736b22254..070ad978b02 100644 --- a/pkg/apis/componentconfig/v1alpha1/defaults.go +++ b/pkg/apis/componentconfig/v1alpha1/defaults.go @@ -89,6 +89,9 @@ func SetDefaults_KubeProxyConfiguration(obj *KubeProxyConfiguration) { if obj.ConntrackMaxPerCore == 0 { obj.ConntrackMaxPerCore = 32 * 1024 } + if obj.ConntrackMin == 0 { + obj.ConntrackMin = 128 * 1024 + } } if obj.IPTablesMasqueradeBit == nil { temp := int32(14) diff --git a/pkg/apis/componentconfig/v1alpha1/types.go b/pkg/apis/componentconfig/v1alpha1/types.go index 41fa55a82f4..18c5c2d8e5a 100644 --- a/pkg/apis/componentconfig/v1alpha1/types.go +++ b/pkg/apis/componentconfig/v1alpha1/types.go @@ -63,12 +63,14 @@ type KubeProxyConfiguration struct { // Must be greater than 0. Only applicable for proxyMode=userspace. UDPIdleTimeout unversioned.Duration `json:"udpTimeoutMilliseconds"` // conntrackMax is the maximum number of NAT connections to track (0 to - // leave as-is). This takes precedence over conntrackMaxPerCore. + // leave as-is). This takes precedence over conntrackMaxPerCore and conntrackMin. ConntrackMax int32 `json:"conntrackMax"` // conntrackMaxPerCore is the maximum number of NAT connections to track - // per CPU core (0 to leave as-is). This value is only considered if - // conntrackMax == 0. + // per CPU core (0 to leave the limit as-is and ignore conntrackMin). ConntrackMaxPerCore int32 `json:"conntrackMaxPerCore"` + // conntrackMin is the minimum value of connect-tracking records to allocate, + // regardless of conntrackMaxPerCore (set conntrackMaxPerCore=0 to leave the limit as-is). + ConntrackMin int32 `json:"conntrackMin"` // conntrackTCPEstablishedTimeout is how long an idle TCP connection will be kept open // (e.g. '250ms', '2s'). Must be greater than 0. ConntrackTCPEstablishedTimeout unversioned.Duration `json:"conntrackTCPEstablishedTimeout"` diff --git a/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go b/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go index a67f0332e52..5768ef961bb 100644 --- a/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go +++ b/pkg/apis/componentconfig/v1alpha1/zz_generated.conversion.go @@ -69,6 +69,7 @@ func autoConvert_v1alpha1_KubeProxyConfiguration_To_componentconfig_KubeProxyCon out.UDPIdleTimeout = in.UDPIdleTimeout out.ConntrackMax = in.ConntrackMax out.ConntrackMaxPerCore = in.ConntrackMaxPerCore + out.ConntrackMin = in.ConntrackMin out.ConntrackTCPEstablishedTimeout = in.ConntrackTCPEstablishedTimeout return nil } @@ -98,6 +99,7 @@ func autoConvert_componentconfig_KubeProxyConfiguration_To_v1alpha1_KubeProxyCon out.UDPIdleTimeout = in.UDPIdleTimeout out.ConntrackMax = in.ConntrackMax out.ConntrackMaxPerCore = in.ConntrackMaxPerCore + out.ConntrackMin = in.ConntrackMin out.ConntrackTCPEstablishedTimeout = in.ConntrackTCPEstablishedTimeout return nil } diff --git a/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go index f5755f06ca2..7a39ca79ce5 100644 --- a/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/componentconfig/v1alpha1/zz_generated.deepcopy.go @@ -75,6 +75,7 @@ func DeepCopy_v1alpha1_KubeProxyConfiguration(in interface{}, out interface{}, c out.UDPIdleTimeout = in.UDPIdleTimeout out.ConntrackMax = in.ConntrackMax out.ConntrackMaxPerCore = in.ConntrackMaxPerCore + out.ConntrackMin = in.ConntrackMin out.ConntrackTCPEstablishedTimeout = in.ConntrackTCPEstablishedTimeout return nil } diff --git a/pkg/apis/componentconfig/zz_generated.deepcopy.go b/pkg/apis/componentconfig/zz_generated.deepcopy.go index 7c714190083..19104cf69ed 100644 --- a/pkg/apis/componentconfig/zz_generated.deepcopy.go +++ b/pkg/apis/componentconfig/zz_generated.deepcopy.go @@ -163,6 +163,7 @@ func DeepCopy_componentconfig_KubeProxyConfiguration(in interface{}, out interfa out.UDPIdleTimeout = in.UDPIdleTimeout out.ConntrackMax = in.ConntrackMax out.ConntrackMaxPerCore = in.ConntrackMaxPerCore + out.ConntrackMin = in.ConntrackMin out.ConntrackTCPEstablishedTimeout = in.ConntrackTCPEstablishedTimeout return nil } diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 6102f4d5f0e..7715b2a8372 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -1968,14 +1968,21 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, "conntrackMax": { SchemaProps: spec.SchemaProps{ - Description: "conntrackMax is the maximum number of NAT connections to track (0 to leave as-is). This takes precedence over conntrackMaxPerCore.", + Description: "conntrackMax is the maximum number of NAT connections to track (0 to leave as-is). This takes precedence over conntrackMaxPerCore and conntrackMin.", Type: []string{"integer"}, Format: "int32", }, }, "conntrackMaxPerCore": { SchemaProps: spec.SchemaProps{ - Description: "conntrackMaxPerCore is the maximum number of NAT connections to track per CPU core (0 to leave as-is). This value is only considered if conntrackMax == 0.", + Description: "conntrackMaxPerCore is the maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrackMin).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "conntrackMin": { + SchemaProps: spec.SchemaProps{ + Description: "conntrackMin is the minimum value of connect-tracking records to allocate, regardless of conntrackMaxPerCore (set conntrackMaxPerCore=0 to leave the limit as-is).", Type: []string{"integer"}, Format: "int32", }, @@ -1987,7 +1994,7 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, }, - Required: []string{"TypeMeta", "bindAddress", "clusterCIDR", "healthzBindAddress", "healthzPort", "hostnameOverride", "iptablesMasqueradeBit", "iptablesSyncPeriodSeconds", "kubeconfigPath", "masqueradeAll", "master", "oomScoreAdj", "mode", "portRange", "resourceContainer", "udpTimeoutMilliseconds", "conntrackMax", "conntrackMaxPerCore", "conntrackTCPEstablishedTimeout"}, + Required: []string{"TypeMeta", "bindAddress", "clusterCIDR", "healthzBindAddress", "healthzPort", "hostnameOverride", "iptablesMasqueradeBit", "iptablesSyncPeriodSeconds", "kubeconfigPath", "masqueradeAll", "master", "oomScoreAdj", "mode", "portRange", "resourceContainer", "udpTimeoutMilliseconds", "conntrackMax", "conntrackMaxPerCore", "conntrackMin", "conntrackTCPEstablishedTimeout"}, }, }, Dependencies: []string{ @@ -13377,14 +13384,21 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, "conntrackMax": { SchemaProps: spec.SchemaProps{ - Description: "conntrackMax is the maximum number of NAT connections to track (0 to leave as-is). This takes precedence over conntrackMaxPerCore.", + Description: "conntrackMax is the maximum number of NAT connections to track (0 to leave as-is). This takes precedence over conntrackMaxPerCore and conntrackMin.", Type: []string{"integer"}, Format: "int32", }, }, "conntrackMaxPerCore": { SchemaProps: spec.SchemaProps{ - Description: "conntrackMaxPerCore is the maximum number of NAT connections to track per CPU core (0 to leave as-is). This value is only considered if conntrackMax == 0.", + Description: "conntrackMaxPerCore is the maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrackMin).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "conntrackMin": { + SchemaProps: spec.SchemaProps{ + Description: "conntrackMin is the minimum value of connect-tracking records to allocate, regardless of conntrackMaxPerCore (set conntrackMaxPerCore=0 to leave the limit as-is).", Type: []string{"integer"}, Format: "int32", }, @@ -13396,7 +13410,7 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, }, - Required: []string{"TypeMeta", "bindAddress", "clusterCIDR", "healthzBindAddress", "healthzPort", "hostnameOverride", "iptablesMasqueradeBit", "iptablesSyncPeriodSeconds", "kubeconfigPath", "masqueradeAll", "master", "oomScoreAdj", "mode", "portRange", "resourceContainer", "udpTimeoutMilliseconds", "conntrackMax", "conntrackMaxPerCore", "conntrackTCPEstablishedTimeout"}, + Required: []string{"TypeMeta", "bindAddress", "clusterCIDR", "healthzBindAddress", "healthzPort", "hostnameOverride", "iptablesMasqueradeBit", "iptablesSyncPeriodSeconds", "kubeconfigPath", "masqueradeAll", "master", "oomScoreAdj", "mode", "portRange", "resourceContainer", "udpTimeoutMilliseconds", "conntrackMax", "conntrackMaxPerCore", "conntrackMin", "conntrackTCPEstablishedTimeout"}, }, }, Dependencies: []string{