From c7c1a99e8e27d29799e8ea00b267f4d0d52a3c60 Mon Sep 17 00:00:00 2001 From: jennybuckley Date: Mon, 29 Jul 2019 16:04:56 -0700 Subject: [PATCH 1/5] Update structured merge-diff version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 74c2c8877c0..343c0167137 100644 --- a/go.mod +++ b/go.mod @@ -468,7 +468,7 @@ replace ( modernc.org/strutil => modernc.org/strutil v1.0.0 modernc.org/xc => modernc.org/xc v1.0.0 sigs.k8s.io/kustomize => sigs.k8s.io/kustomize v2.0.3+incompatible - sigs.k8s.io/structured-merge-diff => sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 + sigs.k8s.io/structured-merge-diff => sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 sigs.k8s.io/yaml => sigs.k8s.io/yaml v1.1.0 vbom.ml/util => vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc ) From b7649db53a9b2ab961c32471fd5d148157db4d74 Mon Sep 17 00:00:00 2001 From: jennybuckley Date: Mon, 29 Jul 2019 16:05:17 -0700 Subject: [PATCH 2/5] Update vendor --- vendor/modules.txt | 2 +- .../structured-merge-diff/fieldpath/BUILD | 7 +- .../fieldpath/serialize-pe.go | 155 ++++++++++++ .../fieldpath/serialize.go | 237 ++++++++++++++++++ .../structured-merge-diff/fieldpath/set.go | 10 +- .../structured-merge-diff/value/BUILD | 6 +- .../structured-merge-diff/value/fastjson.go | 149 +++++++++++ .../structured-merge-diff/value/value.go | 53 +++- 8 files changed, 608 insertions(+), 11 deletions(-) create mode 100644 vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize-pe.go create mode 100644 vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize.go create mode 100644 vendor/sigs.k8s.io/structured-merge-diff/value/fastjson.go diff --git a/vendor/modules.txt b/vendor/modules.txt index 39763a35095..69278163620 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1761,7 +1761,7 @@ sigs.k8s.io/kustomize/pkg/transformers sigs.k8s.io/kustomize/pkg/transformers/config sigs.k8s.io/kustomize/pkg/transformers/config/defaultconfig sigs.k8s.io/kustomize/pkg/types -# sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 => sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 +# sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 => sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 sigs.k8s.io/structured-merge-diff/fieldpath sigs.k8s.io/structured-merge-diff/merge sigs.k8s.io/structured-merge-diff/schema diff --git a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/BUILD b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/BUILD index db1aff0f8a2..f04464bba6e 100644 --- a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/BUILD +++ b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/BUILD @@ -8,12 +8,17 @@ go_library( "fromvalue.go", "managers.go", "path.go", + "serialize.go", + "serialize-pe.go", "set.go", ], importmap = "k8s.io/kubernetes/vendor/sigs.k8s.io/structured-merge-diff/fieldpath", importpath = "sigs.k8s.io/structured-merge-diff/fieldpath", visibility = ["//visibility:public"], - deps = ["//vendor/sigs.k8s.io/structured-merge-diff/value:go_default_library"], + deps = [ + "//vendor/github.com/json-iterator/go:go_default_library", + "//vendor/sigs.k8s.io/structured-merge-diff/value:go_default_library", + ], ) filegroup( diff --git a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize-pe.go b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize-pe.go new file mode 100644 index 00000000000..a0338fa66ef --- /dev/null +++ b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize-pe.go @@ -0,0 +1,155 @@ +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package fieldpath + +import ( + "errors" + "fmt" + "io" + "strconv" + "strings" + + jsoniter "github.com/json-iterator/go" + "sigs.k8s.io/structured-merge-diff/value" +) + +var ErrUnknownPathElementType = errors.New("unknown path element type") + +const ( + // Field indicates that the content of this path element is a field's name + peField = "f" + + // Value indicates that the content of this path element is a field's value + peValue = "v" + + // Index indicates that the content of this path element is an index in an array + peIndex = "i" + + // Key indicates that the content of this path element is a key value map + peKey = "k" + + // Separator separates the type of a path element from the contents + peSeparator = ":" +) + +var ( + peFieldSepBytes = []byte(peField + peSeparator) + peValueSepBytes = []byte(peValue + peSeparator) + peIndexSepBytes = []byte(peIndex + peSeparator) + peKeySepBytes = []byte(peKey + peSeparator) + peSepBytes = []byte(peSeparator) +) + +// DeserializePathElement parses a serialized path element +func DeserializePathElement(s string) (PathElement, error) { + b := []byte(s) + if len(b) < 2 { + return PathElement{}, errors.New("key must be 2 characters long:") + } + typeSep, b := b[:2], b[2:] + if typeSep[1] != peSepBytes[0] { + return PathElement{}, fmt.Errorf("missing colon: %v", s) + } + switch typeSep[0] { + case peFieldSepBytes[0]: + // Slice s rather than convert b, to save on + // allocations. + str := s[2:] + return PathElement{ + FieldName: &str, + }, nil + case peValueSepBytes[0]: + iter := readPool.BorrowIterator(b) + defer readPool.ReturnIterator(iter) + v, err := value.ReadJSONIter(iter) + if err != nil { + return PathElement{}, err + } + return PathElement{Value: &v}, nil + case peKeySepBytes[0]: + iter := readPool.BorrowIterator(b) + defer readPool.ReturnIterator(iter) + v, err := value.ReadJSONIter(iter) + if err != nil { + return PathElement{}, err + } + if v.MapValue == nil { + return PathElement{}, fmt.Errorf("expected key value pairs but got %#v", v) + } + return PathElement{Key: v.MapValue}, nil + case peIndexSepBytes[0]: + i, err := strconv.Atoi(s[2:]) + if err != nil { + return PathElement{}, err + } + return PathElement{ + Index: &i, + }, nil + default: + return PathElement{}, ErrUnknownPathElementType + } +} + +var ( + readPool = jsoniter.NewIterator(jsoniter.ConfigCompatibleWithStandardLibrary).Pool() + writePool = jsoniter.NewStream(jsoniter.ConfigCompatibleWithStandardLibrary, nil, 1024).Pool() +) + +// SerializePathElement serializes a path element +func SerializePathElement(pe PathElement) (string, error) { + buf := strings.Builder{} + err := serializePathElementToWriter(&buf, pe) + return buf.String(), err +} + +func serializePathElementToWriter(w io.Writer, pe PathElement) error { + stream := writePool.BorrowStream(w) + defer writePool.ReturnStream(stream) + switch { + case pe.FieldName != nil: + if _, err := stream.Write(peFieldSepBytes); err != nil { + return err + } + stream.WriteRaw(*pe.FieldName) + case pe.Key != nil: + if _, err := stream.Write(peKeySepBytes); err != nil { + return err + } + v := value.Value{MapValue: pe.Key} + v.WriteJSONStream(stream) + case pe.Value != nil: + if _, err := stream.Write(peValueSepBytes); err != nil { + return err + } + pe.Value.WriteJSONStream(stream) + case pe.Index != nil: + if _, err := stream.Write(peIndexSepBytes); err != nil { + return err + } + stream.WriteInt(*pe.Index) + default: + return errors.New("invalid PathElement") + } + b := stream.Buffer() + err := stream.Flush() + // Help jsoniter manage its buffers--without this, the next + // use of the stream is likely to require an allocation. Look + // at the jsoniter stream code to understand why. They were probably + // optimizing for folks using the buffer directly. + stream.SetBuffer(b[:0]) + return err +} diff --git a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize.go b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize.go new file mode 100644 index 00000000000..27e4b5bdc2d --- /dev/null +++ b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/serialize.go @@ -0,0 +1,237 @@ +/* +Copyright 2019 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package fieldpath + +import ( + "bytes" + "io" + "unsafe" + + jsoniter "github.com/json-iterator/go" +) + +func (s *Set) ToJSON() ([]byte, error) { + buf := bytes.Buffer{} + err := s.ToJSONStream(&buf) + if err != nil { + return nil, err + } + return buf.Bytes(), nil +} + +func (s *Set) ToJSONStream(w io.Writer) error { + stream := writePool.BorrowStream(w) + defer writePool.ReturnStream(stream) + + var r reusableBuilder + + stream.WriteObjectStart() + err := s.emitContents_v1(false, stream, &r) + if err != nil { + return err + } + stream.WriteObjectEnd() + return stream.Flush() +} + +func manageMemory(stream *jsoniter.Stream) error { + // Help jsoniter manage its buffers--without this, it does a bunch of + // alloctaions that are not necessary. They were probably optimizing + // for folks using the buffer directly. + b := stream.Buffer() + if len(b) > 4096 || cap(b)-len(b) < 2048 { + if err := stream.Flush(); err != nil { + return err + } + stream.SetBuffer(b[:0]) + } + return nil +} + +type reusableBuilder struct { + bytes.Buffer +} + +func (r *reusableBuilder) unsafeString() string { + b := r.Bytes() + return *(*string)(unsafe.Pointer(&b)) +} + +func (r *reusableBuilder) reset() *bytes.Buffer { + r.Reset() + return &r.Buffer +} + +func (s *Set) emitContents_v1(includeSelf bool, stream *jsoniter.Stream, r *reusableBuilder) error { + mi, ci := 0, 0 + first := true + preWrite := func() { + if first { + first = false + return + } + stream.WriteMore() + } + + for mi < len(s.Members.members) && ci < len(s.Children.members) { + mpe := s.Members.members[mi] + cpe := s.Children.members[ci].pathElement + + if mpe.Less(cpe) { + preWrite() + if err := serializePathElementToWriter(r.reset(), mpe); err != nil { + return err + } + stream.WriteObjectField(r.unsafeString()) + stream.WriteEmptyObject() + mi++ + } else if cpe.Less(mpe) { + preWrite() + if err := serializePathElementToWriter(r.reset(), cpe); err != nil { + return err + } + stream.WriteObjectField(r.unsafeString()) + stream.WriteObjectStart() + if err := s.Children.members[ci].set.emitContents_v1(false, stream, r); err != nil { + return err + } + stream.WriteObjectEnd() + ci++ + } else { + preWrite() + if err := serializePathElementToWriter(r.reset(), cpe); err != nil { + return err + } + stream.WriteObjectField(r.unsafeString()) + stream.WriteObjectStart() + if err := s.Children.members[ci].set.emitContents_v1(true, stream, r); err != nil { + return err + } + stream.WriteObjectEnd() + mi++ + ci++ + } + } + + for mi < len(s.Members.members) { + mpe := s.Members.members[mi] + + preWrite() + if err := serializePathElementToWriter(r.reset(), mpe); err != nil { + return err + } + stream.WriteObjectField(r.unsafeString()) + stream.WriteEmptyObject() + mi++ + } + + for ci < len(s.Children.members) { + cpe := s.Children.members[ci].pathElement + + preWrite() + if err := serializePathElementToWriter(r.reset(), cpe); err != nil { + return err + } + stream.WriteObjectField(r.unsafeString()) + stream.WriteObjectStart() + if err := s.Children.members[ci].set.emitContents_v1(false, stream, r); err != nil { + return err + } + stream.WriteObjectEnd() + ci++ + } + + if includeSelf && !first { + preWrite() + stream.WriteObjectField(".") + stream.WriteEmptyObject() + } + return manageMemory(stream) +} + +// FromJSON clears s and reads a JSON formatted set structure. +func (s *Set) FromJSON(r io.Reader) error { + // The iterator pool is completely useless for memory management, grrr. + iter := jsoniter.Parse(jsoniter.ConfigCompatibleWithStandardLibrary, r, 4096) + + found, _ := readIter_v1(iter) + if found == nil { + *s = Set{} + } else { + *s = *found + } + return iter.Error +} + +// returns true if this subtree is also (or only) a member of parent; s is nil +// if there are no further children. +func readIter_v1(iter *jsoniter.Iterator) (children *Set, isMember bool) { + iter.ReadMapCB(func(iter *jsoniter.Iterator, key string) bool { + if key == "." { + isMember = true + iter.Skip() + return true + } + pe, err := DeserializePathElement(key) + if err == ErrUnknownPathElementType { + // Ignore these-- a future version maybe knows what + // they are. We drop these completely rather than try + // to preserve things we don't understand. + iter.Skip() + return true + } else if err != nil { + iter.ReportError("parsing key as path element", err.Error()) + iter.Skip() + return true + } + grandchildren, childIsMember := readIter_v1(iter) + if childIsMember { + if children == nil { + children = &Set{} + } + m := &children.Members.members + // Since we expect that most of the time these will have been + // serialized in the right order, we just verify that and append. + appendOK := len(*m) == 0 || (*m)[len(*m)-1].Less(pe) + if appendOK { + *m = append(*m, pe) + } else { + children.Members.Insert(pe) + } + } + if grandchildren != nil { + if children == nil { + children = &Set{} + } + // Since we expect that most of the time these will have been + // serialized in the right order, we just verify that and append. + m := &children.Children.members + appendOK := len(*m) == 0 || (*m)[len(*m)-1].pathElement.Less(pe) + if appendOK { + *m = append(*m, setNode{pe, grandchildren}) + } else { + *children.Children.Descend(pe) = *grandchildren + } + } + return true + }) + if children == nil { + isMember = true + } + + return children, isMember +} diff --git a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/set.go b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/set.go index b3aebfefcb0..f280a2fc76a 100644 --- a/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/set.go +++ b/vendor/sigs.k8s.io/structured-merge-diff/fieldpath/set.go @@ -173,9 +173,17 @@ type setNode struct { // SetNodeMap is a map of PathElement to subset. type SetNodeMap struct { - members []setNode + members sortedSetNode } +type sortedSetNode []setNode + +// Implement the sort interface; this would permit bulk creation, which would +// be faster than doing it one at a time via Insert. +func (s sortedSetNode) Len() int { return len(s) } +func (s sortedSetNode) Less(i, j int) bool { return s[i].pathElement.Less(s[j].pathElement) } +func (s sortedSetNode) Swap(i, j int) { s[i], s[j] = s[j], s[i] } + // Descend adds pe to the set if necessary, returning the associated subset. func (s *SetNodeMap) Descend(pe PathElement) *Set { loc := sort.Search(len(s.members), func(i int) bool { diff --git a/vendor/sigs.k8s.io/structured-merge-diff/value/BUILD b/vendor/sigs.k8s.io/structured-merge-diff/value/BUILD index b01bb7dae19..0c365acdc3f 100644 --- a/vendor/sigs.k8s.io/structured-merge-diff/value/BUILD +++ b/vendor/sigs.k8s.io/structured-merge-diff/value/BUILD @@ -4,13 +4,17 @@ go_library( name = "go_default_library", srcs = [ "doc.go", + "fastjson.go", "unstructured.go", "value.go", ], importmap = "k8s.io/kubernetes/vendor/sigs.k8s.io/structured-merge-diff/value", importpath = "sigs.k8s.io/structured-merge-diff/value", visibility = ["//visibility:public"], - deps = ["//vendor/gopkg.in/yaml.v2:go_default_library"], + deps = [ + "//vendor/github.com/json-iterator/go:go_default_library", + "//vendor/gopkg.in/yaml.v2:go_default_library", + ], ) filegroup( diff --git a/vendor/sigs.k8s.io/structured-merge-diff/value/fastjson.go b/vendor/sigs.k8s.io/structured-merge-diff/value/fastjson.go new file mode 100644 index 00000000000..fe943e8975c --- /dev/null +++ b/vendor/sigs.k8s.io/structured-merge-diff/value/fastjson.go @@ -0,0 +1,149 @@ +/* +Copyright 2019 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package value + +import ( + "bytes" + "fmt" + + jsoniter "github.com/json-iterator/go" +) + +var ( + readPool = jsoniter.NewIterator(jsoniter.ConfigCompatibleWithStandardLibrary).Pool() + writePool = jsoniter.NewStream(jsoniter.ConfigCompatibleWithStandardLibrary, nil, 1024).Pool() +) + +// FromJSONFast is a helper function for reading a JSON document +func FromJSONFast(input []byte) (Value, error) { + iter := readPool.BorrowIterator(input) + defer readPool.ReturnIterator(iter) + return ReadJSONIter(iter) +} + +func ReadJSONIter(iter *jsoniter.Iterator) (Value, error) { + next := iter.WhatIsNext() + switch next { + case jsoniter.InvalidValue: + iter.ReportError("reading an object", "got invalid token") + return Value{}, iter.Error + case jsoniter.StringValue: + str := String(iter.ReadString()) + return Value{StringValue: &str}, nil + case jsoniter.NumberValue: + number := iter.ReadNumber() + isFloat := false + for _, c := range number { + if c == 'e' || c == 'E' || c == '.' { + isFloat = true + break + } + } + if isFloat { + f, err := number.Float64() + if err != nil { + iter.ReportError("parsing as float", err.Error()) + return Value{}, err + } + return Value{FloatValue: (*Float)(&f)}, nil + } + i, err := number.Int64() + if err != nil { + iter.ReportError("parsing as float", err.Error()) + return Value{}, err + } + return Value{IntValue: (*Int)(&i)}, nil + case jsoniter.NilValue: + iter.ReadNil() + return Value{Null: true}, nil + case jsoniter.BoolValue: + b := Boolean(iter.ReadBool()) + return Value{BooleanValue: &b}, nil + case jsoniter.ArrayValue: + list := &List{} + iter.ReadArrayCB(func(iter *jsoniter.Iterator) bool { + v, err := ReadJSONIter(iter) + if err != nil { + iter.Error = err + return false + } + list.Items = append(list.Items, v) + return true + }) + return Value{ListValue: list}, iter.Error + case jsoniter.ObjectValue: + m := &Map{} + iter.ReadObjectCB(func(iter *jsoniter.Iterator, key string) bool { + v, err := ReadJSONIter(iter) + if err != nil { + iter.Error = err + return false + } + m.Items = append(m.Items, Field{Name: key, Value: v}) + return true + }) + return Value{MapValue: m}, iter.Error + default: + return Value{}, fmt.Errorf("unexpected object type %v", next) + } +} + +// ToJSONFast is a helper function for producing a JSon document. +func (v *Value) ToJSONFast() ([]byte, error) { + buf := bytes.Buffer{} + stream := writePool.BorrowStream(&buf) + defer writePool.ReturnStream(stream) + v.WriteJSONStream(stream) + err := stream.Flush() + return buf.Bytes(), err +} + +func (v *Value) WriteJSONStream(stream *jsoniter.Stream) { + switch { + case v.Null: + stream.WriteNil() + case v.FloatValue != nil: + stream.WriteFloat64(float64(*v.FloatValue)) + case v.IntValue != nil: + stream.WriteInt64(int64(*v.IntValue)) + case v.BooleanValue != nil: + stream.WriteBool(bool(*v.BooleanValue)) + case v.StringValue != nil: + stream.WriteString(string(*v.StringValue)) + case v.ListValue != nil: + stream.WriteArrayStart() + for i := range v.ListValue.Items { + if i > 0 { + stream.WriteMore() + } + v.ListValue.Items[i].WriteJSONStream(stream) + } + stream.WriteArrayEnd() + case v.MapValue != nil: + stream.WriteObjectStart() + for i := range v.MapValue.Items { + if i > 0 { + stream.WriteMore() + } + stream.WriteObjectField(v.MapValue.Items[i].Name) + v.MapValue.Items[i].Value.WriteJSONStream(stream) + } + stream.WriteObjectEnd() + default: + stream.Write([]byte("invalid_value")) + } +} diff --git a/vendor/sigs.k8s.io/structured-merge-diff/value/value.go b/vendor/sigs.k8s.io/structured-merge-diff/value/value.go index a4e0f0b847a..176f1c6794b 100644 --- a/vendor/sigs.k8s.io/structured-merge-diff/value/value.go +++ b/vendor/sigs.k8s.io/structured-merge-diff/value/value.go @@ -173,7 +173,7 @@ type Map struct { order []int } -func (m *Map) computeOrder() { +func (m *Map) computeOrder() []int { if len(m.order) != len(m.Items) { m.order = make([]int, len(m.Items)) for i := range m.order { @@ -183,28 +183,67 @@ func (m *Map) computeOrder() { return m.Items[m.order[i]].Name < m.Items[m.order[j]].Name }) } + return m.order } // Less compares two maps lexically. func (m *Map) Less(rhs *Map) bool { - m.computeOrder() - rhs.computeOrder() + var noAllocL, noAllocR [2]int + var morder, rorder []int + + // For very short maps (<2 elements) this permits us to avoid + // allocating the order array. We could make this accomodate larger + // maps, but 2 items should be enough to cover most path element + // comparisons, and at some point there will be diminishing returns. + // This has a large effect on the path element deserialization test, + // because everything is sorted / compared, but only once. + switch len(m.Items) { + case 0: + morder = noAllocL[0:0] + case 1: + morder = noAllocL[0:1] + case 2: + morder = noAllocL[0:2] + if m.Items[0].Name > m.Items[1].Name { + morder[0] = 1 + } else { + morder[1] = 1 + } + default: + morder = m.computeOrder() + } + + switch len(rhs.Items) { + case 0: + rorder = noAllocR[0:0] + case 1: + rorder = noAllocR[0:1] + case 2: + rorder = noAllocR[0:2] + if rhs.Items[0].Name > rhs.Items[1].Name { + rorder[0] = 1 + } else { + rorder[1] = 1 + } + default: + rorder = rhs.computeOrder() + } i := 0 for { - if i >= len(m.order) && i >= len(rhs.order) { + if i >= len(morder) && i >= len(rorder) { // Maps are the same length and all items are equal. return false } - if i >= len(m.order) { + if i >= len(morder) { // LHS is shorter. return true } - if i >= len(rhs.order) { + if i >= len(rorder) { // RHS is shorter. return false } - fa, fb := &m.Items[m.order[i]], &rhs.Items[rhs.order[i]] + fa, fb := &m.Items[morder[i]], &rhs.Items[rorder[i]] if fa.Name != fb.Name { // the map having the field name that sorts lexically less is "less" return fa.Name < fb.Name From addad99b6f796bc0f0a2eeafa0296396667800e9 Mon Sep 17 00:00:00 2001 From: jennybuckley Date: Wed, 31 Jul 2019 16:05:48 -0700 Subject: [PATCH 3/5] Use raw bytes in metav1.Fields instead of map Also define custom proto unmarshaller that understands the old format --- .../api/apitesting/roundtrip/compatibility.go | 6 +- .../pkg/apis/meta/fuzzer/fuzzer.go | 4 +- .../pkg/apis/meta/v1/fields_proto.go | 88 +++++++++++++++++++ .../apimachinery/pkg/apis/meta/v1/helpers.go | 17 +++- .../apimachinery/pkg/apis/meta/v1/types.go | 28 +++--- .../handlers/fieldmanager/internal/fields.go | 80 ++++------------- .../fieldmanager/internal/fields_test.go | 23 ++--- .../fieldmanager/internal/managedfields.go | 2 +- .../integration/apiserver/apply/apply_test.go | 35 +------- 9 files changed, 143 insertions(+), 140 deletions(-) create mode 100644 staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/fields_proto.go diff --git a/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go b/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go index 1cd35e18cdd..33abeba55af 100644 --- a/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go +++ b/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go @@ -232,11 +232,7 @@ func CompatibilityTestFuzzer(scheme *runtime.Scheme, fuzzFuncs []interface{}) *f field := metav1.ManagedFieldsEntry{} c.Fuzz(&field) if field.Fields != nil { - for k1 := range field.Fields.Map { - for k2 := range field.Fields.Map[k1].Map { - field.Fields.Map[k1].Map[k2] = metav1.Fields{} - } - } + field.Fields.Raw = []byte("{}") } *f = []metav1.ManagedFieldsEntry{field} }, diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go index ce625c4e5a7..6b93a138887 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go @@ -272,9 +272,7 @@ func v1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} { }, func(j *metav1.ManagedFieldsEntry, c fuzz.Continue) { c.FuzzNoCustom(j) - if j.Fields != nil && len(j.Fields.Map) == 0 { - j.Fields = nil - } + j.Fields = nil }, } } diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/fields_proto.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/fields_proto.go new file mode 100644 index 00000000000..d403e76a41c --- /dev/null +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/fields_proto.go @@ -0,0 +1,88 @@ +/* +Copyright 2019 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package v1 + +import ( + "encoding/json" +) + +// Fields is declared in types.go + +// ProtoFields is a struct that is equivalent to Fields, but intended for +// protobuf marshalling/unmarshalling. It is generated into a serialization +// that matches Fields. Do not use in Go structs. +type ProtoFields struct { + // Map is the representation used in the alpha version of this API + Map map[string]Fields `json:"-" protobuf:"bytes,1,rep,name=map"` + + // Raw is the underlying serialization of this object. + Raw []byte `json:"-" protobuf:"bytes,2,opt,name=raw"` +} + +// ProtoFields returns the Fields as a new ProtoFields value. +func (m *Fields) ProtoFields() *ProtoFields { + if m == nil { + return &ProtoFields{} + } + return &ProtoFields{ + Raw: m.Raw, + } +} + +// Size implements the protobuf marshalling interface. +func (m *Fields) Size() (n int) { + return m.ProtoFields().Size() +} + +// Unmarshal implements the protobuf marshalling interface. +func (m *Fields) Unmarshal(data []byte) error { + if len(data) == 0 { + return nil + } + p := ProtoFields{} + if err := p.Unmarshal(data); err != nil { + return err + } + if len(p.Map) == 0 { + return json.Unmarshal(p.Raw, &m) + } + b, err := json.Marshal(&p.Map) + if err != nil { + return err + } + return json.Unmarshal(b, &m) +} + +// Marshal implements the protobuf marshaling interface. +func (m *Fields) Marshal() (data []byte, err error) { + return m.ProtoFields().Marshal() +} + +// MarshalTo implements the protobuf marshaling interface. +func (m *Fields) MarshalTo(data []byte) (int, error) { + return m.ProtoFields().MarshalTo(data) +} + +// MarshalToSizedBuffer implements the protobuf reverse marshaling interface. +func (m *Fields) MarshalToSizedBuffer(data []byte) (int, error) { + return m.ProtoFields().MarshalToSizedBuffer(data) +} + +// String implements the protobuf goproto_stringer interface. +func (m *Fields) String() string { + return m.ProtoFields().String() +} diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go index b4dc78b3eaa..843cd3b15bf 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go @@ -17,7 +17,9 @@ limitations under the License. package v1 import ( + "bytes" "encoding/json" + "errors" "fmt" "k8s.io/apimachinery/pkg/fields" @@ -254,13 +256,24 @@ func ResetObjectMetaForStatus(meta, existingMeta Object) { } // MarshalJSON implements json.Marshaler +// MarshalJSON may get called on pointers or values, so implement MarshalJSON on value. +// http://stackoverflow.com/questions/21390979/custom-marshaljson-never-gets-called-in-go func (f Fields) MarshalJSON() ([]byte, error) { - return json.Marshal(&f.Map) + if f.Raw == nil { + return []byte("null"), nil + } + return f.Raw, nil } // UnmarshalJSON implements json.Unmarshaler func (f *Fields) UnmarshalJSON(b []byte) error { - return json.Unmarshal(b, &f.Map) + if f == nil { + return errors.New("metav1.Fields: UnmarshalJSON on nil pointer") + } + if !bytes.Equal(b, []byte("null")) { + f.Raw = append(f.Raw[0:0], b...) + } + return nil } var _ json.Marshaler = Fields{} diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go index ea0d62b7672..80d9a0891dd 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go @@ -1109,20 +1109,22 @@ const ( ) // Fields stores a set of fields in a data structure like a Trie. -// To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff +// +// Each key is either a '.' representing the field itself, and will always map to an empty set, +// or a string representing a sub-field or item. The string will follow one of these four formats: +// 'f:', where is the name of a field in a struct, or key in a map +// 'v:', where is the exact json formatted value of a list item +// 'i:', where is position of a item in a list +// 'k:', where is a map of a list item's key fields to their unique values +// If a key maps to an empty Fields value, the field that key represents is part of the set. +// +// The exact format is defined in sigs.k8s.io/structured-merge-diff +// +protobuf.options.marshal=false +// +protobuf.as=ProtoFields +// +protobuf.options.(gogoproto.goproto_stringer)=false type Fields struct { - // Map stores a set of fields in a data structure like a Trie. - // - // Each key is either a '.' representing the field itself, and will always map to an empty set, - // or a string representing a sub-field or item. The string will follow one of these four formats: - // 'f:', where is the name of a field in a struct, or key in a map - // 'v:', where is the exact json formatted value of a list item - // 'i:', where is position of a item in a list - // 'k:', where is a map of a list item's key fields to their unique values - // If a key maps to an empty Fields value, the field that key represents is part of the set. - // - // The exact format is defined in k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal - Map map[string]Fields `json:",inline" protobuf:"bytes,1,rep,name=map"` + // Raw is the underlying serialization of this object. + Raw []byte `json:"-" protobuf:"-"` } // TODO: Table does not generate to protobuf because of the interface{} - fix protobuf diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields.go index 4fbf52c8b5b..e59820c619d 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields.go @@ -17,79 +17,31 @@ limitations under the License. package internal import ( + "bytes" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/structured-merge-diff/fieldpath" ) -func newFields() metav1.Fields { - return metav1.Fields{Map: map[string]metav1.Fields{}} -} - -func fieldsSet(f metav1.Fields, path fieldpath.Path, set *fieldpath.Set) error { - if len(f.Map) == 0 { - set.Insert(path) - } - for k := range f.Map { - if k == "." { - set.Insert(path) - continue - } - pe, err := NewPathElement(k) - if err != nil { - return err - } - path = append(path, pe) - err = fieldsSet(f.Map[k], path, set) - if err != nil { - return err - } - path = path[:len(path)-1] - } - return nil -} - -// FieldsToSet creates a set paths from an input trie of fields -func FieldsToSet(f metav1.Fields) (fieldpath.Set, error) { - set := fieldpath.Set{} - return set, fieldsSet(f, fieldpath.Path{}, &set) -} - -func removeUselessDots(f metav1.Fields) metav1.Fields { - if _, ok := f.Map["."]; ok && len(f.Map) == 1 { - delete(f.Map, ".") - return f - } - for k, tf := range f.Map { - f.Map[k] = removeUselessDots(tf) +// EmptyFields represents a set with no paths +// It looks like metav1.Fields{Raw: []byte("{}")} +var EmptyFields metav1.Fields = func() metav1.Fields { + f, err := SetToFields(*fieldpath.NewSet()) + if err != nil { + panic("should never happen") } return f +}() + +// FieldsToSet creates a set paths from an input trie of fields +func FieldsToSet(f metav1.Fields) (s fieldpath.Set, err error) { + err = s.FromJSON(bytes.NewReader(f.Raw)) + return s, err } // SetToFields creates a trie of fields from an input set of paths -func SetToFields(s fieldpath.Set) (metav1.Fields, error) { - var err error - f := newFields() - s.Iterate(func(path fieldpath.Path) { - if err != nil { - return - } - tf := f - for _, pe := range path { - var str string - str, err = PathElementString(pe) - if err != nil { - break - } - if _, ok := tf.Map[str]; ok { - tf = tf.Map[str] - } else { - tf.Map[str] = newFields() - tf = tf.Map[str] - } - } - tf.Map["."] = newFields() - }) - f = removeUselessDots(f) +func SetToFields(s fieldpath.Set) (f metav1.Fields, err error) { + f.Raw, err = s.ToJSON() return f, err } diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields_test.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields_test.go index b3c95d06946..a93a1ffb42a 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields_test.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/fields_test.go @@ -31,15 +31,9 @@ import ( func TestFieldsRoundTrip(t *testing.T) { tests := []metav1.Fields{ { - Map: map[string]metav1.Fields{ - "f:metadata": { - Map: map[string]metav1.Fields{ - ".": newFields(), - "f:name": newFields(), - }, - }, - }, + Raw: []byte(`{"f:metadata":{"f:name":{},".":{}}}`), }, + EmptyFields, } for _, test := range tests { @@ -65,16 +59,9 @@ func TestFieldsToSetError(t *testing.T) { }{ { fields: metav1.Fields{ - Map: map[string]metav1.Fields{ - "k:{invalid json}": { - Map: map[string]metav1.Fields{ - ".": newFields(), - "f:name": newFields(), - }, - }, - }, + Raw: []byte(`{"k:{invalid json}":{"f:name":{},".":{}}}`), }, - errString: "invalid character", + errString: "ReadObjectCB", }, } @@ -97,7 +84,7 @@ func TestSetToFieldsError(t *testing.T) { }{ { set: *fieldpath.NewSet(invalidPath), - errString: "Invalid type of path element", + errString: "invalid PathElement", }, } diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/managedfields.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/managedfields.go index 4b4391e0c52..00a4481f06d 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/managedfields.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal/managedfields.go @@ -113,7 +113,7 @@ func BuildManagerIdentifier(encodedManager *metav1.ManagedFieldsEntry) (manager } func decodeVersionedSet(encodedVersionedSet *metav1.ManagedFieldsEntry) (versionedSet fieldpath.VersionedSet, err error) { - fields := metav1.Fields{} + fields := EmptyFields if encodedVersionedSet.Fields != nil { fields = *encodedVersionedSet.Fields } diff --git a/test/integration/apiserver/apply/apply_test.go b/test/integration/apiserver/apply/apply_test.go index a6905b436f5..803888c1f8a 100644 --- a/test/integration/apiserver/apply/apply_test.go +++ b/test/integration/apiserver/apply/apply_test.go @@ -789,40 +789,7 @@ func TestApplyConvertsManagedFieldsVersion(t *testing.T) { APIVersion: "apps/v1", Time: actual.Time, Fields: &metav1.Fields{ - Map: map[string]metav1.Fields{ - "f:metadata": { - Map: map[string]metav1.Fields{ - "f:labels": { - Map: map[string]metav1.Fields{ - "f:sidecar_version": {Map: map[string]metav1.Fields{}}, - }, - }, - }, - }, - "f:spec": { - Map: map[string]metav1.Fields{ - "f:template": { - Map: map[string]metav1.Fields{ - "f:spec": { - Map: map[string]metav1.Fields{ - "f:containers": { - Map: map[string]metav1.Fields{ - "k:{\"name\":\"sidecar\"}": { - Map: map[string]metav1.Fields{ - ".": {Map: map[string]metav1.Fields{}}, - "f:image": {Map: map[string]metav1.Fields{}}, - "f:name": {Map: map[string]metav1.Fields{}}, - }, - }, - }, - }, - }, - }, - }, - }, - }, - }, - }, + Raw: []byte(`{"f:metadata":{"f:labels":{"f:sidecar_version":{}}},"f:spec":{"f:template":{"f:spec":{"f:containers":{"k:{\"name\":\"sidecar\"}":{".":{},"f:image":{},"f:name":{}}}}}}}`), }, } From 1475b59c83acb538632a21edc44fbd7ce3ac500c Mon Sep 17 00:00:00 2001 From: jennybuckley Date: Wed, 31 Jul 2019 16:06:42 -0700 Subject: [PATCH 4/5] Update generated --- .../apiextensions_violation_exceptions.list | 2 + .../codegen_violation_exceptions.list | 2 + ...sample_apiserver_violation_exceptions.list | 2 + api/api-rules/violation_exceptions.list | 2 + api/openapi-spec/swagger.json | 2 +- go.sum | 4 +- .../src/k8s.io/apiextensions-apiserver/go.sum | 4 +- .../generated/openapi/zz_generated.openapi.go | 14 +- .../apimachinery/pkg/apis/meta/v1/BUILD | 1 + .../pkg/apis/meta/v1/generated.pb.go | 1004 +++++++++-------- .../pkg/apis/meta/v1/generated.proto | 40 +- .../meta/v1/types_swagger_doc_generated.go | 2 +- .../pkg/apis/meta/v1/zz_generated.deepcopy.go | 38 +- staging/src/k8s.io/apiserver/go.mod | 2 +- staging/src/k8s.io/apiserver/go.sum | 4 +- .../apiserver/openapi/zz_generated.openapi.go | 14 +- staging/src/k8s.io/kube-aggregator/go.sum | 4 +- .../src/k8s.io/legacy-cloud-providers/go.sum | 2 +- staging/src/k8s.io/sample-apiserver/go.sum | 4 +- .../generated/openapi/zz_generated.openapi.go | 14 +- 20 files changed, 661 insertions(+), 500 deletions(-) diff --git a/api/api-rules/apiextensions_violation_exceptions.list b/api/api-rules/apiextensions_violation_exceptions.list index a64b074c158..4916ad72d07 100644 --- a/api/api-rules/apiextensions_violation_exceptions.list +++ b/api/api-rules/apiextensions_violation_exceptions.list @@ -9,6 +9,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVe API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVersions,Versions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,CreateOptions,DryRun API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,DeleteOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Fields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelector,MatchExpressions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelectorRequirement,Values API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,List,Items @@ -17,6 +18,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Objec API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ObjectMeta,OwnerReferences API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PartialObjectMetadataList,Items API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PatchOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ProtoFields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,RootPaths,Paths API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,StatusDetails,Causes API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Table,ColumnDefinitions diff --git a/api/api-rules/codegen_violation_exceptions.list b/api/api-rules/codegen_violation_exceptions.list index 0238a01bbf8..706941307e7 100644 --- a/api/api-rules/codegen_violation_exceptions.list +++ b/api/api-rules/codegen_violation_exceptions.list @@ -8,6 +8,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVe API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVersions,Versions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,CreateOptions,DryRun API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,DeleteOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Fields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelector,MatchExpressions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelectorRequirement,Values API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,List,Items @@ -16,6 +17,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Objec API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ObjectMeta,OwnerReferences API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PartialObjectMetadataList,Items API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PatchOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ProtoFields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,RootPaths,Paths API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,StatusDetails,Causes API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Table,ColumnDefinitions diff --git a/api/api-rules/sample_apiserver_violation_exceptions.list b/api/api-rules/sample_apiserver_violation_exceptions.list index 85693a206a3..5ba84d7d44e 100644 --- a/api/api-rules/sample_apiserver_violation_exceptions.list +++ b/api/api-rules/sample_apiserver_violation_exceptions.list @@ -8,6 +8,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVe API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVersions,Versions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,CreateOptions,DryRun API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,DeleteOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Fields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelector,MatchExpressions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelectorRequirement,Values API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,List,Items @@ -16,6 +17,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Objec API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ObjectMeta,OwnerReferences API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PartialObjectMetadataList,Items API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PatchOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ProtoFields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,RootPaths,Paths API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,StatusDetails,Causes API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Table,ColumnDefinitions diff --git a/api/api-rules/violation_exceptions.list b/api/api-rules/violation_exceptions.list index f55882430b1..1893a6e1b59 100644 --- a/api/api-rules/violation_exceptions.list +++ b/api/api-rules/violation_exceptions.list @@ -381,6 +381,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVe API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,APIVersions,Versions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,CreateOptions,DryRun API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,DeleteOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Fields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelector,MatchExpressions API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,LabelSelectorRequirement,Values API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,List,Items @@ -389,6 +390,7 @@ API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Objec API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ObjectMeta,OwnerReferences API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PartialObjectMetadataList,Items API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,PatchOptions,DryRun +API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,ProtoFields,Raw API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,RootPaths,Paths API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,StatusDetails,Causes API rule violation: list_type_missing,k8s.io/apimachinery/pkg/apis/meta/v1,Table,ColumnDefinitions diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 566f6614c7f..e6f70518a35 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -18176,7 +18176,7 @@ ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.Fields": { - "description": "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff", + "description": "Fields stores a set of fields in a data structure like a Trie.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": { diff --git a/go.sum b/go.sum index 7dbd9b25002..d44b3c5a1ab 100644 --- a/go.sum +++ b/go.sum @@ -486,8 +486,8 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I= sigs.k8s.io/kustomize v2.0.3+incompatible h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0= sigs.k8s.io/kustomize v2.0.3+incompatible/go.mod h1:MkjgH3RdOWrievjo6c9T245dYlB5QeXV4WCbnt/PEpU= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 h1:yCY9zAYErawYwXdOYmwEBzcGCr/6eIUujYZE2DIQve8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 h1:qukMPS/1fDG5pToYLYSEx5IpwHVJMtTyOMaIIsR2Fas= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc= diff --git a/staging/src/k8s.io/apiextensions-apiserver/go.sum b/staging/src/k8s.io/apiextensions-apiserver/go.sum index 24e8348430f..3cb30269cf3 100644 --- a/staging/src/k8s.io/apiextensions-apiserver/go.sum +++ b/staging/src/k8s.io/apiextensions-apiserver/go.sum @@ -312,7 +312,7 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 h1:yCY9zAYErawYwXdOYmwEBzcGCr/6eIUujYZE2DIQve8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 h1:qukMPS/1fDG5pToYLYSEx5IpwHVJMtTyOMaIIsR2Fas= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go b/staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go index 29f71ecb85b..7559d6828a0 100644 --- a/staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go +++ b/staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go @@ -81,6 +81,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ProtoFields": schema_pkg_apis_meta_v1_ProtoFields(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), @@ -1384,7 +1385,7 @@ func schema_pkg_apis_meta_v1_Fields(ref common.ReferenceCallback) common.OpenAPI return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff", + Description: "Fields stores a set of fields in a data structure like a Trie.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", Type: []string{"object"}, }, }, @@ -2351,6 +2352,17 @@ func schema_pkg_apis_meta_v1_Preconditions(ref common.ReferenceCallback) common. } } +func schema_pkg_apis_meta_v1_ProtoFields(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ProtoFields is a struct that is equivalent to Fields, but intended for protobuf marshalling/unmarshalling. It is generated into a serialization that matches Fields. Do not use in Go structs.", + Type: []string{"object"}, + }, + }, + } +} + func schema_pkg_apis_meta_v1_RootPaths(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/BUILD b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/BUILD index 119e5d166ec..92d0279e8e6 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/BUILD +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/BUILD @@ -41,6 +41,7 @@ go_library( "deepcopy.go", "doc.go", "duration.go", + "fields_proto.go", "generated.pb.go", "group_version.go", "helpers.go", diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go index 83b6c4a807f..f03ded7a4e7 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go @@ -307,21 +307,16 @@ func (*Fields) Descriptor() ([]byte, []int) { return fileDescriptor_cf52fa777ced5367, []int{9} } func (m *Fields) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) + return xxx_messageInfo_Fields.Unmarshal(m, b) } func (m *Fields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil + return xxx_messageInfo_Fields.Marshal(b, m, deterministic) } func (m *Fields) XXX_Merge(src proto.Message) { xxx_messageInfo_Fields.Merge(m, src) } func (m *Fields) XXX_Size() int { - return m.Size() + return xxx_messageInfo_Fields.Size(m) } func (m *Fields) XXX_DiscardUnknown() { xxx_messageInfo_Fields.DiscardUnknown(m) @@ -912,10 +907,38 @@ func (m *Preconditions) XXX_DiscardUnknown() { var xxx_messageInfo_Preconditions proto.InternalMessageInfo +func (m *ProtoFields) Reset() { *m = ProtoFields{} } +func (*ProtoFields) ProtoMessage() {} +func (*ProtoFields) Descriptor() ([]byte, []int) { + return fileDescriptor_cf52fa777ced5367, []int{31} +} +func (m *ProtoFields) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ProtoFields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *ProtoFields) XXX_Merge(src proto.Message) { + xxx_messageInfo_ProtoFields.Merge(m, src) +} +func (m *ProtoFields) XXX_Size() int { + return m.Size() +} +func (m *ProtoFields) XXX_DiscardUnknown() { + xxx_messageInfo_ProtoFields.DiscardUnknown(m) +} + +var xxx_messageInfo_ProtoFields proto.InternalMessageInfo + func (m *RootPaths) Reset() { *m = RootPaths{} } func (*RootPaths) ProtoMessage() {} func (*RootPaths) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{31} + return fileDescriptor_cf52fa777ced5367, []int{32} } func (m *RootPaths) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -943,7 +966,7 @@ var xxx_messageInfo_RootPaths proto.InternalMessageInfo func (m *ServerAddressByClientCIDR) Reset() { *m = ServerAddressByClientCIDR{} } func (*ServerAddressByClientCIDR) ProtoMessage() {} func (*ServerAddressByClientCIDR) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{32} + return fileDescriptor_cf52fa777ced5367, []int{33} } func (m *ServerAddressByClientCIDR) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -971,7 +994,7 @@ var xxx_messageInfo_ServerAddressByClientCIDR proto.InternalMessageInfo func (m *Status) Reset() { *m = Status{} } func (*Status) ProtoMessage() {} func (*Status) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{33} + return fileDescriptor_cf52fa777ced5367, []int{34} } func (m *Status) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -999,7 +1022,7 @@ var xxx_messageInfo_Status proto.InternalMessageInfo func (m *StatusCause) Reset() { *m = StatusCause{} } func (*StatusCause) ProtoMessage() {} func (*StatusCause) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{34} + return fileDescriptor_cf52fa777ced5367, []int{35} } func (m *StatusCause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1027,7 +1050,7 @@ var xxx_messageInfo_StatusCause proto.InternalMessageInfo func (m *StatusDetails) Reset() { *m = StatusDetails{} } func (*StatusDetails) ProtoMessage() {} func (*StatusDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{35} + return fileDescriptor_cf52fa777ced5367, []int{36} } func (m *StatusDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1055,7 +1078,7 @@ var xxx_messageInfo_StatusDetails proto.InternalMessageInfo func (m *TableOptions) Reset() { *m = TableOptions{} } func (*TableOptions) ProtoMessage() {} func (*TableOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{36} + return fileDescriptor_cf52fa777ced5367, []int{37} } func (m *TableOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1083,7 +1106,7 @@ var xxx_messageInfo_TableOptions proto.InternalMessageInfo func (m *Time) Reset() { *m = Time{} } func (*Time) ProtoMessage() {} func (*Time) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{37} + return fileDescriptor_cf52fa777ced5367, []int{38} } func (m *Time) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Time.Unmarshal(m, b) @@ -1106,7 +1129,7 @@ var xxx_messageInfo_Time proto.InternalMessageInfo func (m *Timestamp) Reset() { *m = Timestamp{} } func (*Timestamp) ProtoMessage() {} func (*Timestamp) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{38} + return fileDescriptor_cf52fa777ced5367, []int{39} } func (m *Timestamp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1134,7 +1157,7 @@ var xxx_messageInfo_Timestamp proto.InternalMessageInfo func (m *TypeMeta) Reset() { *m = TypeMeta{} } func (*TypeMeta) ProtoMessage() {} func (*TypeMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{39} + return fileDescriptor_cf52fa777ced5367, []int{40} } func (m *TypeMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1162,7 +1185,7 @@ var xxx_messageInfo_TypeMeta proto.InternalMessageInfo func (m *UpdateOptions) Reset() { *m = UpdateOptions{} } func (*UpdateOptions) ProtoMessage() {} func (*UpdateOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{40} + return fileDescriptor_cf52fa777ced5367, []int{41} } func (m *UpdateOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1190,7 +1213,7 @@ var xxx_messageInfo_UpdateOptions proto.InternalMessageInfo func (m *Verbs) Reset() { *m = Verbs{} } func (*Verbs) ProtoMessage() {} func (*Verbs) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{41} + return fileDescriptor_cf52fa777ced5367, []int{42} } func (m *Verbs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1218,7 +1241,7 @@ var xxx_messageInfo_Verbs proto.InternalMessageInfo func (m *WatchEvent) Reset() { *m = WatchEvent{} } func (*WatchEvent) ProtoMessage() {} func (*WatchEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_cf52fa777ced5367, []int{42} + return fileDescriptor_cf52fa777ced5367, []int{43} } func (m *WatchEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1279,6 +1302,8 @@ func init() { proto.RegisterType((*Patch)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Patch") proto.RegisterType((*PatchOptions)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.PatchOptions") proto.RegisterType((*Preconditions)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Preconditions") + proto.RegisterType((*ProtoFields)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ProtoFields") + proto.RegisterMapType((map[string]Fields)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ProtoFields.MapEntry") proto.RegisterType((*RootPaths)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.RootPaths") proto.RegisterType((*ServerAddressByClientCIDR)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR") proto.RegisterType((*Status)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Status") @@ -1298,178 +1323,181 @@ func init() { } var fileDescriptor_cf52fa777ced5367 = []byte{ - // 2732 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x39, 0xdd, 0x6f, 0x1c, 0x57, - 0xf5, 0x9e, 0x5d, 0xef, 0x7a, 0xf7, 0xd8, 0x9b, 0xd8, 0x37, 0xc9, 0xef, 0xb7, 0x5d, 0x84, 0xd7, - 0x9d, 0xa2, 0x2a, 0x85, 0x74, 0xdd, 0x04, 0x5a, 0x85, 0x94, 0x16, 0xbc, 0x5e, 0x27, 0x35, 0x8d, - 0x6b, 0xeb, 0x3a, 0x09, 0x22, 0x54, 0xa8, 0xd7, 0x33, 0xd7, 0xeb, 0xc1, 0xb3, 0x33, 0xd3, 0x3b, - 0xb3, 0x4e, 0x16, 0x1e, 0xe8, 0x03, 0x08, 0x90, 0xa0, 0xea, 0x23, 0x4f, 0xa8, 0x15, 0xfc, 0x05, - 0x3c, 0xf1, 0x07, 0x54, 0xa2, 0x2f, 0x48, 0x95, 0x78, 0xa9, 0x04, 0x5a, 0x35, 0xe6, 0x01, 0xde, - 0x10, 0xaf, 0x7e, 0x42, 0xf7, 0x6b, 0x3e, 0x76, 0xbd, 0xf1, 0x2c, 0x29, 0x15, 0x6f, 0x33, 0xe7, - 0xf3, 0x9e, 0x7b, 0xcf, 0x3d, 0x5f, 0x17, 0xb6, 0x0e, 0xaf, 0x87, 0x2d, 0xc7, 0x5f, 0x3d, 0xec, - 0xef, 0x51, 0xe6, 0xd1, 0x88, 0x86, 0xab, 0x47, 0xd4, 0xb3, 0x7d, 0xb6, 0xaa, 0x10, 0x24, 0x70, - 0x7a, 0xc4, 0x3a, 0x70, 0x3c, 0xca, 0x06, 0xab, 0xc1, 0x61, 0x97, 0x03, 0xc2, 0xd5, 0x1e, 0x8d, - 0xc8, 0xea, 0xd1, 0xd5, 0xd5, 0x2e, 0xf5, 0x28, 0x23, 0x11, 0xb5, 0x5b, 0x01, 0xf3, 0x23, 0x1f, - 0x7d, 0x49, 0x72, 0xb5, 0xd2, 0x5c, 0xad, 0xe0, 0xb0, 0xcb, 0x01, 0x61, 0x8b, 0x73, 0xb5, 0x8e, - 0xae, 0x36, 0x9e, 0xef, 0x3a, 0xd1, 0x41, 0x7f, 0xaf, 0x65, 0xf9, 0xbd, 0xd5, 0xae, 0xdf, 0xf5, - 0x57, 0x05, 0xf3, 0x5e, 0x7f, 0x5f, 0xfc, 0x89, 0x1f, 0xf1, 0x25, 0x85, 0x36, 0x26, 0x2e, 0x85, - 0xf5, 0xbd, 0xc8, 0xe9, 0xd1, 0xd1, 0x55, 0x34, 0x5e, 0x3a, 0x8b, 0x21, 0xb4, 0x0e, 0x68, 0x8f, - 0x8c, 0xf2, 0x99, 0x7f, 0x2c, 0x42, 0x65, 0x6d, 0x67, 0xf3, 0x16, 0xf3, 0xfb, 0x01, 0x5a, 0x81, - 0x59, 0x8f, 0xf4, 0x68, 0xdd, 0x58, 0x31, 0x2e, 0x57, 0xdb, 0x0b, 0x1f, 0x0d, 0x9b, 0x33, 0xc7, - 0xc3, 0xe6, 0xec, 0x1b, 0xa4, 0x47, 0xb1, 0xc0, 0x20, 0x17, 0x2a, 0x47, 0x94, 0x85, 0x8e, 0xef, - 0x85, 0xf5, 0xc2, 0x4a, 0xf1, 0xf2, 0xfc, 0xb5, 0x57, 0x5b, 0x79, 0xec, 0x6f, 0x09, 0x05, 0xf7, - 0x24, 0xeb, 0x4d, 0x9f, 0x75, 0x9c, 0xd0, 0xf2, 0x8f, 0x28, 0x1b, 0xb4, 0x17, 0x95, 0x96, 0x8a, - 0x42, 0x86, 0x38, 0xd6, 0x80, 0x7e, 0x62, 0xc0, 0x62, 0xc0, 0xe8, 0x3e, 0x65, 0x8c, 0xda, 0x0a, - 0x5f, 0x2f, 0xae, 0x18, 0x9f, 0x81, 0xda, 0xba, 0x52, 0xbb, 0xb8, 0x33, 0x22, 0x1f, 0x8f, 0x69, - 0x44, 0xbf, 0x35, 0xa0, 0x11, 0x52, 0x76, 0x44, 0xd9, 0x9a, 0x6d, 0x33, 0x1a, 0x86, 0xed, 0xc1, - 0xba, 0xeb, 0x50, 0x2f, 0x5a, 0xdf, 0xec, 0xe0, 0xb0, 0x3e, 0x2b, 0xf6, 0xe1, 0x9b, 0xf9, 0x16, - 0xb4, 0x3b, 0x49, 0x4e, 0xdb, 0x54, 0x2b, 0x6a, 0x4c, 0x24, 0x09, 0xf1, 0x63, 0x96, 0x61, 0xee, - 0xc3, 0x82, 0x3e, 0xc8, 0xdb, 0x4e, 0x18, 0xa1, 0x7b, 0x50, 0xee, 0xf2, 0x9f, 0xb0, 0x6e, 0x88, - 0x05, 0xb6, 0xf2, 0x2d, 0x50, 0xcb, 0x68, 0x9f, 0x53, 0xeb, 0x29, 0x8b, 0xdf, 0x10, 0x2b, 0x69, - 0xe6, 0x2f, 0x66, 0x61, 0x7e, 0x6d, 0x67, 0x13, 0xd3, 0xd0, 0xef, 0x33, 0x8b, 0xe6, 0x70, 0x9a, - 0xeb, 0xb0, 0x10, 0x3a, 0x5e, 0xb7, 0xef, 0x12, 0xc6, 0xa1, 0xf5, 0xb2, 0xa0, 0xbc, 0xa8, 0x28, - 0x17, 0x76, 0x53, 0x38, 0x9c, 0xa1, 0x44, 0xd7, 0x00, 0xb8, 0x84, 0x30, 0x20, 0x16, 0xb5, 0xeb, - 0x85, 0x15, 0xe3, 0x72, 0xa5, 0x8d, 0x14, 0x1f, 0xbc, 0x11, 0x63, 0x70, 0x8a, 0x0a, 0x3d, 0x03, - 0x25, 0xb1, 0xd2, 0x7a, 0x45, 0xa8, 0xa9, 0x29, 0xf2, 0x92, 0x30, 0x03, 0x4b, 0x1c, 0x7a, 0x0e, - 0xe6, 0x94, 0x97, 0xd5, 0xab, 0x82, 0xec, 0xbc, 0x22, 0x9b, 0xd3, 0x6e, 0xa0, 0xf1, 0xdc, 0xbe, - 0x43, 0xc7, 0xb3, 0x85, 0xdf, 0xa5, 0xec, 0x7b, 0xdd, 0xf1, 0x6c, 0x2c, 0x30, 0xe8, 0x36, 0x94, - 0x8e, 0x28, 0xdb, 0xe3, 0x9e, 0xc0, 0x5d, 0xf3, 0x2b, 0xf9, 0x36, 0xfa, 0x1e, 0x67, 0x69, 0x57, - 0xf9, 0xd2, 0xc4, 0x27, 0x96, 0x42, 0x50, 0x0b, 0x20, 0x3c, 0xf0, 0x59, 0x24, 0xcc, 0xab, 0x97, - 0x56, 0x8a, 0x97, 0xab, 0xed, 0x73, 0xdc, 0xde, 0xdd, 0x18, 0x8a, 0x53, 0x14, 0x9c, 0xde, 0x22, - 0x11, 0xed, 0xfa, 0xcc, 0xa1, 0x61, 0x7d, 0x2e, 0xa1, 0x5f, 0x8f, 0xa1, 0x38, 0x45, 0x81, 0xbe, - 0x0d, 0x28, 0x8c, 0x7c, 0x46, 0xba, 0x54, 0x99, 0xfa, 0x1a, 0x09, 0x0f, 0xea, 0x20, 0xac, 0x6b, - 0x28, 0xeb, 0xd0, 0xee, 0x18, 0x05, 0x3e, 0x85, 0xcb, 0xfc, 0xbd, 0x01, 0xe7, 0x53, 0xbe, 0x20, - 0xfc, 0xee, 0x3a, 0x2c, 0x74, 0x53, 0xb7, 0x4e, 0xf9, 0x45, 0x7c, 0xda, 0xe9, 0x1b, 0x89, 0x33, - 0x94, 0x88, 0x42, 0x95, 0x29, 0x49, 0x3a, 0xba, 0x5c, 0xcd, 0xed, 0xb4, 0x7a, 0x0d, 0x89, 0xa6, - 0x14, 0x30, 0xc4, 0x89, 0x64, 0xf3, 0xef, 0x86, 0x70, 0x60, 0x1d, 0x6f, 0xd0, 0xe5, 0x54, 0x4c, - 0x33, 0xc4, 0xf6, 0x2d, 0x4c, 0x88, 0x47, 0x67, 0x04, 0x82, 0xc2, 0xff, 0x44, 0x20, 0xb8, 0x51, - 0xf9, 0xf5, 0xfb, 0xcd, 0x99, 0x77, 0xfe, 0xba, 0x32, 0x63, 0xf6, 0xa0, 0xb6, 0xce, 0x28, 0x89, - 0xe8, 0x76, 0x10, 0x09, 0x03, 0x4c, 0x28, 0xdb, 0x6c, 0x80, 0xfb, 0x9e, 0x32, 0x14, 0xf8, 0xfd, - 0xee, 0x08, 0x08, 0x56, 0x18, 0x7e, 0x7e, 0xfb, 0x0e, 0x75, 0xed, 0x2d, 0xe2, 0x91, 0x2e, 0x65, - 0xca, 0xef, 0xe3, 0x5d, 0xbd, 0x99, 0xc2, 0xe1, 0x0c, 0xa5, 0xf9, 0xb3, 0x22, 0xd4, 0x3a, 0xd4, - 0xa5, 0x89, 0xbe, 0x9b, 0x80, 0xba, 0x8c, 0x58, 0x74, 0x87, 0x32, 0xc7, 0xb7, 0x77, 0xa9, 0xe5, - 0x7b, 0x76, 0x28, 0x3c, 0xa2, 0xd8, 0xfe, 0x3f, 0xee, 0x67, 0xb7, 0xc6, 0xb0, 0xf8, 0x14, 0x0e, - 0xe4, 0x42, 0x2d, 0x60, 0xe2, 0xdb, 0x89, 0x54, 0xee, 0xe1, 0x37, 0xed, 0xab, 0xf9, 0xb6, 0x7a, - 0x27, 0xcd, 0xda, 0x5e, 0x3a, 0x1e, 0x36, 0x6b, 0x19, 0x10, 0xce, 0x0a, 0x47, 0xdf, 0x82, 0x45, - 0x9f, 0x05, 0x07, 0xc4, 0xeb, 0xd0, 0x80, 0x7a, 0x36, 0xf5, 0xa2, 0x50, 0xec, 0x42, 0xa5, 0x7d, - 0x91, 0x67, 0x8c, 0xed, 0x11, 0x1c, 0x1e, 0xa3, 0x46, 0xf7, 0x61, 0x29, 0x60, 0x7e, 0x40, 0xba, - 0x84, 0x4b, 0xdc, 0xf1, 0x5d, 0xc7, 0x1a, 0x88, 0xe8, 0x50, 0x6d, 0x5f, 0x39, 0x1e, 0x36, 0x97, - 0x76, 0x46, 0x91, 0x27, 0xc3, 0xe6, 0x05, 0xb1, 0x75, 0x1c, 0x92, 0x20, 0xf1, 0xb8, 0x98, 0xd4, - 0x19, 0x96, 0x26, 0x9d, 0xa1, 0xb9, 0x09, 0x95, 0x4e, 0x9f, 0x09, 0x2e, 0xf4, 0x0a, 0x54, 0x6c, - 0xf5, 0xad, 0x76, 0xfe, 0x69, 0x9d, 0x72, 0x35, 0xcd, 0xc9, 0xb0, 0x59, 0xe3, 0x45, 0x42, 0x4b, - 0x03, 0x70, 0xcc, 0x62, 0xbe, 0x09, 0xb5, 0x8d, 0x87, 0x81, 0xcf, 0x22, 0x7d, 0xa6, 0xcf, 0x42, - 0x99, 0x0a, 0x80, 0x90, 0x56, 0x49, 0xf2, 0x84, 0x24, 0xc3, 0x0a, 0xcb, 0xe3, 0x30, 0x7d, 0x48, - 0xac, 0x48, 0x85, 0xed, 0x38, 0x0e, 0x6f, 0x70, 0x20, 0x96, 0x38, 0xf3, 0x43, 0x03, 0xca, 0xc2, - 0xa3, 0x42, 0x74, 0x07, 0x8a, 0x3d, 0x12, 0xa8, 0x64, 0xf5, 0x62, 0xbe, 0x93, 0x95, 0xac, 0xad, - 0x2d, 0x12, 0x6c, 0x78, 0x11, 0x1b, 0xb4, 0xe7, 0x95, 0x92, 0xe2, 0x16, 0x09, 0x30, 0x17, 0xd7, - 0xb0, 0xa1, 0xa2, 0xb1, 0x68, 0x11, 0x8a, 0x87, 0x74, 0x20, 0x03, 0x12, 0xe6, 0x9f, 0xa8, 0x0d, - 0xa5, 0x23, 0xe2, 0xf6, 0xa9, 0xf2, 0xa7, 0x2b, 0xd3, 0x68, 0xc5, 0x92, 0xf5, 0x46, 0xe1, 0xba, - 0x61, 0x6e, 0x03, 0xdc, 0xa2, 0xf1, 0x0e, 0xad, 0xc1, 0x79, 0x1d, 0x6d, 0xb2, 0x41, 0xf0, 0xff, - 0xd5, 0xf2, 0xce, 0xe3, 0x2c, 0x1a, 0x8f, 0xd2, 0x9b, 0x6f, 0x42, 0x55, 0x04, 0x4a, 0x9e, 0x65, - 0x92, 0x8c, 0x66, 0x3c, 0x26, 0xa3, 0xe9, 0x34, 0x55, 0x98, 0x94, 0xa6, 0x52, 0x71, 0xc1, 0x85, - 0x9a, 0xe4, 0xd5, 0x39, 0x3c, 0x97, 0x86, 0x2b, 0x50, 0xd1, 0xcb, 0x54, 0x5a, 0xe2, 0xda, 0x4d, - 0x0b, 0xc2, 0x31, 0x45, 0x4a, 0xdb, 0x01, 0x64, 0x82, 0x7e, 0x3e, 0x65, 0xa9, 0x04, 0x5d, 0x78, - 0x7c, 0x82, 0x4e, 0x69, 0xfa, 0x31, 0xd4, 0x27, 0x15, 0x7c, 0x4f, 0x90, 0x96, 0xf2, 0x2f, 0xc5, - 0x7c, 0xd7, 0x80, 0xc5, 0xb4, 0xa4, 0xfc, 0xc7, 0x97, 0x5f, 0xc9, 0xd9, 0x05, 0x49, 0x6a, 0x47, - 0x7e, 0x63, 0xc0, 0xc5, 0x8c, 0x69, 0x53, 0x9d, 0xf8, 0x14, 0x8b, 0x4a, 0x3b, 0x47, 0x71, 0x0a, - 0xe7, 0xf8, 0x73, 0x01, 0x6a, 0xb7, 0xc9, 0x1e, 0x75, 0x77, 0xa9, 0x4b, 0xad, 0xc8, 0x67, 0xe8, - 0x47, 0x30, 0xdf, 0x23, 0x91, 0x75, 0x20, 0xa0, 0xba, 0x78, 0xed, 0xe4, 0xbb, 0x99, 0x19, 0x49, - 0xad, 0xad, 0x44, 0x8c, 0x0c, 0x0f, 0x17, 0xd4, 0x92, 0xe6, 0x53, 0x18, 0x9c, 0xd6, 0x26, 0x3a, - 0x0e, 0xf1, 0xbf, 0xf1, 0x30, 0xe0, 0x99, 0x75, 0xfa, 0x46, 0x27, 0xb3, 0x04, 0x4c, 0xdf, 0xee, - 0x3b, 0x8c, 0xf6, 0xa8, 0x17, 0x25, 0x1d, 0xc7, 0xd6, 0x88, 0x7c, 0x3c, 0xa6, 0xb1, 0xf1, 0x2a, - 0x2c, 0x8e, 0x2e, 0xfe, 0x94, 0xe8, 0x75, 0x31, 0x1d, 0xbd, 0xaa, 0xe9, 0x78, 0xf4, 0x3b, 0x03, - 0xea, 0x93, 0x16, 0x82, 0xbe, 0x98, 0x12, 0x94, 0x44, 0xcc, 0xd7, 0xe9, 0x40, 0x4a, 0xdd, 0x80, - 0x8a, 0x1f, 0xf0, 0x1e, 0xd1, 0x67, 0xea, 0xd4, 0x9f, 0xd3, 0x27, 0xb9, 0xad, 0xe0, 0x27, 0xc3, - 0xe6, 0xa5, 0x8c, 0x78, 0x8d, 0xc0, 0x31, 0x2b, 0x4f, 0x53, 0x62, 0x3d, 0x3c, 0x75, 0xc6, 0x69, - 0xea, 0x9e, 0x80, 0x60, 0x85, 0x31, 0xff, 0x60, 0xc0, 0xac, 0xa8, 0x19, 0xdf, 0x84, 0x0a, 0xdf, - 0x3f, 0x9b, 0x44, 0x44, 0xac, 0x2b, 0x77, 0xb7, 0xc2, 0xb9, 0xb7, 0x68, 0x44, 0x12, 0x6f, 0xd3, - 0x10, 0x1c, 0x4b, 0x44, 0x18, 0x4a, 0x4e, 0x44, 0x7b, 0xfa, 0x20, 0x9f, 0x9f, 0x28, 0x5a, 0xf5, - 0xca, 0x2d, 0x4c, 0x1e, 0x6c, 0x3c, 0x8c, 0xa8, 0xc7, 0x0f, 0x23, 0xb9, 0x1a, 0x9b, 0x5c, 0x06, - 0x96, 0xa2, 0xcc, 0x7f, 0x19, 0x10, 0xab, 0xe2, 0xce, 0x1f, 0x52, 0x77, 0xff, 0xb6, 0xe3, 0x1d, - 0xaa, 0x6d, 0x8d, 0x97, 0xb3, 0xab, 0xe0, 0x38, 0xa6, 0x38, 0x2d, 0x3d, 0x14, 0xa6, 0x4b, 0x0f, - 0x5c, 0xa1, 0xe5, 0x7b, 0x91, 0xe3, 0xf5, 0xc7, 0x6e, 0xdb, 0xba, 0x82, 0xe3, 0x98, 0x82, 0x57, - 0x61, 0x8c, 0xf6, 0x88, 0xe3, 0x39, 0x5e, 0x97, 0x1b, 0xb1, 0xee, 0xf7, 0xbd, 0x48, 0x94, 0x23, - 0xaa, 0x0a, 0xc3, 0x63, 0x58, 0x7c, 0x0a, 0x87, 0xf9, 0xa7, 0x22, 0xcc, 0x73, 0x9b, 0x75, 0x9e, - 0x7b, 0x19, 0x6a, 0x6e, 0xda, 0x0b, 0x94, 0xed, 0x97, 0xd4, 0x52, 0xb2, 0xf7, 0x1a, 0x67, 0x69, - 0x39, 0xb3, 0x28, 0x1e, 0x63, 0xe6, 0x42, 0x96, 0xf9, 0x66, 0x1a, 0x89, 0xb3, 0xb4, 0x3c, 0x7a, - 0x3d, 0xe0, 0xf7, 0x43, 0x95, 0x65, 0xf1, 0x11, 0x7d, 0x87, 0x03, 0xb1, 0xc4, 0xa1, 0x2d, 0xb8, - 0x40, 0x5c, 0xd7, 0x7f, 0x20, 0x80, 0x6d, 0xdf, 0x3f, 0xec, 0x11, 0x76, 0x18, 0x8a, 0x7e, 0xaf, - 0xd2, 0xfe, 0x82, 0x62, 0xb9, 0xb0, 0x36, 0x4e, 0x82, 0x4f, 0xe3, 0x3b, 0xed, 0xd8, 0x66, 0xa7, - 0x3c, 0xb6, 0x1b, 0x70, 0x8e, 0xfb, 0x97, 0xdf, 0x8f, 0x74, 0x29, 0x5c, 0x12, 0x87, 0x80, 0x8e, - 0x87, 0xcd, 0x73, 0x77, 0x32, 0x18, 0x3c, 0x42, 0xc9, 0x4d, 0x76, 0x9d, 0x9e, 0x13, 0xd5, 0xe7, - 0x04, 0x4b, 0x6c, 0xf2, 0x6d, 0x0e, 0xc4, 0x12, 0x97, 0xf1, 0x8b, 0xca, 0x59, 0x7e, 0x61, 0xfe, - 0xa3, 0x00, 0x48, 0xd6, 0xee, 0xb6, 0x2c, 0x69, 0x64, 0xa0, 0x79, 0x0e, 0xe6, 0x7a, 0xaa, 0xf6, - 0x37, 0xb2, 0x51, 0x5f, 0x97, 0xfd, 0x1a, 0x8f, 0xb6, 0xa0, 0x2a, 0x2f, 0x7c, 0xe2, 0xc4, 0xab, - 0x8a, 0xb8, 0xba, 0xad, 0x11, 0x27, 0xc3, 0x66, 0x23, 0xa3, 0x26, 0xc6, 0xdc, 0x19, 0x04, 0x14, - 0x27, 0x12, 0x78, 0xbb, 0x4f, 0x02, 0x27, 0x3d, 0xe8, 0xa9, 0x26, 0xed, 0x7e, 0xd2, 0xb2, 0xe1, - 0x14, 0x15, 0x7a, 0x0d, 0x66, 0xf9, 0x4e, 0xa9, 0xde, 0xfb, 0xcb, 0xf9, 0xc2, 0x06, 0xdf, 0xeb, - 0x76, 0x85, 0x67, 0x4d, 0xfe, 0x85, 0x85, 0x04, 0x74, 0x1f, 0xca, 0xc2, 0xcb, 0xe4, 0xa9, 0x4c, - 0x59, 0x0d, 0x8a, 0xd6, 0x40, 0x95, 0xb2, 0x27, 0xf1, 0x17, 0x56, 0x12, 0xcd, 0xb7, 0xa1, 0xba, - 0xe5, 0x58, 0xcc, 0xe7, 0xea, 0xf8, 0x06, 0x87, 0x99, 0x56, 0x28, 0xde, 0x60, 0x7d, 0xf8, 0x1a, - 0xcf, 0x4f, 0xdd, 0x23, 0x9e, 0x2f, 0x1b, 0x9e, 0x52, 0x72, 0xea, 0x6f, 0x70, 0x20, 0x96, 0xb8, - 0x1b, 0x17, 0x79, 0x36, 0xfd, 0xf9, 0x07, 0xcd, 0x99, 0xf7, 0x3e, 0x68, 0xce, 0xbc, 0xff, 0x81, - 0xca, 0xac, 0x27, 0x00, 0xb0, 0xbd, 0xf7, 0x03, 0x6a, 0xc9, 0x18, 0x95, 0x6b, 0x4c, 0xa3, 0xa7, - 0x83, 0x62, 0x4c, 0x53, 0x18, 0xa9, 0x90, 0x52, 0x38, 0x9c, 0xa1, 0x44, 0xab, 0x50, 0x8d, 0x07, - 0x30, 0xea, 0xd8, 0x96, 0xb4, 0x1b, 0xc4, 0x53, 0x1a, 0x9c, 0xd0, 0x64, 0x02, 0xe6, 0xec, 0x99, - 0x01, 0xb3, 0x0d, 0xc5, 0xbe, 0x63, 0x8b, 0x53, 0xa9, 0xb6, 0x5f, 0xd0, 0x09, 0xeb, 0xee, 0x66, - 0xe7, 0x64, 0xd8, 0x7c, 0x7a, 0xd2, 0xdc, 0x33, 0x1a, 0x04, 0x34, 0x6c, 0xdd, 0xdd, 0xec, 0x60, - 0xce, 0x7c, 0xda, 0xed, 0x2d, 0x4f, 0x79, 0x7b, 0xaf, 0x01, 0x28, 0xab, 0x39, 0xb7, 0xbc, 0x86, - 0xb1, 0x77, 0xde, 0x8a, 0x31, 0x38, 0x45, 0x85, 0x42, 0x58, 0xb2, 0x78, 0x07, 0xce, 0x9d, 0xdd, - 0xe9, 0xd1, 0x30, 0x22, 0x3d, 0x39, 0x98, 0x9a, 0xce, 0x55, 0x9f, 0x52, 0x6a, 0x96, 0xd6, 0x47, - 0x85, 0xe1, 0x71, 0xf9, 0xc8, 0x87, 0x25, 0x5b, 0xf5, 0x92, 0x89, 0xd2, 0xea, 0xd4, 0x4a, 0x2f, - 0x71, 0x85, 0x9d, 0x51, 0x41, 0x78, 0x5c, 0x36, 0xfa, 0x3e, 0x34, 0x34, 0x70, 0xbc, 0xa1, 0x17, - 0xa3, 0xa5, 0x62, 0x7b, 0xf9, 0x78, 0xd8, 0x6c, 0x74, 0x26, 0x52, 0xe1, 0xc7, 0x48, 0x40, 0x36, - 0x94, 0x5d, 0x59, 0x0d, 0xce, 0x8b, 0x0c, 0xfe, 0x8d, 0x7c, 0x56, 0x24, 0xde, 0xdf, 0x4a, 0x57, - 0x81, 0x71, 0xc3, 0xaa, 0x0a, 0x40, 0x25, 0x1b, 0x3d, 0x84, 0x79, 0xe2, 0x79, 0x7e, 0x44, 0xe4, - 0x88, 0x61, 0x41, 0xa8, 0x5a, 0x9b, 0x5a, 0xd5, 0x5a, 0x22, 0x63, 0xa4, 0xea, 0x4c, 0x61, 0x70, - 0x5a, 0x15, 0x7a, 0x00, 0xe7, 0xfd, 0x07, 0x1e, 0x65, 0x98, 0xee, 0x53, 0x46, 0x3d, 0x8b, 0x86, - 0xf5, 0x9a, 0xd0, 0xfe, 0xb5, 0x9c, 0xda, 0x33, 0xcc, 0x89, 0x4b, 0x67, 0xe1, 0x21, 0x1e, 0xd5, - 0x82, 0x5a, 0x00, 0xfb, 0x8e, 0x47, 0x5c, 0xe7, 0x87, 0x94, 0x85, 0xf5, 0x73, 0xc9, 0xec, 0xf0, - 0x66, 0x0c, 0xc5, 0x29, 0x0a, 0xf4, 0x22, 0xcc, 0x5b, 0x6e, 0x3f, 0x8c, 0xa8, 0x1c, 0xe4, 0x9e, - 0x17, 0x37, 0x28, 0xb6, 0x6f, 0x3d, 0x41, 0xe1, 0x34, 0x1d, 0xea, 0x43, 0xad, 0x97, 0x4e, 0x00, - 0xf5, 0x25, 0x61, 0xdd, 0xf5, 0x7c, 0xd6, 0x8d, 0xa7, 0xa8, 0xa4, 0x4a, 0xc8, 0xe0, 0x70, 0x56, - 0x4b, 0xe3, 0xeb, 0x30, 0xff, 0x1f, 0x16, 0xd0, 0xbc, 0x00, 0x1f, 0x3d, 0xc7, 0xa9, 0x0a, 0xf0, - 0x0f, 0x0b, 0x70, 0x2e, 0xbb, 0xfb, 0x23, 0xc9, 0xad, 0x94, 0x2b, 0xb9, 0xe9, 0x56, 0xcf, 0x98, - 0x38, 0x7b, 0xd6, 0x61, 0xbd, 0x38, 0x31, 0xac, 0xab, 0xe8, 0x39, 0xfb, 0x24, 0xd1, 0xb3, 0x05, - 0xc0, 0xab, 0x06, 0xe6, 0xbb, 0x2e, 0x65, 0x22, 0x70, 0x56, 0xd4, 0x8c, 0x39, 0x86, 0xe2, 0x14, - 0x05, 0xaf, 0x38, 0xf7, 0x5c, 0xdf, 0x3a, 0x14, 0x5b, 0xa0, 0x2f, 0xbd, 0x08, 0x99, 0x15, 0x59, - 0x71, 0xb6, 0xc7, 0xb0, 0xf8, 0x14, 0x0e, 0x73, 0x00, 0x97, 0x76, 0x08, 0x8b, 0x1c, 0xe2, 0x26, - 0x17, 0x4c, 0x94, 0xf4, 0x6f, 0x8d, 0x35, 0x0c, 0x2f, 0x4c, 0x7b, 0x51, 0x93, 0xcd, 0x4f, 0x60, - 0x49, 0xd3, 0x60, 0xfe, 0xc5, 0x80, 0xa7, 0x4e, 0xd5, 0xfd, 0x39, 0x34, 0x2c, 0x6f, 0x65, 0x1b, - 0x96, 0x97, 0x73, 0x8e, 0x39, 0x4f, 0x5b, 0xed, 0x84, 0xf6, 0x65, 0x0e, 0x4a, 0x3b, 0xbc, 0xbc, - 0x35, 0x7f, 0x65, 0xc0, 0x82, 0xf8, 0x9a, 0x66, 0x44, 0xdc, 0x84, 0xd2, 0xbe, 0xaf, 0xc7, 0x40, - 0x15, 0xf9, 0x86, 0x71, 0x93, 0x03, 0xb0, 0x84, 0x3f, 0xc1, 0x0c, 0xf9, 0x5d, 0x03, 0xb2, 0xc3, - 0x59, 0xf4, 0xaa, 0xf4, 0x5f, 0x23, 0x9e, 0x9e, 0x4e, 0xe9, 0xbb, 0xaf, 0x4c, 0x6a, 0xb7, 0x2e, - 0xe4, 0x9a, 0xc4, 0x5d, 0x81, 0x2a, 0xf6, 0xfd, 0x68, 0x87, 0x44, 0x07, 0x21, 0x37, 0x3c, 0xe0, - 0x1f, 0x6a, 0x6f, 0x84, 0xe1, 0x02, 0x83, 0x25, 0xdc, 0xfc, 0xa5, 0x01, 0x4f, 0x4d, 0x1c, 0xdb, - 0xf3, 0x10, 0x60, 0xc5, 0x7f, 0xca, 0xa2, 0xd8, 0x0b, 0x13, 0x3a, 0x9c, 0xa2, 0xe2, 0x7d, 0x52, - 0x66, 0xd6, 0x3f, 0xda, 0x27, 0x65, 0xb4, 0xe1, 0x2c, 0xad, 0xf9, 0xcf, 0x02, 0x94, 0x77, 0x23, - 0x12, 0xf5, 0xc3, 0xff, 0xb2, 0xc7, 0x3e, 0x0b, 0xe5, 0x50, 0xe8, 0x51, 0xcb, 0x8b, 0x73, 0xac, - 0xd4, 0x8e, 0x15, 0x56, 0xf4, 0x16, 0x34, 0x0c, 0x49, 0x57, 0x47, 0xac, 0xa4, 0xb7, 0x90, 0x60, - 0xac, 0xf1, 0xe8, 0x25, 0x28, 0x33, 0x4a, 0xc2, 0xb8, 0xcd, 0x5a, 0xd6, 0x22, 0xb1, 0x80, 0x9e, - 0x0c, 0x9b, 0x0b, 0x4a, 0xb8, 0xf8, 0xc7, 0x8a, 0x1a, 0xdd, 0x87, 0x39, 0x9b, 0x46, 0xc4, 0x71, - 0x75, 0x1d, 0x9f, 0xf3, 0x95, 0x40, 0x0a, 0xeb, 0x48, 0xd6, 0xf6, 0x3c, 0x5f, 0x93, 0xfa, 0xc1, - 0x5a, 0x20, 0x8f, 0xb6, 0x96, 0x6f, 0xcb, 0x17, 0xcc, 0x52, 0x12, 0x6d, 0xd7, 0x7d, 0x9b, 0x62, - 0x81, 0x31, 0xdf, 0x33, 0x60, 0x5e, 0x4a, 0x5a, 0x27, 0xfd, 0x90, 0xa2, 0xab, 0xb1, 0x15, 0xf2, - 0xb8, 0x75, 0x25, 0x37, 0xcb, 0x7b, 0x9f, 0x93, 0x61, 0xb3, 0x2a, 0xc8, 0x44, 0x23, 0xa4, 0x0d, - 0x48, 0xed, 0x51, 0xe1, 0x8c, 0x3d, 0x7a, 0x06, 0x4a, 0xe2, 0xf6, 0xa8, 0xcd, 0x8c, 0xef, 0xba, - 0xb8, 0x60, 0x58, 0xe2, 0xcc, 0x4f, 0x0b, 0x50, 0xcb, 0x18, 0x97, 0xa3, 0x17, 0x88, 0xc7, 0x83, - 0x85, 0x1c, 0x23, 0xe7, 0xc9, 0x2f, 0xa3, 0x2a, 0xf7, 0x94, 0x9f, 0x24, 0xf7, 0x7c, 0x17, 0xca, - 0x16, 0xdf, 0x23, 0xfd, 0xd0, 0x7e, 0x75, 0x9a, 0xe3, 0x14, 0xbb, 0x9b, 0x78, 0xa3, 0xf8, 0x0d, - 0xb1, 0x12, 0x88, 0x6e, 0xc1, 0x12, 0xa3, 0x11, 0x1b, 0xac, 0xed, 0x47, 0x94, 0xa5, 0x5b, 0xf2, - 0x52, 0x52, 0x71, 0xe3, 0x51, 0x02, 0x3c, 0xce, 0x63, 0xee, 0xc1, 0xc2, 0x1d, 0xb2, 0xe7, 0xc6, - 0xef, 0x5e, 0x18, 0x6a, 0x8e, 0x67, 0xb9, 0x7d, 0x9b, 0xca, 0x68, 0xac, 0xa3, 0x97, 0xbe, 0xb4, - 0x9b, 0x69, 0xe4, 0xc9, 0xb0, 0x79, 0x21, 0x03, 0x90, 0x0f, 0x3d, 0x38, 0x2b, 0xc2, 0x74, 0x61, - 0xf6, 0x73, 0xec, 0x1e, 0xbf, 0x07, 0xd5, 0xa4, 0xbe, 0xff, 0x8c, 0x55, 0x9a, 0x6f, 0x41, 0x85, - 0x7b, 0xbc, 0xee, 0x4b, 0xcf, 0x28, 0x71, 0xb2, 0x85, 0x53, 0x21, 0x4f, 0xe1, 0x64, 0xf6, 0xa0, - 0x76, 0x37, 0xb0, 0x9f, 0xf0, 0xe5, 0xb3, 0x90, 0x3b, 0x6b, 0x5d, 0x03, 0xf9, 0x86, 0xcf, 0x13, - 0x84, 0xcc, 0xdc, 0xa9, 0x04, 0x91, 0x4e, 0xbc, 0xa9, 0xc9, 0xf7, 0x4f, 0x0d, 0x00, 0x31, 0x62, - 0xda, 0x38, 0xa2, 0x5e, 0xc4, 0xf7, 0x81, 0x3b, 0xfe, 0xe8, 0x3e, 0x88, 0xc8, 0x20, 0x30, 0xe8, - 0x2e, 0x94, 0x7d, 0xe9, 0x4d, 0xf2, 0xb5, 0x6a, 0xca, 0x39, 0x66, 0x7c, 0x09, 0xa4, 0x3f, 0x61, - 0x25, 0xac, 0x7d, 0xf9, 0xa3, 0x47, 0xcb, 0x33, 0x1f, 0x3f, 0x5a, 0x9e, 0xf9, 0xe4, 0xd1, 0xf2, - 0xcc, 0x3b, 0xc7, 0xcb, 0xc6, 0x47, 0xc7, 0xcb, 0xc6, 0xc7, 0xc7, 0xcb, 0xc6, 0x27, 0xc7, 0xcb, - 0xc6, 0xa7, 0xc7, 0xcb, 0xc6, 0x7b, 0x7f, 0x5b, 0x9e, 0xb9, 0x5f, 0x38, 0xba, 0xfa, 0xef, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x6d, 0x6a, 0x61, 0x07, 0x39, 0x25, 0x00, 0x00, + // 2779 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x1a, 0xcf, 0x6f, 0x1c, 0x57, + 0xd9, 0xb3, 0xeb, 0x5d, 0xef, 0x7e, 0xeb, 0x4d, 0xec, 0x97, 0x04, 0x36, 0x46, 0x78, 0xdd, 0x29, + 0xaa, 0x52, 0x48, 0xd7, 0x4d, 0xa0, 0x55, 0x48, 0x69, 0xc1, 0x6b, 0x3b, 0xa9, 0x69, 0x5c, 0x5b, + 0xcf, 0x49, 0x50, 0x43, 0x85, 0xfa, 0x3c, 0xf3, 0xbc, 0x1e, 0x3c, 0x3b, 0x33, 0x7d, 0x33, 0x6b, + 0x67, 0xe1, 0x40, 0x0f, 0x20, 0x40, 0x82, 0xaa, 0x47, 0x4e, 0xa8, 0x15, 0xfc, 0x05, 0x9c, 0xf8, + 0x03, 0x90, 0xe8, 0x05, 0xa9, 0x12, 0x97, 0x4a, 0xa0, 0x55, 0x6b, 0x0e, 0xc0, 0x09, 0x71, 0xe0, + 0xe2, 0x13, 0x7a, 0xbf, 0xe6, 0xc7, 0xae, 0x37, 0x9e, 0x25, 0xa5, 0xea, 0x6d, 0xe6, 0xfb, 0xf9, + 0xde, 0xfb, 0xbe, 0xf7, 0xfd, 0x9a, 0x81, 0xcd, 0x83, 0x1b, 0x61, 0xcb, 0xf1, 0x97, 0x0f, 0x7a, + 0xbb, 0x94, 0x79, 0x34, 0xa2, 0xe1, 0xf2, 0x21, 0xf5, 0x6c, 0x9f, 0x2d, 0x2b, 0x04, 0x09, 0x9c, + 0x2e, 0xb1, 0xf6, 0x1d, 0x8f, 0xb2, 0xfe, 0x72, 0x70, 0xd0, 0xe1, 0x80, 0x70, 0xb9, 0x4b, 0x23, + 0xb2, 0x7c, 0x78, 0x6d, 0xb9, 0x43, 0x3d, 0xca, 0x48, 0x44, 0xed, 0x56, 0xc0, 0xfc, 0xc8, 0x47, + 0x5f, 0x92, 0x5c, 0xad, 0x34, 0x57, 0x2b, 0x38, 0xe8, 0x70, 0x40, 0xd8, 0xe2, 0x5c, 0xad, 0xc3, + 0x6b, 0x0b, 0xcf, 0x74, 0x9c, 0x68, 0xbf, 0xb7, 0xdb, 0xb2, 0xfc, 0xee, 0x72, 0xc7, 0xef, 0xf8, + 0xcb, 0x82, 0x79, 0xb7, 0xb7, 0x27, 0xde, 0xc4, 0x8b, 0x78, 0x92, 0x42, 0x17, 0xc6, 0x2e, 0x85, + 0xf5, 0xbc, 0xc8, 0xe9, 0xd2, 0xe1, 0x55, 0x2c, 0x3c, 0x7f, 0x16, 0x43, 0x68, 0xed, 0xd3, 0x2e, + 0x19, 0xe6, 0x33, 0xff, 0x58, 0x84, 0xca, 0xca, 0xf6, 0xc6, 0x6d, 0xe6, 0xf7, 0x02, 0xb4, 0x04, + 0xd3, 0x1e, 0xe9, 0xd2, 0x86, 0xb1, 0x64, 0x5c, 0xa9, 0xb6, 0x67, 0xdf, 0x1f, 0x34, 0xa7, 0x8e, + 0x07, 0xcd, 0xe9, 0x57, 0x49, 0x97, 0x62, 0x81, 0x41, 0x2e, 0x54, 0x0e, 0x29, 0x0b, 0x1d, 0xdf, + 0x0b, 0x1b, 0x85, 0xa5, 0xe2, 0x95, 0xda, 0xf5, 0x97, 0x5a, 0x79, 0xf6, 0xdf, 0x12, 0x0a, 0xee, + 0x4b, 0xd6, 0x5b, 0x3e, 0x5b, 0x73, 0x42, 0xcb, 0x3f, 0xa4, 0xac, 0xdf, 0x9e, 0x53, 0x5a, 0x2a, + 0x0a, 0x19, 0xe2, 0x58, 0x03, 0xfa, 0xb1, 0x01, 0x73, 0x01, 0xa3, 0x7b, 0x94, 0x31, 0x6a, 0x2b, + 0x7c, 0xa3, 0xb8, 0x64, 0x7c, 0x02, 0x6a, 0x1b, 0x4a, 0xed, 0xdc, 0xf6, 0x90, 0x7c, 0x3c, 0xa2, + 0x11, 0xfd, 0xc6, 0x80, 0x85, 0x90, 0xb2, 0x43, 0xca, 0x56, 0x6c, 0x9b, 0xd1, 0x30, 0x6c, 0xf7, + 0x57, 0x5d, 0x87, 0x7a, 0xd1, 0xea, 0xc6, 0x1a, 0x0e, 0x1b, 0xd3, 0xe2, 0x1c, 0xbe, 0x99, 0x6f, + 0x41, 0x3b, 0xe3, 0xe4, 0xb4, 0x4d, 0xb5, 0xa2, 0x85, 0xb1, 0x24, 0x21, 0x7e, 0xc4, 0x32, 0xcc, + 0x3d, 0x98, 0xd5, 0x86, 0xbc, 0xe3, 0x84, 0x11, 0xba, 0x0f, 0xe5, 0x0e, 0x7f, 0x09, 0x1b, 0x86, + 0x58, 0x60, 0x2b, 0xdf, 0x02, 0xb5, 0x8c, 0xf6, 0x39, 0xb5, 0x9e, 0xb2, 0x78, 0x0d, 0xb1, 0x92, + 0x66, 0xfe, 0x7c, 0x1a, 0x6a, 0x2b, 0xdb, 0x1b, 0x98, 0x86, 0x7e, 0x8f, 0x59, 0x34, 0x87, 0xd3, + 0xdc, 0x80, 0xd9, 0xd0, 0xf1, 0x3a, 0x3d, 0x97, 0x30, 0x0e, 0x6d, 0x94, 0x05, 0xe5, 0x45, 0x45, + 0x39, 0xbb, 0x93, 0xc2, 0xe1, 0x0c, 0x25, 0xba, 0x0e, 0xc0, 0x25, 0x84, 0x01, 0xb1, 0xa8, 0xdd, + 0x28, 0x2c, 0x19, 0x57, 0x2a, 0x6d, 0xa4, 0xf8, 0xe0, 0xd5, 0x18, 0x83, 0x53, 0x54, 0xe8, 0x49, + 0x28, 0x89, 0x95, 0x36, 0x2a, 0x42, 0x4d, 0x5d, 0x91, 0x97, 0xc4, 0x36, 0xb0, 0xc4, 0xa1, 0xa7, + 0x61, 0x46, 0x79, 0x59, 0xa3, 0x2a, 0xc8, 0xce, 0x2b, 0xb2, 0x19, 0xed, 0x06, 0x1a, 0xcf, 0xf7, + 0x77, 0xe0, 0x78, 0xb6, 0xf0, 0xbb, 0xd4, 0xfe, 0x5e, 0x71, 0x3c, 0x1b, 0x0b, 0x0c, 0xba, 0x03, + 0xa5, 0x43, 0xca, 0x76, 0xb9, 0x27, 0x70, 0xd7, 0xfc, 0x4a, 0xbe, 0x83, 0xbe, 0xcf, 0x59, 0xda, + 0x55, 0xbe, 0x34, 0xf1, 0x88, 0xa5, 0x10, 0xd4, 0x02, 0x08, 0xf7, 0x7d, 0x16, 0x89, 0xed, 0x35, + 0x4a, 0x4b, 0xc5, 0x2b, 0xd5, 0xf6, 0x39, 0xbe, 0xdf, 0x9d, 0x18, 0x8a, 0x53, 0x14, 0x9c, 0xde, + 0x22, 0x11, 0xed, 0xf8, 0xcc, 0xa1, 0x61, 0x63, 0x26, 0xa1, 0x5f, 0x8d, 0xa1, 0x38, 0x45, 0x81, + 0xbe, 0x0d, 0x28, 0x8c, 0x7c, 0x46, 0x3a, 0x54, 0x6d, 0xf5, 0x65, 0x12, 0xee, 0x37, 0x40, 0xec, + 0x6e, 0x41, 0xed, 0x0e, 0xed, 0x8c, 0x50, 0xe0, 0x53, 0xb8, 0xcc, 0xdf, 0x19, 0x70, 0x3e, 0xe5, + 0x0b, 0xc2, 0xef, 0x6e, 0xc0, 0x6c, 0x27, 0x75, 0xeb, 0x94, 0x5f, 0xc4, 0xd6, 0x4e, 0xdf, 0x48, + 0x9c, 0xa1, 0x44, 0x14, 0xaa, 0x4c, 0x49, 0xd2, 0xd1, 0xe5, 0x5a, 0x6e, 0xa7, 0xd5, 0x6b, 0x48, + 0x34, 0xa5, 0x80, 0x21, 0x4e, 0x24, 0x9b, 0x7f, 0x37, 0x84, 0x03, 0xeb, 0x78, 0x83, 0xae, 0xa4, + 0x62, 0x9a, 0x21, 0x8e, 0x6f, 0x76, 0x4c, 0x3c, 0x3a, 0x23, 0x10, 0x14, 0x3e, 0x13, 0x81, 0xe0, + 0x66, 0xe5, 0x57, 0xef, 0x36, 0xa7, 0xde, 0xfa, 0xeb, 0xd2, 0x94, 0xd9, 0x85, 0xfa, 0x2a, 0xa3, + 0x24, 0xa2, 0x5b, 0x41, 0x24, 0x36, 0x60, 0x42, 0xd9, 0x66, 0x7d, 0xdc, 0xf3, 0xd4, 0x46, 0x81, + 0xdf, 0xef, 0x35, 0x01, 0xc1, 0x0a, 0xc3, 0xed, 0xb7, 0xe7, 0x50, 0xd7, 0xde, 0x24, 0x1e, 0xe9, + 0x50, 0xa6, 0xfc, 0x3e, 0x3e, 0xd5, 0x5b, 0x29, 0x1c, 0xce, 0x50, 0x9a, 0x3f, 0x2d, 0x42, 0x7d, + 0x8d, 0xba, 0x34, 0xd1, 0x77, 0x0b, 0x50, 0x87, 0x11, 0x8b, 0x6e, 0x53, 0xe6, 0xf8, 0xf6, 0x0e, + 0xb5, 0x7c, 0xcf, 0x0e, 0x85, 0x47, 0x14, 0xdb, 0x9f, 0xe3, 0x7e, 0x76, 0x7b, 0x04, 0x8b, 0x4f, + 0xe1, 0x40, 0x2e, 0xd4, 0x03, 0x26, 0x9e, 0x9d, 0x48, 0xe5, 0x1e, 0x7e, 0xd3, 0xbe, 0x9a, 0xef, + 0xa8, 0xb7, 0xd3, 0xac, 0xed, 0xf9, 0xe3, 0x41, 0xb3, 0x9e, 0x01, 0xe1, 0xac, 0x70, 0xf4, 0x2d, + 0x98, 0xf3, 0x59, 0xb0, 0x4f, 0xbc, 0x35, 0x1a, 0x50, 0xcf, 0xa6, 0x5e, 0x14, 0x8a, 0x53, 0xa8, + 0xb4, 0x2f, 0xf2, 0x8c, 0xb1, 0x35, 0x84, 0xc3, 0x23, 0xd4, 0xe8, 0x01, 0xcc, 0x07, 0xcc, 0x0f, + 0x48, 0x87, 0x70, 0x89, 0xdb, 0xbe, 0xeb, 0x58, 0x7d, 0x11, 0x1d, 0xaa, 0xed, 0xab, 0xc7, 0x83, + 0xe6, 0xfc, 0xf6, 0x30, 0xf2, 0x64, 0xd0, 0xbc, 0x20, 0x8e, 0x8e, 0x43, 0x12, 0x24, 0x1e, 0x15, + 0x93, 0xb2, 0x61, 0x69, 0x9c, 0x0d, 0xcd, 0x0d, 0xa8, 0xac, 0xf5, 0x98, 0xe0, 0x42, 0x2f, 0x42, + 0xc5, 0x56, 0xcf, 0xea, 0xe4, 0x9f, 0xd0, 0x29, 0x57, 0xd3, 0x9c, 0x0c, 0x9a, 0x75, 0x5e, 0x24, + 0xb4, 0x34, 0x00, 0xc7, 0x2c, 0xe6, 0xeb, 0x50, 0x5f, 0x7f, 0x18, 0xf8, 0x2c, 0xd2, 0x36, 0x7d, + 0x0a, 0xca, 0x54, 0x00, 0x84, 0xb4, 0x4a, 0x92, 0x27, 0x24, 0x19, 0x56, 0x58, 0x1e, 0x87, 0xe9, + 0x43, 0x62, 0x45, 0x2a, 0x6c, 0xc7, 0x71, 0x78, 0x9d, 0x03, 0xb1, 0xc4, 0x99, 0xff, 0x31, 0xa0, + 0x2c, 0x3c, 0x2a, 0x44, 0x77, 0xa1, 0xd8, 0x25, 0x81, 0x4a, 0x56, 0xcf, 0xe5, 0xb3, 0xac, 0x64, + 0x6d, 0x6d, 0x92, 0x60, 0xdd, 0x8b, 0x58, 0xbf, 0x5d, 0x53, 0x4a, 0x8a, 0x9b, 0x24, 0xc0, 0x5c, + 0x1c, 0xba, 0x0c, 0x45, 0x46, 0x8e, 0xc4, 0x1a, 0x66, 0xdb, 0x33, 0x1c, 0x85, 0xc9, 0x11, 0xe6, + 0xb0, 0x05, 0x1b, 0x2a, 0x9a, 0x11, 0xcd, 0x41, 0xf1, 0x80, 0xf6, 0x65, 0xac, 0xc2, 0xfc, 0x11, + 0xb5, 0xa1, 0x74, 0x48, 0xdc, 0x1e, 0x55, 0xae, 0x76, 0x75, 0x92, 0x05, 0x61, 0xc9, 0x7a, 0xb3, + 0x70, 0xc3, 0xb8, 0x79, 0x91, 0xdf, 0xc6, 0x9f, 0xbd, 0xd7, 0x9c, 0x7a, 0xe7, 0xbd, 0xe6, 0xd4, + 0xbb, 0xef, 0xa9, 0x9b, 0xb9, 0x05, 0x70, 0x9b, 0xc6, 0x47, 0xba, 0x02, 0xe7, 0x75, 0x78, 0xca, + 0x46, 0xcd, 0xcf, 0xab, 0xfd, 0x9c, 0xc7, 0x59, 0x34, 0x1e, 0xa6, 0x37, 0x5f, 0x87, 0xaa, 0x88, + 0xac, 0x3c, 0x2d, 0x25, 0x29, 0xd0, 0x78, 0x44, 0x0a, 0xd4, 0x79, 0xad, 0x30, 0x2e, 0xaf, 0xa5, + 0x02, 0x89, 0x0b, 0x75, 0xc9, 0xab, 0x93, 0x7e, 0x2e, 0x0d, 0x57, 0xa1, 0xa2, 0x97, 0xa9, 0xb4, + 0xc4, 0xc5, 0x9e, 0x16, 0x84, 0x63, 0x8a, 0x94, 0xb6, 0x7d, 0xc8, 0x64, 0x89, 0x7c, 0xca, 0x52, + 0x19, 0xbd, 0xf0, 0xe8, 0x8c, 0x9e, 0xd2, 0xf4, 0x23, 0x68, 0x8c, 0xab, 0x10, 0x1f, 0x23, 0x8f, + 0xe5, 0x5f, 0x8a, 0xf9, 0xb6, 0x01, 0x73, 0x69, 0x49, 0xf9, 0xcd, 0x97, 0x5f, 0xc9, 0xd9, 0x15, + 0x4c, 0xea, 0x44, 0x7e, 0x6d, 0xc0, 0xc5, 0xcc, 0xd6, 0x26, 0xb2, 0xf8, 0x04, 0x8b, 0x4a, 0x3b, + 0x47, 0x71, 0x02, 0xe7, 0xf8, 0x73, 0x01, 0xea, 0x77, 0xc8, 0x2e, 0x75, 0x77, 0xa8, 0x4b, 0xad, + 0xc8, 0x67, 0xe8, 0x87, 0x50, 0xeb, 0x92, 0xc8, 0xda, 0x17, 0x50, 0x5d, 0xed, 0xae, 0xe5, 0xbb, + 0xaf, 0x19, 0x49, 0xad, 0xcd, 0x44, 0x8c, 0x8c, 0x27, 0x17, 0xd4, 0x92, 0x6a, 0x29, 0x0c, 0x4e, + 0x6b, 0x13, 0x2d, 0x8a, 0x78, 0x5f, 0x7f, 0x18, 0xf0, 0x54, 0x3c, 0x79, 0x67, 0x94, 0x59, 0x02, + 0xa6, 0x6f, 0xf6, 0x1c, 0x46, 0xbb, 0xd4, 0x8b, 0x92, 0x16, 0x65, 0x73, 0x48, 0x3e, 0x1e, 0xd1, + 0xb8, 0xf0, 0x12, 0xcc, 0x0d, 0x2f, 0xfe, 0x94, 0x98, 0x76, 0x31, 0x1d, 0xd3, 0xaa, 0xa9, 0x28, + 0x65, 0xfe, 0xd6, 0x80, 0xc6, 0xb8, 0x85, 0xa0, 0x2f, 0xa6, 0x04, 0x25, 0x21, 0xf6, 0x15, 0xda, + 0x97, 0x52, 0xd7, 0xa1, 0xe2, 0x07, 0xbc, 0xa9, 0xf4, 0x99, 0xb2, 0xfa, 0xd3, 0xda, 0x92, 0x5b, + 0x0a, 0x7e, 0x32, 0x68, 0x5e, 0xca, 0x88, 0xd7, 0x08, 0x1c, 0xb3, 0xf2, 0xbc, 0x26, 0xd6, 0xc3, + 0x73, 0x6d, 0x9c, 0xd7, 0xee, 0x0b, 0x08, 0x56, 0x18, 0xf3, 0xf7, 0x06, 0x4c, 0x8b, 0x22, 0xf3, + 0x75, 0xa8, 0xf0, 0xf3, 0xb3, 0x49, 0x44, 0xc4, 0xba, 0x72, 0xb7, 0x37, 0x9c, 0x7b, 0x93, 0x46, + 0x24, 0xf1, 0x36, 0x0d, 0xc1, 0xb1, 0x44, 0x84, 0xa1, 0xe4, 0x44, 0xb4, 0xab, 0x0d, 0xf9, 0xcc, + 0x58, 0xd1, 0xaa, 0xb9, 0x6e, 0x61, 0x72, 0xb4, 0xfe, 0x30, 0xa2, 0x1e, 0x37, 0x46, 0x72, 0x35, + 0x36, 0xb8, 0x0c, 0x2c, 0x45, 0x99, 0xff, 0x36, 0x20, 0x56, 0xc5, 0x9d, 0x3f, 0xa4, 0xee, 0xde, + 0x1d, 0xc7, 0x3b, 0x50, 0xc7, 0x1a, 0x2f, 0x67, 0x47, 0xc1, 0x71, 0x4c, 0x71, 0x5a, 0x7a, 0x28, + 0x4c, 0x96, 0x1e, 0xb8, 0x42, 0xcb, 0xf7, 0x22, 0xc7, 0xeb, 0x8d, 0xdc, 0xb6, 0x55, 0x05, 0xc7, + 0x31, 0x05, 0x2f, 0xdb, 0x18, 0xed, 0x12, 0xc7, 0x73, 0xbc, 0x0e, 0xdf, 0xc4, 0xaa, 0xdf, 0xf3, + 0x22, 0x51, 0xbf, 0xa8, 0xb2, 0x0d, 0x8f, 0x60, 0xf1, 0x29, 0x1c, 0xe6, 0x9f, 0x8a, 0x50, 0xe3, + 0x7b, 0xd6, 0x79, 0xee, 0x05, 0xa8, 0xbb, 0x69, 0x2f, 0x50, 0x7b, 0xbf, 0xa4, 0x96, 0x92, 0xbd, + 0xd7, 0x38, 0x4b, 0xcb, 0x99, 0x45, 0xb5, 0x19, 0x33, 0x17, 0xb2, 0xcc, 0xb7, 0xd2, 0x48, 0x9c, + 0xa5, 0xe5, 0xd1, 0xeb, 0x88, 0xdf, 0x0f, 0x55, 0xc7, 0xc5, 0x26, 0xfa, 0x0e, 0x07, 0x62, 0x89, + 0x43, 0x9b, 0x70, 0x81, 0xb8, 0xae, 0x7f, 0x24, 0x80, 0x6d, 0xdf, 0x3f, 0xe8, 0x12, 0x76, 0x10, + 0x8a, 0x06, 0xb1, 0xd2, 0xfe, 0x82, 0x62, 0xb9, 0xb0, 0x32, 0x4a, 0x82, 0x4f, 0xe3, 0x3b, 0xcd, + 0x6c, 0xd3, 0x13, 0x9a, 0xed, 0x26, 0x9c, 0xe3, 0xfe, 0xe5, 0xf7, 0x22, 0x5d, 0x3b, 0x97, 0x84, + 0x11, 0xd0, 0xf1, 0xa0, 0x79, 0xee, 0x6e, 0x06, 0x83, 0x87, 0x28, 0xf9, 0x96, 0x5d, 0xa7, 0xeb, + 0x44, 0x8d, 0x19, 0xc1, 0x12, 0x6f, 0xf9, 0x0e, 0x07, 0x62, 0x89, 0xcb, 0xf8, 0x45, 0xe5, 0x2c, + 0xbf, 0x30, 0xff, 0x51, 0x00, 0x24, 0x8b, 0x7d, 0x5b, 0x16, 0x3a, 0x32, 0xd0, 0x3c, 0x0d, 0x33, + 0x5d, 0xd5, 0x2c, 0x18, 0xd9, 0xa8, 0xaf, 0xfb, 0x04, 0x8d, 0x47, 0x9b, 0x50, 0x95, 0x17, 0x3e, + 0x71, 0xe2, 0x65, 0x45, 0x5c, 0xdd, 0xd2, 0x88, 0x93, 0x41, 0x73, 0x21, 0xa3, 0x26, 0xc6, 0xdc, + 0xed, 0x07, 0x14, 0x27, 0x12, 0xd0, 0x75, 0x00, 0x12, 0x38, 0xe9, 0xc9, 0x50, 0x35, 0x99, 0x0f, + 0x24, 0x3d, 0x1e, 0x4e, 0x51, 0xa1, 0x97, 0x61, 0x9a, 0x9f, 0x94, 0x6a, 0xd6, 0xbf, 0x9c, 0x2f, + 0x6c, 0xf0, 0xb3, 0x6e, 0x57, 0x78, 0xd6, 0xe4, 0x4f, 0x58, 0x48, 0x40, 0x0f, 0xa0, 0x2c, 0xbc, + 0x4c, 0x5a, 0x65, 0xc2, 0x1a, 0x51, 0xf4, 0x12, 0xaa, 0xf6, 0x3d, 0x89, 0x9f, 0xb0, 0x92, 0x68, + 0xbe, 0x09, 0xd5, 0x4d, 0xc7, 0x62, 0x3e, 0x57, 0xc7, 0x0f, 0x38, 0xcc, 0xf4, 0x4e, 0xf1, 0x01, + 0x6b, 0xe3, 0x6b, 0x3c, 0xb7, 0xba, 0x47, 0x3c, 0x5f, 0x76, 0x48, 0xa5, 0xc4, 0xea, 0xaf, 0x72, + 0x20, 0x96, 0xb8, 0x31, 0x35, 0xe9, 0x09, 0x00, 0x6c, 0xed, 0x7e, 0x9f, 0x5a, 0x32, 0x46, 0xe5, + 0x9a, 0xeb, 0xe8, 0x71, 0xa2, 0x98, 0xeb, 0x14, 0x86, 0x2a, 0xa4, 0x14, 0x0e, 0x67, 0x28, 0xd1, + 0x32, 0x54, 0xe3, 0x89, 0x8d, 0x32, 0xdb, 0xbc, 0x76, 0x83, 0x78, 0xac, 0x83, 0x13, 0x9a, 0x4c, + 0xc0, 0x9c, 0x3e, 0x33, 0x60, 0xb6, 0xa1, 0xd8, 0x73, 0x6c, 0x61, 0x95, 0x6a, 0xfb, 0x59, 0x9d, + 0xb0, 0xee, 0x6d, 0xac, 0x9d, 0x0c, 0x9a, 0x4f, 0x8c, 0x1b, 0x94, 0x46, 0xfd, 0x80, 0x86, 0xad, + 0x7b, 0x1b, 0x6b, 0x98, 0x33, 0x9f, 0x76, 0x7b, 0xcb, 0x13, 0xde, 0xde, 0xeb, 0x00, 0x6a, 0xd7, + 0x9c, 0x5b, 0x5e, 0xc3, 0xd8, 0x3b, 0x6f, 0xc7, 0x18, 0x9c, 0xa2, 0x42, 0x21, 0xcc, 0x5b, 0xbc, + 0x65, 0xe7, 0xce, 0xee, 0x74, 0x69, 0x18, 0x91, 0xae, 0x9c, 0x64, 0x4d, 0xe6, 0xaa, 0x97, 0x95, + 0x9a, 0xf9, 0xd5, 0x61, 0x61, 0x78, 0x54, 0x3e, 0xf2, 0x61, 0xde, 0x56, 0xcd, 0x67, 0xa2, 0xb4, + 0x3a, 0xb1, 0xd2, 0x4b, 0x5c, 0xe1, 0xda, 0xb0, 0x20, 0x3c, 0x2a, 0x1b, 0x7d, 0x0f, 0x16, 0x34, + 0x70, 0x74, 0x02, 0x20, 0x66, 0x51, 0xc5, 0xf6, 0xe2, 0xf1, 0xa0, 0xb9, 0xb0, 0x36, 0x96, 0x0a, + 0x3f, 0x42, 0x02, 0xb2, 0xa1, 0xec, 0xca, 0x6a, 0xb0, 0x26, 0x32, 0xf8, 0x37, 0xf2, 0xed, 0x22, + 0xf1, 0xfe, 0x56, 0xba, 0x0a, 0x8c, 0x3b, 0x5c, 0x55, 0x00, 0x2a, 0xd9, 0xe8, 0x21, 0xd4, 0x88, + 0xe7, 0xf9, 0x11, 0x91, 0x33, 0x89, 0x59, 0xa1, 0x6a, 0x65, 0x62, 0x55, 0x2b, 0x89, 0x8c, 0xa1, + 0xaa, 0x33, 0x85, 0xc1, 0x69, 0x55, 0xe8, 0x08, 0xce, 0xfb, 0x47, 0x1e, 0x65, 0x98, 0xee, 0x51, + 0x46, 0x3d, 0x8b, 0x86, 0x8d, 0xba, 0xd0, 0xfe, 0xb5, 0x9c, 0xda, 0x33, 0xcc, 0x89, 0x4b, 0x67, + 0xe1, 0x21, 0x1e, 0xd6, 0x82, 0x5a, 0x00, 0x7b, 0x8e, 0x47, 0x5c, 0xe7, 0x07, 0x94, 0x85, 0x8d, + 0x73, 0xc9, 0xb0, 0xf1, 0x56, 0x0c, 0xc5, 0x29, 0x0a, 0xf4, 0x1c, 0xd4, 0x2c, 0xb7, 0x17, 0x46, + 0x54, 0x4e, 0x7e, 0xcf, 0x8b, 0x1b, 0x14, 0xef, 0x6f, 0x35, 0x41, 0xe1, 0x34, 0x1d, 0xea, 0x41, + 0xbd, 0x9b, 0x4e, 0x00, 0x8d, 0x79, 0xb1, 0xbb, 0x1b, 0xf9, 0x76, 0x37, 0x9a, 0xa2, 0x92, 0x2a, + 0x21, 0x83, 0xc3, 0x59, 0x2d, 0x0b, 0x5f, 0x87, 0xda, 0xff, 0x58, 0x40, 0xf3, 0x02, 0x7c, 0xd8, + 0x8e, 0x13, 0x15, 0xe0, 0x7f, 0x28, 0xc0, 0xb9, 0xec, 0xe9, 0x0f, 0x25, 0xb7, 0x52, 0xae, 0xe4, + 0xa6, 0x5b, 0x3d, 0x63, 0xec, 0xb0, 0x5a, 0x87, 0xf5, 0xe2, 0xd8, 0xb0, 0xae, 0xa2, 0xe7, 0xf4, + 0xe3, 0x44, 0xcf, 0x16, 0x00, 0xaf, 0x1a, 0x98, 0xef, 0xba, 0x94, 0x89, 0xc0, 0x59, 0x51, 0x43, + 0xe9, 0x18, 0x8a, 0x53, 0x14, 0xbc, 0xe2, 0xdc, 0x75, 0x7d, 0xeb, 0x40, 0x1c, 0x81, 0xbe, 0xf4, + 0x22, 0x64, 0x56, 0x64, 0xc5, 0xd9, 0x1e, 0xc1, 0xe2, 0x53, 0x38, 0xcc, 0x3e, 0x5c, 0xda, 0x26, + 0x2c, 0x72, 0x88, 0x9b, 0x5c, 0x30, 0x51, 0xd2, 0xbf, 0x31, 0xd2, 0x30, 0x3c, 0x3b, 0xe9, 0x45, + 0x4d, 0x0e, 0x3f, 0x81, 0x25, 0x4d, 0x83, 0xf9, 0x17, 0x03, 0x2e, 0x9f, 0xaa, 0xfb, 0x53, 0x68, + 0x58, 0xde, 0xc8, 0x36, 0x2c, 0x2f, 0xe4, 0x9c, 0x8b, 0x9e, 0xb6, 0xda, 0x31, 0xed, 0xcb, 0x0c, + 0x94, 0xb6, 0x79, 0x79, 0x6b, 0xfe, 0xd2, 0x80, 0x59, 0xf1, 0x34, 0xc9, 0x4c, 0xb9, 0x09, 0xa5, + 0x3d, 0x5f, 0x8f, 0x81, 0x2a, 0xf2, 0xa3, 0xc7, 0x2d, 0x0e, 0xc0, 0x12, 0xfe, 0x18, 0x43, 0xe7, + 0xb7, 0x0d, 0xc8, 0x4e, 0x73, 0xd1, 0x4b, 0xd2, 0x7f, 0x8d, 0x78, 0xdc, 0x3a, 0xa1, 0xef, 0xbe, + 0x38, 0xae, 0xdd, 0xba, 0x90, 0x6b, 0x12, 0xf7, 0x4f, 0x03, 0x6a, 0xdb, 0xcc, 0x8f, 0x7c, 0x35, + 0xd7, 0x7c, 0x2d, 0x3d, 0xd7, 0xbc, 0x99, 0x77, 0x62, 0x1d, 0xf3, 0x7f, 0x96, 0x87, 0x9b, 0xe6, + 0x55, 0xa8, 0x62, 0xdf, 0x8f, 0xb6, 0x49, 0xb4, 0x1f, 0x72, 0x23, 0x07, 0xfc, 0x41, 0xf9, 0x81, + 0x30, 0xb2, 0xc0, 0x60, 0x09, 0x37, 0x7f, 0x61, 0xc0, 0xe5, 0xb1, 0xdf, 0x34, 0x78, 0xb8, 0xb3, + 0xe2, 0x37, 0x65, 0xbd, 0xf8, 0xc6, 0x25, 0x74, 0x38, 0x45, 0xc5, 0x7b, 0xc2, 0xcc, 0x87, 0x90, + 0xe1, 0x9e, 0x30, 0xa3, 0x0d, 0x67, 0x69, 0xcd, 0x7f, 0x15, 0xa0, 0xbc, 0x13, 0x91, 0xa8, 0x17, + 0xfe, 0x9f, 0x6f, 0xe7, 0x53, 0x50, 0x0e, 0x85, 0x1e, 0xb5, 0xbc, 0xb8, 0x9e, 0x90, 0xda, 0xb1, + 0xc2, 0x8a, 0x3e, 0x8a, 0x86, 0x21, 0xe9, 0xe8, 0xe8, 0x9c, 0xf4, 0x51, 0x12, 0x8c, 0x35, 0x1e, + 0x3d, 0x0f, 0x65, 0x46, 0x49, 0x18, 0xb7, 0x94, 0x8b, 0x5a, 0x24, 0x16, 0xd0, 0x93, 0x41, 0x73, + 0x56, 0x09, 0x17, 0xef, 0x58, 0x51, 0xa3, 0x07, 0x30, 0x63, 0xd3, 0x88, 0x38, 0xae, 0xee, 0x59, + 0x72, 0x7e, 0x42, 0x91, 0xc2, 0xd6, 0x24, 0x6b, 0xbb, 0xc6, 0xd7, 0xa4, 0x5e, 0xb0, 0x16, 0xc8, + 0x33, 0x8b, 0xe5, 0xdb, 0xf2, 0xf3, 0x6e, 0x29, 0xc9, 0x2c, 0xab, 0xbe, 0x4d, 0xb1, 0xc0, 0x98, + 0xef, 0x18, 0x50, 0x93, 0x92, 0x56, 0x49, 0x2f, 0xa4, 0xe8, 0x5a, 0xbc, 0x0b, 0x69, 0x6e, 0x5d, + 0xb5, 0x4e, 0xf3, 0x3e, 0xef, 0x64, 0xd0, 0xac, 0x0a, 0x32, 0xd1, 0xf4, 0xe9, 0x0d, 0xa4, 0xce, + 0xa8, 0x70, 0xc6, 0x19, 0x3d, 0x09, 0x25, 0x11, 0x29, 0xd4, 0x61, 0xc6, 0x71, 0x4d, 0xb8, 0x31, + 0x96, 0x38, 0xf3, 0xa3, 0x02, 0xd4, 0x33, 0x9b, 0xcb, 0xd1, 0xf7, 0xc4, 0xa3, 0xd0, 0x42, 0x8e, + 0xf1, 0xfa, 0xf8, 0xcf, 0xc6, 0x2a, 0xcf, 0x96, 0x1f, 0x27, 0xcf, 0xbe, 0x06, 0x65, 0x8b, 0x9f, + 0x91, 0xfe, 0x0b, 0xe1, 0xda, 0x24, 0xe6, 0x14, 0xa7, 0x9b, 0x78, 0xa3, 0x78, 0x0d, 0xb1, 0x12, + 0x88, 0x6e, 0xc3, 0x3c, 0xa3, 0x11, 0xeb, 0xaf, 0xec, 0x45, 0x94, 0xa5, 0xc7, 0x0f, 0xa5, 0xa4, + 0xbb, 0xc0, 0xc3, 0x04, 0x78, 0x94, 0xc7, 0xdc, 0x85, 0xd9, 0xbb, 0x64, 0xd7, 0x8d, 0x3f, 0x0a, + 0x62, 0xa8, 0x3b, 0x9e, 0xe5, 0xf6, 0x6c, 0x2a, 0x33, 0x8f, 0x8e, 0xd4, 0xfa, 0xd2, 0x6e, 0xa4, + 0x91, 0x27, 0x83, 0xe6, 0x85, 0x0c, 0x40, 0x7e, 0x05, 0xc3, 0x59, 0x11, 0xa6, 0x0b, 0xd3, 0x9f, + 0x62, 0xa7, 0xfc, 0x5d, 0xa8, 0x26, 0xbd, 0xcc, 0x27, 0xac, 0xd2, 0x7c, 0x03, 0x2a, 0xdc, 0xe3, + 0x75, 0x0f, 0x7e, 0x46, 0x39, 0x97, 0x2d, 0x12, 0x0b, 0x79, 0x8a, 0x44, 0xb3, 0x0b, 0xf5, 0x7b, + 0x81, 0xfd, 0x98, 0x9f, 0x85, 0x0b, 0xb9, 0x33, 0xf4, 0x75, 0x90, 0x3f, 0x38, 0xf0, 0x04, 0x21, + 0xab, 0x94, 0x54, 0x82, 0x48, 0x17, 0x19, 0xa9, 0x29, 0xff, 0x4f, 0x0c, 0x00, 0x31, 0x4e, 0x5b, + 0x3f, 0xa4, 0x5e, 0xc4, 0xcf, 0x81, 0x3b, 0xfe, 0xf0, 0x39, 0x88, 0xc8, 0x20, 0x30, 0xe8, 0x1e, + 0x94, 0x7d, 0xe9, 0x4d, 0x32, 0xa5, 0x4d, 0x38, 0xb3, 0x8d, 0x2f, 0x81, 0xf4, 0x27, 0xac, 0x84, + 0xb5, 0xaf, 0xbc, 0xff, 0xf1, 0xe2, 0xd4, 0x07, 0x1f, 0x2f, 0x4e, 0x7d, 0xf8, 0xf1, 0xe2, 0xd4, + 0x5b, 0xc7, 0x8b, 0xc6, 0xfb, 0xc7, 0x8b, 0xc6, 0x07, 0xc7, 0x8b, 0xc6, 0x87, 0xc7, 0x8b, 0xc6, + 0x47, 0xc7, 0x8b, 0xc6, 0x3b, 0x7f, 0x5b, 0x9c, 0x7a, 0x50, 0x38, 0xbc, 0xf6, 0xdf, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xe2, 0xeb, 0x45, 0x81, 0x56, 0x26, 0x00, 0x00, } func (m *APIGroup) Marshal() (dAtA []byte, err error) { @@ -1922,58 +1950,6 @@ func (m *ExportOptions) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *Fields) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Fields) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Fields) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Map) > 0 { - keysForMap := make([]string, 0, len(m.Map)) - for k := range m.Map { - keysForMap = append(keysForMap, string(k)) - } - github_com_gogo_protobuf_sortkeys.Strings(keysForMap) - for iNdEx := len(keysForMap) - 1; iNdEx >= 0; iNdEx-- { - v := m.Map[string(keysForMap[iNdEx])] - baseI := i - { - size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenerated(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - i -= len(keysForMap[iNdEx]) - copy(dAtA[i:], keysForMap[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForMap[iNdEx]))) - i-- - dAtA[i] = 0xa - i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - func (m *GetOptions) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2957,6 +2933,65 @@ func (m *Preconditions) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *ProtoFields) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ProtoFields) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ProtoFields) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Raw != nil { + i -= len(m.Raw) + copy(dAtA[i:], m.Raw) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Raw))) + i-- + dAtA[i] = 0x12 + } + if len(m.Map) > 0 { + keysForMap := make([]string, 0, len(m.Map)) + for k := range m.Map { + keysForMap = append(keysForMap, string(k)) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForMap) + for iNdEx := len(keysForMap) - 1; iNdEx >= 0; iNdEx-- { + v := m.Map[string(keysForMap[iNdEx])] + baseI := i + { + size, err := (&v).MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + i -= len(keysForMap[iNdEx]) + copy(dAtA[i:], keysForMap[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(keysForMap[iNdEx]))) + i-- + dAtA[i] = 0xa + i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *RootPaths) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3574,24 +3609,6 @@ func (m *ExportOptions) Size() (n int) { return n } -func (m *Fields) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Map) > 0 { - for k, v := range m.Map { - _ = k - _ = v - l = v.Size() - mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) - n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) - } - } - return n -} - func (m *GetOptions) Size() (n int) { if m == nil { return 0 @@ -3972,6 +3989,28 @@ func (m *Preconditions) Size() (n int) { return n } +func (m *ProtoFields) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Map) > 0 { + for k, v := range m.Map { + _ = k + _ = v + l = v.Size() + mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + l + sovGenerated(uint64(l)) + n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) + } + } + if m.Raw != nil { + l = len(m.Raw) + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + func (m *RootPaths) Size() (n int) { if m == nil { return 0 @@ -4266,26 +4305,6 @@ func (this *ExportOptions) String() string { }, "") return s } -func (this *Fields) String() string { - if this == nil { - return "nil" - } - keysForMap := make([]string, 0, len(this.Map)) - for k := range this.Map { - keysForMap = append(keysForMap, k) - } - github_com_gogo_protobuf_sortkeys.Strings(keysForMap) - mapStringForMap := "map[string]Fields{" - for _, k := range keysForMap { - mapStringForMap += fmt.Sprintf("%v: %v,", k, this.Map[k]) - } - mapStringForMap += "}" - s := strings.Join([]string{`&Fields{`, - `Map:` + mapStringForMap + `,`, - `}`, - }, "") - return s -} func (this *GetOptions) String() string { if this == nil { return "nil" @@ -4400,7 +4419,7 @@ func (this *ManagedFieldsEntry) String() string { `Operation:` + fmt.Sprintf("%v", this.Operation) + `,`, `APIVersion:` + fmt.Sprintf("%v", this.APIVersion) + `,`, `Time:` + strings.Replace(fmt.Sprintf("%v", this.Time), "Time", "Time", 1) + `,`, - `Fields:` + strings.Replace(this.Fields.String(), "Fields", "Fields", 1) + `,`, + `Fields:` + strings.Replace(fmt.Sprintf("%v", this.Fields), "Fields", "Fields", 1) + `,`, `}`, }, "") return s @@ -4533,6 +4552,27 @@ func (this *Preconditions) String() string { }, "") return s } +func (this *ProtoFields) String() string { + if this == nil { + return "nil" + } + keysForMap := make([]string, 0, len(this.Map)) + for k := range this.Map { + keysForMap = append(keysForMap, k) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForMap) + mapStringForMap := "map[string]Fields{" + for _, k := range keysForMap { + mapStringForMap += fmt.Sprintf("%v: %v,", k, this.Map[k]) + } + mapStringForMap += "}" + s := strings.Join([]string{`&ProtoFields{`, + `Map:` + mapStringForMap + `,`, + `Raw:` + valueToStringGenerated(this.Raw) + `,`, + `}`, + }, "") + return s +} func (this *RootPaths) String() string { if this == nil { return "nil" @@ -6016,188 +6056,6 @@ func (m *ExportOptions) Unmarshal(dAtA []byte) error { } return nil } -func (m *Fields) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Fields: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Fields: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Map", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenerated - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Map == nil { - m.Map = make(map[string]Fields) - } - var mapkey string - mapvalue := &Fields{} - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthGenerated - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthGenerated - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if mapmsglen < 0 { - return ErrInvalidLengthGenerated - } - postmsgIndex := iNdEx + mapmsglen - if postmsgIndex < 0 { - return ErrInvalidLengthGenerated - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue = &Fields{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - } else { - iNdEx = entryPreIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Map[mapkey] = *mapvalue - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenerated(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthGenerated - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *GetOptions) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -9660,6 +9518,222 @@ func (m *Preconditions) Unmarshal(dAtA []byte) error { } return nil } +func (m *ProtoFields) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ProtoFields: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ProtoFields: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Map", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Map == nil { + m.Map = make(map[string]Fields) + } + var mapkey string + mapvalue := &Fields{} + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var mapmsglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + mapmsglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if mapmsglen < 0 { + return ErrInvalidLengthGenerated + } + postmsgIndex := iNdEx + mapmsglen + if postmsgIndex < 0 { + return ErrInvalidLengthGenerated + } + if postmsgIndex > l { + return io.ErrUnexpectedEOF + } + mapvalue = &Fields{} + if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { + return err + } + iNdEx = postmsgIndex + } else { + iNdEx = entryPreIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.Map[mapkey] = *mapvalue + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Raw", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Raw = append(m.Raw[:0], dAtA[iNdEx:postIndex]...) + if m.Raw == nil { + m.Raw = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RootPaths) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto index 0064f59fe61..a2388fb0919 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto @@ -213,20 +213,25 @@ message ExportOptions { } // Fields stores a set of fields in a data structure like a Trie. -// To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff +// +// Each key is either a '.' representing the field itself, and will always map to an empty set, +// or a string representing a sub-field or item. The string will follow one of these four formats: +// 'f:', where is the name of a field in a struct, or key in a map +// 'v:', where is the exact json formatted value of a list item +// 'i:', where is position of a item in a list +// 'k:', where is a map of a list item's key fields to their unique values +// If a key maps to an empty Fields value, the field that key represents is part of the set. +// +// The exact format is defined in sigs.k8s.io/structured-merge-diff +// +protobuf.options.marshal=false +// +protobuf.as=ProtoFields +// +protobuf.options.(gogoproto.goproto_stringer)=false message Fields { - // Map stores a set of fields in a data structure like a Trie. - // - // Each key is either a '.' representing the field itself, and will always map to an empty set, - // or a string representing a sub-field or item. The string will follow one of these four formats: - // 'f:', where is the name of a field in a struct, or key in a map - // 'v:', where is the exact json formatted value of a list item - // 'i:', where is position of a item in a list - // 'k:', where is a map of a list item's key fields to their unique values - // If a key maps to an empty Fields value, the field that key represents is part of the set. - // - // The exact format is defined in k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/internal + // Map is the representation used in the alpha version of this API map map = 1; + + // Raw is the underlying serialization of this object. + optional bytes raw = 2; } // GetOptions is the standard query options to the standard REST get call. @@ -777,6 +782,17 @@ message Preconditions { optional string resourceVersion = 2; } +// ProtoFields is a struct that is equivalent to Fields, but intended for +// protobuf marshalling/unmarshalling. It is generated into a serialization +// that matches Fields. Do not use in Go structs. +message ProtoFields { + // Map is the representation used in the alpha version of this API + map map = 1; + + // Raw is the underlying serialization of this object. + optional bytes raw = 2; +} + // RootPaths lists the paths available at root. // For example: "/healthz", "/apis". message RootPaths { diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go index ff95221c99b..e5496a95aee 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go @@ -120,7 +120,7 @@ func (ExportOptions) SwaggerDoc() map[string]string { } var map_Fields = map[string]string{ - "": "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff", + "": "Fields stores a set of fields in a data structure like a Trie.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", } func (Fields) SwaggerDoc() map[string]string { diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go index e1246b1a079..eddbbe33894 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go @@ -315,12 +315,10 @@ func (in *ExportOptions) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Fields) DeepCopyInto(out *Fields) { *out = *in - if in.Map != nil { - in, out := &in.Map, &out.Map - *out = make(map[string]Fields, len(*in)) - for key, val := range *in { - (*out)[key] = *val.DeepCopy() - } + if in.Raw != nil { + in, out := &in.Raw, &out.Raw + *out = make([]byte, len(*in)) + copy(*out, *in) } return } @@ -866,6 +864,34 @@ func (in *Preconditions) DeepCopy() *Preconditions { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ProtoFields) DeepCopyInto(out *ProtoFields) { + *out = *in + if in.Map != nil { + in, out := &in.Map, &out.Map + *out = make(map[string]Fields, len(*in)) + for key, val := range *in { + (*out)[key] = *val.DeepCopy() + } + } + if in.Raw != nil { + in, out := &in.Raw, &out.Raw + *out = make([]byte, len(*in)) + copy(*out, *in) + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProtoFields. +func (in *ProtoFields) DeepCopy() *ProtoFields { + if in == nil { + return nil + } + out := new(ProtoFields) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RootPaths) DeepCopyInto(out *RootPaths) { *out = *in diff --git a/staging/src/k8s.io/apiserver/go.mod b/staging/src/k8s.io/apiserver/go.mod index bc194c61433..ef6741b8c3e 100644 --- a/staging/src/k8s.io/apiserver/go.mod +++ b/staging/src/k8s.io/apiserver/go.mod @@ -59,7 +59,7 @@ require ( k8s.io/klog v0.3.1 k8s.io/kube-openapi v0.0.0-20190709113604-33be087ad058 k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a - sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 + sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 sigs.k8s.io/yaml v1.1.0 ) diff --git a/staging/src/k8s.io/apiserver/go.sum b/staging/src/k8s.io/apiserver/go.sum index 80c15e5fb7d..568b4959297 100644 --- a/staging/src/k8s.io/apiserver/go.sum +++ b/staging/src/k8s.io/apiserver/go.sum @@ -231,7 +231,7 @@ k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a h1:2jUDc9gJja832Ftp+QbDV0tVhQHMI k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 h1:yCY9zAYErawYwXdOYmwEBzcGCr/6eIUujYZE2DIQve8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 h1:qukMPS/1fDG5pToYLYSEx5IpwHVJMtTyOMaIIsR2Fas= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/staging/src/k8s.io/code-generator/_examples/apiserver/openapi/zz_generated.openapi.go b/staging/src/k8s.io/code-generator/_examples/apiserver/openapi/zz_generated.openapi.go index d4786bbb0b5..aa35e7cab9d 100644 --- a/staging/src/k8s.io/code-generator/_examples/apiserver/openapi/zz_generated.openapi.go +++ b/staging/src/k8s.io/code-generator/_examples/apiserver/openapi/zz_generated.openapi.go @@ -62,6 +62,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ProtoFields": schema_pkg_apis_meta_v1_ProtoFields(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), @@ -590,7 +591,7 @@ func schema_pkg_apis_meta_v1_Fields(ref common.ReferenceCallback) common.OpenAPI return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff", + Description: "Fields stores a set of fields in a data structure like a Trie.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", Type: []string{"object"}, }, }, @@ -1557,6 +1558,17 @@ func schema_pkg_apis_meta_v1_Preconditions(ref common.ReferenceCallback) common. } } +func schema_pkg_apis_meta_v1_ProtoFields(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ProtoFields is a struct that is equivalent to Fields, but intended for protobuf marshalling/unmarshalling. It is generated into a serialization that matches Fields. Do not use in Go structs.", + Type: []string{"object"}, + }, + }, + } +} + func schema_pkg_apis_meta_v1_RootPaths(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ diff --git a/staging/src/k8s.io/kube-aggregator/go.sum b/staging/src/k8s.io/kube-aggregator/go.sum index 721d3954b9c..8f01be1b190 100644 --- a/staging/src/k8s.io/kube-aggregator/go.sum +++ b/staging/src/k8s.io/kube-aggregator/go.sum @@ -268,7 +268,7 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 h1:yCY9zAYErawYwXdOYmwEBzcGCr/6eIUujYZE2DIQve8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 h1:qukMPS/1fDG5pToYLYSEx5IpwHVJMtTyOMaIIsR2Fas= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/staging/src/k8s.io/legacy-cloud-providers/go.sum b/staging/src/k8s.io/legacy-cloud-providers/go.sum index edd81c398c4..92c72b3ac75 100644 --- a/staging/src/k8s.io/legacy-cloud-providers/go.sum +++ b/staging/src/k8s.io/legacy-cloud-providers/go.sum @@ -211,6 +211,6 @@ k8s.io/kube-openapi v0.0.0-20190709113604-33be087ad058/go.mod h1:nfDlWeOsu3pUf4y k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a h1:2jUDc9gJja832Ftp+QbDV0tVhQHMISFn01els+2ZAcw= k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/staging/src/k8s.io/sample-apiserver/go.sum b/staging/src/k8s.io/sample-apiserver/go.sum index c1f8473d35d..e8e3f0b84ef 100644 --- a/staging/src/k8s.io/sample-apiserver/go.sum +++ b/staging/src/k8s.io/sample-apiserver/go.sum @@ -265,7 +265,7 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3 h1:yCY9zAYErawYwXdOYmwEBzcGCr/6eIUujYZE2DIQve8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190719182312-e94e05bfbbe3/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648 h1:qukMPS/1fDG5pToYLYSEx5IpwHVJMtTyOMaIIsR2Fas= +sigs.k8s.io/structured-merge-diff v0.0.0-20190724202554-0c1d754dd648/go.mod h1:IIgPezJWb76P0hotTxzDbWsMYB8APh18qZnxkomBpxA= sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/staging/src/k8s.io/sample-apiserver/pkg/generated/openapi/zz_generated.openapi.go b/staging/src/k8s.io/sample-apiserver/pkg/generated/openapi/zz_generated.openapi.go index 776592209a1..b1d27358d93 100644 --- a/staging/src/k8s.io/sample-apiserver/pkg/generated/openapi/zz_generated.openapi.go +++ b/staging/src/k8s.io/sample-apiserver/pkg/generated/openapi/zz_generated.openapi.go @@ -62,6 +62,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ProtoFields": schema_pkg_apis_meta_v1_ProtoFields(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), @@ -594,7 +595,7 @@ func schema_pkg_apis_meta_v1_Fields(ref common.ReferenceCallback) common.OpenAPI return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff", + Description: "Fields stores a set of fields in a data structure like a Trie.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", Type: []string{"object"}, }, }, @@ -1561,6 +1562,17 @@ func schema_pkg_apis_meta_v1_Preconditions(ref common.ReferenceCallback) common. } } +func schema_pkg_apis_meta_v1_ProtoFields(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ProtoFields is a struct that is equivalent to Fields, but intended for protobuf marshalling/unmarshalling. It is generated into a serialization that matches Fields. Do not use in Go structs.", + Type: []string{"object"}, + }, + }, + } +} + func schema_pkg_apis_meta_v1_RootPaths(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ From 87f8ba5c81192bf8e383dff42b4f8ddc0be2ff63 Mon Sep 17 00:00:00 2001 From: jennybuckley Date: Wed, 31 Jul 2019 16:06:55 -0700 Subject: [PATCH 5/5] Update compatibility fixture data: This is necessary becase we intentionally treat proto and json of old versions of serialized metav1.Fields differnetly. Specifically, the json/yaml representation is unchanged, but the proto message uses a new field number, and round tripping through the old proto format is expected to change the value in this field. This is okay because the field is part of an alpha feature and is annotated with the note: 'This field is alpha and can be changed or removed without notice.' --- ...8s.io.v1.MutatingWebhookConfiguration.json | 55 +- ....k8s.io.v1.MutatingWebhookConfiguration.pb | Bin 926 -> 718 bytes ...8s.io.v1.MutatingWebhookConfiguration.yaml | 55 +- ....io.v1.ValidatingWebhookConfiguration.json | 53 +- ...8s.io.v1.ValidatingWebhookConfiguration.pb | Bin 921 -> 713 bytes ....io.v1.ValidatingWebhookConfiguration.yaml | 53 +- ....v1beta1.MutatingWebhookConfiguration.json | 55 +- ...io.v1beta1.MutatingWebhookConfiguration.pb | Bin 931 -> 723 bytes ....v1beta1.MutatingWebhookConfiguration.yaml | 55 +- ...1beta1.ValidatingWebhookConfiguration.json | 53 +- ....v1beta1.ValidatingWebhookConfiguration.pb | Bin 926 -> 718 bytes ...1beta1.ValidatingWebhookConfiguration.yaml | 53 +- .../HEAD/apps.v1.ControllerRevision.json | 9 +- .../HEAD/apps.v1.ControllerRevision.pb | Bin 373 -> 323 bytes .../HEAD/apps.v1.ControllerRevision.yaml | 9 +- .../api/testdata/HEAD/apps.v1.DaemonSet.json | 1364 ++++++++-------- .../api/testdata/HEAD/apps.v1.DaemonSet.pb | Bin 6278 -> 6057 bytes .../api/testdata/HEAD/apps.v1.DaemonSet.yaml | 1350 ++++++++-------- .../api/testdata/HEAD/apps.v1.Deployment.json | 1130 +++++++------ .../api/testdata/HEAD/apps.v1.Deployment.pb | Bin 6105 -> 6377 bytes .../api/testdata/HEAD/apps.v1.Deployment.yaml | 1125 +++++++------ .../api/testdata/HEAD/apps.v1.ReplicaSet.json | 893 +++++----- .../api/testdata/HEAD/apps.v1.ReplicaSet.pb | Bin 6027 -> 5972 bytes .../api/testdata/HEAD/apps.v1.ReplicaSet.yaml | 885 +++++----- .../testdata/HEAD/apps.v1.StatefulSet.json | 1215 +++++++------- .../api/testdata/HEAD/apps.v1.StatefulSet.pb | Bin 6811 -> 6967 bytes .../testdata/HEAD/apps.v1.StatefulSet.yaml | 1212 +++++++------- .../HEAD/apps.v1beta1.ControllerRevision.json | 9 +- .../HEAD/apps.v1beta1.ControllerRevision.pb | Bin 378 -> 328 bytes .../HEAD/apps.v1beta1.ControllerRevision.yaml | 9 +- .../HEAD/apps.v1beta1.Deployment.json | 1132 +++++++------ .../testdata/HEAD/apps.v1beta1.Deployment.pb | Bin 6115 -> 6377 bytes .../HEAD/apps.v1beta1.Deployment.yaml | 1127 +++++++------ .../api/testdata/HEAD/apps.v1beta1.Scale.json | 15 +- .../api/testdata/HEAD/apps.v1beta1.Scale.pb | Bin 293 -> 236 bytes .../api/testdata/HEAD/apps.v1beta1.Scale.yaml | 15 +- .../HEAD/apps.v1beta1.StatefulSet.json | 1215 +++++++------- .../testdata/HEAD/apps.v1beta1.StatefulSet.pb | Bin 6756 -> 6951 bytes .../HEAD/apps.v1beta1.StatefulSet.yaml | 1212 +++++++------- .../HEAD/apps.v1beta2.ControllerRevision.json | 9 +- .../HEAD/apps.v1beta2.ControllerRevision.pb | Bin 378 -> 328 bytes .../HEAD/apps.v1beta2.ControllerRevision.yaml | 9 +- .../testdata/HEAD/apps.v1beta2.DaemonSet.json | 1364 ++++++++-------- .../testdata/HEAD/apps.v1beta2.DaemonSet.pb | Bin 6283 -> 6062 bytes .../testdata/HEAD/apps.v1beta2.DaemonSet.yaml | 1350 ++++++++-------- .../HEAD/apps.v1beta2.Deployment.json | 1130 +++++++------ .../testdata/HEAD/apps.v1beta2.Deployment.pb | Bin 6110 -> 6382 bytes .../HEAD/apps.v1beta2.Deployment.yaml | 1125 +++++++------ .../HEAD/apps.v1beta2.ReplicaSet.json | 893 +++++----- .../testdata/HEAD/apps.v1beta2.ReplicaSet.pb | Bin 6032 -> 5977 bytes .../HEAD/apps.v1beta2.ReplicaSet.yaml | 885 +++++----- .../api/testdata/HEAD/apps.v1beta2.Scale.json | 15 +- .../api/testdata/HEAD/apps.v1beta2.Scale.pb | Bin 293 -> 236 bytes .../api/testdata/HEAD/apps.v1beta2.Scale.yaml | 15 +- .../HEAD/apps.v1beta2.StatefulSet.json | 1215 +++++++------- .../testdata/HEAD/apps.v1beta2.StatefulSet.pb | Bin 6816 -> 6972 bytes .../HEAD/apps.v1beta2.StatefulSet.yaml | 1212 +++++++------- ...authentication.k8s.io.v1.TokenRequest.json | 23 +- .../authentication.k8s.io.v1.TokenRequest.pb | Bin 337 -> 302 bytes ...authentication.k8s.io.v1.TokenRequest.yaml | 23 +- .../authentication.k8s.io.v1.TokenReview.json | 25 +- .../authentication.k8s.io.v1.TokenReview.pb | Bin 319 -> 268 bytes .../authentication.k8s.io.v1.TokenReview.yaml | 25 +- ...entication.k8s.io.v1beta1.TokenReview.json | 25 +- ...thentication.k8s.io.v1beta1.TokenReview.pb | Bin 324 -> 273 bytes ...entication.k8s.io.v1beta1.TokenReview.yaml | 25 +- ...on.k8s.io.v1.LocalSubjectAccessReview.json | 40 +- ...tion.k8s.io.v1.LocalSubjectAccessReview.pb | Bin 363 -> 312 bytes ...on.k8s.io.v1.LocalSubjectAccessReview.yaml | 40 +- ...ion.k8s.io.v1.SelfSubjectAccessReview.json | 32 +- ...ation.k8s.io.v1.SelfSubjectAccessReview.pb | Bin 338 -> 287 bytes ...ion.k8s.io.v1.SelfSubjectAccessReview.yaml | 32 +- ...tion.k8s.io.v1.SelfSubjectRulesReview.json | 25 +- ...zation.k8s.io.v1.SelfSubjectRulesReview.pb | Bin 323 -> 272 bytes ...tion.k8s.io.v1.SelfSubjectRulesReview.yaml | 25 +- ...ization.k8s.io.v1.SubjectAccessReview.json | 40 +- ...orization.k8s.io.v1.SubjectAccessReview.pb | Bin 358 -> 307 bytes ...ization.k8s.io.v1.SubjectAccessReview.yaml | 40 +- ...s.io.v1beta1.LocalSubjectAccessReview.json | 40 +- ...k8s.io.v1beta1.LocalSubjectAccessReview.pb | Bin 368 -> 317 bytes ...s.io.v1beta1.LocalSubjectAccessReview.yaml | 40 +- ...8s.io.v1beta1.SelfSubjectAccessReview.json | 32 +- ....k8s.io.v1beta1.SelfSubjectAccessReview.pb | Bin 343 -> 292 bytes ...8s.io.v1beta1.SelfSubjectAccessReview.yaml | 32 +- ...k8s.io.v1beta1.SelfSubjectRulesReview.json | 25 +- ...n.k8s.io.v1beta1.SelfSubjectRulesReview.pb | Bin 328 -> 277 bytes ...k8s.io.v1beta1.SelfSubjectRulesReview.yaml | 25 +- ...on.k8s.io.v1beta1.SubjectAccessReview.json | 40 +- ...tion.k8s.io.v1beta1.SubjectAccessReview.pb | Bin 363 -> 312 bytes ...on.k8s.io.v1beta1.SubjectAccessReview.yaml | 40 +- ...utoscaling.v1.HorizontalPodAutoscaler.json | 27 +- .../autoscaling.v1.HorizontalPodAutoscaler.pb | Bin 352 -> 307 bytes ...utoscaling.v1.HorizontalPodAutoscaler.yaml | 27 +- .../testdata/HEAD/autoscaling.v1.Scale.json | 13 +- .../api/testdata/HEAD/autoscaling.v1.Scale.pb | Bin 285 -> 228 bytes .../testdata/HEAD/autoscaling.v1.Scale.yaml | 13 +- ...aling.v2beta1.HorizontalPodAutoscaler.json | 129 +- ...scaling.v2beta1.HorizontalPodAutoscaler.pb | Bin 1603 -> 1704 bytes ...aling.v2beta1.HorizontalPodAutoscaler.yaml | 130 +- ...aling.v2beta2.HorizontalPodAutoscaler.json | 167 +- ...scaling.v2beta2.HorizontalPodAutoscaler.pb | Bin 2086 -> 1953 bytes ...aling.v2beta2.HorizontalPodAutoscaler.yaml | 175 +- .../api/testdata/HEAD/batch.v1.Job.json | 1189 +++++++------- .../k8s.io/api/testdata/HEAD/batch.v1.Job.pb | Bin 6191 -> 5941 bytes .../api/testdata/HEAD/batch.v1.Job.yaml | 1149 +++++++------ .../testdata/HEAD/batch.v1beta1.CronJob.json | 1376 ++++++++-------- .../testdata/HEAD/batch.v1beta1.CronJob.pb | Bin 6372 -> 6302 bytes .../testdata/HEAD/batch.v1beta1.CronJob.yaml | 1153 +++++++------ .../HEAD/batch.v1beta1.JobTemplate.json | 1151 ++++++------- .../HEAD/batch.v1beta1.JobTemplate.pb | Bin 6280 -> 6105 bytes .../HEAD/batch.v1beta1.JobTemplate.yaml | 1272 +++++++-------- .../testdata/HEAD/batch.v2alpha1.CronJob.json | 1376 ++++++++-------- .../testdata/HEAD/batch.v2alpha1.CronJob.pb | Bin 6373 -> 6303 bytes .../testdata/HEAD/batch.v2alpha1.CronJob.yaml | 1153 +++++++------ .../HEAD/batch.v2alpha1.JobTemplate.json | 1151 ++++++------- .../HEAD/batch.v2alpha1.JobTemplate.pb | Bin 6281 -> 6106 bytes .../HEAD/batch.v2alpha1.JobTemplate.yaml | 1272 +++++++-------- ....io.v1beta1.CertificateSigningRequest.json | 31 +- ...8s.io.v1beta1.CertificateSigningRequest.pb | Bin 382 -> 322 bytes ....io.v1beta1.CertificateSigningRequest.yaml | 31 +- .../HEAD/coordination.k8s.io.v1.Lease.json | 13 +- .../HEAD/coordination.k8s.io.v1.Lease.pb | Bin 291 -> 230 bytes .../HEAD/coordination.k8s.io.v1.Lease.yaml | 13 +- .../coordination.k8s.io.v1beta1.Lease.json | 13 +- .../HEAD/coordination.k8s.io.v1beta1.Lease.pb | Bin 296 -> 235 bytes .../coordination.k8s.io.v1beta1.Lease.yaml | 13 +- .../api/testdata/HEAD/core.v1.Binding.json | 21 +- .../api/testdata/HEAD/core.v1.Binding.pb | Bin 284 -> 243 bytes .../api/testdata/HEAD/core.v1.Binding.yaml | 21 +- .../HEAD/core.v1.ComponentStatus.json | 15 +- .../testdata/HEAD/core.v1.ComponentStatus.pb | Bin 322 -> 238 bytes .../HEAD/core.v1.ComponentStatus.yaml | 15 +- .../api/testdata/HEAD/core.v1.ConfigMap.json | 11 +- .../api/testdata/HEAD/core.v1.ConfigMap.pb | Bin 266 -> 215 bytes .../api/testdata/HEAD/core.v1.ConfigMap.yaml | 11 +- .../api/testdata/HEAD/core.v1.Endpoints.json | 53 +- .../api/testdata/HEAD/core.v1.Endpoints.pb | Bin 394 -> 370 bytes .../api/testdata/HEAD/core.v1.Endpoints.yaml | 53 +- .../HEAD/core.v1.EphemeralContainers.json | 219 ++- .../HEAD/core.v1.EphemeralContainers.pb | Bin 1164 -> 1039 bytes .../HEAD/core.v1.EphemeralContainers.yaml | 203 ++- .../api/testdata/HEAD/core.v1.Event.json | 64 +- .../k8s.io/api/testdata/HEAD/core.v1.Event.pb | Bin 423 -> 403 bytes .../api/testdata/HEAD/core.v1.Event.yaml | 64 +- .../api/testdata/HEAD/core.v1.LimitRange.json | 19 +- .../api/testdata/HEAD/core.v1.LimitRange.pb | Bin 419 -> 372 bytes .../api/testdata/HEAD/core.v1.LimitRange.yaml | 19 +- .../api/testdata/HEAD/core.v1.Namespace.json | 11 +- .../api/testdata/HEAD/core.v1.Namespace.pb | Bin 310 -> 226 bytes .../api/testdata/HEAD/core.v1.Namespace.yaml | 11 +- .../api/testdata/HEAD/core.v1.Node.json | 117 +- .../k8s.io/api/testdata/HEAD/core.v1.Node.pb | Bin 759 -> 742 bytes .../api/testdata/HEAD/core.v1.Node.yaml | 117 +- .../HEAD/core.v1.PersistentVolume.json | 278 ++-- .../testdata/HEAD/core.v1.PersistentVolume.pb | Bin 1258 -> 1172 bytes .../HEAD/core.v1.PersistentVolume.yaml | 268 ++- .../HEAD/core.v1.PersistentVolumeClaim.json | 52 +- .../HEAD/core.v1.PersistentVolumeClaim.pb | Bin 737 -> 591 bytes .../HEAD/core.v1.PersistentVolumeClaim.yaml | 51 +- .../k8s.io/api/testdata/HEAD/core.v1.Pod.json | 1232 +++++++------- .../k8s.io/api/testdata/HEAD/core.v1.Pod.pb | Bin 6379 -> 6159 bytes .../k8s.io/api/testdata/HEAD/core.v1.Pod.yaml | 1437 ++++++++--------- .../HEAD/core.v1.PodStatusResult.json | 184 +-- .../testdata/HEAD/core.v1.PodStatusResult.pb | Bin 925 -> 895 bytes .../HEAD/core.v1.PodStatusResult.yaml | 184 ++- .../testdata/HEAD/core.v1.PodTemplate.json | 1327 +++++++-------- .../api/testdata/HEAD/core.v1.PodTemplate.pb | Bin 5571 -> 5739 bytes .../testdata/HEAD/core.v1.PodTemplate.yaml | 1206 +++++++------- .../HEAD/core.v1.RangeAllocation.json | 11 +- .../testdata/HEAD/core.v1.RangeAllocation.pb | Bin 260 -> 209 bytes .../HEAD/core.v1.RangeAllocation.yaml | 11 +- .../HEAD/core.v1.ReplicationController.json | 1172 +++++++------- .../HEAD/core.v1.ReplicationController.pb | Bin 5713 -> 5913 bytes .../HEAD/core.v1.ReplicationController.yaml | 1166 +++++++------ .../testdata/HEAD/core.v1.ResourceQuota.json | 21 +- .../testdata/HEAD/core.v1.ResourceQuota.pb | Bin 402 -> 391 bytes .../testdata/HEAD/core.v1.ResourceQuota.yaml | 21 +- .../api/testdata/HEAD/core.v1.Secret.json | 13 +- .../api/testdata/HEAD/core.v1.Secret.pb | Bin 281 -> 247 bytes .../api/testdata/HEAD/core.v1.Secret.yaml | 13 +- .../api/testdata/HEAD/core.v1.Service.json | 43 +- .../api/testdata/HEAD/core.v1.Service.pb | Bin 418 -> 364 bytes .../api/testdata/HEAD/core.v1.Service.yaml | 43 +- .../testdata/HEAD/core.v1.ServiceAccount.json | 25 +- .../testdata/HEAD/core.v1.ServiceAccount.pb | Bin 315 -> 247 bytes .../testdata/HEAD/core.v1.ServiceAccount.yaml | 25 +- .../HEAD/events.k8s.io.v1beta1.Event.json | 57 +- .../HEAD/events.k8s.io.v1beta1.Event.pb | Bin 480 -> 411 bytes .../HEAD/events.k8s.io.v1beta1.Event.yaml | 55 +- .../HEAD/extensions.v1beta1.DaemonSet.json | 1366 ++++++++-------- .../HEAD/extensions.v1beta1.DaemonSet.pb | Bin 6294 -> 6113 bytes .../HEAD/extensions.v1beta1.DaemonSet.yaml | 1352 ++++++++-------- .../HEAD/extensions.v1beta1.Deployment.json | 1132 +++++++------ .../HEAD/extensions.v1beta1.Deployment.pb | Bin 6121 -> 6383 bytes .../HEAD/extensions.v1beta1.Deployment.yaml | 1127 +++++++------ .../HEAD/extensions.v1beta1.Ingress.json | 27 +- .../HEAD/extensions.v1beta1.Ingress.pb | Bin 342 -> 284 bytes .../HEAD/extensions.v1beta1.Ingress.yaml | 27 +- .../extensions.v1beta1.NetworkPolicy.json | 57 +- .../HEAD/extensions.v1beta1.NetworkPolicy.pb | Bin 1296 -> 1377 bytes .../extensions.v1beta1.NetworkPolicy.yaml | 56 +- .../extensions.v1beta1.PodSecurityPolicy.json | 71 +- .../extensions.v1beta1.PodSecurityPolicy.pb | Bin 655 -> 578 bytes .../extensions.v1beta1.PodSecurityPolicy.yaml | 71 +- .../HEAD/extensions.v1beta1.ReplicaSet.json | 893 +++++----- .../HEAD/extensions.v1beta1.ReplicaSet.pb | Bin 6038 -> 5983 bytes .../HEAD/extensions.v1beta1.ReplicaSet.yaml | 885 +++++----- .../HEAD/extensions.v1beta1.Scale.json | 15 +- .../testdata/HEAD/extensions.v1beta1.Scale.pb | Bin 299 -> 242 bytes .../HEAD/extensions.v1beta1.Scale.yaml | 15 +- ...agepolicy.k8s.io.v1alpha1.ImageReview.json | 19 +- ...imagepolicy.k8s.io.v1alpha1.ImageReview.pb | Bin 314 -> 263 bytes ...agepolicy.k8s.io.v1alpha1.ImageReview.yaml | 19 +- .../networking.k8s.io.v1.NetworkPolicy.json | 57 +- .../networking.k8s.io.v1.NetworkPolicy.pb | Bin 1298 -> 1379 bytes .../networking.k8s.io.v1.NetworkPolicy.yaml | 56 +- .../networking.k8s.io.v1beta1.Ingress.json | 27 +- .../HEAD/networking.k8s.io.v1beta1.Ingress.pb | Bin 349 -> 291 bytes .../networking.k8s.io.v1beta1.Ingress.yaml | 27 +- .../node.k8s.io.v1alpha1.RuntimeClass.json | 11 +- .../HEAD/node.k8s.io.v1alpha1.RuntimeClass.pb | Bin 293 -> 249 bytes .../node.k8s.io.v1alpha1.RuntimeClass.yaml | 11 +- .../node.k8s.io.v1beta1.RuntimeClass.json | 11 +- .../HEAD/node.k8s.io.v1beta1.RuntimeClass.pb | Bin 290 -> 246 bytes .../node.k8s.io.v1beta1.RuntimeClass.yaml | 11 +- .../HEAD/policy.v1beta1.Eviction.json | 19 +- .../testdata/HEAD/policy.v1beta1.Eviction.pb | Bin 350 -> 275 bytes .../HEAD/policy.v1beta1.Eviction.yaml | 19 +- .../policy.v1beta1.PodDisruptionBudget.json | 25 +- .../policy.v1beta1.PodDisruptionBudget.pb | Bin 497 -> 583 bytes .../policy.v1beta1.PodDisruptionBudget.yaml | 25 +- .../policy.v1beta1.PodSecurityPolicy.json | 71 +- .../HEAD/policy.v1beta1.PodSecurityPolicy.pb | Bin 651 -> 574 bytes .../policy.v1beta1.PodSecurityPolicy.yaml | 71 +- ...c.authorization.k8s.io.v1.ClusterRole.json | 25 +- ...bac.authorization.k8s.io.v1.ClusterRole.pb | Bin 499 -> 340 bytes ...c.authorization.k8s.io.v1.ClusterRole.yaml | 25 +- ...rization.k8s.io.v1.ClusterRoleBinding.json | 21 +- ...horization.k8s.io.v1.ClusterRoleBinding.pb | Bin 314 -> 263 bytes ...rization.k8s.io.v1.ClusterRoleBinding.yaml | 21 +- .../rbac.authorization.k8s.io.v1.Role.json | 17 +- .../HEAD/rbac.authorization.k8s.io.v1.Role.pb | Bin 290 -> 239 bytes .../rbac.authorization.k8s.io.v1.Role.yaml | 17 +- ...c.authorization.k8s.io.v1.RoleBinding.json | 21 +- ...bac.authorization.k8s.io.v1.RoleBinding.pb | Bin 307 -> 256 bytes ...c.authorization.k8s.io.v1.RoleBinding.yaml | 21 +- ...orization.k8s.io.v1alpha1.ClusterRole.json | 25 +- ...thorization.k8s.io.v1alpha1.ClusterRole.pb | Bin 505 -> 346 bytes ...orization.k8s.io.v1alpha1.ClusterRole.yaml | 25 +- ...on.k8s.io.v1alpha1.ClusterRoleBinding.json | 21 +- ...tion.k8s.io.v1alpha1.ClusterRoleBinding.pb | Bin 320 -> 269 bytes ...on.k8s.io.v1alpha1.ClusterRoleBinding.yaml | 21 +- ...ac.authorization.k8s.io.v1alpha1.Role.json | 17 +- ...rbac.authorization.k8s.io.v1alpha1.Role.pb | Bin 296 -> 245 bytes ...ac.authorization.k8s.io.v1alpha1.Role.yaml | 17 +- ...orization.k8s.io.v1alpha1.RoleBinding.json | 21 +- ...thorization.k8s.io.v1alpha1.RoleBinding.pb | Bin 313 -> 262 bytes ...orization.k8s.io.v1alpha1.RoleBinding.yaml | 21 +- ...horization.k8s.io.v1beta1.ClusterRole.json | 25 +- ...uthorization.k8s.io.v1beta1.ClusterRole.pb | Bin 504 -> 345 bytes ...horization.k8s.io.v1beta1.ClusterRole.yaml | 25 +- ...ion.k8s.io.v1beta1.ClusterRoleBinding.json | 21 +- ...ation.k8s.io.v1beta1.ClusterRoleBinding.pb | Bin 319 -> 268 bytes ...ion.k8s.io.v1beta1.ClusterRoleBinding.yaml | 21 +- ...bac.authorization.k8s.io.v1beta1.Role.json | 17 +- .../rbac.authorization.k8s.io.v1beta1.Role.pb | Bin 295 -> 244 bytes ...bac.authorization.k8s.io.v1beta1.Role.yaml | 17 +- ...horization.k8s.io.v1beta1.RoleBinding.json | 21 +- ...uthorization.k8s.io.v1beta1.RoleBinding.pb | Bin 312 -> 261 bytes ...horization.k8s.io.v1beta1.RoleBinding.yaml | 21 +- .../scheduling.k8s.io.v1.PriorityClass.json | 14 +- .../scheduling.k8s.io.v1.PriorityClass.pb | Bin 305 -> 242 bytes .../scheduling.k8s.io.v1.PriorityClass.yaml | 14 +- ...eduling.k8s.io.v1alpha1.PriorityClass.json | 14 +- ...cheduling.k8s.io.v1alpha1.PriorityClass.pb | Bin 311 -> 248 bytes ...eduling.k8s.io.v1alpha1.PriorityClass.yaml | 14 +- ...heduling.k8s.io.v1beta1.PriorityClass.json | 14 +- ...scheduling.k8s.io.v1beta1.PriorityClass.pb | Bin 310 -> 247 bytes ...heduling.k8s.io.v1beta1.PriorityClass.yaml | 14 +- .../settings.k8s.io.v1alpha1.PodPreset.json | 321 ++-- .../settings.k8s.io.v1alpha1.PodPreset.pb | Bin 1460 -> 1530 bytes .../settings.k8s.io.v1alpha1.PodPreset.yaml | 319 ++-- .../HEAD/storage.k8s.io.v1.StorageClass.json | 21 +- .../HEAD/storage.k8s.io.v1.StorageClass.pb | Bin 337 -> 263 bytes .../HEAD/storage.k8s.io.v1.StorageClass.yaml | 21 +- .../storage.k8s.io.v1.VolumeAttachment.json | 292 ++-- .../storage.k8s.io.v1.VolumeAttachment.pb | Bin 1246 -> 1150 bytes .../storage.k8s.io.v1.VolumeAttachment.yaml | 296 ++-- ...rage.k8s.io.v1alpha1.VolumeAttachment.json | 292 ++-- ...torage.k8s.io.v1alpha1.VolumeAttachment.pb | Bin 1252 -> 1156 bytes ...rage.k8s.io.v1alpha1.VolumeAttachment.yaml | 296 ++-- .../storage.k8s.io.v1beta1.CSIDriver.json | 9 +- .../HEAD/storage.k8s.io.v1beta1.CSIDriver.pb | Bin 273 -> 222 bytes .../storage.k8s.io.v1beta1.CSIDriver.yaml | 9 +- .../HEAD/storage.k8s.io.v1beta1.CSINode.json | 15 +- .../HEAD/storage.k8s.io.v1beta1.CSINode.pb | Bin 294 -> 238 bytes .../HEAD/storage.k8s.io.v1beta1.CSINode.yaml | 15 +- .../storage.k8s.io.v1beta1.StorageClass.json | 21 +- .../storage.k8s.io.v1beta1.StorageClass.pb | Bin 342 -> 268 bytes .../storage.k8s.io.v1beta1.StorageClass.yaml | 21 +- ...orage.k8s.io.v1beta1.VolumeAttachment.json | 292 ++-- ...storage.k8s.io.v1beta1.VolumeAttachment.pb | Bin 1251 -> 1155 bytes ...orage.k8s.io.v1beta1.VolumeAttachment.yaml | 296 ++-- ...ingWebhookConfiguration.after_roundtrip.pb | Bin 0 -> 660 bytes ...ingWebhookConfiguration.after_roundtrip.pb | Bin 0 -> 662 bytes ...s.v1.ControllerRevision.after_roundtrip.pb | Bin 0 -> 377 bytes .../apps.v1.DaemonSet.after_roundtrip.pb | Bin 0 -> 4672 bytes .../apps.v1.Deployment.after_roundtrip.pb | Bin 0 -> 5171 bytes .../apps.v1.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4765 bytes .../apps.v1.StatefulSet.after_roundtrip.pb | Bin 0 -> 5755 bytes ...eta1.ControllerRevision.after_roundtrip.pb | Bin 0 -> 382 bytes ...apps.v1beta1.Deployment.after_roundtrip.pb | Bin 0 -> 5210 bytes .../apps.v1beta1.Scale.after_roundtrip.pb | Bin 0 -> 297 bytes ...pps.v1beta1.StatefulSet.after_roundtrip.pb | Bin 0 -> 5803 bytes ...eta2.ControllerRevision.after_roundtrip.pb | Bin 0 -> 382 bytes .../apps.v1beta2.DaemonSet.after_roundtrip.pb | Bin 0 -> 4677 bytes ...apps.v1beta2.Deployment.after_roundtrip.pb | Bin 0 -> 5176 bytes ...apps.v1beta2.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4770 bytes .../apps.v1beta2.Scale.after_roundtrip.pb | Bin 0 -> 297 bytes ...pps.v1beta2.StatefulSet.after_roundtrip.pb | Bin 0 -> 5760 bytes ....k8s.io.v1.TokenRequest.after_roundtrip.pb | Bin 0 -> 341 bytes ...n.k8s.io.v1.TokenReview.after_roundtrip.pb | Bin 0 -> 323 bytes ....io.v1beta1.TokenReview.after_roundtrip.pb | Bin 0 -> 328 bytes ...ocalSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 367 bytes ...SelfSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 342 bytes ....SelfSubjectRulesReview.after_roundtrip.pb | Bin 0 -> 327 bytes ....v1.SubjectAccessReview.after_roundtrip.pb | Bin 0 -> 362 bytes ...ocalSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 372 bytes ...SelfSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 347 bytes ....SelfSubjectRulesReview.after_roundtrip.pb | Bin 0 -> 332 bytes ...ta1.SubjectAccessReview.after_roundtrip.pb | Bin 0 -> 367 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 356 bytes .../autoscaling.v1.Scale.after_roundtrip.pb | Bin 0 -> 289 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 1607 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 2090 bytes .../v1.14.0/batch.v1.Job.after_roundtrip.pb | Bin 0 -> 4833 bytes .../batch.v1beta1.CronJob.after_roundtrip.pb | Bin 0 -> 5278 bytes ...tch.v1beta1.JobTemplate.after_roundtrip.pb | Bin 0 -> 4760 bytes .../batch.v2alpha1.CronJob.after_roundtrip.pb | Bin 0 -> 5279 bytes ...ch.v2alpha1.JobTemplate.after_roundtrip.pb | Bin 0 -> 4761 bytes ...rtificateSigningRequest.after_roundtrip.pb | Bin 0 -> 386 bytes ...ination.k8s.io.v1.Lease.after_roundtrip.pb | Bin 0 -> 295 bytes ...on.k8s.io.v1beta1.Lease.after_roundtrip.pb | Bin 0 -> 300 bytes .../core.v1.Binding.after_roundtrip.pb | Bin 0 -> 288 bytes ...core.v1.ComponentStatus.after_roundtrip.pb | Bin 0 -> 326 bytes .../core.v1.ConfigMap.after_roundtrip.pb | Bin 0 -> 270 bytes .../core.v1.Endpoints.after_roundtrip.pb | Bin 0 -> 398 bytes .../v1.14.0/core.v1.Event.after_roundtrip.pb | Bin 0 -> 427 bytes .../core.v1.LimitRange.after_roundtrip.pb | Bin 0 -> 423 bytes .../core.v1.Namespace.after_roundtrip.pb | Bin 0 -> 314 bytes .../v1.14.0/core.v1.Node.after_roundtrip.pb | Bin 0 -> 756 bytes ...ore.v1.PersistentVolume.after_roundtrip.pb | Bin 0 -> 1218 bytes ...1.PersistentVolumeClaim.after_roundtrip.pb | Bin 0 -> 741 bytes .../v1.14.0/core.v1.Pod.after_roundtrip.pb | Bin 0 -> 4849 bytes ...core.v1.PodStatusResult.after_roundtrip.pb | Bin 0 -> 738 bytes .../core.v1.PodTemplate.after_roundtrip.pb | Bin 0 -> 4507 bytes ...core.v1.RangeAllocation.after_roundtrip.pb | Bin 0 -> 264 bytes ...1.ReplicationController.after_roundtrip.pb | Bin 0 -> 4652 bytes .../core.v1.ResourceQuota.after_roundtrip.pb | Bin 0 -> 406 bytes .../v1.14.0/core.v1.Secret.after_roundtrip.pb | Bin 0 -> 285 bytes .../core.v1.Service.after_roundtrip.pb | Bin 0 -> 422 bytes .../core.v1.ServiceAccount.after_roundtrip.pb | Bin 0 -> 319 bytes ...ts.k8s.io.v1beta1.Event.after_roundtrip.pb | Bin 0 -> 484 bytes ...sions.v1beta1.DaemonSet.after_roundtrip.pb | Bin 0 -> 4658 bytes ...ions.v1beta1.Deployment.after_roundtrip.pb | Bin 0 -> 5216 bytes ...ensions.v1beta1.Ingress.after_roundtrip.pb | Bin 0 -> 346 bytes ...s.v1beta1.NetworkPolicy.after_roundtrip.pb | Bin 0 -> 1300 bytes ...beta1.PodSecurityPolicy.after_roundtrip.pb | Bin 0 -> 648 bytes ...ions.v1beta1.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4776 bytes ...xtensions.v1beta1.Scale.after_roundtrip.pb | Bin 0 -> 303 bytes ...io.v1alpha1.ImageReview.after_roundtrip.pb | Bin 0 -> 318 bytes ...k8s.io.v1.NetworkPolicy.after_roundtrip.pb | Bin 0 -> 1302 bytes ....k8s.io.v1beta1.Ingress.after_roundtrip.pb | Bin 0 -> 353 bytes ...o.v1alpha1.RuntimeClass.after_roundtrip.pb | Bin 0 -> 278 bytes ...io.v1beta1.RuntimeClass.after_roundtrip.pb | Bin 0 -> 275 bytes ...policy.v1beta1.Eviction.after_roundtrip.pb | Bin 0 -> 354 bytes ...ta1.PodDisruptionBudget.after_roundtrip.pb | Bin 0 -> 501 bytes ...beta1.PodSecurityPolicy.after_roundtrip.pb | Bin 0 -> 644 bytes ...n.k8s.io.v1.ClusterRole.after_roundtrip.pb | Bin 0 -> 503 bytes ...o.v1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 318 bytes ...rization.k8s.io.v1.Role.after_roundtrip.pb | Bin 0 -> 294 bytes ...n.k8s.io.v1.RoleBinding.after_roundtrip.pb | Bin 0 -> 311 bytes ...io.v1alpha1.ClusterRole.after_roundtrip.pb | Bin 0 -> 509 bytes ...pha1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 324 bytes ...on.k8s.io.v1alpha1.Role.after_roundtrip.pb | Bin 0 -> 300 bytes ...io.v1alpha1.RoleBinding.after_roundtrip.pb | Bin 0 -> 317 bytes ....io.v1beta1.ClusterRole.after_roundtrip.pb | Bin 0 -> 508 bytes ...eta1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 323 bytes ...ion.k8s.io.v1beta1.Role.after_roundtrip.pb | Bin 0 -> 299 bytes ....io.v1beta1.RoleBinding.after_roundtrip.pb | Bin 0 -> 316 bytes ...k8s.io.v1.PriorityClass.after_roundtrip.pb | Bin 0 -> 290 bytes ....v1alpha1.PriorityClass.after_roundtrip.pb | Bin 0 -> 296 bytes ...o.v1beta1.PriorityClass.after_roundtrip.pb | Bin 0 -> 295 bytes ...s.io.v1alpha1.PodPreset.after_roundtrip.pb | Bin 0 -> 1464 bytes ....k8s.io.v1.StorageClass.after_roundtrip.pb | Bin 0 -> 341 bytes ....io.v1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 335 bytes ...alpha1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 341 bytes ...8s.io.v1beta1.CSIDriver.after_roundtrip.pb | Bin 0 -> 277 bytes ....k8s.io.v1beta1.CSINode.after_roundtrip.pb | Bin 0 -> 285 bytes ...io.v1beta1.StorageClass.after_roundtrip.pb | Bin 0 -> 346 bytes ...1beta1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 340 bytes ...ingWebhookConfiguration.after_roundtrip.pb | Bin 0 -> 935 bytes ...ingWebhookConfiguration.after_roundtrip.pb | Bin 0 -> 930 bytes ...s.v1.ControllerRevision.after_roundtrip.pb | Bin 0 -> 377 bytes .../apps.v1.DaemonSet.after_roundtrip.pb | Bin 0 -> 4977 bytes .../apps.v1.Deployment.after_roundtrip.pb | Bin 0 -> 5195 bytes .../apps.v1.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4915 bytes .../apps.v1.StatefulSet.after_roundtrip.pb | Bin 0 -> 5726 bytes ...eta1.ControllerRevision.after_roundtrip.pb | Bin 0 -> 382 bytes ...apps.v1beta1.Deployment.after_roundtrip.pb | Bin 0 -> 5196 bytes .../apps.v1beta1.Scale.after_roundtrip.pb | Bin 0 -> 297 bytes ...pps.v1beta1.StatefulSet.after_roundtrip.pb | Bin 0 -> 5774 bytes ...eta2.ControllerRevision.after_roundtrip.pb | Bin 0 -> 382 bytes .../apps.v1beta2.DaemonSet.after_roundtrip.pb | Bin 0 -> 4982 bytes ...apps.v1beta2.Deployment.after_roundtrip.pb | Bin 0 -> 5200 bytes ...apps.v1beta2.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4920 bytes .../apps.v1beta2.Scale.after_roundtrip.pb | Bin 0 -> 297 bytes ...pps.v1beta2.StatefulSet.after_roundtrip.pb | Bin 0 -> 5731 bytes ....k8s.io.v1.TokenRequest.after_roundtrip.pb | Bin 0 -> 341 bytes ...n.k8s.io.v1.TokenReview.after_roundtrip.pb | Bin 0 -> 323 bytes ....io.v1beta1.TokenReview.after_roundtrip.pb | Bin 0 -> 328 bytes ...ocalSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 367 bytes ...SelfSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 342 bytes ....SelfSubjectRulesReview.after_roundtrip.pb | Bin 0 -> 327 bytes ....v1.SubjectAccessReview.after_roundtrip.pb | Bin 0 -> 362 bytes ...ocalSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 372 bytes ...SelfSubjectAccessReview.after_roundtrip.pb | Bin 0 -> 347 bytes ....SelfSubjectRulesReview.after_roundtrip.pb | Bin 0 -> 332 bytes ...ta1.SubjectAccessReview.after_roundtrip.pb | Bin 0 -> 367 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 356 bytes .../autoscaling.v1.Scale.after_roundtrip.pb | Bin 0 -> 289 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 1607 bytes ...HorizontalPodAutoscaler.after_roundtrip.pb | Bin 0 -> 2090 bytes .../v1.15.0/batch.v1.Job.after_roundtrip.pb | Bin 0 -> 4794 bytes .../batch.v1beta1.CronJob.after_roundtrip.pb | Bin 0 -> 5266 bytes ...tch.v1beta1.JobTemplate.after_roundtrip.pb | Bin 0 -> 5009 bytes .../batch.v2alpha1.CronJob.after_roundtrip.pb | Bin 0 -> 5267 bytes ...ch.v2alpha1.JobTemplate.after_roundtrip.pb | Bin 0 -> 5010 bytes ...rtificateSigningRequest.after_roundtrip.pb | Bin 0 -> 386 bytes ...ination.k8s.io.v1.Lease.after_roundtrip.pb | Bin 0 -> 295 bytes ...on.k8s.io.v1beta1.Lease.after_roundtrip.pb | Bin 0 -> 300 bytes .../core.v1.Binding.after_roundtrip.pb | Bin 0 -> 288 bytes ...core.v1.ComponentStatus.after_roundtrip.pb | Bin 0 -> 326 bytes .../core.v1.ConfigMap.after_roundtrip.pb | Bin 0 -> 270 bytes .../core.v1.Endpoints.after_roundtrip.pb | Bin 0 -> 398 bytes .../v1.15.0/core.v1.Event.after_roundtrip.pb | Bin 0 -> 427 bytes .../core.v1.LimitRange.after_roundtrip.pb | Bin 0 -> 423 bytes .../core.v1.Namespace.after_roundtrip.pb | Bin 0 -> 314 bytes .../v1.15.0/core.v1.Node.after_roundtrip.pb | Bin 0 -> 756 bytes ...ore.v1.PersistentVolume.after_roundtrip.pb | Bin 0 -> 1262 bytes ...1.PersistentVolumeClaim.after_roundtrip.pb | Bin 0 -> 741 bytes .../v1.15.0/core.v1.Pod.after_roundtrip.pb | Bin 0 -> 4992 bytes ...core.v1.PodStatusResult.after_roundtrip.pb | Bin 0 -> 738 bytes .../core.v1.PodTemplate.after_roundtrip.pb | Bin 0 -> 4617 bytes ...core.v1.RangeAllocation.after_roundtrip.pb | Bin 0 -> 264 bytes ...1.ReplicationController.after_roundtrip.pb | Bin 0 -> 4766 bytes .../core.v1.ResourceQuota.after_roundtrip.pb | Bin 0 -> 406 bytes .../v1.15.0/core.v1.Secret.after_roundtrip.pb | Bin 0 -> 285 bytes .../core.v1.Service.after_roundtrip.pb | Bin 0 -> 422 bytes .../core.v1.ServiceAccount.after_roundtrip.pb | Bin 0 -> 319 bytes ...ts.k8s.io.v1beta1.Event.after_roundtrip.pb | Bin 0 -> 484 bytes ...sions.v1beta1.DaemonSet.after_roundtrip.pb | Bin 0 -> 5026 bytes ...ions.v1beta1.Deployment.after_roundtrip.pb | Bin 0 -> 5202 bytes ...ensions.v1beta1.Ingress.after_roundtrip.pb | Bin 0 -> 346 bytes ...s.v1beta1.NetworkPolicy.after_roundtrip.pb | Bin 0 -> 1300 bytes ...beta1.PodSecurityPolicy.after_roundtrip.pb | Bin 0 -> 659 bytes ...ions.v1beta1.ReplicaSet.after_roundtrip.pb | Bin 0 -> 4926 bytes ...xtensions.v1beta1.Scale.after_roundtrip.pb | Bin 0 -> 303 bytes ...io.v1alpha1.ImageReview.after_roundtrip.pb | Bin 0 -> 318 bytes ...k8s.io.v1.NetworkPolicy.after_roundtrip.pb | Bin 0 -> 1302 bytes ....k8s.io.v1beta1.Ingress.after_roundtrip.pb | Bin 0 -> 353 bytes ...o.v1alpha1.RuntimeClass.after_roundtrip.pb | Bin 0 -> 278 bytes ...io.v1beta1.RuntimeClass.after_roundtrip.pb | Bin 0 -> 275 bytes ...policy.v1beta1.Eviction.after_roundtrip.pb | Bin 0 -> 354 bytes ...ta1.PodDisruptionBudget.after_roundtrip.pb | Bin 0 -> 501 bytes ...beta1.PodSecurityPolicy.after_roundtrip.pb | Bin 0 -> 655 bytes ...n.k8s.io.v1.ClusterRole.after_roundtrip.pb | Bin 0 -> 503 bytes ...o.v1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 318 bytes ...rization.k8s.io.v1.Role.after_roundtrip.pb | Bin 0 -> 294 bytes ...n.k8s.io.v1.RoleBinding.after_roundtrip.pb | Bin 0 -> 311 bytes ...io.v1alpha1.ClusterRole.after_roundtrip.pb | Bin 0 -> 509 bytes ...pha1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 324 bytes ...on.k8s.io.v1alpha1.Role.after_roundtrip.pb | Bin 0 -> 300 bytes ...io.v1alpha1.RoleBinding.after_roundtrip.pb | Bin 0 -> 317 bytes ....io.v1beta1.ClusterRole.after_roundtrip.pb | Bin 0 -> 508 bytes ...eta1.ClusterRoleBinding.after_roundtrip.pb | Bin 0 -> 323 bytes ...ion.k8s.io.v1beta1.Role.after_roundtrip.pb | Bin 0 -> 299 bytes ....io.v1beta1.RoleBinding.after_roundtrip.pb | Bin 0 -> 316 bytes ...k8s.io.v1.PriorityClass.after_roundtrip.pb | Bin 0 -> 309 bytes ....v1alpha1.PriorityClass.after_roundtrip.pb | Bin 0 -> 315 bytes ...o.v1beta1.PriorityClass.after_roundtrip.pb | Bin 0 -> 314 bytes ...s.io.v1alpha1.PodPreset.after_roundtrip.pb | Bin 0 -> 1464 bytes ....k8s.io.v1.StorageClass.after_roundtrip.pb | Bin 0 -> 341 bytes ....io.v1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 1250 bytes ...alpha1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 1256 bytes ...8s.io.v1beta1.CSIDriver.after_roundtrip.pb | Bin 0 -> 277 bytes ....k8s.io.v1beta1.CSINode.after_roundtrip.pb | Bin 0 -> 285 bytes ...io.v1beta1.StorageClass.after_roundtrip.pb | Bin 0 -> 346 bytes ...1beta1.VolumeAttachment.after_roundtrip.pb | Bin 0 -> 1255 bytes 499 files changed, 28661 insertions(+), 29286 deletions(-) create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.LocalSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v2beta1.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/batch.v1.Job.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.CronJob.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.JobTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/batch.v2alpha1.CronJob.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/coordination.k8s.io.v1beta1.Lease.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Binding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ComponentStatus.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ConfigMap.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Endpoints.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Event.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.LimitRange.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Namespace.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Node.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolume.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Pod.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PodStatusResult.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PodTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.RangeAllocation.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ReplicationController.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ResourceQuota.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Secret.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Service.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ServiceAccount.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Ingress.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.NetworkPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/imagepolicy.k8s.io.v1alpha1.ImageReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/node.k8s.io.v1alpha1.RuntimeClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.Eviction.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1.StorageClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1.VolumeAttachment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.VolumeAttachment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.StatefulSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.LocalSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v2beta1.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/batch.v1.Job.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/batch.v1beta1.CronJob.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/batch.v1beta1.JobTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/batch.v2alpha1.CronJob.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/coordination.k8s.io.v1beta1.Lease.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Binding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ComponentStatus.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ConfigMap.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Endpoints.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Event.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.LimitRange.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Namespace.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Node.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolume.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Pod.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PodStatusResult.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PodTemplate.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.RangeAllocation.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ReplicationController.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ResourceQuota.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Secret.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Service.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ServiceAccount.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.DaemonSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Deployment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Ingress.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.NetworkPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Scale.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/imagepolicy.k8s.io.v1alpha1.ImageReview.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/node.k8s.io.v1alpha1.RuntimeClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.Eviction.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.Role.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1.StorageClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1.VolumeAttachment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb create mode 100644 staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.VolumeAttachment.after_roundtrip.pb diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json index 7c5e8a6142d..8bdee3b57ce 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,74 +35,73 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "webhooks": [ { - "name": "24", + "name": "18", "clientConfig": { - "url": "25", + "url": "19", "service": { - "namespace": "26", - "name": "27", - "path": "28", - "port": 2114329341 + "namespace": "20", + "name": "21", + "path": "22", + "port": -1971381490 }, - "caBundle": "RA==" + "caBundle": "IQ==" }, "rules": [ { "operations": [ - "ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗" + "8衍`Ĩɘ.蘯" ], "apiGroups": [ - "29" + "23" ], "apiVersions": [ - "30" + "24" ], "resources": [ - "31" + "25" ], - "scope": "ȎțêɘIJ斬³;Ơ歿" + "scope": "昍řČ扷5ƗǸƢ6/" } ], - "failurePolicy": "狞夌碕ʂɭ", - "matchPolicy": "cP$Iņɖ橙9", + "failurePolicy": "VŚ(ĿȊ甞谐颋", + "matchPolicy": "SǡƏ", "namespaceSelector": { "matchLabels": { - "MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3": "U-_Bq.m_4" + "2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J": "G_.7U-Uo_4_-D7r__.am64" }, "matchExpressions": [ { - "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", + "key": "2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5", "operator": "In", "values": [ - "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" + "Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8" ] } ] }, "objectSelector": { "matchLabels": { - "81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i": "i.Fg.Cs_.8-EA" + "7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L": "k-U.v.4" }, "matchExpressions": [ { - "key": "4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B", - "operator": "DoesNotExist" + "key": "35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w", + "operator": "Exists" } ] }, - "sideEffects": "ŴĿ", - "timeoutSeconds": 1525829664, + "sideEffects": "Ɵ)Ù", + "timeoutSeconds": 1132918207, "admissionReviewVersions": [ - "44" + "38" ], - "reinvocationPolicy": "ȉ彂" + "reinvocationPolicy": "錯ƶ" } ] } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.pb b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.pb index d19a907f4aa8146d8ecc208ea5314a0809511f00..deb392b2765e3e32e0f22732571a7171919a8349 100644 GIT binary patch delta 539 zcmWNNPfrt36vdg*O7apHK8+@`DosqZv8cg7V&V=~=#GV@=*Eo;zX6u`1zecuyPKQboZrbkXQTIfWbJbNafE%am?gO7 zJC=-DDsF}1jOV#hNLR^(c6AuIfpGn1^QP6`JnV1qpU0T(X&zD1Na7z22ionhppB9_4dl)lTWJi`rvbC zD;S8Ky0!o2LVNG)(_b$)x;tw}ThHP<7E3cN(8DCoLgO|Pf|Q7Nk!Yl#K~O1^@G!5& zfbxM)Kt7bgEb?oBqx|d$VVH&NJV}C~@F5ZA<^stlnGk4H!<4BLiC}Dk(#9H7)fps! z49THE0!1KaZ%AhPt^Ii%U|07lNz6Uk0gt kJ>bI?ffR&Bo;3ZKM@?#gWvq%teq#91{Ytgs^u&7p171j?CjbBd delta 749 zcmWlW$xB;79LIeRm-eBh4DBVolqjVrzn^b^^C&$eb&1i$J%SXb#<-Hyb!y|JtWsQcT;_RYSIP zs!`K0WmU81;~m1y`JJk4**+CbTt!RJxaC5Tzo+wQV(l}M(G5*$wsaRSDHCs-A2}5c~R^`DkKo8IX zfC-4EAjl6C3k(WT4q$}(6}#GljNu@7!G|{Mzy!oB%s_i9+AgRA)H&!_Qx}HA9M6r& zvYb)_rlU4Q%7(CR0Busx<-;ng%me zZKQ4JiZE9*4AVekQ^w7M`q diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml index 42ee2600e35..3dfd5b63665 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,47 +25,47 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" webhooks: - admissionReviewVersions: - - "44" + - "38" clientConfig: - caBundle: RA== + caBundle: IQ== service: - name: "27" - namespace: "26" - path: "28" - port: 2114329341 - url: "25" - failurePolicy: 狞夌碕ʂɭ - matchPolicy: cP$Iņɖ橙9 - name: "24" + name: "21" + namespace: "20" + path: "22" + port: -1971381490 + url: "19" + failurePolicy: VŚ(ĿȊ甞谐颋 + matchPolicy: SǡƏ + name: "18" namespaceSelector: matchExpressions: - - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 + - key: 2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5 operator: In values: - - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n + - Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8 matchLabels: - MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3: U-_Bq.m_4 + 2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J: G_.7U-Uo_4_-D7r__.am64 objectSelector: matchExpressions: - - key: 4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B - operator: DoesNotExist + - key: 35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w + operator: Exists matchLabels: - 81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i: i.Fg.Cs_.8-EA - reinvocationPolicy: ȉ彂 + 7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L: k-U.v.4 + reinvocationPolicy: 錯ƶ rules: - apiGroups: - - "29" + - "23" apiVersions: - - "30" + - "24" operations: - - ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗 + - 8衍`Ĩɘ.蘯 resources: - - "31" - scope: ȎțêɘIJ斬³;Ơ歿 - sideEffects: ŴĿ - timeoutSeconds: 1525829664 + - "25" + scope: 昍řČ扷5ƗǸƢ6/ + sideEffects: Ɵ)Ù + timeoutSeconds: 1132918207 diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json index 27baec144d7..399859b09e2 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,72 +35,71 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "webhooks": [ { - "name": "24", + "name": "18", "clientConfig": { - "url": "25", + "url": "19", "service": { - "namespace": "26", - "name": "27", - "path": "28", - "port": 2114329341 + "namespace": "20", + "name": "21", + "path": "22", + "port": -1971381490 }, - "caBundle": "RA==" + "caBundle": "IQ==" }, "rules": [ { "operations": [ - "ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗" + "8衍`Ĩɘ.蘯" ], "apiGroups": [ - "29" + "23" ], "apiVersions": [ - "30" + "24" ], "resources": [ - "31" + "25" ], - "scope": "ȎțêɘIJ斬³;Ơ歿" + "scope": "昍řČ扷5ƗǸƢ6/" } ], - "failurePolicy": "狞夌碕ʂɭ", - "matchPolicy": "cP$Iņɖ橙9", + "failurePolicy": "VŚ(ĿȊ甞谐颋", + "matchPolicy": "SǡƏ", "namespaceSelector": { "matchLabels": { - "MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3": "U-_Bq.m_4" + "2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J": "G_.7U-Uo_4_-D7r__.am64" }, "matchExpressions": [ { - "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", + "key": "2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5", "operator": "In", "values": [ - "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" + "Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8" ] } ] }, "objectSelector": { "matchLabels": { - "81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i": "i.Fg.Cs_.8-EA" + "7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L": "k-U.v.4" }, "matchExpressions": [ { - "key": "4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B", - "operator": "DoesNotExist" + "key": "35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w", + "operator": "Exists" } ] }, - "sideEffects": "ŴĿ", - "timeoutSeconds": 1525829664, + "sideEffects": "Ɵ)Ù", + "timeoutSeconds": 1132918207, "admissionReviewVersions": [ - "44" + "38" ] } ] diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.pb index 7c51b1f4fc3905cb9052093171b6031446a08158..3a4a47670a7786f50e3e4f70119527e1925b1ab4 100644 GIT binary patch delta 532 zcmWNN%}*0i6vdg5N-~KHpGK2el_n-yaxXLQW9H2g0|BAd*jhn0*Mha!LP7h1u<6y14sj?#HpjrwY^sR@zI0Ns`GOHOJ_S6 zOq{&F_v(Cm_uIoC&);@;)_-n4O72)r#?c&oOyN8VV_y%qU@)gWMuXg5mHU5#|>H$)+97(Wpi!+aTh>#1v(WHKuEGNB~)q z!$Sm$K+a#4{4zkr2gRE9rHUKBQulFzPz_B2WdTJIL*lp7vkHtuW=iu|=iP;`Exr5e z^_$*{w$S6T?EY5gY37CHc+RnocHc+y> zGbt2+nyW#68h8ZY-K{Q$(Mk~@jGzGdP|nOk!`w@y6{)}v!BZesL297~1&nc|AT;un aDaL$g;sUH-g zKph|vESeBN7EVOtkhn1mQ(ng^7Q_#LL}$=esB8JKz0op<<CR@hl-#(ZxJzYKiuyC@G-Jk8*U*CJuQ`fNb%~_gzCe|_qOXO9_ z#;daZ(!t|{7vJ9$a`}(N<##)uuJ5g7id)E5juWPdJQin8j`I>CsK+d-~ta?v= z1%+>(x^ zVwR3ufjH-Rt`f@CDiOM2;JdzX<;t5|R`1GjZ<#0 zfBu=VxYgs>UcwRVbl6#2y1VmrzlELF2JbO|G=MUIj-5ShE$y!EEFM1nrrU4#zPH!? zzSx=DyYDXTZ2x@r`_;$J=JL_{^Z2I4GAtD6VG5_9c?StWDa3n7G*k>hP&u3Mu%MGb z1z!@7gbJ8NvJN=R&kqp>ImpeBA{YoB5n+DXSA2{Kfkrh**#?pDlcSU|)|jqMA^~Jc z4fGRe0yTA0iR%Cr4>WJu*D6l*M%}|{LftnbA;0+Mh1}SPi$2 z-+wrH#g^f4B)hlPewm3JEpD{8#$H>@Wfy~4n!|!`0?n3mjmkg`1b^JeG(jB!07FRe z?lR=Cfr{tZh}3xiJz0Z1hy;N9usRbY=8FJ90t%21)c6E6%)L~aR~ozkTn%yoR4Btf i30DP@9~gPc^kW`1sR0(SCg%95!N(7(wW`w<>-rCnyP`k< delta 749 zcmWlW$xB;79LIeRm-eBh4DBVolqjVrzn^b^^C&$eb&1iqS3wHX#JD6iCNXh|mlVN* z+C`yS+k&_qx=BkH=tTq@H4%Dg5A8o-)LRd|7CO%5`}@u?Uq17lpG6xb^No!^ilyIz zB&bBt9D?o?j7n!_`gCJ1^EU3yugv=C$=aj4nOC`GJXwBkX6Cw%Hox|%mlV@Bb=8n9 zooduHOj*_Jh0#vo=E7lBy7HoQK@t^8&Pl~wZBjt~7D}S3lPeP8Y7$Yk9HL6E{`<20 zr-TSK+!zk8RDQVFwfEwBW+yv){B-5y!~E&`+`)9m!P@?lj*6x+j|xvk3Yf}}~;e4eJ; zh!k0%Z5$z3Z}tM30BiyQ^c6(8F=4gAW=e{V-2+{;qVp0Cqh^bgw3N>4fg9#xuD68^d7{Cv7 z0ALb^lMvtsiUkIRVGdvf`xU#|gN)%Ic)^D@>%=%jElfd28`>_Y1JpU_SW`EK!yM0z z$kLor1E!-EB4r`08^Bu$h7@XDWJC(+5lF~XgCIgEH9!oWzWRn~>6)XkVf^ Onyj4&C6bN;XTg8WGwHYh diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml index 47833d481dd..140c6366594 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,47 +25,47 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" webhooks: - admissionReviewVersions: - - "44" + - "38" clientConfig: - caBundle: RA== + caBundle: IQ== service: - name: "27" - namespace: "26" - path: "28" - port: 2114329341 - url: "25" - failurePolicy: 狞夌碕ʂɭ - matchPolicy: cP$Iņɖ橙9 - name: "24" + name: "21" + namespace: "20" + path: "22" + port: -1971381490 + url: "19" + failurePolicy: VŚ(ĿȊ甞谐颋 + matchPolicy: SǡƏ + name: "18" namespaceSelector: matchExpressions: - - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 + - key: 2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5 operator: In values: - - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n + - Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8 matchLabels: - MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3: U-_Bq.m_4 + 2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J: G_.7U-Uo_4_-D7r__.am64 objectSelector: matchExpressions: - - key: 4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B - operator: DoesNotExist + - key: 35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w + operator: Exists matchLabels: - 81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i: i.Fg.Cs_.8-EA - reinvocationPolicy: ȉ彂 + 7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L: k-U.v.4 + reinvocationPolicy: 錯ƶ rules: - apiGroups: - - "29" + - "23" apiVersions: - - "30" + - "24" operations: - - ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗 + - 8衍`Ĩɘ.蘯 resources: - - "31" - scope: ȎțêɘIJ斬³;Ơ歿 - sideEffects: ŴĿ - timeoutSeconds: 1525829664 + - "25" + scope: 昍řČ扷5ƗǸƢ6/ + sideEffects: Ɵ)Ù + timeoutSeconds: 1132918207 diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json index fad1e4a272a..e628f057912 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,72 +35,71 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "webhooks": [ { - "name": "24", + "name": "18", "clientConfig": { - "url": "25", + "url": "19", "service": { - "namespace": "26", - "name": "27", - "path": "28", - "port": 2114329341 + "namespace": "20", + "name": "21", + "path": "22", + "port": -1971381490 }, - "caBundle": "RA==" + "caBundle": "IQ==" }, "rules": [ { "operations": [ - "ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗" + "8衍`Ĩɘ.蘯" ], "apiGroups": [ - "29" + "23" ], "apiVersions": [ - "30" + "24" ], "resources": [ - "31" + "25" ], - "scope": "ȎțêɘIJ斬³;Ơ歿" + "scope": "昍řČ扷5ƗǸƢ6/" } ], - "failurePolicy": "狞夌碕ʂɭ", - "matchPolicy": "cP$Iņɖ橙9", + "failurePolicy": "VŚ(ĿȊ甞谐颋", + "matchPolicy": "SǡƏ", "namespaceSelector": { "matchLabels": { - "MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3": "U-_Bq.m_4" + "2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J": "G_.7U-Uo_4_-D7r__.am64" }, "matchExpressions": [ { - "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", + "key": "2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5", "operator": "In", "values": [ - "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" + "Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8" ] } ] }, "objectSelector": { "matchLabels": { - "81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i": "i.Fg.Cs_.8-EA" + "7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L": "k-U.v.4" }, "matchExpressions": [ { - "key": "4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B", - "operator": "DoesNotExist" + "key": "35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w", + "operator": "Exists" } ] }, - "sideEffects": "ŴĿ", - "timeoutSeconds": 1525829664, + "sideEffects": "Ɵ)Ù", + "timeoutSeconds": 1132918207, "admissionReviewVersions": [ - "44" + "38" ] } ] diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.pb b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.pb index 5e35fa3645a06c47234f6d2f2d7ce8126a2376c4..1d15d9241c061c1b90d295c09e4cd5a2f8327748 100644 GIT binary patch delta 532 zcmWNN%}*0i6vdg5O7apHK8+@`DosqZiZH~pGf}cWv?w}32yn0 zB@>oPTA?`Ud9D=FRWj194g)t3uD{W`VhwEk8ffybN0{wt9%rYSEnIF3&#{GwKYI7~ z+wXs7EN=BXwih{q9n;i+Yy?Y&R;zdzaP?ympXd63+-ScYkV9;R>}n%9sJq(r=dM59Fwg38&*!-5(I zDg-_O`A`9~$gcyA@l&IOVGeSOBngJYJ4BdY2qd3oLZDHNP_{uNg7GQJ7;8+|=8yog zB!`Cx6oH(-EX4#s#RJ8g_Qi@5zf|{dflv)i0%ZaHB8DVxre_rxhs=}~vCgY=A2;>h z&lfLy&)dEpi)9bCJC8F@E#|T_;Sw!lAuvgnN~%U>paw!P6JVO4jsSofQoOGWIc%Wh zc{b@Q05w;G{4|INz`b2v45O7IKo~&*@}ZoWg@(D8N-I)<7lNz6Uj?asJ?O&)ffR&B co-)Ol4^3QvRji3+estvSt!l06^dx%z1Gzk&rvLx| delta 742 zcmWkrNl#Nz6z07E>JyB)(M{c$LX3f&!<*lIF)mseN}+`^CdTASDO05rEtImUF~J0I zfJCrrLI7Df5sgFQ#*kncio;g_0Mo+6KVahJZoc!~lk=VLe)ng|;)z*b)3;LTw;%~B z5j2OOI|ZZ4nV&p*K9hf)@a`{8_t3-T`#1A13OPK?y*2YQU3;sa`_yxaX`8xg$d*nu zY8s}jYW7^ZL%2Hky*gWURyrez3MD6{QjRt$B7ce{QPs%>iEuQDs9FwDr5FEw%Kbe- zgj!AvhgYiDo$uOwdO5$oGkx%A@$lX3(aOyBWc&8=*2DJ7>Wwd+gQ>@)f-BfW)MSUK zDbDjd4|bk?eO1Wi-|sKH+4yi}Ybm?Gw(cxHm|5Igy?3xOzk8>!R`o-WH0hGh)7*(j zkp%;3giwRo3upqcaRiXlk?XeBPFRv`=V1~wkS;r(l}M(G5*MisaRSDHCs-A2}5c~R^`DkKo8IXfC-4EAjlhv z1qOvE-)w~X6}!fRjNu@7!G|{Mzy!oB%s_hpZ5Px7>fGU2b2o;=+?N}Xad#RpJ&W29 zDIdc60lb!ENTJR}Mx>w~fuu||9;KmzJuo_E@XU^b<;P5osn!TYXd28=jghvYJHlKo zFig9enlm03L#StUDhsrX2KX0&!VHTsZyWkSnP>*?#EgNPl-0)ilK#`NRNeScGUX_8 G7X1f11m(*B diff --git a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml index b81371dd305..c330b811a8b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,46 +25,46 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" webhooks: - admissionReviewVersions: - - "44" + - "38" clientConfig: - caBundle: RA== + caBundle: IQ== service: - name: "27" - namespace: "26" - path: "28" - port: 2114329341 - url: "25" - failurePolicy: 狞夌碕ʂɭ - matchPolicy: cP$Iņɖ橙9 - name: "24" + name: "21" + namespace: "20" + path: "22" + port: -1971381490 + url: "19" + failurePolicy: VŚ(ĿȊ甞谐颋 + matchPolicy: SǡƏ + name: "18" namespaceSelector: matchExpressions: - - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 + - key: 2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5 operator: In values: - - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n + - Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8 matchLabels: - MHLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8.3: U-_Bq.m_4 + 2.1.L.l-Y._.-44..d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.J: G_.7U-Uo_4_-D7r__.am64 objectSelector: matchExpressions: - - key: 4m-s0833--52-9guv59s-3------6tv27r-m8w-6d/5w9-Wm_AO-l8VKLyHA_.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o-B - operator: DoesNotExist + - key: 35--5ht-a-29--0qso79yg--79-e-a74bc-v--0jjy45-17-05-3z-4838/3-H2._67yg-Ln-__.-__2--z.t2w + operator: Exists matchLabels: - 81po6c-m6173y.390q-6-i2d020hj--a-8g--z-nt-b-6-17-58-n---5df19/H.__.h-J-M.9_T.q-o7.y-SQ.9A-F-.4--_vLW.jj-.5B.._.5_3-_4.3i: i.Fg.Cs_.8-EA + 7p_w.e6._.pj5t_k-_v.-6b6.N_-u.---.8-L: k-U.v.4 rules: - apiGroups: - - "29" + - "23" apiVersions: - - "30" + - "24" operations: - - ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗 + - 8衍`Ĩɘ.蘯 resources: - - "31" - scope: ȎțêɘIJ斬³;Ơ歿 - sideEffects: ŴĿ - timeoutSeconds: 1525829664 + - "25" + scope: 昍řČ扷5ƗǸƢ6/ + sideEffects: Ɵ)Ù + timeoutSeconds: 1132918207 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.json index 05c47818f5f..8d470dcca0b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,11 +35,10 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "data": {"apiVersion":"example.com/v1","kind":"CustomType","spec":{"replicas":1},"status":{"available":1}}, - "revision": 1089963290653861247 + "revision": -7716837448637516924 } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ControllerRevision.pb index b83ac4d2cd5b0738ff5949dadfd179e2711f1389..526690fb213d6c92186a36cc163b8a1f29b42cac 100644 GIT binary patch delta 76 zcmV-S0JHz~0>c83Br2H#3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h iHZm|Xk#AH1E0M%2lK}x|4ut2OnUD-tRY3JwYa gF*p(k3I+-SF*y075P+8vpVM$DoK+tcp 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 V|HUsbG literal 6278 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 LF+i}@WH5姣>懔%熷: "440" securityContext: allowPrivilegeEscalation: true capabilities: add: - - djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - 勅跦Opwǩ曬逴褜1Ø drop: - - mɩC[ó瓧 + - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] privileged: true - procMount: ɟ踡肒Ao/樝fw[Řż丩Ž + procMount: W:ĸ輦唊#v readOnlyRootFilesystem: true - runAsGroup: -2537458620093904059 + runAsGroup: 1373384864388370080 runAsNonRoot: false - runAsUser: -6244232606031635964 + runAsUser: -6470941481344047265 seLinuxOptions: - level: "279" - role: "277" - type: "278" - user: "276" + level: "265" + role: "263" + type: "264" + user: "262" windowsOptions: - gmsaCredentialSpec: "281" - gmsaCredentialSpecName: "280" - runAsUserName: "282" - stdinOnce: true - terminationMessagePath: "275" - terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹 - volumeDevices: - - devicePath: "244" - name: "243" - volumeMounts: - - mountPath: "240" - mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN - name: "239" - subPath: "241" - subPathExpr: "242" - workingDir: "223" - dnsConfig: - nameservers: - - "409" - options: - - name: "411" - value: "412" - searches: - - "410" - dnsPolicy: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l - enableServiceLinks: false - ephemeralContainers: - - args: - - "286" - command: - - "285" - env: - - name: "293" - value: "294" - valueFrom: - configMapKeyRef: - key: "300" - name: "299" - optional: false - fieldRef: - apiVersion: "295" - fieldPath: "296" - resourceFieldRef: - containerName: "297" - divisor: "18" - resource: "298" - secretKeyRef: - key: "302" - name: "301" - optional: false - envFrom: - - configMapRef: - name: "291" - optional: false - prefix: "290" - secretRef: - name: "292" - optional: false - image: "284" - imagePullPolicy: 犵殇ŕ-Ɂ圯W:ĸ輦唊# - lifecycle: - postStart: - exec: - command: - - "322" - httpGet: - host: "325" - httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" - scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷 - tcpSocket: - host: "329" - port: "328" - preStop: - exec: - command: - - "330" - httpGet: - host: "333" - httpHeaders: - - name: "334" - value: "335" - path: "331" - port: "332" - tcpSocket: - host: "336" - port: 1943028037 - livenessProbe: - exec: - command: - - "309" - failureThreshold: -720450949 - httpGet: - host: "312" - httpHeaders: - - name: "313" - value: "314" - path: "310" - port: "311" - scheme: 晒嶗UÐ_ƮA攤/ɸɎ R§耶FfBl - initialDelaySeconds: 630004123 - periodSeconds: -1654678802 - successThreshold: -625194347 - tcpSocket: - host: "315" - port: 1074486306 - timeoutSeconds: -984241405 - name: "283" - ports: - - containerPort: 105707873 - hostIP: "289" - hostPort: -1815868713 - name: "288" - protocol: ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[ - readinessProbe: - exec: - command: - - "316" - failureThreshold: 893823156 - httpGet: - host: "318" - httpHeaders: - - name: "319" - value: "320" - path: "317" - port: -1543701088 - scheme: 矡ȶ网棊ʢ=wǕɳɷ9Ì崟¿ - initialDelaySeconds: -1798849477 - periodSeconds: 852780575 - successThreshold: -1252938503 - tcpSocket: - host: "321" - port: -1423854443 - timeoutSeconds: -1017263912 - resources: - limits: - '@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫rʤî': "366" - requests: - .v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0矀: "738" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ʩȂ4ē鐭# - drop: - - 'ơŸ8T ' - privileged: false - procMount: 绤fʀļ腩墺Ò媁荭g - readOnlyRootFilesystem: false - runAsGroup: -6959202986715119291 - runAsNonRoot: true - runAsUser: -6406791857291159870 - seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" - windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" - stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" - volumeDevices: - - devicePath: "308" - name: "307" - volumeMounts: - - mountPath: "304" - mountPropagation: '|懥ƖN粕擓ƖHVe熼' - name: "303" - readOnly: true - subPath: "305" - subPathExpr: "306" - workingDir: "287" - hostAliases: - - hostnames: - - "407" - ip: "406" - hostIPC: true - hostNetwork: true - hostname: "361" - imagePullSecrets: - - name: "360" - initContainers: - - args: - - "159" - command: - - "158" - env: - - name: "166" - value: "167" - valueFrom: - configMapKeyRef: - key: "173" - name: "172" - optional: true - fieldRef: - apiVersion: "168" - fieldPath: "169" - resourceFieldRef: - containerName: "170" - divisor: "770" - resource: "171" - secretKeyRef: - key: "175" - name: "174" - optional: false - envFrom: - - configMapRef: - name: "164" - optional: true - prefix: "163" - secretRef: - name: "165" - optional: true - image: "157" - imagePullPolicy: 衧ȇe媹H - lifecycle: - postStart: - exec: - command: - - "196" - httpGet: - host: "199" - httpHeaders: - - name: "200" - value: "201" - path: "197" - port: "198" - scheme: 錯ƶ - tcpSocket: - host: "203" - port: "202" - preStop: - exec: - command: - - "204" - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2110181803 - scheme: '&蕭k ź贩j瀉ǚrǜnh0å' - tcpSocket: - host: "210" - port: "209" - livenessProbe: - exec: - command: - - "182" - failureThreshold: -1116811061 - httpGet: - host: "185" - httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: pȿŘ阌Ŗ怳冘HǺƶ - initialDelaySeconds: 1366561945 - periodSeconds: 408756018 - successThreshold: 437263194 - tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 657514697 - name: "156" - ports: - - containerPort: -343150875 - hostIP: "162" - hostPort: 1435152179 - name: "161" - protocol: ɥ³ƞsɁ8^ʥǔTĪȸŹă - readinessProbe: - exec: - command: - - "190" - failureThreshold: 273818613 - httpGet: - host: "192" - httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 1873902270 - scheme: ?Qȫş - initialDelaySeconds: -144591150 - periodSeconds: 1701891633 - successThreshold: -1768075156 - tcpSocket: - host: "195" - port: 2091150210 - timeoutSeconds: 673378190 - resources: - limits: - Z: "482" - requests: - ŏ{: "980" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - "" - drop: - - 臷Ľð»ųKĵ&4ʑ%:;栍dʪ - privileged: false - procMount: Rƥ贫d飼$俊跾|@?鷅b - readOnlyRootFilesystem: false - runAsGroup: 3541984878507294780 - runAsNonRoot: false - runAsUser: 6743064379422188907 - seLinuxOptions: - level: "215" - role: "213" - type: "214" - user: "212" - windowsOptions: - gmsaCredentialSpec: "217" - gmsaCredentialSpecName: "216" - runAsUserName: "218" - stdin: true - terminationMessagePath: "211" - terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ + gmsaCredentialSpec: "267" + gmsaCredentialSpecName: "266" + runAsUserName: "268" + terminationMessagePath: "261" + terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ tty: true volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "177" - mountPropagation: ĕʄő芖{| - name: "176" + - mountPath: "228" + mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ + name: "227" readOnly: true - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + subPath: "229" + subPathExpr: "230" + workingDir: "211" + dnsConfig: + nameservers: + - "397" + options: + - name: "399" + value: "400" + searches: + - "398" + dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ + enableServiceLinks: true + ephemeralContainers: + - args: + - "272" + command: + - "271" + env: + - name: "279" + value: "280" + valueFrom: + configMapKeyRef: + key: "286" + name: "285" + optional: false + fieldRef: + apiVersion: "281" + fieldPath: "282" + resourceFieldRef: + containerName: "283" + divisor: "355" + resource: "284" + secretKeyRef: + key: "288" + name: "287" + optional: true + envFrom: + - configMapRef: + name: "277" + optional: true + prefix: "276" + secretRef: + name: "278" + optional: false + image: "270" + imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + lifecycle: + postStart: + exec: + command: + - "310" + httpGet: + host: "313" + httpHeaders: + - name: "314" + value: "315" + path: "311" + port: "312" + scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + tcpSocket: + host: "317" + port: "316" + preStop: + exec: + command: + - "318" + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "319" + port: "320" + scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + tcpSocket: + host: "324" + port: -1187301925 + livenessProbe: + exec: + command: + - "295" + failureThreshold: 2030115750 + httpGet: + host: "298" + httpHeaders: + - name: "299" + value: "300" + path: "296" + port: "297" + scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 + initialDelaySeconds: 2066735093 + periodSeconds: -940334911 + successThreshold: -341287812 + tcpSocket: + host: "302" + port: "301" + timeoutSeconds: -190183379 + name: "269" + ports: + - containerPort: -379385405 + hostIP: "275" + hostPort: 2058122084 + name: "274" + protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + readinessProbe: + exec: + command: + - "303" + failureThreshold: -385597677 + httpGet: + host: "306" + httpHeaders: + - name: "307" + value: "308" + path: "304" + port: "305" + scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + initialDelaySeconds: -1971421078 + periodSeconds: -1730959016 + successThreshold: 1272940694 + tcpSocket: + host: "309" + port: 458427807 + timeoutSeconds: 1905181464 + resources: + limits: + '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + requests: + "": "124" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - SvEȤƏ埮p + drop: + - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + privileged: false + procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ + readOnlyRootFilesystem: false + runAsGroup: 741362943076737213 + runAsNonRoot: false + runAsUser: 6726836758549163621 + seLinuxOptions: + level: "329" + role: "327" + type: "328" + user: "326" + windowsOptions: + gmsaCredentialSpec: "331" + gmsaCredentialSpecName: "330" + runAsUserName: "332" + stdin: true + stdinOnce: true + targetContainerName: "333" + terminationMessagePath: "325" + terminationMessagePolicy: Őnj汰8ŕ + tty: true + volumeDevices: + - devicePath: "294" + name: "293" + volumeMounts: + - mountPath: "290" + mountPropagation: 簳°Ļǟi&皥贸 + name: "289" + subPath: "291" + subPathExpr: "292" + workingDir: "273" + hostAliases: + - hostnames: + - "395" + ip: "394" + hostPID: true + hostname: "349" + imagePullSecrets: + - name: "348" + initContainers: + - args: + - "148" + command: + - "147" + env: + - name: "155" + value: "156" + valueFrom: + configMapKeyRef: + key: "162" + name: "161" + optional: false + fieldRef: + apiVersion: "157" + fieldPath: "158" + resourceFieldRef: + containerName: "159" + divisor: "468" + resource: "160" + secretKeyRef: + key: "164" + name: "163" + optional: true + envFrom: + - configMapRef: + name: "153" + optional: false + prefix: "152" + secretRef: + name: "154" + optional: false + image: "146" + imagePullPolicy: Ŵ廷s{Ⱦdz@ + lifecycle: + postStart: + exec: + command: + - "186" + httpGet: + host: "189" + httpHeaders: + - name: "190" + value: "191" + path: "187" + port: "188" + tcpSocket: + host: "192" + port: 559781916 + preStop: + exec: + command: + - "193" + httpGet: + host: "195" + httpHeaders: + - name: "196" + value: "197" + path: "194" + port: 1150375229 + scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + tcpSocket: + host: "198" + port: -1696471293 + livenessProbe: + exec: + command: + - "171" + failureThreshold: 1466047181 + httpGet: + host: "174" + httpHeaders: + - name: "175" + value: "176" + path: "172" + port: "173" + initialDelaySeconds: 1805144649 + periodSeconds: 1403721475 + successThreshold: 519906483 + tcpSocket: + host: "178" + port: "177" + timeoutSeconds: -606111218 + name: "145" + ports: + - containerPort: 437857734 + hostIP: "151" + hostPort: -1510026905 + name: "150" + protocol: Rƥ贫d飼$俊跾|@?鷅b + readinessProbe: + exec: + command: + - "179" + failureThreshold: 524249411 + httpGet: + host: "182" + httpHeaders: + - name: "183" + value: "184" + path: "180" + port: "181" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + initialDelaySeconds: -1724160601 + periodSeconds: 1435507444 + successThreshold: -1430577593 + tcpSocket: + host: "185" + port: -337353552 + timeoutSeconds: -1158840571 + resources: + limits: + 檲ɨ銦妰黖ȓƇ$缔獵偐ę腬: "646" + requests: + 湨: "803" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - ʋŀ樺ȃv渟7¤7d + drop: + - ƯĖ漘Z剚敍0)鈼¬麄p呝T + privileged: true + procMount: 瓧嫭塓烀罁胾^拜 + readOnlyRootFilesystem: true + runAsGroup: 825262458636305509 + runAsNonRoot: true + runAsUser: 4181787587415673530 + seLinuxOptions: + level: "203" + role: "201" + type: "202" + user: "200" + windowsOptions: + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" + stdin: true + stdinOnce: true + terminationMessagePath: "199" + terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + volumeDevices: + - devicePath: "170" + name: "169" + volumeMounts: + - mountPath: "166" + mountPropagation: 卩蝾 + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "338" nodeSelector: - "346": "347" + "334": "335" overhead: - Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185" - preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮 - priority: 1352980996 - priorityClassName: "408" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "396" readinessGates: - - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ - restartPolicy: '|E剒蔞|表徶đ寳议Ƭƶ氩' - runtimeClassName: "413" - schedulerName: "403" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: åe躒訙 + runtimeClassName: "401" + schedulerName: "391" securityContext: - fsGroup: 5307265951662522113 - runAsGroup: 489084544654274973 + fsGroup: -7117039988160665426 + runAsGroup: 2548453080315983269 runAsNonRoot: false - runAsUser: -5001620332025163168 + runAsUser: 7747616967629081728 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "342" + role: "340" + type: "341" + user: "339" supplementalGroups: - - -3161746876343501601 + - -1193643752264108019 sysctls: - - name: "358" - value: "359" + - name: "346" + value: "347" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "344" + gmsaCredentialSpecName: "343" + runAsUserName: "345" + serviceAccount: "337" + serviceAccountName: "336" shareProcessNamespace: false - subdomain: "362" - terminationGracePeriodSeconds: 1856677271350902065 + subdomain: "350" + terminationGracePeriodSeconds: 6942343986058351509 tolerations: - - effect: 癯頯aɴí(Ȟ9"忕( - key: "404" - operator: ƴ磳藷曥摮Z Ǐg鲅 - tolerationSeconds: 3807599400818393626 - value: "405" + - effect: 料ȭzV镜籬ƽ + key: "392" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "393" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs + - key: qW operator: In values: - - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE - maxSkew: 547935694 - topologyKey: "414" - whenUnsatisfiable: zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "402" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 1637061888 - readOnly: true - volumeID: "55" + fsType: "45" + partition: -2007808768 + volumeID: "44" azureDisk: - cachingMode: 啞川J缮ǚb - diskName: "119" - diskURI: "120" - fsType: "121" - kind: ʬ + cachingMode: k ź贩j瀉ǚrǜnh0åȂ + diskName: "108" + diskURI: "109" + fsType: "110" + kind: nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶 readOnly: false azureFile: readOnly: true - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: -1853411528 + defaultMode: 952979935 items: - - key: "108" - mode: -885708332 - path: "109" - name: "107" - optional: true + - key: "97" + mode: 2020789772 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" - readOnly: false + name: "144" + readOnly: true volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -861583888 + defaultMode: -868808281 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -332563744 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: -1768075156 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "40" - resource: "101" + containerName: "89" + divisor: "915" + resource: "90" emptyDir: - medium: Ň'Ğİ* - sizeLimit: "695" + medium: ɹ坼É/pȿ + sizeLimit: "804" fc: - fsType: "103" - lun: 324963473 - readOnly: true + fsType: "92" + lun: 570501002 targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1706940973 - pdName: "53" + fsType: "43" + partition: -1318752360 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" hostPath: - path: "52" - type: _Ĭ艥< + path: "41" + type: "" iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1884322607 + chapAuthDiscovery: true + chapAuthSession: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 408756018 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" + - "58" readOnly: true - server: "63" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" + readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" - volumeID: "137" + fsType: "127" + volumeID: "126" projected: - defaultMode: -740816174 + defaultMode: 480521693 sources: - configMap: items: - - key: "133" - mode: -2137658152 - path: "134" - name: "132" + - key: "122" + mode: -1126738259 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1617414299 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: -1618937335 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "763" - resource: "131" + containerName: "119" + divisor: "461" + resource: "120" secret: items: - - key: "125" - mode: 1493217478 - path: "126" - name: "124" + - key: "114" + mode: 675406340 + path: "115" + name: "113" optional: false serviceAccountToken: - audience: "135" - expirationSeconds: -6753602166099171537 - path: "136" + audience: "124" + expirationSeconds: -6345861634934949644 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" + name: "130" sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 62108019 + defaultMode: 1233814916 items: - - key: "61" - mode: -1092501327 - path: "62" - optional: true - secretName: "60" + - key: "50" + mode: 228756891 + path: "51" + optional: false + secretName: "49" storageos: - fsType: "149" + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" updateStrategy: rollingUpdate: {} - type: ũ齑誀ŭ"ɦ?鮻ȧH僠 + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 status: - collisionCount: -513111795 + collisionCount: -449319810 conditions: - - lastTransitionTime: "2387-02-20T13:00:48Z" - message: "422" - reason: "421" - status: '`揄戀Ž彙pg稠' - type: 铀íÅė 宣 - currentNumberScheduled: 1605659256 - desiredNumberScheduled: 1266174302 - numberAvailable: 2081997618 - numberMisscheduled: -1376495682 - numberReady: 663607130 - numberUnavailable: -261966046 - observedGeneration: 945894627629353003 - updatedNumberScheduled: -1140021566 + - lastTransitionTime: "2469-07-10T03:20:34Z" + message: "410" + reason: "409" + status: '''ƈoIǢ龞瞯å' + type: "" + currentNumberScheduled: -1979737528 + desiredNumberScheduled: -424698834 + numberAvailable: 1660081568 + numberMisscheduled: -1707056814 + numberReady: 407742062 + numberUnavailable: 904244563 + observedGeneration: 5741439505187758584 + updatedNumberScheduled: 902022378 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json index e4bba5ddf59..871d85ffbe5 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1303,33 +1293,31 @@ } }, "strategy": { - "type": "龞瞯å檳ė\u003e", "rollingUpdate": { } }, - "minReadySeconds": -416969112, - "revisionHistoryLimit": -2111453451, - "paused": true, - "progressDeadlineSeconds": 94613358 + "minReadySeconds": 997447044, + "revisionHistoryLimit": 989524452, + "progressDeadlineSeconds": 1791868025 }, "status": { - "observedGeneration": -782425263784138188, - "replicas": 983225586, - "updatedReplicas": -405534860, - "readyReplicas": -1331113536, - "availableReplicas": -389104463, - "unavailableReplicas": -1714280710, + "observedGeneration": -1249679108465412698, + "replicas": -1152625369, + "updatedReplicas": -1832836223, + "readyReplicas": -1292943463, + "availableReplicas": -1734448297, + "unavailableReplicas": -1757575936, "conditions": [ { - "type": "mō6µɑ`ȗ\u003c8^翜", - "status": "šl", - "lastUpdateTime": "2563-10-12T13:29:04Z", - "lastTransitionTime": "2609-05-15T13:43:57Z", - "reason": "419", - "message": "420" + "type": "ȷ滣ƆƾȊ(XEfê澙凋B/ü", + "status": "ZÕW肤 ", + "lastUpdateTime": "2674-04-10T12:16:26Z", + "lastTransitionTime": "2674-07-14T13:22:49Z", + "reason": "404", + "message": "405" } ], - "collisionCount": 1366804394 + "collisionCount": 1658632493 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb index 74b577363186b6c1342bdb6fde36557671d44ece..3e84e01eb0b48546a86dbf5b8907faa9edfc4827 100644 GIT binary patch literal 6377 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 literal 6105 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 template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: - availableReplicas: -389104463 - collisionCount: 1366804394 + availableReplicas: -1734448297 + collisionCount: 1658632493 conditions: - - lastTransitionTime: "2609-05-15T13:43:57Z" - lastUpdateTime: "2563-10-12T13:29:04Z" - message: "420" - reason: "419" - status: šl - type: mō6µɑ`ȗ<8^翜 - observedGeneration: -782425263784138188 - readyReplicas: -1331113536 - replicas: 983225586 - unavailableReplicas: -1714280710 - updatedReplicas: -405534860 + - lastTransitionTime: "2674-07-14T13:22:49Z" + lastUpdateTime: "2674-04-10T12:16:26Z" + message: "405" + reason: "404" + status: ZÕW肤  + type: ȷ滣ƆƾȊ(XEfê澙凋B/ü + observedGeneration: -1249679108465412698 + readyReplicas: -1292943463 + replicas: -1152625369 + unavailableReplicas: -1757575936 + updatedReplicas: -1832836223 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json index 27759563c52..cc3d48859e4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,395 +35,395 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, - "minReadySeconds": 2114329341, + "replicas": 896585016, + "minReadySeconds": -1971381490, "selector": { "matchLabels": { - "0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7": "s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8" + "g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5": "" }, "matchExpressions": [ { - "key": "M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G", - "operator": "NotIn", + "key": "U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t", + "operator": "In", "values": [ - "7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU" + "M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5" ] } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "诫z徃鷢6ȥ啕禗", - "resourceVersion": "11500002557443244703", - "generation": 1395707490843892091, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "ʬ", + "resourceVersion": "7336814125345800857", + "generation": -6617020301190572172, "creationTimestamp": null, - "deletionGracePeriodSeconds": -4739960484747932992, + "deletionGracePeriodSeconds": -152893758082474859, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "·Õ", - "controller": false, + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ɖgȏ哙ȍȂ揲ȼDDŽLŬp:", + "controller": true, "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "ɔȖ脵鴈Ōƾ焁yǠ/淹\\韲翁\u0026", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "ƅS·Õüe0ɔȖ脵鴈Ō", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "ȱ蓿彭聡A3fƻf" + "path": "41", + "type": "6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ" }, "emptyDir": { - "medium": "繡楙¯ĦE勗E濞偘", - "sizeLimit": "349" + "medium": "彭聡A3fƻfʣ", + "sizeLimit": "115" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": 1648350164, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1499132872 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 200492355, + "volumeID": "44", + "fsType": "45", + "partition": -762366823, "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": 1360806276 + "key": "50", + "path": "51", + "mode": -104666658 } ], - "defaultMode": 395412881, + "defaultMode": 372704313, "optional": true }, "nfs": { - "server": "63", - "path": "64" - }, - "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -1746427184, - "iscsiInterface": "67", - "fsType": "68", - "portals": [ - "69" - ], - "secretRef": { - "name": "70" - }, - "initiatorName": "71" - }, - "glusterfs": { - "endpoints": "72", - "path": "73", + "server": "52", + "path": "53", "readOnly": true }, + "iscsi": { + "targetPortal": "54", + "iqn": "55", + "lun": 1655406148, + "iscsiInterface": "56", + "fsType": "57", + "readOnly": true, + "portals": [ + "58" + ], + "secretRef": { + "name": "59" + }, + "initiatorName": "60" + }, + "glusterfs": { + "endpoints": "61", + "path": "62" + }, "persistentVolumeClaim": { - "claimName": "74" + "claimName": "63", + "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - } + "name": "70" + }, + "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "51" + "containerName": "89", + "resource": "90", + "divisor": "457" }, - "mode": -1332301579 + "mode": 1235524154 } ], - "defaultMode": -395029362 + "defaultMode": -106644772 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -2007808768, - "fsType": "103", + "lun": 441887498, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95" }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1057154155 + "key": "97", + "path": "98", + "mode": -2039036935 } ], - "defaultMode": 1632959949, - "optional": true + "defaultMode": -460478410, + "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "readOnly": true, + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "躢", - "fsType": "121", - "readOnly": false, - "kind": "黰eȪ嵛4$%Qɰ" + "diskName": "108", + "diskURI": "109", + "cachingMode": "HǺƶȤ^}穠", + "fsType": "110", + "readOnly": true, + "kind": "躢" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 273818613 + "key": "114", + "path": "115", + "mode": -1399063270 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "934" + "containerName": "119", + "resource": "120", + "divisor": "746" }, - "mode": -687313111 + "mode": 926891073 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 2020789772 + "key": "122", + "path": "123", + "mode": -1694464659 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": 3485267088372060587, - "path": "136" + "audience": "124", + "expirationSeconds": -7593824971107985079, + "path": "125" } } ], - "defaultMode": 715087892 + "defaultMode": -522879476 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", - "readOnly": true + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", + "readOnly": true, "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 1473141590, - "containerPort": -1996616480, - "protocol": "ł/擇ɦĽ胚O醔ɍ厶", - "hostIP": "162" + "name": "150", + "hostPort": -1896921306, + "containerPort": 715087892, + "protocol": "倱\u003c", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": false }, "secretRef": { - "name": "165", + "name": "154", "optional": false } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "375" + "containerName": "159", + "resource": "160", + "divisor": "455" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": true }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": false } } @@ -431,220 +431,221 @@ ], "resources": { "limits": { - "": "596" + "/擇ɦĽ胚O醔ɍ厶耈 T": "618" }, "requests": { - "a坩O`涁İ而踪鄌eÞȦY籎顒": "45" + "á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ": "372" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "捘ɍi縱ù墴", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "dʪīT捘ɍi縱ù墴1Rƥ", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "痗ȡmƴy綸_Ú8參遼ūPH", + "path": "172", + "port": "173", + "host": "174", + "scheme": "ƴy綸_Ú8參遼ūPH炮", "httpHeaders": [ { - "name": "186", - "value": "187" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "188", - "host": "189" + "port": "177", + "host": "178" }, - "initialDelaySeconds": 655980302, - "timeoutSeconds": 741871873, - "periodSeconds": 446829537, - "successThreshold": -1987044888, - "failureThreshold": -1638339389 + "initialDelaySeconds": 741871873, + "timeoutSeconds": 446829537, + "periodSeconds": -1987044888, + "successThreshold": -1638339389, + "failureThreshold": 2053960192 }, "readinessProbe": { "exec": { "command": [ - "190" + "179" ] }, "httpGet": { - "path": "191", - "port": 961508537, - "host": "192", - "scheme": "黖ȓ", + "path": "180", + "port": -1903685915, + "host": "181", + "scheme": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "182", + "value": "183" } ] }, "tcpSocket": { - "port": "195", - "host": "196" + "port": "184", + "host": "185" }, - "initialDelaySeconds": -50623103, - "timeoutSeconds": 1795738696, - "periodSeconds": -1350331007, - "successThreshold": -1145306833, - "failureThreshold": 2063799569 + "initialDelaySeconds": 128019484, + "timeoutSeconds": 431781335, + "periodSeconds": -2130554644, + "successThreshold": 290736426, + "failureThreshold": -57352147 }, "lifecycle": { "postStart": { "exec": { "command": [ - "197" + "186" ] }, "httpGet": { - "path": "198", - "port": -2007811220, - "host": "199", - "scheme": "鎷卩蝾H", + "path": "187", + "port": "188", + "host": "189", + "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": -2035009296, - "host": "202" + "port": -337353552, + "host": "192" } }, "preStop": { "exec": { "command": [ - "203" + "193" ] }, "httpGet": { - "path": "204", - "port": "205", - "host": "206", - "scheme": "ńMǰ溟ɴ扵閝", + "path": "194", + "port": -374922344, + "host": "195", + "scheme": "緄Ú|dk_瀹鞎sn芞", "httpHeaders": [ { - "name": "207", - "value": "208" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": -1474440600, - "host": "209" + "port": 912103005, + "host": "198" } } }, - "terminationMessagePath": "210", - "terminationMessagePolicy": "廡ɑ龫`劳\u0026¼傭Ȟ1酃=6}ɡŇ", - "imagePullPolicy": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", + "terminationMessagePath": "199", + "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", + "imagePullPolicy": "\u003cé瞾", "securityContext": { "capabilities": { "add": [ - "d鲡" + "Ŭ" ], "drop": [ - "贅wE@Ȗs«öʮĀ\u003cé" + "ǙÄr蛏豈" ] }, "privileged": true, "seLinuxOptions": { - "user": "211", - "role": "212", - "type": "213", - "level": "214" + "user": "200", + "role": "201", + "type": "202", + "level": "203" }, "windowsOptions": { - "gmsaCredentialSpecName": "215", - "gmsaCredentialSpec": "216", - "runAsUserName": "217" + "gmsaCredentialSpecName": "204", + "gmsaCredentialSpec": "205", + "runAsUserName": "206" }, - "runAsUser": -7286288718856494813, - "runAsGroup": -5951050835676650382, + "runAsUser": -3447077152667955293, + "runAsGroup": -6457174729896610090, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ȉ彂" }, "stdinOnce": true } ], "containers": [ { - "name": "218", - "image": "219", + "name": "207", + "image": "208", "command": [ - "220" + "209" ], "args": [ - "221" + "210" ], - "workingDir": "222", + "workingDir": "211", "ports": [ { - "name": "223", - "hostPort": -1470854631, - "containerPort": -1815391069, - "protocol": "Ƹʋŀ樺ȃv", - "hostIP": "224" + "name": "212", + "hostPort": 1065976533, + "containerPort": -820119398, + "protocol": "@ùƸʋŀ樺ȃv", + "hostIP": "213" } ], "envFrom": [ { - "prefix": "225", + "prefix": "214", "configMapRef": { - "name": "226", + "name": "215", "optional": true }, "secretRef": { - "name": "227", + "name": "216", "optional": true } } ], "env": [ { - "name": "228", - "value": "229", + "name": "217", + "value": "218", "valueFrom": { "fieldRef": { - "apiVersion": "230", - "fieldPath": "231" + "apiVersion": "219", + "fieldPath": "220" }, "resourceFieldRef": { - "containerName": "232", - "resource": "233", + "containerName": "221", + "resource": "222", "divisor": "508" }, "configMapKeyRef": { - "name": "234", - "key": "235", + "name": "223", + "key": "224", "optional": false }, "secretKeyRef": { - "name": "236", - "key": "237", + "name": "225", + "key": "226", "optional": true } } @@ -660,41 +661,41 @@ }, "volumeMounts": [ { - "name": "238", + "name": "227", "readOnly": true, - "mountPath": "239", - "subPath": "240", + "mountPath": "228", + "subPath": "229", "mountPropagation": "", - "subPathExpr": "241" + "subPathExpr": "230" } ], "volumeDevices": [ { - "name": "242", - "devicePath": "243" + "name": "231", + "devicePath": "232" } ], "livenessProbe": { "exec": { "command": [ - "244" + "233" ] }, "httpGet": { - "path": "245", - "port": "246", - "host": "247", + "path": "234", + "port": "235", + "host": "236", "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "237", + "value": "238" } ] }, "tcpSocket": { "port": 1096174794, - "host": "250" + "host": "239" }, "initialDelaySeconds": 1591029717, "timeoutSeconds": 1255169591, @@ -705,24 +706,24 @@ "readinessProbe": { "exec": { "command": [ - "251" + "240" ] }, "httpGet": { - "path": "252", - "port": "253", - "host": "254", + "path": "241", + "port": "242", + "host": "243", "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", "httpHeaders": [ { - "name": "255", - "value": "256" + "name": "244", + "value": "245" } ] }, "tcpSocket": { - "port": "257", - "host": "258" + "port": "246", + "host": "247" }, "initialDelaySeconds": -394397948, "timeoutSeconds": 2040455355, @@ -734,51 +735,51 @@ "postStart": { "exec": { "command": [ - "259" + "248" ] }, "httpGet": { - "path": "260", - "port": "261", - "host": "262", + "path": "249", + "port": "250", + "host": "251", "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", "httpHeaders": [ { - "name": "263", - "value": "264" + "name": "252", + "value": "253" } ] }, "tcpSocket": { - "port": "265", - "host": "266" + "port": "254", + "host": "255" } }, "preStop": { "exec": { "command": [ - "267" + "256" ] }, "httpGet": { - "path": "268", + "path": "257", "port": -1675041613, - "host": "269", + "host": "258", "scheme": "揆ɘȌ脾嚏吐", "httpHeaders": [ { - "name": "270", - "value": "271" + "name": "259", + "value": "260" } ] }, "tcpSocket": { "port": -194343002, - "host": "272" + "host": "261" } } }, - "terminationMessagePath": "273", + "terminationMessagePath": "262", "terminationMessagePolicy": "Ȥ藠3.", "imagePullPolicy": "t莭琽§ć\\ ïì", "securityContext": { @@ -792,15 +793,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "263", + "role": "264", + "type": "265", + "level": "266" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "267", + "gmsaCredentialSpec": "268", + "runAsUserName": "269" }, "runAsUser": -2142888785755371163, "runAsGroup": -2879304435996142911, @@ -814,58 +815,58 @@ ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "270", + "image": "271", "command": [ - "283" + "272" ], "args": [ - "284" + "273" ], - "workingDir": "285", + "workingDir": "274", "ports": [ { - "name": "286", + "name": "275", "hostPort": -1740959124, "containerPort": 158280212, - "hostIP": "287" + "hostIP": "276" } ], "envFrom": [ { - "prefix": "288", + "prefix": "277", "configMapRef": { - "name": "289", + "name": "278", "optional": true }, "secretRef": { - "name": "290", + "name": "279", "optional": true } } ], "env": [ { - "name": "291", - "value": "292", + "name": "280", + "value": "281", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "282", + "fieldPath": "283" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", + "containerName": "284", + "resource": "285", "divisor": "985" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "286", + "key": "287", "optional": false }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "288", + "key": "289", "optional": false } } @@ -881,40 +882,40 @@ }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", + "name": "290", + "mountPath": "291", + "subPath": "292", "mountPropagation": "啛更", - "subPathExpr": "304" + "subPathExpr": "293" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "294", + "devicePath": "295" } ], "livenessProbe": { "exec": { "command": [ - "307" + "296" ] }, "httpGet": { - "path": "308", - "port": "309", - "host": "310", + "path": "297", + "port": "298", + "host": "299", "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "311", - "value": "312" + "name": "300", + "value": "301" } ] }, "tcpSocket": { "port": -979584143, - "host": "313" + "host": "302" }, "initialDelaySeconds": -1748648882, "timeoutSeconds": -239843014, @@ -925,24 +926,24 @@ "readinessProbe": { "exec": { "command": [ - "314" + "303" ] }, "httpGet": { - "path": "315", - "port": "316", - "host": "317", + "path": "304", + "port": "305", + "host": "306", "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", "httpHeaders": [ { - "name": "318", - "value": "319" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": "320", - "host": "321" + "port": "309", + "host": "310" }, "initialDelaySeconds": 37514563, "timeoutSeconds": -1871050070, @@ -954,51 +955,51 @@ "postStart": { "exec": { "command": [ - "322" + "311" ] }, "httpGet": { - "path": "323", - "port": "324", - "host": "325", + "path": "312", + "port": "313", + "host": "314", "scheme": "绤fʀļ腩墺Ò媁荭g", "httpHeaders": [ { - "name": "326", - "value": "327" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "328", - "host": "329" + "port": "317", + "host": "318" } }, "preStop": { "exec": { "command": [ - "330" + "319" ] }, "httpGet": { - "path": "331", + "path": "320", "port": -2133054549, - "host": "332", + "host": "321", "scheme": "遰=E", "httpHeaders": [ { - "name": "333", - "value": "334" + "name": "322", + "value": "323" } ] }, "tcpSocket": { - "port": "335", - "host": "336" + "port": "324", + "host": "325" } } }, - "terminationMessagePath": "337", + "terminationMessagePath": "326", "terminationMessagePolicy": "朦 wƯ貾坢'跩", "imagePullPolicy": "簳°Ļǟi\u0026皥贸", "securityContext": { @@ -1012,15 +1013,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "338", - "role": "339", - "type": "340", - "level": "341" + "user": "327", + "role": "328", + "type": "329", + "level": "330" }, "windowsOptions": { - "gmsaCredentialSpecName": "342", - "gmsaCredentialSpec": "343", - "runAsUserName": "344" + "gmsaCredentialSpecName": "331", + "gmsaCredentialSpec": "332", + "runAsUserName": "333" }, "runAsUser": 7933506142593743951, "runAsGroup": -8521633679555431923, @@ -1032,7 +1033,7 @@ "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "345" + "targetContainerName": "334" } ], "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", @@ -1040,26 +1041,26 @@ "activeDeadlineSeconds": -499179336506637450, "dnsPolicy": "ɐ鰥", "nodeSelector": { - "346": "347" + "335": "336" }, - "serviceAccountName": "348", - "serviceAccount": "349", + "serviceAccountName": "337", + "serviceAccount": "338", "automountServiceAccountToken": true, - "nodeName": "350", + "nodeName": "339", "hostNetwork": true, "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "351", - "role": "352", - "type": "353", - "level": "354" + "user": "340", + "role": "341", + "type": "342", + "level": "343" }, "windowsOptions": { - "gmsaCredentialSpecName": "355", - "gmsaCredentialSpec": "356", - "runAsUserName": "357" + "gmsaCredentialSpecName": "344", + "gmsaCredentialSpec": "345", + "runAsUserName": "346" }, "runAsUser": 3634773701753283428, "runAsGroup": -3042614092601658792, @@ -1070,18 +1071,18 @@ "fsGroup": -1778638259613624198, "sysctls": [ { - "name": "358", - "value": "359" + "name": "347", + "value": "348" } ] }, "imagePullSecrets": [ { - "name": "360" + "name": "349" } ], - "hostname": "361", - "subdomain": "362", + "hostname": "350", + "subdomain": "351", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1089,19 +1090,19 @@ { "matchExpressions": [ { - "key": "363", + "key": "352", "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "values": [ - "364" + "353" ] } ], "matchFields": [ { - "key": "365", + "key": "354", "operator": "C\"6x$1s", "values": [ - "366" + "355" ] } ] @@ -1114,19 +1115,19 @@ "preference": { "matchExpressions": [ { - "key": "367", + "key": "356", "operator": "鋄5弢ȹ均", "values": [ - "368" + "357" ] } ], "matchFields": [ { - "key": "369", + "key": "358", "operator": "SvEȤƏ埮p", "values": [ - "370" + "359" ] } ] @@ -1149,9 +1150,9 @@ ] }, "namespaces": [ - "377" + "366" ], - "topologyKey": "378" + "topologyKey": "367" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1173,9 +1174,9 @@ ] }, "namespaces": [ - "385" + "374" ], - "topologyKey": "386" + "topologyKey": "375" } } ] @@ -1198,9 +1199,9 @@ ] }, "namespaces": [ - "393" + "382" ], - "topologyKey": "394" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1219,45 +1220,45 @@ ] }, "namespaces": [ - "401" + "390" ], - "topologyKey": "402" + "topologyKey": "391" } } ] } }, - "schedulerName": "403", + "schedulerName": "392", "tolerations": [ { - "key": "404", + "key": "393", "operator": "[L", - "value": "405", + "value": "394", "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", "tolerationSeconds": 4456040724914385859 } ], "hostAliases": [ { - "ip": "406", + "ip": "395", "hostnames": [ - "407" + "396" ] } ], - "priorityClassName": "408", + "priorityClassName": "397", "priority": -1576968453, "dnsConfig": { "nameservers": [ - "409" + "398" ], "searches": [ - "410" + "399" ], "options": [ { - "name": "411", - "value": "412" + "name": "400", + "value": "401" } ] }, @@ -1266,7 +1267,7 @@ "conditionType": "v" } ], - "runtimeClassName": "413", + "runtimeClassName": "402", "enableServiceLinks": false, "preemptionPolicy": "忖p様", "overhead": { @@ -1275,7 +1276,7 @@ "topologySpreadConstraints": [ { "maxSkew": -782776982, - "topologyKey": "414", + "topologyKey": "403", "whenUnsatisfiable": "鈀", "labelSelector": { "matchLabels": { @@ -1304,8 +1305,8 @@ "type": "", "status": "'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "421", - "message": "422" + "reason": "410", + "message": "411" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb index 53c8ec7ceaee5c96e13a385d36a2c11ab1258f96..03f357d4a887e70209576f3e28e68e13e103b2a3 100644 GIT binary patch delta 3806 zcmYjUdvH|M8Q*gkNw`p1F0bXP)40%r|;#v>^SR-GJ;L-#zC$=ljn0 z{=Qv1=B@DhdxQ01c|VZ}QwUdy9w0`LSZolbn$C31&>dT|EmJd@#y8BLNk(mG8Rb)I zM`t%xwI1>+9}xLjdA>V_44)DTg$&Ccvm`v*{-YiVKNo%>KNN~YLepOiPmh>bMZ%F# zIP_RJGGW3(TwWRp8KHu(MT`N9GRO}%2TP6#qH}< zDasvX<#P9$FSZw<6V8ZN~P;D=HE-TP~Ed zc*U0Zo&&Mt%24_4_}RnB!aWoC(;a7??%J!|C3`6~)WP7x6iMg)rmdS!eRmT-lH&;o zG_0c={>oI#rW-e-X*>z`1KtGQQYGDHkXmQOAhswyz~B>M3o$tLxPgSHxj7jfUjftJym3+jOQFv7|;P@ z$M%1_`hyeKG6rmTqha6o>1B?mnncANNAXfkQvqlIfYp+F;6#lJwC*PYX9NLE24K~b z5#rPqr;gfh;)T;44Y7T{{Y&EDZrr5WNW#3y)77UT6SfrBC_7L3VZ%&p7|hf~!eR>+ zQOX>lEae((iVwvboQ(zGxd8fP0Aq&dO|pf^Ylxg9r{jw&gF!=e!QAjyefRHAdm@Y| zqvfDDGL`i6mbhW70|ZK_$#BUOq?hUuD93#!D>MwnW*mr7YHkth48%Hjk7V6H3?%|A;Yu3$59coPOEgLZ{KelVU6%@umy#U~Ma7EPs z#!xZ}8K&ZhYnIX^uNxHknJF@hqMz50bqc_649S01E(c zHzc!hI^^KGo!ejBfbM8T;)b~lp}=)#Iq`BsD-n=xB$s>3s4LUusj`7ngSp$~@KA%J zs$i!pS-%XJFOHx~z`!uvEApT)?AI@~cBK(-sg5f4@W!D`$x+`N8mSvG=!+uXhHN3Wto!Mog{RglYJ)#McN zh3YT?)j>^l3spzAg8&X1hnE_fucqwmH$CNU(R2XnMo1~ zA+fVXl2GASYWCD$LnKKQSab{khEkYL5-Pk*O(acjzC2u3$8@`^J8Rm`CRbEFl3KN? zvov1TkSr)Zzk8O~*%`R+HvwviH4>~Yn2@@Uy&+oX+Jb$Vq*CbksZ_$HnGef zvV&T}E>_g`6;^+AMe<)cQ2aK@NuGG+wTx*;w!Zht)l7zH1)rX{lr^W4$cr)}ILa)r zw6%05#dqxfDnlYNiJ~Kpj=3GHMA~cV za}!g$n&U^Kb!qWzQ8n#5l9!^70%Q2LUoINwfA_O5FOr;p?O9XYBV6sqzm^c~@GF-- z6&3R)nb$_-`Dx+Maepm@vu@i5ofms2F#Lu1&camVy5zaqWaZgeiSixoXI_YQ9ZA(} zZ*7?#tL$jd+YY9sagbirq3RG>l!{}W8~%}L1){`JhbfPzUvju8aukhO+}e6!`^8(g z@SbA?1|=F-wpRW5$!8;pg67oDvLy?XB|9_xMKf_MQ9Yv|{afAF_1+9`djSrd#l0VB zJ($>eZdpVgAWQ9aO5Y2Wtt%HNx0NT47b9v=0+GX22OjU36+=`L^oh@3QY3gs1A>ux!1@1U1VpSKa=^DLEJRcLUOqTwW zV9Q)p86#=@#1v%`xz7^XTS9wFXm9Z#fX?oPeyB0W2M(TQndyd!AoVhv_B2cpX3Xa4 zhA9G!*@kGC4nCRwi0A=QjCwtLh{bHj9XROWD09+{o;et!n8Sj-;}zSwx1D6z@VvD| zeoRCK!(e8L&+YhQj_3@I6ByWjWK{R|#*VV&s-qXyf@{q8`nApHzP;(bJ4l~_sSVlB;lrNR$%QAmW(J0)+?Tr!#+K`CZfgDE;qkhH zjy>&7_RP!+qBCGBxZQEN27hs?xlatHQA}}yDZO1%I7La}6eT5bX5Z6Y1#K97$Dwz>SoK4h;EV?DN);X( z_i#`~Rp(+f6EITfam{K4=6AI delta 3838 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 WsxM``|IV9ygPg1|Sq6O}-~R#JXcZX% diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml index 121e749df54..de5514c4d05 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,52 +25,49 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: 2114329341 - replicas: -1978186127 + minReadySeconds: -1971381490 + replicas: 896585016 selector: matchExpressions: - - key: M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G - operator: NotIn + - key: U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t + operator: In values: - - 7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU + - M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5 matchLabels: - 0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7: s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8 + g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5: "" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -4739960484747932992 + deletionGracePeriodSeconds: -152893758082474859 finalizers: - - "42" - generateName: "31" - generation: 1395707490843892091 + - "36" + generateName: "25" + generation: -6617020301190572172 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: ɔȖ脵鴈Ōƾ焁yǠ/淹\韲翁& - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" + manager: "38" + operation: ƅS·Õüe0ɔȖ脵鴈Ō + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" blockOwnerDeletion: true - controller: false - kind: "40" - name: "41" - uid: ·Õ - resourceVersion: "11500002557443244703" - selfLink: "33" - uid: 诫z徃鷢6ȥ啕禗 + controller: true + kind: "34" + name: "35" + uid: 'ɖgȏ哙ȍȂ揲ȼDDŽLŬp:' + resourceVersion: "7336814125345800857" + selfLink: "27" + uid: ʬ spec: activeDeadlineSeconds: -499179336506637450 affinity: @@ -81,28 +75,28 @@ spec: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "367" + - key: "356" operator: 鋄5弢ȹ均 values: - - "368" + - "357" matchFields: - - key: "369" + - key: "358" operator: SvEȤƏ埮p values: - - "370" + - "359" weight: -1292310438 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "363" + - key: "352" operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 values: - - "364" + - "353" matchFields: - - key: "365" + - key: "354" operator: C"6x$1s values: - - "366" + - "355" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -115,8 +109,8 @@ spec: matchLabels: 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F namespaces: - - "385" - topologyKey: "386" + - "374" + topologyKey: "375" weight: -531787516 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -126,8 +120,8 @@ spec: matchLabels: o.6GA2C: s.Nj-s namespaces: - - "377" - topologyKey: "378" + - "366" + topologyKey: "367" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -138,8 +132,8 @@ spec: matchLabels: t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 namespaces: - - "401" - topologyKey: "402" + - "390" + topologyKey: "391" weight: -1139477828 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -151,120 +145,120 @@ spec: matchLabels: 4.B.__6m: J1-1.9_.-.Ms7_tP namespaces: - - "393" - topologyKey: "394" + - "382" + topologyKey: "383" automountServiceAccountToken: true containers: - args: - - "221" + - "210" command: - - "220" + - "209" env: - - name: "228" - value: "229" + - name: "217" + value: "218" valueFrom: configMapKeyRef: - key: "235" - name: "234" + key: "224" + name: "223" optional: false fieldRef: - apiVersion: "230" - fieldPath: "231" + apiVersion: "219" + fieldPath: "220" resourceFieldRef: - containerName: "232" + containerName: "221" divisor: "508" - resource: "233" + resource: "222" secretKeyRef: - key: "237" - name: "236" + key: "226" + name: "225" optional: true envFrom: - configMapRef: - name: "226" + name: "215" optional: true - prefix: "225" + prefix: "214" secretRef: - name: "227" + name: "216" optional: true - image: "219" + image: "208" imagePullPolicy: t莭琽§ć\ ïì lifecycle: postStart: exec: command: - - "259" + - "248" httpGet: - host: "262" + host: "251" httpHeaders: - - name: "263" - value: "264" - path: "260" - port: "261" + - name: "252" + value: "253" + path: "249" + port: "250" scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 tcpSocket: - host: "266" - port: "265" + host: "255" + port: "254" preStop: exec: command: - - "267" + - "256" httpGet: - host: "269" + host: "258" httpHeaders: - - name: "270" - value: "271" - path: "268" + - name: "259" + value: "260" + path: "257" port: -1675041613 scheme: 揆ɘȌ脾嚏吐 tcpSocket: - host: "272" + host: "261" port: -194343002 livenessProbe: exec: command: - - "244" + - "233" failureThreshold: 817152661 httpGet: - host: "247" + host: "236" httpHeaders: - - name: "248" - value: "249" - path: "245" - port: "246" + - name: "237" + value: "238" + path: "234" + port: "235" scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 initialDelaySeconds: 1591029717 periodSeconds: 622473257 successThreshold: -966649167 tcpSocket: - host: "250" + host: "239" port: 1096174794 timeoutSeconds: 1255169591 - name: "218" + name: "207" ports: - - containerPort: -1815391069 - hostIP: "224" - hostPort: -1470854631 - name: "223" - protocol: Ƹʋŀ樺ȃv + - containerPort: -820119398 + hostIP: "213" + hostPort: 1065976533 + name: "212" + protocol: '@ùƸʋŀ樺ȃv' readinessProbe: exec: command: - - "251" + - "240" failureThreshold: 1214895765 httpGet: - host: "254" + host: "243" httpHeaders: - - name: "255" - value: "256" - path: "252" - port: "253" + - name: "244" + value: "245" + path: "241" + port: "242" scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ initialDelaySeconds: -394397948 periodSeconds: 1505972335 successThreshold: -26910286 tcpSocket: - host: "258" - port: "257" + host: "247" + port: "246" timeoutSeconds: 2040455355 resources: limits: @@ -285,148 +279,148 @@ spec: runAsNonRoot: false runAsUser: -2142888785755371163 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "266" + role: "264" + type: "265" + user: "263" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" + gmsaCredentialSpec: "268" + gmsaCredentialSpecName: "267" + runAsUserName: "269" stdin: true - terminationMessagePath: "273" + terminationMessagePath: "262" terminationMessagePolicy: Ȥ藠3. volumeDevices: - - devicePath: "243" - name: "242" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "239" + - mountPath: "228" mountPropagation: "" - name: "238" + name: "227" readOnly: true - subPath: "240" - subPathExpr: "241" - workingDir: "222" + subPath: "229" + subPathExpr: "230" + workingDir: "211" dnsConfig: nameservers: - - "409" + - "398" options: - - name: "411" - value: "412" + - name: "400" + value: "401" searches: - - "410" + - "399" dnsPolicy: ɐ鰥 enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "273" command: - - "283" + - "272" env: - - name: "291" - value: "292" + - name: "280" + value: "281" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "287" + name: "286" optional: false fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "282" + fieldPath: "283" resourceFieldRef: - containerName: "295" + containerName: "284" divisor: "985" - resource: "296" + resource: "285" secretKeyRef: - key: "300" - name: "299" + key: "289" + name: "288" optional: false envFrom: - configMapRef: - name: "289" + name: "278" optional: true - prefix: "288" + prefix: "277" secretRef: - name: "290" + name: "279" optional: true - image: "282" + image: "271" imagePullPolicy: 簳°Ļǟi&皥贸 lifecycle: postStart: exec: command: - - "322" + - "311" httpGet: - host: "325" + host: "314" httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" + - name: "315" + value: "316" + path: "312" + port: "313" scheme: 绤fʀļ腩墺Ò媁荭g tcpSocket: - host: "329" - port: "328" + host: "318" + port: "317" preStop: exec: command: - - "330" + - "319" httpGet: - host: "332" + host: "321" httpHeaders: - - name: "333" - value: "334" - path: "331" + - name: "322" + value: "323" + path: "320" port: -2133054549 scheme: 遰=E tcpSocket: - host: "336" - port: "335" + host: "325" + port: "324" livenessProbe: exec: command: - - "307" + - "296" failureThreshold: -1538905728 httpGet: - host: "310" + host: "299" httpHeaders: - - name: "311" - value: "312" - path: "308" - port: "309" + - name: "300" + value: "301" + path: "297" + port: "298" scheme: Ů+朷Ǝ膯ljVX1虊 initialDelaySeconds: -1748648882 periodSeconds: 1381579966 successThreshold: -1418092595 tcpSocket: - host: "313" + host: "302" port: -979584143 timeoutSeconds: -239843014 - name: "281" + name: "270" ports: - containerPort: 158280212 - hostIP: "287" + hostIP: "276" hostPort: -1740959124 - name: "286" + name: "275" readinessProbe: exec: command: - - "314" + - "303" failureThreshold: 522560228 httpGet: - host: "317" + host: "306" httpHeaders: - - name: "318" - value: "319" - path: "315" - port: "316" + - name: "307" + value: "308" + path: "304" + port: "305" scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T initialDelaySeconds: 37514563 periodSeconds: 474715842 successThreshold: -1620315711 tcpSocket: - host: "321" - port: "320" + host: "310" + port: "309" timeoutSeconds: -1871050070 resources: limits: @@ -447,234 +441,235 @@ spec: runAsNonRoot: true runAsUser: 7933506142593743951 seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" + level: "330" + role: "328" + type: "329" + user: "327" windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" + gmsaCredentialSpec: "332" + gmsaCredentialSpecName: "331" + runAsUserName: "333" stdin: true stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" + targetContainerName: "334" + terminationMessagePath: "326" terminationMessagePolicy: 朦 wƯ貾坢'跩 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "295" + name: "294" volumeMounts: - - mountPath: "302" + - mountPath: "291" mountPropagation: 啛更 - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + name: "290" + subPath: "292" + subPathExpr: "293" + workingDir: "274" hostAliases: - hostnames: - - "407" - ip: "406" + - "396" + ip: "395" hostNetwork: true hostPID: true - hostname: "361" + hostname: "350" imagePullSecrets: - - name: "360" + - name: "349" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: true fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "375" - resource: "171" + containerName: "159" + divisor: "455" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: false envFrom: - configMapRef: - name: "164" + name: "153" optional: false - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: false - image: "157" - imagePullPolicy: ɖȃ賲鐅臬dH巧壚tC十Oɢ + image: "146" + imagePullPolicy: <é瞾 lifecycle: postStart: exec: command: - - "197" + - "186" httpGet: - host: "199" + host: "189" httpHeaders: - - name: "200" - value: "201" - path: "198" - port: -2007811220 - scheme: 鎷卩蝾H + - name: "190" + value: "191" + path: "187" + port: "188" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ tcpSocket: - host: "202" - port: -2035009296 + host: "192" + port: -337353552 preStop: exec: command: - - "203" + - "193" httpGet: - host: "206" + host: "195" httpHeaders: - - name: "207" - value: "208" - path: "204" - port: "205" - scheme: ńMǰ溟ɴ扵閝 + - name: "196" + value: "197" + path: "194" + port: -374922344 + scheme: 緄Ú|dk_瀹鞎sn芞 tcpSocket: - host: "209" - port: -1474440600 + host: "198" + port: 912103005 livenessProbe: exec: command: - - "182" - failureThreshold: -1638339389 + - "171" + failureThreshold: 2053960192 httpGet: - host: "185" + host: "174" httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: 痗ȡmƴy綸_Ú8參遼ūPH - initialDelaySeconds: 655980302 - periodSeconds: 446829537 - successThreshold: -1987044888 + - name: "175" + value: "176" + path: "172" + port: "173" + scheme: ƴy綸_Ú8參遼ūPH炮 + initialDelaySeconds: 741871873 + periodSeconds: -1987044888 + successThreshold: -1638339389 tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 741871873 - name: "156" + host: "178" + port: "177" + timeoutSeconds: 446829537 + name: "145" ports: - - containerPort: -1996616480 - hostIP: "162" - hostPort: 1473141590 - name: "161" - protocol: ł/擇ɦĽ胚O醔ɍ厶 + - containerPort: 715087892 + hostIP: "151" + hostPort: -1896921306 + name: "150" + protocol: 倱< readinessProbe: exec: command: - - "190" - failureThreshold: 2063799569 + - "179" + failureThreshold: -57352147 httpGet: - host: "192" + host: "181" httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 961508537 - scheme: 黖ȓ - initialDelaySeconds: -50623103 - periodSeconds: -1350331007 - successThreshold: -1145306833 + - name: "182" + value: "183" + path: "180" + port: -1903685915 + scheme: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 + initialDelaySeconds: 128019484 + periodSeconds: -2130554644 + successThreshold: 290736426 tcpSocket: - host: "196" - port: "195" - timeoutSeconds: 1795738696 + host: "185" + port: "184" + timeoutSeconds: 431781335 resources: limits: - "": "596" + /擇ɦĽ胚O醔ɍ厶耈 T: "618" requests: - a坩O`涁İ而踪鄌eÞȦY籎顒: "45" + á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - d鲡 + - Ŭ drop: - - 贅wE@Ȗs«öʮĀ<é + - ǙÄr蛏豈 privileged: true - procMount: 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 - readOnlyRootFilesystem: false - runAsGroup: -5951050835676650382 + procMount: ȉ彂 + readOnlyRootFilesystem: true + runAsGroup: -6457174729896610090 runAsNonRoot: true - runAsUser: -7286288718856494813 + runAsUser: -3447077152667955293 seLinuxOptions: - level: "214" - role: "212" - type: "213" - user: "211" + level: "203" + role: "201" + type: "202" + user: "200" windowsOptions: - gmsaCredentialSpec: "216" - gmsaCredentialSpecName: "215" - runAsUserName: "217" + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" stdinOnce: true - terminationMessagePath: "210" - terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ + terminationMessagePath: "199" + terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: 捘ɍi縱ù墴 - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + - mountPath: "166" + mountPropagation: dʪīT捘ɍi縱ù墴1Rƥ + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "339" nodeSelector: - "346": "347" + "335": "336" overhead: U凮: "684" preemptionPolicy: 忖p様 priority: -1576968453 - priorityClassName: "408" + priorityClassName: "397" readinessGates: - conditionType: v restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "413" - schedulerName: "403" + runtimeClassName: "402" + schedulerName: "392" securityContext: fsGroup: -1778638259613624198 runAsGroup: -3042614092601658792 runAsNonRoot: false runAsUser: 3634773701753283428 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "343" + role: "341" + type: "342" + user: "340" supplementalGroups: - -2125560879532395341 sysctls: - - name: "358" - value: "359" + - name: "347" + value: "348" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "345" + gmsaCredentialSpecName: "344" + runAsUserName: "346" + serviceAccount: "338" + serviceAccountName: "337" shareProcessNamespace: false - subdomain: "362" + subdomain: "351" terminationGracePeriodSeconds: 5620818514944490121 tolerations: - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "404" + key: "393" operator: '[L' tolerationSeconds: 4456040724914385859 - value: "405" + value: "394" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -684,210 +679,212 @@ spec: ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A : BM.6-.Y_72-_--p7 maxSkew: -782776982 - topologyKey: "414" + topologyKey: "403" whenUnsatisfiable: 鈀 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 200492355 + fsType: "45" + partition: -762366823 readOnly: true - volumeID: "55" + volumeID: "44" azureDisk: - cachingMode: 躢 - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 黰eȪ嵛4$%Qɰ - readOnly: false + cachingMode: HǺƶȤ^}穠 + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 躢 + readOnly: true azureFile: - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 1632959949 + defaultMode: -460478410 items: - - key: "108" - mode: -1057154155 - path: "109" - name: "107" - optional: true + - key: "97" + mode: -2039036935 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -395029362 + defaultMode: -106644772 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1332301579 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1235524154 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "51" - resource: "101" + containerName: "89" + divisor: "457" + resource: "90" emptyDir: - medium: 繡楙¯ĦE勗E濞偘 - sizeLimit: "349" + medium: 彭聡A3fƻfʣ + sizeLimit: "115" fc: - fsType: "103" - lun: -2007808768 + fsType: "92" + lun: 441887498 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: 1648350164 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1499132872 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" - readOnly: true + endpoints: "61" + path: "62" hostPath: - path: "52" - type: ȱ蓿彭聡A3fƻf + path: "41" + type: 6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1746427184 + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 1655406148 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" - server: "63" - persistentVolumeClaim: - claimName: "74" - photonPersistentDisk: - fsType: "123" - pdID: "122" - portworxVolume: - fsType: "138" + - "58" readOnly: true - volumeID: "137" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" + persistentVolumeClaim: + claimName: "63" + readOnly: true + photonPersistentDisk: + fsType: "112" + pdID: "111" + portworxVolume: + fsType: "127" + volumeID: "126" projected: - defaultMode: 715087892 + defaultMode: -522879476 sources: - configMap: items: - - key: "133" - mode: 2020789772 - path: "134" - name: "132" + - key: "122" + mode: -1694464659 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -687313111 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 926891073 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "934" - resource: "131" + containerName: "119" + divisor: "746" + resource: "120" secret: items: - - key: "125" - mode: 273818613 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -1399063270 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: 3485267088372060587 - path: "136" + audience: "124" + expirationSeconds: -7593824971107985079 + path: "125" quobyte: - group: "117" - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + readOnly: true + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" + readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 395412881 + defaultMode: 372704313 items: - - key: "61" - mode: 1360806276 - path: "62" + - key: "50" + mode: -104666658 + path: "51" optional: true - secretName: "60" + secretName: "49" storageos: - fsType: "149" + fsType: "138" + readOnly: true secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: availableReplicas: 740158871 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "422" - reason: "421" + message: "411" + reason: "410" status: '''ƈoIǢ龞瞯å' type: "" fullyLabeledReplicas: -929473748 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json index 95c8d392de9..56f7d45382e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1305,123 +1295,122 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "419", - "generateName": "420", - "namespace": "421", - "selfLink": "422", - "uid": "Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4'", - "resourceVersion": "5909244224410561046", - "generation": 4222921737865567580, + "name": "404", + "generateName": "405", + "namespace": "406", + "selfLink": "407", + "uid": "鋡浤ɖ緖焿熣", + "resourceVersion": "7821588463673401230", + "generation": -3408884454087787958, "creationTimestamp": null, - "deletionGracePeriodSeconds": -5717089103430590081, + "deletionGracePeriodSeconds": -7871971636641833314, "labels": { - "424": "425" + "409": "410" }, "annotations": { - "426": "427" + "411": "412" }, "ownerReferences": [ { - "apiVersion": "428", - "kind": "429", - "name": "430", - "uid": "綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl", - "controller": true, + "apiVersion": "413", + "kind": "414", + "name": "415", + "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", + "controller": false, "blockOwnerDeletion": true } ], "finalizers": [ - "431" + "416" ], - "clusterName": "432", + "clusterName": "417", "managedFields": [ { - "manager": "433", - "operation": "ºDZ秶ʑ韝e溣狣愿激H\\Ȳȍŋƀ", - "apiVersion": "434", - "fields": {"435":{"436":null}} + "manager": "418", + "operation": "ÕW肤", + "apiVersion": "419" } ] }, "spec": { "accessModes": [ - "菸Fǥ楶4" + "婻漛Ǒ僕ʨƌɦ" ], "selector": { "matchLabels": { - "l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV": "o7p" + "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" }, "matchExpressions": [ { - "key": "P05._Lsu-H_.f82-8_.UdWn", - "operator": "DoesNotExist" + "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "operator": "Exists" } ] }, "resources": { "limits": { - "ųd,4;蛡媈U曰n夬LJ:B": "971" + "宥ɓ": "692" }, "requests": { - "iʍjʒu+,妧縖%Á扰": "778" + "犔kU坥;ȉv5": "156" } }, - "volumeName": "445", - "storageClassName": "446", - "volumeMode": "ȩ纾S", + "volumeName": "426", + "storageClassName": "427", + "volumeMode": "qwïźU痤ȵ", "dataSource": { - "apiGroup": "447", - "kind": "448", - "name": "449" + "apiGroup": "428", + "kind": "429", + "name": "430" } }, "status": { - "phase": "+½剎惃ȳTʬ戱PRɄɝ", + "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", "accessModes": [ - "ķ´ʑ潞Ĵ3Q蠯0ƍ\\溮Ŀ" + "\\屪kƱ" ], "capacity": { - "NZ!": "174" + "\"娥Qô!- å2:濕": "362" }, "conditions": [ { - "type": "ĩ僙", - "status": "喣JȶZy傦ɵNJ\"M!", - "lastProbeTime": "2285-12-25T00:38:18Z", - "lastTransitionTime": "2512-02-22T10:46:17Z", - "reason": "450", - "message": "451" + "type": "nj", + "status": "RY客\\ǯ'_", + "lastProbeTime": "2513-10-02T03:37:43Z", + "lastTransitionTime": "2172-12-06T22:36:31Z", + "reason": "431", + "message": "432" } ] } } ], - "serviceName": "452", - "podManagementPolicy": ":YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ", + "serviceName": "433", + "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", "updateStrategy": { - "type": "ő净湅oĒ", + "type": "瓘ȿ4", "rollingUpdate": { - "partition": -719918379 + "partition": -1578718618 } }, - "revisionHistoryLimit": -1836333731 + "revisionHistoryLimit": 1575668098 }, "status": { - "observedGeneration": -4981998708334029152, - "replicas": -572386114, - "readyReplicas": -2075681814, - "currentReplicas": 329977250, - "updatedReplicas": -758762196, - "currentRevision": "453", - "updateRevision": "454", - "collisionCount": -1055115763, + "observedGeneration": -2994706141758547943, + "replicas": -148329440, + "readyReplicas": -1823513364, + "currentReplicas": -981691190, + "updatedReplicas": 2069003631, + "currentRevision": "434", + "updateRevision": "435", + "collisionCount": -2044314719, "conditions": [ { - "type": "疅檎ǽ曖sƖTƫ雮蛱ñYȴ鴜.弊þ", - "status": "Ŷö靌瀞鈝Ń¥厀Ł8Ì所Í绝鲸Ȭ", - "lastTransitionTime": "2481-04-16T00:02:28Z", - "reason": "455", - "message": "456" + "type": "GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V", + "status": "x臥", + "lastTransitionTime": "2583-07-02T00:14:17Z", + "reason": "436", + "message": "437" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb index 55492dc841fa8d47c536da67fb4cf2a157e4d1ac..89af224083431ac3e64505c73e471049b2eca354 100644 GIT binary patch literal 6967 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 literal 6811 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 K*=3u_Zu)<4Yz%b( diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml index cc3a1a999e5..e30dce7f233 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,952 +25,941 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - podManagementPolicy: :YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ - replicas: -1978186127 - revisionHistoryLimit: -1836333731 + podManagementPolicy: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + replicas: 896585016 + revisionHistoryLimit: 1575668098 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F - serviceName: "452" + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 + serviceName: "433" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" updateStrategy: rollingUpdate: - partition: -719918379 - type: ő净湅oĒ + partition: -1578718618 + type: 瓘ȿ4 volumeClaimTemplates: - metadata: annotations: - "426": "427" - clusterName: "432" + "411": "412" + clusterName: "417" creationTimestamp: null - deletionGracePeriodSeconds: -5717089103430590081 + deletionGracePeriodSeconds: -7871971636641833314 finalizers: - - "431" - generateName: "420" - generation: 4222921737865567580 + - "416" + generateName: "405" + generation: -3408884454087787958 labels: - "424": "425" + "409": "410" managedFields: - - apiVersion: "434" - fields: - "435": - "436": null - manager: "433" - operation: ºDZ秶ʑ韝e溣狣愿激H\Ȳȍŋƀ - name: "419" - namespace: "421" + - apiVersion: "419" + manager: "418" + operation: ÕW肤 + name: "404" + namespace: "406" ownerReferences: - - apiVersion: "428" + - apiVersion: "413" blockOwnerDeletion: true - controller: true - kind: "429" - name: "430" - uid: 綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl - resourceVersion: "5909244224410561046" - selfLink: "422" - uid: Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4' + controller: false + kind: "414" + name: "415" + uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ + resourceVersion: "7821588463673401230" + selfLink: "407" + uid: 鋡浤ɖ緖焿熣 spec: accessModes: - - 菸Fǥ楶4 + - 婻漛Ǒ僕ʨƌɦ dataSource: - apiGroup: "447" - kind: "448" - name: "449" + apiGroup: "428" + kind: "429" + name: "430" resources: limits: - ųd,4;蛡媈U曰n夬LJ:B: "971" + 宥ɓ: "692" requests: - iʍjʒu+,妧縖%Á扰: "778" + 犔kU坥;ȉv5: "156" selector: matchExpressions: - - key: P05._Lsu-H_.f82-8_.UdWn - operator: DoesNotExist + - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + operator: Exists matchLabels: - l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV: o7p - storageClassName: "446" - volumeMode: ȩ纾S - volumeName: "445" + ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H + storageClassName: "427" + volumeMode: qwïźU痤ȵ + volumeName: "426" status: accessModes: - - ķ´ʑ潞Ĵ3Q蠯0ƍ\溮Ŀ + - \屪kƱ capacity: - NZ!: "174" + '"娥Qô!- å2:濕': "362" conditions: - - lastProbeTime: "2285-12-25T00:38:18Z" - lastTransitionTime: "2512-02-22T10:46:17Z" - message: "451" - reason: "450" - status: 喣JȶZy傦ɵNJ"M! - type: ĩ僙 - phase: +½剎惃ȳTʬ戱PRɄɝ + - lastProbeTime: "2513-10-02T03:37:43Z" + lastTransitionTime: "2172-12-06T22:36:31Z" + message: "432" + reason: "431" + status: RY客\ǯ'_ + type: nj + phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj status: - collisionCount: -1055115763 + collisionCount: -2044314719 conditions: - - lastTransitionTime: "2481-04-16T00:02:28Z" - message: "456" - reason: "455" - status: Ŷö靌瀞鈝Ń¥厀Ł8Ì所Í绝鲸Ȭ - type: 疅檎ǽ曖sƖTƫ雮蛱ñYȴ鴜.弊þ - currentReplicas: 329977250 - currentRevision: "453" - observedGeneration: -4981998708334029152 - readyReplicas: -2075681814 - replicas: -572386114 - updateRevision: "454" - updatedReplicas: -758762196 + - lastTransitionTime: "2583-07-02T00:14:17Z" + message: "437" + reason: "436" + status: x臥 + type: GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V + currentReplicas: -981691190 + currentRevision: "434" + observedGeneration: -2994706141758547943 + readyReplicas: -1823513364 + replicas: -148329440 + updateRevision: "435" + updatedReplicas: 2069003631 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.json index e3d640338e6..012c8ccf892 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,11 +35,10 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "data": {"apiVersion":"example.com/v1","kind":"CustomType","spec":{"replicas":1},"status":{"available":1}}, - "revision": 1089963290653861247 + "revision": -7716837448637516924 } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.pb index fcfc8003a90877d3ae1042e443943b510962f68d..e1b18182aa5081fb387a98ee7bf63cab7c4c07bf 100644 GIT binary patch delta 76 zcmV-S0JH!40>}c8DJq!)3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h iHZm|Xk#tl6E0M`7lLi524ut2OnZD-tRY3JwYa gF*p(k3I+-SF*y083IUIRF3v diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.yaml index 0dde208b1d0..83e3045cfe3 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.ControllerRevision.yaml @@ -21,9 +21,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -35,7 +32,7 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e -revision: 1089963290653861247 + uid: "7" +revision: -7716837448637516924 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json index 81d36e22c6f..f361adb3b8c 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1303,36 +1293,34 @@ } }, "strategy": { - "type": "龞瞯å檳ė\u003e", "rollingUpdate": { } }, - "minReadySeconds": -416969112, - "revisionHistoryLimit": -2111453451, - "paused": true, + "minReadySeconds": 997447044, + "revisionHistoryLimit": 989524452, "rollbackTo": { - "revision": -851580968322748562 + "revision": -7811637368862163847 }, - "progressDeadlineSeconds": -1009087543 + "progressDeadlineSeconds": 1774123594 }, "status": { - "observedGeneration": 4222921737865567580, - "replicas": 1393016848, - "updatedReplicas": 952328575, - "readyReplicas": 340269252, - "availableReplicas": -2071091268, - "unavailableReplicas": -2111356809, + "observedGeneration": -4950488263500864484, + "replicas": 67329694, + "updatedReplicas": 1689648303, + "readyReplicas": -1121580186, + "availableReplicas": -1521312599, + "unavailableReplicas": 129237050, "conditions": [ { - "type": "Rġ磸蛕ʟ?Ȋ", - "status": "^翜", - "lastUpdateTime": "2753-11-07T08:05:13Z", - "lastTransitionTime": "2188-09-01T04:13:44Z", - "reason": "419", - "message": "420" + "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö", + "status": "2ț", + "lastUpdateTime": "2733-02-09T15:36:31Z", + "lastTransitionTime": "2615-10-02T05:14:27Z", + "reason": "404", + "message": "405" } ], - "collisionCount": 91748144 + "collisionCount": -612321491 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb index 7505446ac4beb2bf7d3b40b85e35355020709ac2..8181bcb6f9bc40bef2a64e20b175a7fea4471ee3 100644 GIT binary patch literal 6377 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 literal 6115 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 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml index 775cda67933..5fea07e3b29 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,888 +25,878 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: -416969112 - paused: true - progressDeadlineSeconds: -1009087543 - replicas: -1978186127 - revisionHistoryLimit: -2111453451 + minReadySeconds: 997447044 + progressDeadlineSeconds: 1774123594 + replicas: 896585016 + revisionHistoryLimit: 989524452 rollbackTo: - revision: -851580968322748562 + revision: -7811637368862163847 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} - type: 龞瞯å檳ė> template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: - availableReplicas: -2071091268 - collisionCount: 91748144 + availableReplicas: -1521312599 + collisionCount: -612321491 conditions: - - lastTransitionTime: "2188-09-01T04:13:44Z" - lastUpdateTime: "2753-11-07T08:05:13Z" - message: "420" - reason: "419" - status: ^翜 - type: Rġ磸蛕ʟ?Ȋ - observedGeneration: 4222921737865567580 - readyReplicas: 340269252 - replicas: 1393016848 - unavailableReplicas: -2111356809 - updatedReplicas: 952328575 + - lastTransitionTime: "2615-10-02T05:14:27Z" + lastUpdateTime: "2733-02-09T15:36:31Z" + message: "405" + reason: "404" + status: 2ț + type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' + observedGeneration: -4950488263500864484 + readyReplicas: -1121580186 + replicas: 67329694 + unavailableReplicas: 129237050 + updatedReplicas: 1689648303 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.json index 8a42011e115..5165a088f3d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,19 +35,18 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -2052872833 + "replicas": -595102844 }, "status": { - "replicas": -125651156, + "replicas": 70007838, "selector": { - "24": "25" + "18": "19" }, - "targetSelector": "26" + "targetSelector": "20" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.pb index 331be8c0b4d4157c7a268000cffaa05b1a97077e..ae29cd6343bebdb81aa1230cd4d7e1f1f044f7ba 100644 GIT binary patch delta 96 zcmZ3=^oDVQjMgbeuBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a z6VpQ&wI}Y;RukgpXn8*O$>0A#z$himG4IC)MIjC@CPND$CPPapCL;qW1|Ui-o-jM^>Di zq4#3Odb19~YCM zg%Af98<4gXVi4ly_Fup diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.yaml index 03143bfd970..421301c3a80 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Scale.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,13 +25,13 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - replicas: -2052872833 + replicas: -595102844 status: - replicas: -125651156 + replicas: 70007838 selector: - "24": "25" - targetSelector: "26" + "18": "19" + targetSelector: "20" diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json index 086ca6fa391..27e2eb713e3 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1305,123 +1295,122 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "419", - "generateName": "420", - "namespace": "421", - "selfLink": "422", - "uid": "Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4'", - "resourceVersion": "5909244224410561046", - "generation": 4222921737865567580, + "name": "404", + "generateName": "405", + "namespace": "406", + "selfLink": "407", + "uid": "鋡浤ɖ緖焿熣", + "resourceVersion": "7821588463673401230", + "generation": -3408884454087787958, "creationTimestamp": null, - "deletionGracePeriodSeconds": -5717089103430590081, + "deletionGracePeriodSeconds": -7871971636641833314, "labels": { - "424": "425" + "409": "410" }, "annotations": { - "426": "427" + "411": "412" }, "ownerReferences": [ { - "apiVersion": "428", - "kind": "429", - "name": "430", - "uid": "綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl", - "controller": true, + "apiVersion": "413", + "kind": "414", + "name": "415", + "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", + "controller": false, "blockOwnerDeletion": true } ], "finalizers": [ - "431" + "416" ], - "clusterName": "432", + "clusterName": "417", "managedFields": [ { - "manager": "433", - "operation": "ºDZ秶ʑ韝e溣狣愿激H\\Ȳȍŋƀ", - "apiVersion": "434", - "fields": {"435":{"436":null}} + "manager": "418", + "operation": "ÕW肤", + "apiVersion": "419" } ] }, "spec": { "accessModes": [ - "菸Fǥ楶4" + "婻漛Ǒ僕ʨƌɦ" ], "selector": { "matchLabels": { - "l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV": "o7p" + "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" }, "matchExpressions": [ { - "key": "P05._Lsu-H_.f82-8_.UdWn", - "operator": "DoesNotExist" + "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "operator": "Exists" } ] }, "resources": { "limits": { - "ųd,4;蛡媈U曰n夬LJ:B": "971" + "宥ɓ": "692" }, "requests": { - "iʍjʒu+,妧縖%Á扰": "778" + "犔kU坥;ȉv5": "156" } }, - "volumeName": "445", - "storageClassName": "446", - "volumeMode": "ȩ纾S", + "volumeName": "426", + "storageClassName": "427", + "volumeMode": "qwïźU痤ȵ", "dataSource": { - "apiGroup": "447", - "kind": "448", - "name": "449" + "apiGroup": "428", + "kind": "429", + "name": "430" } }, "status": { - "phase": "+½剎惃ȳTʬ戱PRɄɝ", + "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", "accessModes": [ - "ķ´ʑ潞Ĵ3Q蠯0ƍ\\溮Ŀ" + "\\屪kƱ" ], "capacity": { - "NZ!": "174" + "\"娥Qô!- å2:濕": "362" }, "conditions": [ { - "type": "ĩ僙", - "status": "喣JȶZy傦ɵNJ\"M!", - "lastProbeTime": "2285-12-25T00:38:18Z", - "lastTransitionTime": "2512-02-22T10:46:17Z", - "reason": "450", - "message": "451" + "type": "nj", + "status": "RY客\\ǯ'_", + "lastProbeTime": "2513-10-02T03:37:43Z", + "lastTransitionTime": "2172-12-06T22:36:31Z", + "reason": "431", + "message": "432" } ] } } ], - "serviceName": "452", - "podManagementPolicy": ":YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ", + "serviceName": "433", + "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", "updateStrategy": { - "type": "ő净湅oĒ", + "type": "瓘ȿ4", "rollingUpdate": { - "partition": -719918379 + "partition": -1578718618 } }, - "revisionHistoryLimit": -1836333731 + "revisionHistoryLimit": 1575668098 }, "status": { - "observedGeneration": 1030082557825321530, - "replicas": 818138068, - "readyReplicas": 1897063744, - "currentReplicas": -798518533, - "updatedReplicas": 1614872621, - "currentRevision": "453", - "updateRevision": "454", - "collisionCount": -1299011957, + "observedGeneration": 8488467370342917811, + "replicas": -1786394556, + "readyReplicas": -1633381902, + "currentReplicas": 125606756, + "updatedReplicas": 120643071, + "currentRevision": "434", + "updateRevision": "435", + "collisionCount": -126974464, "conditions": [ { - "type": "ěr郷ljI", - "status": "Tƫ雮蛱ñYȴ鴜.", - "lastTransitionTime": "2646-09-18T12:59:06Z", - "reason": "455", - "message": "456" + "type": "5ƞɔJ灭ƳĽ", + "status": "ɭ锻ó/階", + "lastTransitionTime": "2478-01-26T13:55:29Z", + "reason": "436", + "message": "437" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb index 229b6074aaebaeef49666ea85766365fd10a74fc..ca358d314643f79e395ef0c517116880c8ea90f3 100644 GIT binary patch literal 6951 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 F{{x}y&!7MR literal 6756 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 O14~6Lzhp634gU|jz~HR_ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml index 060a28f8912..577e49051c0 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,952 +25,941 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - podManagementPolicy: :YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ - replicas: -1978186127 - revisionHistoryLimit: -1836333731 + podManagementPolicy: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + replicas: 896585016 + revisionHistoryLimit: 1575668098 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F - serviceName: "452" + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 + serviceName: "433" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" updateStrategy: rollingUpdate: - partition: -719918379 - type: ő净湅oĒ + partition: -1578718618 + type: 瓘ȿ4 volumeClaimTemplates: - metadata: annotations: - "426": "427" - clusterName: "432" + "411": "412" + clusterName: "417" creationTimestamp: null - deletionGracePeriodSeconds: -5717089103430590081 + deletionGracePeriodSeconds: -7871971636641833314 finalizers: - - "431" - generateName: "420" - generation: 4222921737865567580 + - "416" + generateName: "405" + generation: -3408884454087787958 labels: - "424": "425" + "409": "410" managedFields: - - apiVersion: "434" - fields: - "435": - "436": null - manager: "433" - operation: ºDZ秶ʑ韝e溣狣愿激H\Ȳȍŋƀ - name: "419" - namespace: "421" + - apiVersion: "419" + manager: "418" + operation: ÕW肤 + name: "404" + namespace: "406" ownerReferences: - - apiVersion: "428" + - apiVersion: "413" blockOwnerDeletion: true - controller: true - kind: "429" - name: "430" - uid: 綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl - resourceVersion: "5909244224410561046" - selfLink: "422" - uid: Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4' + controller: false + kind: "414" + name: "415" + uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ + resourceVersion: "7821588463673401230" + selfLink: "407" + uid: 鋡浤ɖ緖焿熣 spec: accessModes: - - 菸Fǥ楶4 + - 婻漛Ǒ僕ʨƌɦ dataSource: - apiGroup: "447" - kind: "448" - name: "449" + apiGroup: "428" + kind: "429" + name: "430" resources: limits: - ųd,4;蛡媈U曰n夬LJ:B: "971" + 宥ɓ: "692" requests: - iʍjʒu+,妧縖%Á扰: "778" + 犔kU坥;ȉv5: "156" selector: matchExpressions: - - key: P05._Lsu-H_.f82-8_.UdWn - operator: DoesNotExist + - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + operator: Exists matchLabels: - l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV: o7p - storageClassName: "446" - volumeMode: ȩ纾S - volumeName: "445" + ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H + storageClassName: "427" + volumeMode: qwïźU痤ȵ + volumeName: "426" status: accessModes: - - ķ´ʑ潞Ĵ3Q蠯0ƍ\溮Ŀ + - \屪kƱ capacity: - NZ!: "174" + '"娥Qô!- å2:濕': "362" conditions: - - lastProbeTime: "2285-12-25T00:38:18Z" - lastTransitionTime: "2512-02-22T10:46:17Z" - message: "451" - reason: "450" - status: 喣JȶZy傦ɵNJ"M! - type: ĩ僙 - phase: +½剎惃ȳTʬ戱PRɄɝ + - lastProbeTime: "2513-10-02T03:37:43Z" + lastTransitionTime: "2172-12-06T22:36:31Z" + message: "432" + reason: "431" + status: RY客\ǯ'_ + type: nj + phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj status: - collisionCount: -1299011957 + collisionCount: -126974464 conditions: - - lastTransitionTime: "2646-09-18T12:59:06Z" - message: "456" - reason: "455" - status: Tƫ雮蛱ñYȴ鴜. - type: ěr郷ljI - currentReplicas: -798518533 - currentRevision: "453" - observedGeneration: 1030082557825321530 - readyReplicas: 1897063744 - replicas: 818138068 - updateRevision: "454" - updatedReplicas: 1614872621 + - lastTransitionTime: "2478-01-26T13:55:29Z" + message: "437" + reason: "436" + status: ɭ锻ó/階 + type: 5ƞɔJ灭ƳĽ + currentReplicas: 125606756 + currentRevision: "434" + observedGeneration: 8488467370342917811 + readyReplicas: -1633381902 + replicas: -1786394556 + updateRevision: "435" + updatedReplicas: 120643071 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.json index 93058bdc244..2c6a7fc8db7 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,11 +35,10 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "data": {"apiVersion":"example.com/v1","kind":"CustomType","spec":{"replicas":1},"status":{"available":1}}, - "revision": 1089963290653861247 + "revision": -7716837448637516924 } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.pb index 6f73ac6967ddfbc5480fef793fdce1d6b7f47caa..87c9647a49b7dff59cdb142a7738dee2f2fc33be 100644 GIT binary patch delta 76 zcmV-S0JH!40>}c8DJq!)3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h iHZm|Xk#tl6E0M`7lLi524ut2OnZD-tRY3JwYa gF*p(k3I+-SF*y083IUIRF3v diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.yaml index 186ddf8fc2c..4ed96810dde 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ControllerRevision.yaml @@ -21,9 +21,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -35,7 +32,7 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e -revision: 1089963290653861247 + uid: "7" +revision: -7716837448637516924 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json index d2f016682d7..24a0440dc8f 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,262 +35,260 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "selector": { "matchLabels": { - "9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G": "0M.y.g" + "8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4" }, "matchExpressions": [ { - "key": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B", + "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", "operator": "In", "values": [ - "Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2" + "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" ] } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "ƐP_痸荎僋bŭDz鯰硰{舁吉蓨O", - "resourceVersion": "11397677413428459614", - "generation": 3974191383006284807, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "TʡȂŏ{sǡƟ", + "resourceVersion": "1698285396218902212", + "generation": -4139900758039117471, "creationTimestamp": null, - "deletionGracePeriodSeconds": 5087509039175129589, + "deletionGracePeriodSeconds": 7534629739119643351, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": ",Q捇ȸ{+ɸ殁", - "controller": true, + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "^", + "controller": false, "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "ĪȸŹăȲϤĦʅ芝", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "_Ĭ艥\u003c" + "path": "41", + "type": "" }, "emptyDir": { - "medium": "Ň'Ğİ*", - "sizeLimit": "695" + "medium": "ɹ坼É/pȿ", + "sizeLimit": "804" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1706940973 + "pdName": "42", + "fsType": "43", + "partition": -1318752360 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 1637061888, - "readOnly": true + "volumeID": "44", + "fsType": "45", + "partition": -2007808768 }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1092501327 + "key": "50", + "path": "51", + "mode": 228756891 } ], - "defaultMode": 62108019, - "optional": true + "defaultMode": 1233814916, + "optional": false }, "nfs": { - "server": "63", - "path": "64", + "server": "52", + "path": "53", "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -1884322607, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 408756018, + "iscsiInterface": "56", + "fsType": "57", + "readOnly": true, "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, + "chapAuthSession": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73" + "endpoints": "61", + "path": "62" }, "persistentVolumeClaim": { - "claimName": "74" + "claimName": "63", + "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" + "name": "70" }, "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "40" + "containerName": "89", + "resource": "90", + "divisor": "915" }, - "mode": -332563744 + "mode": -1768075156 } ], - "defaultMode": -861583888 + "defaultMode": -868808281 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": 324963473, - "fsType": "103", - "readOnly": true, + "lun": 570501002, + "fsType": "92", "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106", + "secretName": "94", + "shareName": "95", "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -885708332 + "key": "97", + "path": "98", + "mode": 2020789772 } ], - "defaultMode": -1853411528, - "optional": true + "defaultMode": 952979935, + "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "啞川J缮ǚb", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "k ź贩j瀉ǚrǜnh0åȂ", + "fsType": "110", "readOnly": false, - "kind": "ʬ" + "kind": "nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 1493217478 + "key": "114", + "path": "115", + "mode": 675406340 } ], "optional": false @@ -298,356 +296,133 @@ "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "763" + "containerName": "119", + "resource": "120", + "divisor": "461" }, - "mode": -1617414299 + "mode": -1618937335 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": -2137658152 + "key": "122", + "path": "123", + "mode": -1126738259 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -6753602166099171537, - "path": "136" + "audience": "124", + "expirationSeconds": -6345861634934949644, + "path": "125" } } ], - "defaultMode": -740816174 + "defaultMode": 480521693 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138" + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", - "readOnly": false, - "fsType": "152", + "driver": "140", + "readOnly": true, + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 1435152179, - "containerPort": -343150875, - "protocol": "ɥ³ƞsɁ8^ʥǔTĪȸŹă", - "hostIP": "162" + "name": "150", + "hostPort": -1510026905, + "containerPort": 437857734, + "protocol": "Rƥ贫d飼$俊跾|@?鷅b", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", - "optional": true + "name": "153", + "optional": false }, "secretRef": { - "name": "165", - "optional": true - } - } - ], - "env": [ - { - "name": "166", - "value": "167", - "valueFrom": { - "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" - }, - "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "770" - }, - "configMapKeyRef": { - "name": "172", - "key": "173", - "optional": true - }, - "secretKeyRef": { - "name": "174", - "key": "175", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "Z": "482" - }, - "requests": { - "ŏ{": "980" - } - }, - "volumeMounts": [ - { - "name": "176", - "readOnly": true, - "mountPath": "177", - "subPath": "178", - "mountPropagation": "ĕʄő芖{|", - "subPathExpr": "179" - } - ], - "volumeDevices": [ - { - "name": "180", - "devicePath": "181" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "182" - ] - }, - "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "pȿŘ阌Ŗ怳冘HǺƶ", - "httpHeaders": [ - { - "name": "186", - "value": "187" - } - ] - }, - "tcpSocket": { - "port": "188", - "host": "189" - }, - "initialDelaySeconds": 1366561945, - "timeoutSeconds": 657514697, - "periodSeconds": 408756018, - "successThreshold": 437263194, - "failureThreshold": -1116811061 - }, - "readinessProbe": { - "exec": { - "command": [ - "190" - ] - }, - "httpGet": { - "path": "191", - "port": 1873902270, - "host": "192", - "scheme": "?Qȫş", - "httpHeaders": [ - { - "name": "193", - "value": "194" - } - ] - }, - "tcpSocket": { - "port": 2091150210, - "host": "195" - }, - "initialDelaySeconds": -144591150, - "timeoutSeconds": 673378190, - "periodSeconds": 1701891633, - "successThreshold": -1768075156, - "failureThreshold": 273818613 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "196" - ] - }, - "httpGet": { - "path": "197", - "port": "198", - "host": "199", - "scheme": "錯ƶ", - "httpHeaders": [ - { - "name": "200", - "value": "201" - } - ] - }, - "tcpSocket": { - "port": "202", - "host": "203" - } - }, - "preStop": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": 2110181803, - "host": "206", - "scheme": "\u0026蕭k ź贩j瀉ǚrǜnh0å", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - } - } - }, - "terminationMessagePath": "211", - "terminationMessagePolicy": "恰nj揠8lj黳鈫ʕ", - "imagePullPolicy": "衧ȇe媹H", - "securityContext": { - "capabilities": { - "add": [ - "" - ], - "drop": [ - "臷Ľð»ųKĵ\u00264ʑ%:;栍dʪ" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "212", - "role": "213", - "type": "214", - "level": "215" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "216", - "gmsaCredentialSpec": "217", - "runAsUserName": "218" - }, - "runAsUser": 6743064379422188907, - "runAsGroup": 3541984878507294780, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Rƥ贫d飼$俊跾|@?鷅b" - }, - "stdin": true, - "tty": true - } - ], - "containers": [ - { - "name": "219", - "image": "220", - "command": [ - "221" - ], - "args": [ - "222" - ], - "workingDir": "223", - "ports": [ - { - "name": "224", - "hostPort": -1167973499, - "containerPort": 692541847, - "protocol": "Gưoɘ檲ɨ銦妰黖ȓƇ", - "hostIP": "225" - } - ], - "envFrom": [ - { - "prefix": "226", - "configMapRef": { - "name": "227", - "optional": true - }, - "secretRef": { - "name": "228", + "name": "154", "optional": false } } ], "env": [ { - "name": "229", - "value": "230", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "231", - "fieldPath": "232" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "233", - "resource": "234", - "divisor": "385" + "containerName": "159", + "resource": "160", + "divisor": "468" }, "configMapKeyRef": { - "name": "235", - "key": "236", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "237", - "key": "238", + "name": "163", + "key": "164", "optional": true } } @@ -655,432 +430,657 @@ ], "resources": { "limits": { - "鎷卩蝾H": "824" + "檲ɨ銦妰黖ȓƇ$缔獵偐ę腬": "646" }, "requests": { - "蕵ɢ": "684" + "湨": "803" } }, "volumeMounts": [ { - "name": "239", - "mountPath": "240", - "subPath": "241", - "mountPropagation": "2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN", - "subPathExpr": "242" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "卩蝾", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "243", - "devicePath": "244" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "245" + "171" ] }, "httpGet": { - "path": "246", - "port": "247", - "host": "248", - "scheme": "}", + "path": "172", + "port": "173", + "host": "174", "httpHeaders": [ { - "name": "249", - "value": "250" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "251", - "host": "252" + "port": "177", + "host": "178" }, - "initialDelaySeconds": 1030243869, - "timeoutSeconds": -1080853187, - "periodSeconds": -185042403, - "successThreshold": -374922344, - "failureThreshold": -31530684 + "initialDelaySeconds": 1805144649, + "timeoutSeconds": -606111218, + "periodSeconds": 1403721475, + "successThreshold": 519906483, + "failureThreshold": 1466047181 }, "readinessProbe": { "exec": { "command": [ - "253" + "179" ] }, "httpGet": { - "path": "254", - "port": "255", - "host": "256", + "path": "180", + "port": "181", + "host": "182", + "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", "httpHeaders": [ { - "name": "257", - "value": "258" + "name": "183", + "value": "184" } ] }, "tcpSocket": { - "port": -289900366, - "host": "259" + "port": -337353552, + "host": "185" }, - "initialDelaySeconds": 559781916, - "timeoutSeconds": -1703360754, - "periodSeconds": -1569009987, - "successThreshold": -1053603859, - "failureThreshold": 1471432155 + "initialDelaySeconds": -1724160601, + "timeoutSeconds": -1158840571, + "periodSeconds": 1435507444, + "successThreshold": -1430577593, + "failureThreshold": 524249411 }, "lifecycle": { "postStart": { "exec": { "command": [ - "260" + "186" ] }, "httpGet": { - "path": "261", - "port": "262", - "host": "263", - "scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾", + "path": "187", + "port": "188", + "host": "189", "httpHeaders": [ { - "name": "264", - "value": "265" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": "266", - "host": "267" + "port": 559781916, + "host": "192" } }, "preStop": { "exec": { "command": [ - "268" + "193" ] }, "httpGet": { - "path": "269", - "port": -1718681455, - "host": "270", - "scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.", + "path": "194", + "port": 1150375229, + "host": "195", + "scheme": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", "httpHeaders": [ { - "name": "271", - "value": "272" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": "273", - "host": "274" + "port": -1696471293, + "host": "198" } } }, - "terminationMessagePath": "275", - "terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹", - "imagePullPolicy": "ȃv渟7", + "terminationMessagePath": "199", + "terminationMessagePolicy": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", + "imagePullPolicy": "Ŵ廷s{Ⱦdz@", "securityContext": { "capabilities": { "add": [ - "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪" + "ʋŀ樺ȃv渟7¤7d" ], "drop": [ - "mɩC[ó瓧" + "ƯĖ漘Z剚敍0)鈼¬麄p呝T" ] }, "privileged": true, "seLinuxOptions": { - "user": "276", - "role": "277", - "type": "278", - "level": "279" + "user": "200", + "role": "201", + "type": "202", + "level": "203" }, "windowsOptions": { - "gmsaCredentialSpecName": "280", - "gmsaCredentialSpec": "281", - "runAsUserName": "282" + "gmsaCredentialSpecName": "204", + "gmsaCredentialSpec": "205", + "runAsUserName": "206" }, - "runAsUser": -6244232606031635964, - "runAsGroup": -2537458620093904059, - "runAsNonRoot": false, + "runAsUser": 4181787587415673530, + "runAsGroup": 825262458636305509, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ɟ踡肒Ao/樝fw[Řż丩Ž" + "procMount": "瓧嫭塓烀罁胾^拜" }, + "stdin": true, "stdinOnce": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "283", - "image": "284", + "name": "207", + "image": "208", "command": [ - "285" + "209" ], "args": [ - "286" + "210" ], - "workingDir": "287", + "workingDir": "211", "ports": [ { - "name": "288", - "hostPort": -1815868713, - "containerPort": 105707873, - "protocol": "ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[", - "hostIP": "289" + "name": "212", + "hostPort": 1385030458, + "containerPort": 427196286, + "protocol": "o/樝fw[Řż丩Ž", + "hostIP": "213" } ], "envFrom": [ { - "prefix": "290", + "prefix": "214", "configMapRef": { - "name": "291", + "name": "215", "optional": false }, "secretRef": { - "name": "292", - "optional": false + "name": "216", + "optional": true } } ], "env": [ { - "name": "293", - "value": "294", + "name": "217", + "value": "218", "valueFrom": { "fieldRef": { - "apiVersion": "295", - "fieldPath": "296" + "apiVersion": "219", + "fieldPath": "220" }, "resourceFieldRef": { - "containerName": "297", - "resource": "298", - "divisor": "18" + "containerName": "221", + "resource": "222", + "divisor": "932" }, "configMapKeyRef": { - "name": "299", - "key": "300", + "name": "223", + "key": "224", "optional": false }, "secretKeyRef": { - "name": "301", - "key": "302", - "optional": false + "name": "225", + "key": "226", + "optional": true } } } ], "resources": { "limits": { - "@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫rʤî": "366" + "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę": "638" }, "requests": { - ".v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0矀": "738" + "ǂ\u003e5姣\u003e懔%熷": "440" } }, "volumeMounts": [ { - "name": "303", + "name": "227", "readOnly": true, - "mountPath": "304", - "subPath": "305", - "mountPropagation": "|懥ƖN粕擓ƖHVe熼", - "subPathExpr": "306" + "mountPath": "228", + "subPath": "229", + "mountPropagation": "奺Ȋ礶惇¸t颟.鵫ǚ", + "subPathExpr": "230" } ], "volumeDevices": [ { - "name": "307", - "devicePath": "308" + "name": "231", + "devicePath": "232" } ], "livenessProbe": { "exec": { "command": [ - "309" + "233" ] }, "httpGet": { - "path": "310", - "port": "311", - "host": "312", - "scheme": "晒嶗UÐ_ƮA攤/ɸɎ R§耶FfBl", + "path": "234", + "port": "235", + "host": "236", + "scheme": "Ȥ藠3.", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "237", + "value": "238" } ] }, "tcpSocket": { - "port": 1074486306, - "host": "315" + "port": "239", + "host": "240" }, - "initialDelaySeconds": 630004123, - "timeoutSeconds": -984241405, - "periodSeconds": -1654678802, - "successThreshold": -625194347, - "failureThreshold": -720450949 + "initialDelaySeconds": -1389418722, + "timeoutSeconds": 851018015, + "periodSeconds": 596942561, + "successThreshold": -1880980172, + "failureThreshold": -161485752 }, "readinessProbe": { "exec": { "command": [ - "316" + "241" ] }, "httpGet": { - "path": "317", - "port": -1543701088, - "host": "318", - "scheme": "矡ȶ网棊ʢ=wǕɳɷ9Ì崟¿", + "path": "242", + "port": "243", + "host": "244", + "scheme": "«丯Ƙ枛牐ɺ皚", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "245", + "value": "246" } ] }, "tcpSocket": { - "port": -1423854443, - "host": "321" + "port": -1934111455, + "host": "247" }, - "initialDelaySeconds": -1798849477, - "timeoutSeconds": -1017263912, - "periodSeconds": 852780575, - "successThreshold": -1252938503, - "failureThreshold": 893823156 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438 }, "lifecycle": { "postStart": { "exec": { "command": [ - "322" + "248" ] }, "httpGet": { - "path": "323", - "port": "324", - "host": "325", - "scheme": "曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷", + "path": "249", + "port": "250", + "host": "251", + "scheme": "'", "httpHeaders": [ { - "name": "326", - "value": "327" + "name": "252", + "value": "253" } ] }, "tcpSocket": { - "port": "328", - "host": "329" + "port": -801430937, + "host": "254" } }, "preStop": { "exec": { "command": [ - "330" + "255" ] }, "httpGet": { - "path": "331", - "port": "332", - "host": "333", + "path": "256", + "port": 1810980158, + "host": "257", + "scheme": "_ƮA攤/ɸɎ R§耶FfBl", "httpHeaders": [ { - "name": "334", - "value": "335" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": 1943028037, - "host": "336" + "port": 1074486306, + "host": "260" } } }, - "terminationMessagePath": "337", - "imagePullPolicy": "犵殇ŕ-Ɂ圯W:ĸ輦唊#", + "terminationMessagePath": "261", + "terminationMessagePolicy": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ", + "imagePullPolicy": "Ǖɳɷ9Ì崟¿瘦ɖ緕", "securityContext": { "capabilities": { "add": [ - "ʩȂ4ē鐭#" + "勅跦Opwǩ曬逴褜1Ø" ], "drop": [ - "ơŸ8T " + "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "262", + "role": "263", + "type": "264", + "level": "265" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "266", + "gmsaCredentialSpec": "267", + "runAsUserName": "268" + }, + "runAsUser": -6470941481344047265, + "runAsGroup": 1373384864388370080, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "W:ĸ輦唊#v" + }, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "269", + "image": "270", + "command": [ + "271" + ], + "args": [ + "272" + ], + "workingDir": "273", + "ports": [ + { + "name": "274", + "hostPort": 2058122084, + "containerPort": -379385405, + "protocol": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", + "hostIP": "275" + } + ], + "envFrom": [ + { + "prefix": "276", + "configMapRef": { + "name": "277", + "optional": true + }, + "secretRef": { + "name": "278", + "optional": false + } + } + ], + "env": [ + { + "name": "279", + "value": "280", + "valueFrom": { + "fieldRef": { + "apiVersion": "281", + "fieldPath": "282" + }, + "resourceFieldRef": { + "containerName": "283", + "resource": "284", + "divisor": "355" + }, + "configMapKeyRef": { + "name": "285", + "key": "286", + "optional": false + }, + "secretKeyRef": { + "name": "287", + "key": "288", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "|E剒蔞|表徶đ寳议Ƭƶ氩": "337" + }, + "requests": { + "": "124" + } + }, + "volumeMounts": [ + { + "name": "289", + "mountPath": "290", + "subPath": "291", + "mountPropagation": "簳°Ļǟi\u0026皥贸", + "subPathExpr": "292" + } + ], + "volumeDevices": [ + { + "name": "293", + "devicePath": "294" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "295" + ] + }, + "httpGet": { + "path": "296", + "port": "297", + "host": "298", + "scheme": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", + "httpHeaders": [ + { + "name": "299", + "value": "300" + } + ] + }, + "tcpSocket": { + "port": "301", + "host": "302" + }, + "initialDelaySeconds": 2066735093, + "timeoutSeconds": -190183379, + "periodSeconds": -940334911, + "successThreshold": -341287812, + "failureThreshold": 2030115750 + }, + "readinessProbe": { + "exec": { + "command": [ + "303" + ] + }, + "httpGet": { + "path": "304", + "port": "305", + "host": "306", + "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "httpHeaders": [ + { + "name": "307", + "value": "308" + } + ] + }, + "tcpSocket": { + "port": 458427807, + "host": "309" + }, + "initialDelaySeconds": -1971421078, + "timeoutSeconds": 1905181464, + "periodSeconds": -1730959016, + "successThreshold": 1272940694, + "failureThreshold": -385597677 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "310" + ] + }, + "httpGet": { + "path": "311", + "port": "312", + "host": "313", + "scheme": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "httpHeaders": [ + { + "name": "314", + "value": "315" + } + ] + }, + "tcpSocket": { + "port": "316", + "host": "317" + } + }, + "preStop": { + "exec": { + "command": [ + "318" + ] + }, + "httpGet": { + "path": "319", + "port": "320", + "host": "321", + "scheme": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": -1187301925, + "host": "324" + } + } + }, + "terminationMessagePath": "325", + "terminationMessagePolicy": "Őnj汰8ŕ", + "imagePullPolicy": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "securityContext": { + "capabilities": { + "add": [ + "SvEȤƏ埮p" + ], + "drop": [ + "{WOŭW灬pȭCV擭銆jʒǚ鍰" ] }, "privileged": false, "seLinuxOptions": { - "user": "338", - "role": "339", - "type": "340", - "level": "341" + "user": "326", + "role": "327", + "type": "328", + "level": "329" }, "windowsOptions": { - "gmsaCredentialSpecName": "342", - "gmsaCredentialSpec": "343", - "runAsUserName": "344" + "gmsaCredentialSpecName": "330", + "gmsaCredentialSpec": "331", + "runAsUserName": "332" }, - "runAsUser": -6406791857291159870, - "runAsGroup": -6959202986715119291, - "runAsNonRoot": true, + "runAsUser": 6726836758549163621, + "runAsGroup": 741362943076737213, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "绤fʀļ腩墺Ò媁荭g" + "procMount": "DµņP)DŽ髐njʉBn(fǂǢ曣ŋ" }, + "stdin": true, "stdinOnce": true, - "targetContainerName": "345" + "tty": true, + "targetContainerName": "333" } ], - "restartPolicy": "|E剒蔞|表徶đ寳议Ƭƶ氩", - "terminationGracePeriodSeconds": 1856677271350902065, - "activeDeadlineSeconds": -540877112017102508, - "dnsPolicy": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l", + "restartPolicy": "åe躒訙", + "terminationGracePeriodSeconds": 6942343986058351509, + "activeDeadlineSeconds": 9212087462729867542, + "dnsPolicy": "娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ", "nodeSelector": { - "346": "347" + "334": "335" }, - "serviceAccountName": "348", - "serviceAccount": "349", + "serviceAccountName": "336", + "serviceAccount": "337", "automountServiceAccountToken": false, - "nodeName": "350", - "hostNetwork": true, - "hostIPC": true, + "nodeName": "338", + "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "351", - "role": "352", - "type": "353", - "level": "354" + "user": "339", + "role": "340", + "type": "341", + "level": "342" }, "windowsOptions": { - "gmsaCredentialSpecName": "355", - "gmsaCredentialSpec": "356", - "runAsUserName": "357" + "gmsaCredentialSpecName": "343", + "gmsaCredentialSpec": "344", + "runAsUserName": "345" }, - "runAsUser": -5001620332025163168, - "runAsGroup": 489084544654274973, + "runAsUser": 7747616967629081728, + "runAsGroup": 2548453080315983269, "runAsNonRoot": false, "supplementalGroups": [ - -3161746876343501601 + -1193643752264108019 ], - "fsGroup": 5307265951662522113, + "fsGroup": -7117039988160665426, "sysctls": [ { - "name": "358", - "value": "359" + "name": "346", + "value": "347" } ] }, "imagePullSecrets": [ { - "name": "360" + "name": "348" } ], - "hostname": "361", - "subdomain": "362", + "hostname": "349", + "subdomain": "350", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1088,19 @@ { "matchExpressions": [ { - "key": "363", - "operator": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", + "key": "351", + "operator": "", "values": [ - "364" + "352" ] } ], "matchFields": [ { - "key": "365", - "operator": "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi", + "key": "353", + "operator": "ƽ眝{æ盪泙", "values": [ - "366" + "354" ] } ] @@ -1109,23 +1109,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1305183607, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "367", - "operator": "ǵɐ鰥Z", + "key": "355", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "368" + "356" ] } ], "matchFields": [ { - "key": "369", - "operator": "嵐sC8?Ǻ鱎ƙ;Nŕ璻Ji", + "key": "357", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "370" + "358" ] } ] @@ -1138,46 +1138,43 @@ { "labelSelector": { "matchLabels": { - "q1py-8t379s3-8x2.l8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/z.W..4....-h._.Gg7": "9.M.134-5-.q6H_.--t" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "7U_-m.-P.yP9S--858LI__.8U", - "operator": "NotIn", - "values": [ - "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m" - ] + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "377" + "365" ], - "topologyKey": "378" + "topologyKey": "366" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -280562323, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "c-r.E__-.8_e_l2.._8s--7_3x_-J_....7" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "385" + "373" ], - "topologyKey": "386" + "topologyKey": "374" } } ] @@ -1187,108 +1184,105 @@ { "labelSelector": { "matchLabels": { - "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b", + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", "operator": "DoesNotExist" } ] }, "namespaces": [ - "393" + "381" ], - "topologyKey": "394" + "topologyKey": "382" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1934575848, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E", - "operator": "NotIn", - "values": [ - "ZI-_P..w-W_-nE...-V" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "401" + "389" ], - "topologyKey": "402" + "topologyKey": "390" } } ] } }, - "schedulerName": "403", + "schedulerName": "391", "tolerations": [ { - "key": "404", - "operator": "ƴ磳藷曥摮Z Ǐg鲅", - "value": "405", - "effect": "癯頯aɴí(Ȟ9\"忕(", - "tolerationSeconds": 3807599400818393626 + "key": "392", + "operator": "ƹ|", + "value": "393", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "406", + "ip": "394", "hostnames": [ - "407" + "395" ] } ], - "priorityClassName": "408", - "priority": 1352980996, + "priorityClassName": "396", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "409" + "397" ], "searches": [ - "410" + "398" ], "options": [ { - "name": "411", - "value": "412" + "name": "399", + "value": "400" } ] }, "readinessGates": [ { - "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "413", - "enableServiceLinks": false, - "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮", + "runtimeClassName": "401", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 547935694, - "topologyKey": "414", - "whenUnsatisfiable": "zŕƧ钖孝0蛮xAǫ\u0026tŧK剛Ʀ", + "maxSkew": -137402083, + "topologyKey": "402", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs", + "key": "qW", "operator": "In", "values": [ - "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I" + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" ] } ] @@ -1298,31 +1292,31 @@ } }, "updateStrategy": { - "type": "ũ齑誀ŭ\"ɦ?鮻ȧH僠", + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 903718123, - "revisionHistoryLimit": -1800817073 + "minReadySeconds": 212061711, + "revisionHistoryLimit": -1092090658 }, "status": { - "currentNumberScheduled": 1605659256, - "numberMisscheduled": -1376495682, - "desiredNumberScheduled": 1266174302, - "numberReady": 663607130, - "observedGeneration": 945894627629353003, - "updatedNumberScheduled": -1140021566, - "numberAvailable": 2081997618, - "numberUnavailable": -261966046, - "collisionCount": -513111795, + "currentNumberScheduled": -1979737528, + "numberMisscheduled": -1707056814, + "desiredNumberScheduled": -424698834, + "numberReady": 407742062, + "observedGeneration": 5741439505187758584, + "updatedNumberScheduled": 902022378, + "numberAvailable": 1660081568, + "numberUnavailable": 904244563, + "collisionCount": -449319810, "conditions": [ { - "type": "铀íÅė 宣", - "status": "`揄戀Ž彙pg稠", - "lastTransitionTime": "2387-02-20T13:00:48Z", - "reason": "421", - "message": "422" + "type": "", + "status": "'ƈoIǢ龞瞯å", + "lastTransitionTime": "2469-07-10T03:20:34Z", + "reason": "409", + "message": "410" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb index e5a51813165299aaa57cb813cdc36c024a2cb7bc..0443e2bd197a9f8118ca4632e6b1ec32eb73a078 100644 GIT binary patch literal 6062 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 literal 6283 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 Oldu>C1Y1pZ)BgkPe=-yR diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml index 899458bb618..a5e8fec23e7 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,880 +25,875 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: 903718123 - revisionHistoryLimit: -1800817073 + minReadySeconds: 212061711 + revisionHistoryLimit: -1092090658 selector: matchExpressions: - - key: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B + - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 operator: In values: - - Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2 + - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n matchLabels: - 9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G: 0M.y.g + 8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4 template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: 5087509039175129589 + deletionGracePeriodSeconds: 7534629739119643351 finalizers: - - "42" - generateName: "31" - generation: 3974191383006284807 + - "36" + generateName: "25" + generation: -4139900758039117471 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" + manager: "38" + operation: ĪȸŹăȲϤĦʅ芝 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" blockOwnerDeletion: true - controller: true - kind: "40" - name: "41" - uid: ',Q捇ȸ{+ɸ殁' - resourceVersion: "11397677413428459614" - selfLink: "33" - uid: ƐP_痸荎僋bŭDz鯰硰{舁吉蓨O + controller: false + kind: "34" + name: "35" + uid: ^ + resourceVersion: "1698285396218902212" + selfLink: "27" + uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -540877112017102508 + activeDeadlineSeconds: 9212087462729867542 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "367" - operator: ǵɐ鰥Z + - key: "355" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "368" + - "356" matchFields: - - key: "369" - operator: 嵐sC8?Ǻ鱎ƙ;Nŕ璻Ji + - key: "357" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "370" - weight: -1305183607 + - "358" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "363" - operator: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ + - key: "351" + operator: "" values: - - "364" + - "352" matchFields: - - key: "365" - operator: 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi + - key: "353" + operator: ƽ眝{æ盪泙 values: - - "366" + - "354" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11 - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - c-r.E__-.8_e_l2.._8s--7_3x_-J_....7 + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "385" - topologyKey: "386" - weight: -280562323 + - "373" + topologyKey: "374" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7U_-m.-P.yP9S--858LI__.8U - operator: NotIn - values: - - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - q1py-8t379s3-8x2.l8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/z.W..4....-h._.Gg7: 9.M.134-5-.q6H_.--t + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "377" - topologyKey: "378" + - "365" + topologyKey: "366" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E - operator: NotIn - values: - - ZI-_P..w-W_-nE...-V + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1 + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "401" - topologyKey: "402" - weight: -1934575848 + - "389" + topologyKey: "390" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 operator: DoesNotExist matchLabels: - mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "393" - topologyKey: "394" + - "381" + topologyKey: "382" automountServiceAccountToken: false containers: - args: - - "222" + - "210" command: - - "221" + - "209" env: - - name: "229" - value: "230" + - name: "217" + value: "218" valueFrom: configMapKeyRef: - key: "236" - name: "235" + key: "224" + name: "223" optional: false fieldRef: - apiVersion: "231" - fieldPath: "232" + apiVersion: "219" + fieldPath: "220" resourceFieldRef: - containerName: "233" - divisor: "385" - resource: "234" + containerName: "221" + divisor: "932" + resource: "222" secretKeyRef: - key: "238" - name: "237" + key: "226" + name: "225" optional: true envFrom: - configMapRef: - name: "227" - optional: true - prefix: "226" - secretRef: - name: "228" + name: "215" optional: false - image: "220" - imagePullPolicy: ȃv渟7 + prefix: "214" + secretRef: + name: "216" + optional: true + image: "208" + imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 lifecycle: postStart: exec: command: - - "260" + - "248" httpGet: - host: "263" + host: "251" httpHeaders: - - name: "264" - value: "265" - path: "261" - port: "262" - scheme: :贅wE@Ȗs«öʮĀ<é瞾 + - name: "252" + value: "253" + path: "249" + port: "250" + scheme: '''' tcpSocket: - host: "267" - port: "266" + host: "254" + port: -801430937 preStop: exec: command: - - "268" + - "255" httpGet: - host: "270" + host: "257" httpHeaders: - - name: "271" - value: "272" - path: "269" - port: -1718681455 - scheme: '*ʙ嫙&蒒5靇C''ɵK.' + - name: "258" + value: "259" + path: "256" + port: 1810980158 + scheme: _ƮA攤/ɸɎ R§耶FfBl tcpSocket: - host: "274" - port: "273" + host: "260" + port: 1074486306 livenessProbe: exec: command: - - "245" - failureThreshold: -31530684 + - "233" + failureThreshold: -161485752 httpGet: - host: "248" + host: "236" httpHeaders: - - name: "249" - value: "250" - path: "246" - port: "247" - scheme: '}' - initialDelaySeconds: 1030243869 - periodSeconds: -185042403 - successThreshold: -374922344 + - name: "237" + value: "238" + path: "234" + port: "235" + scheme: Ȥ藠3. + initialDelaySeconds: -1389418722 + periodSeconds: 596942561 + successThreshold: -1880980172 tcpSocket: - host: "252" - port: "251" - timeoutSeconds: -1080853187 - name: "219" + host: "240" + port: "239" + timeoutSeconds: 851018015 + name: "207" ports: - - containerPort: 692541847 - hostIP: "225" - hostPort: -1167973499 - name: "224" - protocol: Gưoɘ檲ɨ銦妰黖ȓƇ + - containerPort: 427196286 + hostIP: "213" + hostPort: 1385030458 + name: "212" + protocol: o/樝fw[Řż丩Ž readinessProbe: exec: command: - - "253" - failureThreshold: 1471432155 + - "241" + failureThreshold: 59664438 httpGet: - host: "256" + host: "244" httpHeaders: - - name: "257" - value: "258" - path: "254" - port: "255" - initialDelaySeconds: 559781916 - periodSeconds: -1569009987 - successThreshold: -1053603859 + - name: "245" + value: "246" + path: "242" + port: "243" + scheme: «丯Ƙ枛牐ɺ皚 + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 tcpSocket: - host: "259" - port: -289900366 - timeoutSeconds: -1703360754 + host: "247" + port: -1934111455 + timeoutSeconds: 1146016612 resources: limits: - 鎷卩蝾H: "824" + 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" requests: - 蕵ɢ: "684" + ǂ>5姣>懔%熷: "440" securityContext: allowPrivilegeEscalation: true capabilities: add: - - djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - 勅跦Opwǩ曬逴褜1Ø drop: - - mɩC[ó瓧 + - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] privileged: true - procMount: ɟ踡肒Ao/樝fw[Řż丩Ž + procMount: W:ĸ輦唊#v readOnlyRootFilesystem: true - runAsGroup: -2537458620093904059 + runAsGroup: 1373384864388370080 runAsNonRoot: false - runAsUser: -6244232606031635964 + runAsUser: -6470941481344047265 seLinuxOptions: - level: "279" - role: "277" - type: "278" - user: "276" + level: "265" + role: "263" + type: "264" + user: "262" windowsOptions: - gmsaCredentialSpec: "281" - gmsaCredentialSpecName: "280" - runAsUserName: "282" - stdinOnce: true - terminationMessagePath: "275" - terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹 - volumeDevices: - - devicePath: "244" - name: "243" - volumeMounts: - - mountPath: "240" - mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN - name: "239" - subPath: "241" - subPathExpr: "242" - workingDir: "223" - dnsConfig: - nameservers: - - "409" - options: - - name: "411" - value: "412" - searches: - - "410" - dnsPolicy: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l - enableServiceLinks: false - ephemeralContainers: - - args: - - "286" - command: - - "285" - env: - - name: "293" - value: "294" - valueFrom: - configMapKeyRef: - key: "300" - name: "299" - optional: false - fieldRef: - apiVersion: "295" - fieldPath: "296" - resourceFieldRef: - containerName: "297" - divisor: "18" - resource: "298" - secretKeyRef: - key: "302" - name: "301" - optional: false - envFrom: - - configMapRef: - name: "291" - optional: false - prefix: "290" - secretRef: - name: "292" - optional: false - image: "284" - imagePullPolicy: 犵殇ŕ-Ɂ圯W:ĸ輦唊# - lifecycle: - postStart: - exec: - command: - - "322" - httpGet: - host: "325" - httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" - scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷 - tcpSocket: - host: "329" - port: "328" - preStop: - exec: - command: - - "330" - httpGet: - host: "333" - httpHeaders: - - name: "334" - value: "335" - path: "331" - port: "332" - tcpSocket: - host: "336" - port: 1943028037 - livenessProbe: - exec: - command: - - "309" - failureThreshold: -720450949 - httpGet: - host: "312" - httpHeaders: - - name: "313" - value: "314" - path: "310" - port: "311" - scheme: 晒嶗UÐ_ƮA攤/ɸɎ R§耶FfBl - initialDelaySeconds: 630004123 - periodSeconds: -1654678802 - successThreshold: -625194347 - tcpSocket: - host: "315" - port: 1074486306 - timeoutSeconds: -984241405 - name: "283" - ports: - - containerPort: 105707873 - hostIP: "289" - hostPort: -1815868713 - name: "288" - protocol: ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[ - readinessProbe: - exec: - command: - - "316" - failureThreshold: 893823156 - httpGet: - host: "318" - httpHeaders: - - name: "319" - value: "320" - path: "317" - port: -1543701088 - scheme: 矡ȶ网棊ʢ=wǕɳɷ9Ì崟¿ - initialDelaySeconds: -1798849477 - periodSeconds: 852780575 - successThreshold: -1252938503 - tcpSocket: - host: "321" - port: -1423854443 - timeoutSeconds: -1017263912 - resources: - limits: - '@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫rʤî': "366" - requests: - .v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0矀: "738" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ʩȂ4ē鐭# - drop: - - 'ơŸ8T ' - privileged: false - procMount: 绤fʀļ腩墺Ò媁荭g - readOnlyRootFilesystem: false - runAsGroup: -6959202986715119291 - runAsNonRoot: true - runAsUser: -6406791857291159870 - seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" - windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" - stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" - volumeDevices: - - devicePath: "308" - name: "307" - volumeMounts: - - mountPath: "304" - mountPropagation: '|懥ƖN粕擓ƖHVe熼' - name: "303" - readOnly: true - subPath: "305" - subPathExpr: "306" - workingDir: "287" - hostAliases: - - hostnames: - - "407" - ip: "406" - hostIPC: true - hostNetwork: true - hostname: "361" - imagePullSecrets: - - name: "360" - initContainers: - - args: - - "159" - command: - - "158" - env: - - name: "166" - value: "167" - valueFrom: - configMapKeyRef: - key: "173" - name: "172" - optional: true - fieldRef: - apiVersion: "168" - fieldPath: "169" - resourceFieldRef: - containerName: "170" - divisor: "770" - resource: "171" - secretKeyRef: - key: "175" - name: "174" - optional: false - envFrom: - - configMapRef: - name: "164" - optional: true - prefix: "163" - secretRef: - name: "165" - optional: true - image: "157" - imagePullPolicy: 衧ȇe媹H - lifecycle: - postStart: - exec: - command: - - "196" - httpGet: - host: "199" - httpHeaders: - - name: "200" - value: "201" - path: "197" - port: "198" - scheme: 錯ƶ - tcpSocket: - host: "203" - port: "202" - preStop: - exec: - command: - - "204" - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2110181803 - scheme: '&蕭k ź贩j瀉ǚrǜnh0å' - tcpSocket: - host: "210" - port: "209" - livenessProbe: - exec: - command: - - "182" - failureThreshold: -1116811061 - httpGet: - host: "185" - httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: pȿŘ阌Ŗ怳冘HǺƶ - initialDelaySeconds: 1366561945 - periodSeconds: 408756018 - successThreshold: 437263194 - tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 657514697 - name: "156" - ports: - - containerPort: -343150875 - hostIP: "162" - hostPort: 1435152179 - name: "161" - protocol: ɥ³ƞsɁ8^ʥǔTĪȸŹă - readinessProbe: - exec: - command: - - "190" - failureThreshold: 273818613 - httpGet: - host: "192" - httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 1873902270 - scheme: ?Qȫş - initialDelaySeconds: -144591150 - periodSeconds: 1701891633 - successThreshold: -1768075156 - tcpSocket: - host: "195" - port: 2091150210 - timeoutSeconds: 673378190 - resources: - limits: - Z: "482" - requests: - ŏ{: "980" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - "" - drop: - - 臷Ľð»ųKĵ&4ʑ%:;栍dʪ - privileged: false - procMount: Rƥ贫d飼$俊跾|@?鷅b - readOnlyRootFilesystem: false - runAsGroup: 3541984878507294780 - runAsNonRoot: false - runAsUser: 6743064379422188907 - seLinuxOptions: - level: "215" - role: "213" - type: "214" - user: "212" - windowsOptions: - gmsaCredentialSpec: "217" - gmsaCredentialSpecName: "216" - runAsUserName: "218" - stdin: true - terminationMessagePath: "211" - terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ + gmsaCredentialSpec: "267" + gmsaCredentialSpecName: "266" + runAsUserName: "268" + terminationMessagePath: "261" + terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ tty: true volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "177" - mountPropagation: ĕʄő芖{| - name: "176" + - mountPath: "228" + mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ + name: "227" readOnly: true - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + subPath: "229" + subPathExpr: "230" + workingDir: "211" + dnsConfig: + nameservers: + - "397" + options: + - name: "399" + value: "400" + searches: + - "398" + dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ + enableServiceLinks: true + ephemeralContainers: + - args: + - "272" + command: + - "271" + env: + - name: "279" + value: "280" + valueFrom: + configMapKeyRef: + key: "286" + name: "285" + optional: false + fieldRef: + apiVersion: "281" + fieldPath: "282" + resourceFieldRef: + containerName: "283" + divisor: "355" + resource: "284" + secretKeyRef: + key: "288" + name: "287" + optional: true + envFrom: + - configMapRef: + name: "277" + optional: true + prefix: "276" + secretRef: + name: "278" + optional: false + image: "270" + imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + lifecycle: + postStart: + exec: + command: + - "310" + httpGet: + host: "313" + httpHeaders: + - name: "314" + value: "315" + path: "311" + port: "312" + scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + tcpSocket: + host: "317" + port: "316" + preStop: + exec: + command: + - "318" + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "319" + port: "320" + scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + tcpSocket: + host: "324" + port: -1187301925 + livenessProbe: + exec: + command: + - "295" + failureThreshold: 2030115750 + httpGet: + host: "298" + httpHeaders: + - name: "299" + value: "300" + path: "296" + port: "297" + scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 + initialDelaySeconds: 2066735093 + periodSeconds: -940334911 + successThreshold: -341287812 + tcpSocket: + host: "302" + port: "301" + timeoutSeconds: -190183379 + name: "269" + ports: + - containerPort: -379385405 + hostIP: "275" + hostPort: 2058122084 + name: "274" + protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + readinessProbe: + exec: + command: + - "303" + failureThreshold: -385597677 + httpGet: + host: "306" + httpHeaders: + - name: "307" + value: "308" + path: "304" + port: "305" + scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + initialDelaySeconds: -1971421078 + periodSeconds: -1730959016 + successThreshold: 1272940694 + tcpSocket: + host: "309" + port: 458427807 + timeoutSeconds: 1905181464 + resources: + limits: + '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + requests: + "": "124" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - SvEȤƏ埮p + drop: + - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + privileged: false + procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ + readOnlyRootFilesystem: false + runAsGroup: 741362943076737213 + runAsNonRoot: false + runAsUser: 6726836758549163621 + seLinuxOptions: + level: "329" + role: "327" + type: "328" + user: "326" + windowsOptions: + gmsaCredentialSpec: "331" + gmsaCredentialSpecName: "330" + runAsUserName: "332" + stdin: true + stdinOnce: true + targetContainerName: "333" + terminationMessagePath: "325" + terminationMessagePolicy: Őnj汰8ŕ + tty: true + volumeDevices: + - devicePath: "294" + name: "293" + volumeMounts: + - mountPath: "290" + mountPropagation: 簳°Ļǟi&皥贸 + name: "289" + subPath: "291" + subPathExpr: "292" + workingDir: "273" + hostAliases: + - hostnames: + - "395" + ip: "394" + hostPID: true + hostname: "349" + imagePullSecrets: + - name: "348" + initContainers: + - args: + - "148" + command: + - "147" + env: + - name: "155" + value: "156" + valueFrom: + configMapKeyRef: + key: "162" + name: "161" + optional: false + fieldRef: + apiVersion: "157" + fieldPath: "158" + resourceFieldRef: + containerName: "159" + divisor: "468" + resource: "160" + secretKeyRef: + key: "164" + name: "163" + optional: true + envFrom: + - configMapRef: + name: "153" + optional: false + prefix: "152" + secretRef: + name: "154" + optional: false + image: "146" + imagePullPolicy: Ŵ廷s{Ⱦdz@ + lifecycle: + postStart: + exec: + command: + - "186" + httpGet: + host: "189" + httpHeaders: + - name: "190" + value: "191" + path: "187" + port: "188" + tcpSocket: + host: "192" + port: 559781916 + preStop: + exec: + command: + - "193" + httpGet: + host: "195" + httpHeaders: + - name: "196" + value: "197" + path: "194" + port: 1150375229 + scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + tcpSocket: + host: "198" + port: -1696471293 + livenessProbe: + exec: + command: + - "171" + failureThreshold: 1466047181 + httpGet: + host: "174" + httpHeaders: + - name: "175" + value: "176" + path: "172" + port: "173" + initialDelaySeconds: 1805144649 + periodSeconds: 1403721475 + successThreshold: 519906483 + tcpSocket: + host: "178" + port: "177" + timeoutSeconds: -606111218 + name: "145" + ports: + - containerPort: 437857734 + hostIP: "151" + hostPort: -1510026905 + name: "150" + protocol: Rƥ贫d飼$俊跾|@?鷅b + readinessProbe: + exec: + command: + - "179" + failureThreshold: 524249411 + httpGet: + host: "182" + httpHeaders: + - name: "183" + value: "184" + path: "180" + port: "181" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + initialDelaySeconds: -1724160601 + periodSeconds: 1435507444 + successThreshold: -1430577593 + tcpSocket: + host: "185" + port: -337353552 + timeoutSeconds: -1158840571 + resources: + limits: + 檲ɨ銦妰黖ȓƇ$缔獵偐ę腬: "646" + requests: + 湨: "803" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - ʋŀ樺ȃv渟7¤7d + drop: + - ƯĖ漘Z剚敍0)鈼¬麄p呝T + privileged: true + procMount: 瓧嫭塓烀罁胾^拜 + readOnlyRootFilesystem: true + runAsGroup: 825262458636305509 + runAsNonRoot: true + runAsUser: 4181787587415673530 + seLinuxOptions: + level: "203" + role: "201" + type: "202" + user: "200" + windowsOptions: + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" + stdin: true + stdinOnce: true + terminationMessagePath: "199" + terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + volumeDevices: + - devicePath: "170" + name: "169" + volumeMounts: + - mountPath: "166" + mountPropagation: 卩蝾 + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "338" nodeSelector: - "346": "347" + "334": "335" overhead: - Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185" - preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮 - priority: 1352980996 - priorityClassName: "408" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "396" readinessGates: - - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ - restartPolicy: '|E剒蔞|表徶đ寳议Ƭƶ氩' - runtimeClassName: "413" - schedulerName: "403" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: åe躒訙 + runtimeClassName: "401" + schedulerName: "391" securityContext: - fsGroup: 5307265951662522113 - runAsGroup: 489084544654274973 + fsGroup: -7117039988160665426 + runAsGroup: 2548453080315983269 runAsNonRoot: false - runAsUser: -5001620332025163168 + runAsUser: 7747616967629081728 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "342" + role: "340" + type: "341" + user: "339" supplementalGroups: - - -3161746876343501601 + - -1193643752264108019 sysctls: - - name: "358" - value: "359" + - name: "346" + value: "347" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "344" + gmsaCredentialSpecName: "343" + runAsUserName: "345" + serviceAccount: "337" + serviceAccountName: "336" shareProcessNamespace: false - subdomain: "362" - terminationGracePeriodSeconds: 1856677271350902065 + subdomain: "350" + terminationGracePeriodSeconds: 6942343986058351509 tolerations: - - effect: 癯頯aɴí(Ȟ9"忕( - key: "404" - operator: ƴ磳藷曥摮Z Ǐg鲅 - tolerationSeconds: 3807599400818393626 - value: "405" + - effect: 料ȭzV镜籬ƽ + key: "392" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "393" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs + - key: qW operator: In values: - - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE - maxSkew: 547935694 - topologyKey: "414" - whenUnsatisfiable: zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "402" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 1637061888 - readOnly: true - volumeID: "55" + fsType: "45" + partition: -2007808768 + volumeID: "44" azureDisk: - cachingMode: 啞川J缮ǚb - diskName: "119" - diskURI: "120" - fsType: "121" - kind: ʬ + cachingMode: k ź贩j瀉ǚrǜnh0åȂ + diskName: "108" + diskURI: "109" + fsType: "110" + kind: nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶 readOnly: false azureFile: readOnly: true - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: -1853411528 + defaultMode: 952979935 items: - - key: "108" - mode: -885708332 - path: "109" - name: "107" - optional: true + - key: "97" + mode: 2020789772 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" - readOnly: false + name: "144" + readOnly: true volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -861583888 + defaultMode: -868808281 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -332563744 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: -1768075156 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "40" - resource: "101" + containerName: "89" + divisor: "915" + resource: "90" emptyDir: - medium: Ň'Ğİ* - sizeLimit: "695" + medium: ɹ坼É/pȿ + sizeLimit: "804" fc: - fsType: "103" - lun: 324963473 - readOnly: true + fsType: "92" + lun: 570501002 targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1706940973 - pdName: "53" + fsType: "43" + partition: -1318752360 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" hostPath: - path: "52" - type: _Ĭ艥< + path: "41" + type: "" iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1884322607 + chapAuthDiscovery: true + chapAuthSession: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 408756018 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" + - "58" readOnly: true - server: "63" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" + readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" - volumeID: "137" + fsType: "127" + volumeID: "126" projected: - defaultMode: -740816174 + defaultMode: 480521693 sources: - configMap: items: - - key: "133" - mode: -2137658152 - path: "134" - name: "132" + - key: "122" + mode: -1126738259 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1617414299 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: -1618937335 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "763" - resource: "131" + containerName: "119" + divisor: "461" + resource: "120" secret: items: - - key: "125" - mode: 1493217478 - path: "126" - name: "124" + - key: "114" + mode: 675406340 + path: "115" + name: "113" optional: false serviceAccountToken: - audience: "135" - expirationSeconds: -6753602166099171537 - path: "136" + audience: "124" + expirationSeconds: -6345861634934949644 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" + name: "130" sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 62108019 + defaultMode: 1233814916 items: - - key: "61" - mode: -1092501327 - path: "62" - optional: true - secretName: "60" + - key: "50" + mode: 228756891 + path: "51" + optional: false + secretName: "49" storageos: - fsType: "149" + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" updateStrategy: rollingUpdate: {} - type: ũ齑誀ŭ"ɦ?鮻ȧH僠 + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 status: - collisionCount: -513111795 + collisionCount: -449319810 conditions: - - lastTransitionTime: "2387-02-20T13:00:48Z" - message: "422" - reason: "421" - status: '`揄戀Ž彙pg稠' - type: 铀íÅė 宣 - currentNumberScheduled: 1605659256 - desiredNumberScheduled: 1266174302 - numberAvailable: 2081997618 - numberMisscheduled: -1376495682 - numberReady: 663607130 - numberUnavailable: -261966046 - observedGeneration: 945894627629353003 - updatedNumberScheduled: -1140021566 + - lastTransitionTime: "2469-07-10T03:20:34Z" + message: "410" + reason: "409" + status: '''ƈoIǢ龞瞯å' + type: "" + currentNumberScheduled: -1979737528 + desiredNumberScheduled: -424698834 + numberAvailable: 1660081568 + numberMisscheduled: -1707056814 + numberReady: 407742062 + numberUnavailable: 904244563 + observedGeneration: 5741439505187758584 + updatedNumberScheduled: 902022378 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json index 2d4fc93fba4..9706f33b3cb 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1303,33 +1293,31 @@ } }, "strategy": { - "type": "龞瞯å檳ė\u003e", "rollingUpdate": { } }, - "minReadySeconds": -416969112, - "revisionHistoryLimit": -2111453451, - "paused": true, - "progressDeadlineSeconds": 94613358 + "minReadySeconds": 997447044, + "revisionHistoryLimit": 989524452, + "progressDeadlineSeconds": 1791868025 }, "status": { - "observedGeneration": -782425263784138188, - "replicas": 983225586, - "updatedReplicas": -405534860, - "readyReplicas": -1331113536, - "availableReplicas": -389104463, - "unavailableReplicas": -1714280710, + "observedGeneration": -1249679108465412698, + "replicas": -1152625369, + "updatedReplicas": -1832836223, + "readyReplicas": -1292943463, + "availableReplicas": -1734448297, + "unavailableReplicas": -1757575936, "conditions": [ { - "type": "mō6µɑ`ȗ\u003c8^翜", - "status": "šl", - "lastUpdateTime": "2563-10-12T13:29:04Z", - "lastTransitionTime": "2609-05-15T13:43:57Z", - "reason": "419", - "message": "420" + "type": "ȷ滣ƆƾȊ(XEfê澙凋B/ü", + "status": "ZÕW肤 ", + "lastUpdateTime": "2674-04-10T12:16:26Z", + "lastTransitionTime": "2674-07-14T13:22:49Z", + "reason": "404", + "message": "405" } ], - "collisionCount": 1366804394 + "collisionCount": 1658632493 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb index 5d26f0cbaf7ec58b32e62fc7c66e2fa1f63a58d8..7b6ece4dc1e6d43a67e53fa6c53fa6df31520321 100644 GIT binary patch literal 6382 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 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml index d6da5203efd..9e6582b6b5e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,886 +25,876 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: -416969112 - paused: true - progressDeadlineSeconds: 94613358 - replicas: -1978186127 - revisionHistoryLimit: -2111453451 + minReadySeconds: 997447044 + progressDeadlineSeconds: 1791868025 + replicas: 896585016 + revisionHistoryLimit: 989524452 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} - type: 龞瞯å檳ė> template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: - availableReplicas: -389104463 - collisionCount: 1366804394 + availableReplicas: -1734448297 + collisionCount: 1658632493 conditions: - - lastTransitionTime: "2609-05-15T13:43:57Z" - lastUpdateTime: "2563-10-12T13:29:04Z" - message: "420" - reason: "419" - status: šl - type: mō6µɑ`ȗ<8^翜 - observedGeneration: -782425263784138188 - readyReplicas: -1331113536 - replicas: 983225586 - unavailableReplicas: -1714280710 - updatedReplicas: -405534860 + - lastTransitionTime: "2674-07-14T13:22:49Z" + lastUpdateTime: "2674-04-10T12:16:26Z" + message: "405" + reason: "404" + status: ZÕW肤  + type: ȷ滣ƆƾȊ(XEfê澙凋B/ü + observedGeneration: -1249679108465412698 + readyReplicas: -1292943463 + replicas: -1152625369 + unavailableReplicas: -1757575936 + updatedReplicas: -1832836223 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json index f372a3b711d..8162348064e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,395 +35,395 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, - "minReadySeconds": 2114329341, + "replicas": 896585016, + "minReadySeconds": -1971381490, "selector": { "matchLabels": { - "0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7": "s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8" + "g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5": "" }, "matchExpressions": [ { - "key": "M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G", - "operator": "NotIn", + "key": "U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t", + "operator": "In", "values": [ - "7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU" + "M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5" ] } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "诫z徃鷢6ȥ啕禗", - "resourceVersion": "11500002557443244703", - "generation": 1395707490843892091, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "ʬ", + "resourceVersion": "7336814125345800857", + "generation": -6617020301190572172, "creationTimestamp": null, - "deletionGracePeriodSeconds": -4739960484747932992, + "deletionGracePeriodSeconds": -152893758082474859, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "·Õ", - "controller": false, + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ɖgȏ哙ȍȂ揲ȼDDŽLŬp:", + "controller": true, "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "ɔȖ脵鴈Ōƾ焁yǠ/淹\\韲翁\u0026", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "ƅS·Õüe0ɔȖ脵鴈Ō", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "ȱ蓿彭聡A3fƻf" + "path": "41", + "type": "6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ" }, "emptyDir": { - "medium": "繡楙¯ĦE勗E濞偘", - "sizeLimit": "349" + "medium": "彭聡A3fƻfʣ", + "sizeLimit": "115" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": 1648350164, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1499132872 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 200492355, + "volumeID": "44", + "fsType": "45", + "partition": -762366823, "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": 1360806276 + "key": "50", + "path": "51", + "mode": -104666658 } ], - "defaultMode": 395412881, + "defaultMode": 372704313, "optional": true }, "nfs": { - "server": "63", - "path": "64" - }, - "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -1746427184, - "iscsiInterface": "67", - "fsType": "68", - "portals": [ - "69" - ], - "secretRef": { - "name": "70" - }, - "initiatorName": "71" - }, - "glusterfs": { - "endpoints": "72", - "path": "73", + "server": "52", + "path": "53", "readOnly": true }, + "iscsi": { + "targetPortal": "54", + "iqn": "55", + "lun": 1655406148, + "iscsiInterface": "56", + "fsType": "57", + "readOnly": true, + "portals": [ + "58" + ], + "secretRef": { + "name": "59" + }, + "initiatorName": "60" + }, + "glusterfs": { + "endpoints": "61", + "path": "62" + }, "persistentVolumeClaim": { - "claimName": "74" + "claimName": "63", + "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - } + "name": "70" + }, + "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "51" + "containerName": "89", + "resource": "90", + "divisor": "457" }, - "mode": -1332301579 + "mode": 1235524154 } ], - "defaultMode": -395029362 + "defaultMode": -106644772 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -2007808768, - "fsType": "103", + "lun": 441887498, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95" }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1057154155 + "key": "97", + "path": "98", + "mode": -2039036935 } ], - "defaultMode": 1632959949, - "optional": true + "defaultMode": -460478410, + "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "readOnly": true, + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "躢", - "fsType": "121", - "readOnly": false, - "kind": "黰eȪ嵛4$%Qɰ" + "diskName": "108", + "diskURI": "109", + "cachingMode": "HǺƶȤ^}穠", + "fsType": "110", + "readOnly": true, + "kind": "躢" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 273818613 + "key": "114", + "path": "115", + "mode": -1399063270 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "934" + "containerName": "119", + "resource": "120", + "divisor": "746" }, - "mode": -687313111 + "mode": 926891073 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 2020789772 + "key": "122", + "path": "123", + "mode": -1694464659 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": 3485267088372060587, - "path": "136" + "audience": "124", + "expirationSeconds": -7593824971107985079, + "path": "125" } } ], - "defaultMode": 715087892 + "defaultMode": -522879476 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", - "readOnly": true + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", + "readOnly": true, "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 1473141590, - "containerPort": -1996616480, - "protocol": "ł/擇ɦĽ胚O醔ɍ厶", - "hostIP": "162" + "name": "150", + "hostPort": -1896921306, + "containerPort": 715087892, + "protocol": "倱\u003c", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": false }, "secretRef": { - "name": "165", + "name": "154", "optional": false } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "375" + "containerName": "159", + "resource": "160", + "divisor": "455" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": true }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": false } } @@ -431,220 +431,221 @@ ], "resources": { "limits": { - "": "596" + "/擇ɦĽ胚O醔ɍ厶耈 T": "618" }, "requests": { - "a坩O`涁İ而踪鄌eÞȦY籎顒": "45" + "á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ": "372" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "捘ɍi縱ù墴", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "dʪīT捘ɍi縱ù墴1Rƥ", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "痗ȡmƴy綸_Ú8參遼ūPH", + "path": "172", + "port": "173", + "host": "174", + "scheme": "ƴy綸_Ú8參遼ūPH炮", "httpHeaders": [ { - "name": "186", - "value": "187" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "188", - "host": "189" + "port": "177", + "host": "178" }, - "initialDelaySeconds": 655980302, - "timeoutSeconds": 741871873, - "periodSeconds": 446829537, - "successThreshold": -1987044888, - "failureThreshold": -1638339389 + "initialDelaySeconds": 741871873, + "timeoutSeconds": 446829537, + "periodSeconds": -1987044888, + "successThreshold": -1638339389, + "failureThreshold": 2053960192 }, "readinessProbe": { "exec": { "command": [ - "190" + "179" ] }, "httpGet": { - "path": "191", - "port": 961508537, - "host": "192", - "scheme": "黖ȓ", + "path": "180", + "port": -1903685915, + "host": "181", + "scheme": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "182", + "value": "183" } ] }, "tcpSocket": { - "port": "195", - "host": "196" + "port": "184", + "host": "185" }, - "initialDelaySeconds": -50623103, - "timeoutSeconds": 1795738696, - "periodSeconds": -1350331007, - "successThreshold": -1145306833, - "failureThreshold": 2063799569 + "initialDelaySeconds": 128019484, + "timeoutSeconds": 431781335, + "periodSeconds": -2130554644, + "successThreshold": 290736426, + "failureThreshold": -57352147 }, "lifecycle": { "postStart": { "exec": { "command": [ - "197" + "186" ] }, "httpGet": { - "path": "198", - "port": -2007811220, - "host": "199", - "scheme": "鎷卩蝾H", + "path": "187", + "port": "188", + "host": "189", + "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": -2035009296, - "host": "202" + "port": -337353552, + "host": "192" } }, "preStop": { "exec": { "command": [ - "203" + "193" ] }, "httpGet": { - "path": "204", - "port": "205", - "host": "206", - "scheme": "ńMǰ溟ɴ扵閝", + "path": "194", + "port": -374922344, + "host": "195", + "scheme": "緄Ú|dk_瀹鞎sn芞", "httpHeaders": [ { - "name": "207", - "value": "208" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": -1474440600, - "host": "209" + "port": 912103005, + "host": "198" } } }, - "terminationMessagePath": "210", - "terminationMessagePolicy": "廡ɑ龫`劳\u0026¼傭Ȟ1酃=6}ɡŇ", - "imagePullPolicy": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", + "terminationMessagePath": "199", + "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", + "imagePullPolicy": "\u003cé瞾", "securityContext": { "capabilities": { "add": [ - "d鲡" + "Ŭ" ], "drop": [ - "贅wE@Ȗs«öʮĀ\u003cé" + "ǙÄr蛏豈" ] }, "privileged": true, "seLinuxOptions": { - "user": "211", - "role": "212", - "type": "213", - "level": "214" + "user": "200", + "role": "201", + "type": "202", + "level": "203" }, "windowsOptions": { - "gmsaCredentialSpecName": "215", - "gmsaCredentialSpec": "216", - "runAsUserName": "217" + "gmsaCredentialSpecName": "204", + "gmsaCredentialSpec": "205", + "runAsUserName": "206" }, - "runAsUser": -7286288718856494813, - "runAsGroup": -5951050835676650382, + "runAsUser": -3447077152667955293, + "runAsGroup": -6457174729896610090, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ȉ彂" }, "stdinOnce": true } ], "containers": [ { - "name": "218", - "image": "219", + "name": "207", + "image": "208", "command": [ - "220" + "209" ], "args": [ - "221" + "210" ], - "workingDir": "222", + "workingDir": "211", "ports": [ { - "name": "223", - "hostPort": -1470854631, - "containerPort": -1815391069, - "protocol": "Ƹʋŀ樺ȃv", - "hostIP": "224" + "name": "212", + "hostPort": 1065976533, + "containerPort": -820119398, + "protocol": "@ùƸʋŀ樺ȃv", + "hostIP": "213" } ], "envFrom": [ { - "prefix": "225", + "prefix": "214", "configMapRef": { - "name": "226", + "name": "215", "optional": true }, "secretRef": { - "name": "227", + "name": "216", "optional": true } } ], "env": [ { - "name": "228", - "value": "229", + "name": "217", + "value": "218", "valueFrom": { "fieldRef": { - "apiVersion": "230", - "fieldPath": "231" + "apiVersion": "219", + "fieldPath": "220" }, "resourceFieldRef": { - "containerName": "232", - "resource": "233", + "containerName": "221", + "resource": "222", "divisor": "508" }, "configMapKeyRef": { - "name": "234", - "key": "235", + "name": "223", + "key": "224", "optional": false }, "secretKeyRef": { - "name": "236", - "key": "237", + "name": "225", + "key": "226", "optional": true } } @@ -660,41 +661,41 @@ }, "volumeMounts": [ { - "name": "238", + "name": "227", "readOnly": true, - "mountPath": "239", - "subPath": "240", + "mountPath": "228", + "subPath": "229", "mountPropagation": "", - "subPathExpr": "241" + "subPathExpr": "230" } ], "volumeDevices": [ { - "name": "242", - "devicePath": "243" + "name": "231", + "devicePath": "232" } ], "livenessProbe": { "exec": { "command": [ - "244" + "233" ] }, "httpGet": { - "path": "245", - "port": "246", - "host": "247", + "path": "234", + "port": "235", + "host": "236", "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "237", + "value": "238" } ] }, "tcpSocket": { "port": 1096174794, - "host": "250" + "host": "239" }, "initialDelaySeconds": 1591029717, "timeoutSeconds": 1255169591, @@ -705,24 +706,24 @@ "readinessProbe": { "exec": { "command": [ - "251" + "240" ] }, "httpGet": { - "path": "252", - "port": "253", - "host": "254", + "path": "241", + "port": "242", + "host": "243", "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", "httpHeaders": [ { - "name": "255", - "value": "256" + "name": "244", + "value": "245" } ] }, "tcpSocket": { - "port": "257", - "host": "258" + "port": "246", + "host": "247" }, "initialDelaySeconds": -394397948, "timeoutSeconds": 2040455355, @@ -734,51 +735,51 @@ "postStart": { "exec": { "command": [ - "259" + "248" ] }, "httpGet": { - "path": "260", - "port": "261", - "host": "262", + "path": "249", + "port": "250", + "host": "251", "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", "httpHeaders": [ { - "name": "263", - "value": "264" + "name": "252", + "value": "253" } ] }, "tcpSocket": { - "port": "265", - "host": "266" + "port": "254", + "host": "255" } }, "preStop": { "exec": { "command": [ - "267" + "256" ] }, "httpGet": { - "path": "268", + "path": "257", "port": -1675041613, - "host": "269", + "host": "258", "scheme": "揆ɘȌ脾嚏吐", "httpHeaders": [ { - "name": "270", - "value": "271" + "name": "259", + "value": "260" } ] }, "tcpSocket": { "port": -194343002, - "host": "272" + "host": "261" } } }, - "terminationMessagePath": "273", + "terminationMessagePath": "262", "terminationMessagePolicy": "Ȥ藠3.", "imagePullPolicy": "t莭琽§ć\\ ïì", "securityContext": { @@ -792,15 +793,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "263", + "role": "264", + "type": "265", + "level": "266" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "267", + "gmsaCredentialSpec": "268", + "runAsUserName": "269" }, "runAsUser": -2142888785755371163, "runAsGroup": -2879304435996142911, @@ -814,58 +815,58 @@ ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "270", + "image": "271", "command": [ - "283" + "272" ], "args": [ - "284" + "273" ], - "workingDir": "285", + "workingDir": "274", "ports": [ { - "name": "286", + "name": "275", "hostPort": -1740959124, "containerPort": 158280212, - "hostIP": "287" + "hostIP": "276" } ], "envFrom": [ { - "prefix": "288", + "prefix": "277", "configMapRef": { - "name": "289", + "name": "278", "optional": true }, "secretRef": { - "name": "290", + "name": "279", "optional": true } } ], "env": [ { - "name": "291", - "value": "292", + "name": "280", + "value": "281", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "282", + "fieldPath": "283" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", + "containerName": "284", + "resource": "285", "divisor": "985" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "286", + "key": "287", "optional": false }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "288", + "key": "289", "optional": false } } @@ -881,40 +882,40 @@ }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", + "name": "290", + "mountPath": "291", + "subPath": "292", "mountPropagation": "啛更", - "subPathExpr": "304" + "subPathExpr": "293" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "294", + "devicePath": "295" } ], "livenessProbe": { "exec": { "command": [ - "307" + "296" ] }, "httpGet": { - "path": "308", - "port": "309", - "host": "310", + "path": "297", + "port": "298", + "host": "299", "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "311", - "value": "312" + "name": "300", + "value": "301" } ] }, "tcpSocket": { "port": -979584143, - "host": "313" + "host": "302" }, "initialDelaySeconds": -1748648882, "timeoutSeconds": -239843014, @@ -925,24 +926,24 @@ "readinessProbe": { "exec": { "command": [ - "314" + "303" ] }, "httpGet": { - "path": "315", - "port": "316", - "host": "317", + "path": "304", + "port": "305", + "host": "306", "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", "httpHeaders": [ { - "name": "318", - "value": "319" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": "320", - "host": "321" + "port": "309", + "host": "310" }, "initialDelaySeconds": 37514563, "timeoutSeconds": -1871050070, @@ -954,51 +955,51 @@ "postStart": { "exec": { "command": [ - "322" + "311" ] }, "httpGet": { - "path": "323", - "port": "324", - "host": "325", + "path": "312", + "port": "313", + "host": "314", "scheme": "绤fʀļ腩墺Ò媁荭g", "httpHeaders": [ { - "name": "326", - "value": "327" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "328", - "host": "329" + "port": "317", + "host": "318" } }, "preStop": { "exec": { "command": [ - "330" + "319" ] }, "httpGet": { - "path": "331", + "path": "320", "port": -2133054549, - "host": "332", + "host": "321", "scheme": "遰=E", "httpHeaders": [ { - "name": "333", - "value": "334" + "name": "322", + "value": "323" } ] }, "tcpSocket": { - "port": "335", - "host": "336" + "port": "324", + "host": "325" } } }, - "terminationMessagePath": "337", + "terminationMessagePath": "326", "terminationMessagePolicy": "朦 wƯ貾坢'跩", "imagePullPolicy": "簳°Ļǟi\u0026皥贸", "securityContext": { @@ -1012,15 +1013,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "338", - "role": "339", - "type": "340", - "level": "341" + "user": "327", + "role": "328", + "type": "329", + "level": "330" }, "windowsOptions": { - "gmsaCredentialSpecName": "342", - "gmsaCredentialSpec": "343", - "runAsUserName": "344" + "gmsaCredentialSpecName": "331", + "gmsaCredentialSpec": "332", + "runAsUserName": "333" }, "runAsUser": 7933506142593743951, "runAsGroup": -8521633679555431923, @@ -1032,7 +1033,7 @@ "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "345" + "targetContainerName": "334" } ], "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", @@ -1040,26 +1041,26 @@ "activeDeadlineSeconds": -499179336506637450, "dnsPolicy": "ɐ鰥", "nodeSelector": { - "346": "347" + "335": "336" }, - "serviceAccountName": "348", - "serviceAccount": "349", + "serviceAccountName": "337", + "serviceAccount": "338", "automountServiceAccountToken": true, - "nodeName": "350", + "nodeName": "339", "hostNetwork": true, "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "351", - "role": "352", - "type": "353", - "level": "354" + "user": "340", + "role": "341", + "type": "342", + "level": "343" }, "windowsOptions": { - "gmsaCredentialSpecName": "355", - "gmsaCredentialSpec": "356", - "runAsUserName": "357" + "gmsaCredentialSpecName": "344", + "gmsaCredentialSpec": "345", + "runAsUserName": "346" }, "runAsUser": 3634773701753283428, "runAsGroup": -3042614092601658792, @@ -1070,18 +1071,18 @@ "fsGroup": -1778638259613624198, "sysctls": [ { - "name": "358", - "value": "359" + "name": "347", + "value": "348" } ] }, "imagePullSecrets": [ { - "name": "360" + "name": "349" } ], - "hostname": "361", - "subdomain": "362", + "hostname": "350", + "subdomain": "351", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1089,19 +1090,19 @@ { "matchExpressions": [ { - "key": "363", + "key": "352", "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "values": [ - "364" + "353" ] } ], "matchFields": [ { - "key": "365", + "key": "354", "operator": "C\"6x$1s", "values": [ - "366" + "355" ] } ] @@ -1114,19 +1115,19 @@ "preference": { "matchExpressions": [ { - "key": "367", + "key": "356", "operator": "鋄5弢ȹ均", "values": [ - "368" + "357" ] } ], "matchFields": [ { - "key": "369", + "key": "358", "operator": "SvEȤƏ埮p", "values": [ - "370" + "359" ] } ] @@ -1149,9 +1150,9 @@ ] }, "namespaces": [ - "377" + "366" ], - "topologyKey": "378" + "topologyKey": "367" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1173,9 +1174,9 @@ ] }, "namespaces": [ - "385" + "374" ], - "topologyKey": "386" + "topologyKey": "375" } } ] @@ -1198,9 +1199,9 @@ ] }, "namespaces": [ - "393" + "382" ], - "topologyKey": "394" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1219,45 +1220,45 @@ ] }, "namespaces": [ - "401" + "390" ], - "topologyKey": "402" + "topologyKey": "391" } } ] } }, - "schedulerName": "403", + "schedulerName": "392", "tolerations": [ { - "key": "404", + "key": "393", "operator": "[L", - "value": "405", + "value": "394", "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", "tolerationSeconds": 4456040724914385859 } ], "hostAliases": [ { - "ip": "406", + "ip": "395", "hostnames": [ - "407" + "396" ] } ], - "priorityClassName": "408", + "priorityClassName": "397", "priority": -1576968453, "dnsConfig": { "nameservers": [ - "409" + "398" ], "searches": [ - "410" + "399" ], "options": [ { - "name": "411", - "value": "412" + "name": "400", + "value": "401" } ] }, @@ -1266,7 +1267,7 @@ "conditionType": "v" } ], - "runtimeClassName": "413", + "runtimeClassName": "402", "enableServiceLinks": false, "preemptionPolicy": "忖p様", "overhead": { @@ -1275,7 +1276,7 @@ "topologySpreadConstraints": [ { "maxSkew": -782776982, - "topologyKey": "414", + "topologyKey": "403", "whenUnsatisfiable": "鈀", "labelSelector": { "matchLabels": { @@ -1304,8 +1305,8 @@ "type": "", "status": "'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "421", - "message": "422" + "reason": "410", + "message": "411" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb index 700de2281fc15c1c68add9f196258eb8cec3ddfc..890d3b8773615dac6ed38a44e80e72fe4317d0f9 100644 GIT binary patch delta 3745 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 O`pG5>O=i#+_Wchn${FVX diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml index ce7c40de32a..573957b05c6 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,52 +25,49 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: 2114329341 - replicas: -1978186127 + minReadySeconds: -1971381490 + replicas: 896585016 selector: matchExpressions: - - key: M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G - operator: NotIn + - key: U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t + operator: In values: - - 7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU + - M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5 matchLabels: - 0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7: s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8 + g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5: "" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -4739960484747932992 + deletionGracePeriodSeconds: -152893758082474859 finalizers: - - "42" - generateName: "31" - generation: 1395707490843892091 + - "36" + generateName: "25" + generation: -6617020301190572172 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: ɔȖ脵鴈Ōƾ焁yǠ/淹\韲翁& - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" + manager: "38" + operation: ƅS·Õüe0ɔȖ脵鴈Ō + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" blockOwnerDeletion: true - controller: false - kind: "40" - name: "41" - uid: ·Õ - resourceVersion: "11500002557443244703" - selfLink: "33" - uid: 诫z徃鷢6ȥ啕禗 + controller: true + kind: "34" + name: "35" + uid: 'ɖgȏ哙ȍȂ揲ȼDDŽLŬp:' + resourceVersion: "7336814125345800857" + selfLink: "27" + uid: ʬ spec: activeDeadlineSeconds: -499179336506637450 affinity: @@ -81,28 +75,28 @@ spec: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "367" + - key: "356" operator: 鋄5弢ȹ均 values: - - "368" + - "357" matchFields: - - key: "369" + - key: "358" operator: SvEȤƏ埮p values: - - "370" + - "359" weight: -1292310438 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "363" + - key: "352" operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 values: - - "364" + - "353" matchFields: - - key: "365" + - key: "354" operator: C"6x$1s values: - - "366" + - "355" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -115,8 +109,8 @@ spec: matchLabels: 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F namespaces: - - "385" - topologyKey: "386" + - "374" + topologyKey: "375" weight: -531787516 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -126,8 +120,8 @@ spec: matchLabels: o.6GA2C: s.Nj-s namespaces: - - "377" - topologyKey: "378" + - "366" + topologyKey: "367" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -138,8 +132,8 @@ spec: matchLabels: t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 namespaces: - - "401" - topologyKey: "402" + - "390" + topologyKey: "391" weight: -1139477828 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -151,120 +145,120 @@ spec: matchLabels: 4.B.__6m: J1-1.9_.-.Ms7_tP namespaces: - - "393" - topologyKey: "394" + - "382" + topologyKey: "383" automountServiceAccountToken: true containers: - args: - - "221" + - "210" command: - - "220" + - "209" env: - - name: "228" - value: "229" + - name: "217" + value: "218" valueFrom: configMapKeyRef: - key: "235" - name: "234" + key: "224" + name: "223" optional: false fieldRef: - apiVersion: "230" - fieldPath: "231" + apiVersion: "219" + fieldPath: "220" resourceFieldRef: - containerName: "232" + containerName: "221" divisor: "508" - resource: "233" + resource: "222" secretKeyRef: - key: "237" - name: "236" + key: "226" + name: "225" optional: true envFrom: - configMapRef: - name: "226" + name: "215" optional: true - prefix: "225" + prefix: "214" secretRef: - name: "227" + name: "216" optional: true - image: "219" + image: "208" imagePullPolicy: t莭琽§ć\ ïì lifecycle: postStart: exec: command: - - "259" + - "248" httpGet: - host: "262" + host: "251" httpHeaders: - - name: "263" - value: "264" - path: "260" - port: "261" + - name: "252" + value: "253" + path: "249" + port: "250" scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 tcpSocket: - host: "266" - port: "265" + host: "255" + port: "254" preStop: exec: command: - - "267" + - "256" httpGet: - host: "269" + host: "258" httpHeaders: - - name: "270" - value: "271" - path: "268" + - name: "259" + value: "260" + path: "257" port: -1675041613 scheme: 揆ɘȌ脾嚏吐 tcpSocket: - host: "272" + host: "261" port: -194343002 livenessProbe: exec: command: - - "244" + - "233" failureThreshold: 817152661 httpGet: - host: "247" + host: "236" httpHeaders: - - name: "248" - value: "249" - path: "245" - port: "246" + - name: "237" + value: "238" + path: "234" + port: "235" scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 initialDelaySeconds: 1591029717 periodSeconds: 622473257 successThreshold: -966649167 tcpSocket: - host: "250" + host: "239" port: 1096174794 timeoutSeconds: 1255169591 - name: "218" + name: "207" ports: - - containerPort: -1815391069 - hostIP: "224" - hostPort: -1470854631 - name: "223" - protocol: Ƹʋŀ樺ȃv + - containerPort: -820119398 + hostIP: "213" + hostPort: 1065976533 + name: "212" + protocol: '@ùƸʋŀ樺ȃv' readinessProbe: exec: command: - - "251" + - "240" failureThreshold: 1214895765 httpGet: - host: "254" + host: "243" httpHeaders: - - name: "255" - value: "256" - path: "252" - port: "253" + - name: "244" + value: "245" + path: "241" + port: "242" scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ initialDelaySeconds: -394397948 periodSeconds: 1505972335 successThreshold: -26910286 tcpSocket: - host: "258" - port: "257" + host: "247" + port: "246" timeoutSeconds: 2040455355 resources: limits: @@ -285,148 +279,148 @@ spec: runAsNonRoot: false runAsUser: -2142888785755371163 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "266" + role: "264" + type: "265" + user: "263" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" + gmsaCredentialSpec: "268" + gmsaCredentialSpecName: "267" + runAsUserName: "269" stdin: true - terminationMessagePath: "273" + terminationMessagePath: "262" terminationMessagePolicy: Ȥ藠3. volumeDevices: - - devicePath: "243" - name: "242" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "239" + - mountPath: "228" mountPropagation: "" - name: "238" + name: "227" readOnly: true - subPath: "240" - subPathExpr: "241" - workingDir: "222" + subPath: "229" + subPathExpr: "230" + workingDir: "211" dnsConfig: nameservers: - - "409" + - "398" options: - - name: "411" - value: "412" + - name: "400" + value: "401" searches: - - "410" + - "399" dnsPolicy: ɐ鰥 enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "273" command: - - "283" + - "272" env: - - name: "291" - value: "292" + - name: "280" + value: "281" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "287" + name: "286" optional: false fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "282" + fieldPath: "283" resourceFieldRef: - containerName: "295" + containerName: "284" divisor: "985" - resource: "296" + resource: "285" secretKeyRef: - key: "300" - name: "299" + key: "289" + name: "288" optional: false envFrom: - configMapRef: - name: "289" + name: "278" optional: true - prefix: "288" + prefix: "277" secretRef: - name: "290" + name: "279" optional: true - image: "282" + image: "271" imagePullPolicy: 簳°Ļǟi&皥贸 lifecycle: postStart: exec: command: - - "322" + - "311" httpGet: - host: "325" + host: "314" httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" + - name: "315" + value: "316" + path: "312" + port: "313" scheme: 绤fʀļ腩墺Ò媁荭g tcpSocket: - host: "329" - port: "328" + host: "318" + port: "317" preStop: exec: command: - - "330" + - "319" httpGet: - host: "332" + host: "321" httpHeaders: - - name: "333" - value: "334" - path: "331" + - name: "322" + value: "323" + path: "320" port: -2133054549 scheme: 遰=E tcpSocket: - host: "336" - port: "335" + host: "325" + port: "324" livenessProbe: exec: command: - - "307" + - "296" failureThreshold: -1538905728 httpGet: - host: "310" + host: "299" httpHeaders: - - name: "311" - value: "312" - path: "308" - port: "309" + - name: "300" + value: "301" + path: "297" + port: "298" scheme: Ů+朷Ǝ膯ljVX1虊 initialDelaySeconds: -1748648882 periodSeconds: 1381579966 successThreshold: -1418092595 tcpSocket: - host: "313" + host: "302" port: -979584143 timeoutSeconds: -239843014 - name: "281" + name: "270" ports: - containerPort: 158280212 - hostIP: "287" + hostIP: "276" hostPort: -1740959124 - name: "286" + name: "275" readinessProbe: exec: command: - - "314" + - "303" failureThreshold: 522560228 httpGet: - host: "317" + host: "306" httpHeaders: - - name: "318" - value: "319" - path: "315" - port: "316" + - name: "307" + value: "308" + path: "304" + port: "305" scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T initialDelaySeconds: 37514563 periodSeconds: 474715842 successThreshold: -1620315711 tcpSocket: - host: "321" - port: "320" + host: "310" + port: "309" timeoutSeconds: -1871050070 resources: limits: @@ -447,234 +441,235 @@ spec: runAsNonRoot: true runAsUser: 7933506142593743951 seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" + level: "330" + role: "328" + type: "329" + user: "327" windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" + gmsaCredentialSpec: "332" + gmsaCredentialSpecName: "331" + runAsUserName: "333" stdin: true stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" + targetContainerName: "334" + terminationMessagePath: "326" terminationMessagePolicy: 朦 wƯ貾坢'跩 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "295" + name: "294" volumeMounts: - - mountPath: "302" + - mountPath: "291" mountPropagation: 啛更 - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + name: "290" + subPath: "292" + subPathExpr: "293" + workingDir: "274" hostAliases: - hostnames: - - "407" - ip: "406" + - "396" + ip: "395" hostNetwork: true hostPID: true - hostname: "361" + hostname: "350" imagePullSecrets: - - name: "360" + - name: "349" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: true fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "375" - resource: "171" + containerName: "159" + divisor: "455" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: false envFrom: - configMapRef: - name: "164" + name: "153" optional: false - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: false - image: "157" - imagePullPolicy: ɖȃ賲鐅臬dH巧壚tC十Oɢ + image: "146" + imagePullPolicy: <é瞾 lifecycle: postStart: exec: command: - - "197" + - "186" httpGet: - host: "199" + host: "189" httpHeaders: - - name: "200" - value: "201" - path: "198" - port: -2007811220 - scheme: 鎷卩蝾H + - name: "190" + value: "191" + path: "187" + port: "188" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ tcpSocket: - host: "202" - port: -2035009296 + host: "192" + port: -337353552 preStop: exec: command: - - "203" + - "193" httpGet: - host: "206" + host: "195" httpHeaders: - - name: "207" - value: "208" - path: "204" - port: "205" - scheme: ńMǰ溟ɴ扵閝 + - name: "196" + value: "197" + path: "194" + port: -374922344 + scheme: 緄Ú|dk_瀹鞎sn芞 tcpSocket: - host: "209" - port: -1474440600 + host: "198" + port: 912103005 livenessProbe: exec: command: - - "182" - failureThreshold: -1638339389 + - "171" + failureThreshold: 2053960192 httpGet: - host: "185" + host: "174" httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: 痗ȡmƴy綸_Ú8參遼ūPH - initialDelaySeconds: 655980302 - periodSeconds: 446829537 - successThreshold: -1987044888 + - name: "175" + value: "176" + path: "172" + port: "173" + scheme: ƴy綸_Ú8參遼ūPH炮 + initialDelaySeconds: 741871873 + periodSeconds: -1987044888 + successThreshold: -1638339389 tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 741871873 - name: "156" + host: "178" + port: "177" + timeoutSeconds: 446829537 + name: "145" ports: - - containerPort: -1996616480 - hostIP: "162" - hostPort: 1473141590 - name: "161" - protocol: ł/擇ɦĽ胚O醔ɍ厶 + - containerPort: 715087892 + hostIP: "151" + hostPort: -1896921306 + name: "150" + protocol: 倱< readinessProbe: exec: command: - - "190" - failureThreshold: 2063799569 + - "179" + failureThreshold: -57352147 httpGet: - host: "192" + host: "181" httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 961508537 - scheme: 黖ȓ - initialDelaySeconds: -50623103 - periodSeconds: -1350331007 - successThreshold: -1145306833 + - name: "182" + value: "183" + path: "180" + port: -1903685915 + scheme: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 + initialDelaySeconds: 128019484 + periodSeconds: -2130554644 + successThreshold: 290736426 tcpSocket: - host: "196" - port: "195" - timeoutSeconds: 1795738696 + host: "185" + port: "184" + timeoutSeconds: 431781335 resources: limits: - "": "596" + /擇ɦĽ胚O醔ɍ厶耈 T: "618" requests: - a坩O`涁İ而踪鄌eÞȦY籎顒: "45" + á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - d鲡 + - Ŭ drop: - - 贅wE@Ȗs«öʮĀ<é + - ǙÄr蛏豈 privileged: true - procMount: 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 - readOnlyRootFilesystem: false - runAsGroup: -5951050835676650382 + procMount: ȉ彂 + readOnlyRootFilesystem: true + runAsGroup: -6457174729896610090 runAsNonRoot: true - runAsUser: -7286288718856494813 + runAsUser: -3447077152667955293 seLinuxOptions: - level: "214" - role: "212" - type: "213" - user: "211" + level: "203" + role: "201" + type: "202" + user: "200" windowsOptions: - gmsaCredentialSpec: "216" - gmsaCredentialSpecName: "215" - runAsUserName: "217" + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" stdinOnce: true - terminationMessagePath: "210" - terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ + terminationMessagePath: "199" + terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: 捘ɍi縱ù墴 - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + - mountPath: "166" + mountPropagation: dʪīT捘ɍi縱ù墴1Rƥ + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "339" nodeSelector: - "346": "347" + "335": "336" overhead: U凮: "684" preemptionPolicy: 忖p様 priority: -1576968453 - priorityClassName: "408" + priorityClassName: "397" readinessGates: - conditionType: v restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "413" - schedulerName: "403" + runtimeClassName: "402" + schedulerName: "392" securityContext: fsGroup: -1778638259613624198 runAsGroup: -3042614092601658792 runAsNonRoot: false runAsUser: 3634773701753283428 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "343" + role: "341" + type: "342" + user: "340" supplementalGroups: - -2125560879532395341 sysctls: - - name: "358" - value: "359" + - name: "347" + value: "348" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "345" + gmsaCredentialSpecName: "344" + runAsUserName: "346" + serviceAccount: "338" + serviceAccountName: "337" shareProcessNamespace: false - subdomain: "362" + subdomain: "351" terminationGracePeriodSeconds: 5620818514944490121 tolerations: - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "404" + key: "393" operator: '[L' tolerationSeconds: 4456040724914385859 - value: "405" + value: "394" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -684,210 +679,212 @@ spec: ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A : BM.6-.Y_72-_--p7 maxSkew: -782776982 - topologyKey: "414" + topologyKey: "403" whenUnsatisfiable: 鈀 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 200492355 + fsType: "45" + partition: -762366823 readOnly: true - volumeID: "55" + volumeID: "44" azureDisk: - cachingMode: 躢 - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 黰eȪ嵛4$%Qɰ - readOnly: false + cachingMode: HǺƶȤ^}穠 + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 躢 + readOnly: true azureFile: - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 1632959949 + defaultMode: -460478410 items: - - key: "108" - mode: -1057154155 - path: "109" - name: "107" - optional: true + - key: "97" + mode: -2039036935 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -395029362 + defaultMode: -106644772 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1332301579 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1235524154 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "51" - resource: "101" + containerName: "89" + divisor: "457" + resource: "90" emptyDir: - medium: 繡楙¯ĦE勗E濞偘 - sizeLimit: "349" + medium: 彭聡A3fƻfʣ + sizeLimit: "115" fc: - fsType: "103" - lun: -2007808768 + fsType: "92" + lun: 441887498 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: 1648350164 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1499132872 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" - readOnly: true + endpoints: "61" + path: "62" hostPath: - path: "52" - type: ȱ蓿彭聡A3fƻf + path: "41" + type: 6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1746427184 + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 1655406148 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" - server: "63" - persistentVolumeClaim: - claimName: "74" - photonPersistentDisk: - fsType: "123" - pdID: "122" - portworxVolume: - fsType: "138" + - "58" readOnly: true - volumeID: "137" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" + persistentVolumeClaim: + claimName: "63" + readOnly: true + photonPersistentDisk: + fsType: "112" + pdID: "111" + portworxVolume: + fsType: "127" + volumeID: "126" projected: - defaultMode: 715087892 + defaultMode: -522879476 sources: - configMap: items: - - key: "133" - mode: 2020789772 - path: "134" - name: "132" + - key: "122" + mode: -1694464659 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -687313111 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 926891073 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "934" - resource: "131" + containerName: "119" + divisor: "746" + resource: "120" secret: items: - - key: "125" - mode: 273818613 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -1399063270 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: 3485267088372060587 - path: "136" + audience: "124" + expirationSeconds: -7593824971107985079 + path: "125" quobyte: - group: "117" - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + readOnly: true + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" + readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 395412881 + defaultMode: 372704313 items: - - key: "61" - mode: 1360806276 - path: "62" + - key: "50" + mode: -104666658 + path: "51" optional: true - secretName: "60" + secretName: "49" storageos: - fsType: "149" + fsType: "138" + readOnly: true secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: availableReplicas: 740158871 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "422" - reason: "421" + message: "411" + reason: "410" status: '''ƈoIǢ龞瞯å' type: "" fullyLabeledReplicas: -929473748 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.json index fd4f6fbba47..2ba5a3924db 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,19 +35,18 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -2052872833 + "replicas": -595102844 }, "status": { - "replicas": -125651156, + "replicas": 70007838, "selector": { - "24": "25" + "18": "19" }, - "targetSelector": "26" + "targetSelector": "20" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.pb index d6335b919c3c6113510415e3193ef071d4db62f9..38bb5c991c8a3657f826bd03e8ee4c83f9a8635e 100644 GIT binary patch delta 96 zcmZ3=^oDVQjMgbeuBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a z6VpQ&wI}Y;RukgpXn8*O$>0A#z$himG4IC)MIjC@CPND$CPPapCL;qW1|Ui-o-jM^>Di zq4#3Odb19~YCM zg%Af98<4gXVi4ly_Fup diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.yaml index b0c073e72e3..b41c7208cc6 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Scale.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,13 +25,13 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - replicas: -2052872833 + replicas: -595102844 status: - replicas: -125651156 + replicas: 70007838 selector: - "24": "25" - targetSelector: "26" + "18": "19" + targetSelector: "20" diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json index 3787ededf7f..fd0b298c5d2 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1305,123 +1295,122 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "419", - "generateName": "420", - "namespace": "421", - "selfLink": "422", - "uid": "Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4'", - "resourceVersion": "5909244224410561046", - "generation": 4222921737865567580, + "name": "404", + "generateName": "405", + "namespace": "406", + "selfLink": "407", + "uid": "鋡浤ɖ緖焿熣", + "resourceVersion": "7821588463673401230", + "generation": -3408884454087787958, "creationTimestamp": null, - "deletionGracePeriodSeconds": -5717089103430590081, + "deletionGracePeriodSeconds": -7871971636641833314, "labels": { - "424": "425" + "409": "410" }, "annotations": { - "426": "427" + "411": "412" }, "ownerReferences": [ { - "apiVersion": "428", - "kind": "429", - "name": "430", - "uid": "綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl", - "controller": true, + "apiVersion": "413", + "kind": "414", + "name": "415", + "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", + "controller": false, "blockOwnerDeletion": true } ], "finalizers": [ - "431" + "416" ], - "clusterName": "432", + "clusterName": "417", "managedFields": [ { - "manager": "433", - "operation": "ºDZ秶ʑ韝e溣狣愿激H\\Ȳȍŋƀ", - "apiVersion": "434", - "fields": {"435":{"436":null}} + "manager": "418", + "operation": "ÕW肤", + "apiVersion": "419" } ] }, "spec": { "accessModes": [ - "菸Fǥ楶4" + "婻漛Ǒ僕ʨƌɦ" ], "selector": { "matchLabels": { - "l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV": "o7p" + "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" }, "matchExpressions": [ { - "key": "P05._Lsu-H_.f82-8_.UdWn", - "operator": "DoesNotExist" + "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "operator": "Exists" } ] }, "resources": { "limits": { - "ųd,4;蛡媈U曰n夬LJ:B": "971" + "宥ɓ": "692" }, "requests": { - "iʍjʒu+,妧縖%Á扰": "778" + "犔kU坥;ȉv5": "156" } }, - "volumeName": "445", - "storageClassName": "446", - "volumeMode": "ȩ纾S", + "volumeName": "426", + "storageClassName": "427", + "volumeMode": "qwïźU痤ȵ", "dataSource": { - "apiGroup": "447", - "kind": "448", - "name": "449" + "apiGroup": "428", + "kind": "429", + "name": "430" } }, "status": { - "phase": "+½剎惃ȳTʬ戱PRɄɝ", + "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", "accessModes": [ - "ķ´ʑ潞Ĵ3Q蠯0ƍ\\溮Ŀ" + "\\屪kƱ" ], "capacity": { - "NZ!": "174" + "\"娥Qô!- å2:濕": "362" }, "conditions": [ { - "type": "ĩ僙", - "status": "喣JȶZy傦ɵNJ\"M!", - "lastProbeTime": "2285-12-25T00:38:18Z", - "lastTransitionTime": "2512-02-22T10:46:17Z", - "reason": "450", - "message": "451" + "type": "nj", + "status": "RY客\\ǯ'_", + "lastProbeTime": "2513-10-02T03:37:43Z", + "lastTransitionTime": "2172-12-06T22:36:31Z", + "reason": "431", + "message": "432" } ] } } ], - "serviceName": "452", - "podManagementPolicy": ":YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ", + "serviceName": "433", + "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", "updateStrategy": { - "type": "ő净湅oĒ", + "type": "瓘ȿ4", "rollingUpdate": { - "partition": -719918379 + "partition": -1578718618 } }, - "revisionHistoryLimit": -1836333731 + "revisionHistoryLimit": 1575668098 }, "status": { - "observedGeneration": -4981998708334029152, - "replicas": -572386114, - "readyReplicas": -2075681814, - "currentReplicas": 329977250, - "updatedReplicas": -758762196, - "currentRevision": "453", - "updateRevision": "454", - "collisionCount": -1055115763, + "observedGeneration": -2994706141758547943, + "replicas": -148329440, + "readyReplicas": -1823513364, + "currentReplicas": -981691190, + "updatedReplicas": 2069003631, + "currentRevision": "434", + "updateRevision": "435", + "collisionCount": -2044314719, "conditions": [ { - "type": "疅檎ǽ曖sƖTƫ雮蛱ñYȴ鴜.弊þ", - "status": "Ŷö靌瀞鈝Ń¥厀Ł8Ì所Í绝鲸Ȭ", - "lastTransitionTime": "2481-04-16T00:02:28Z", - "reason": "455", - "message": "456" + "type": "GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V", + "status": "x臥", + "lastTransitionTime": "2583-07-02T00:14:17Z", + "reason": "436", + "message": "437" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb index 5418e98326b1b572581b4c8263467bb31ca49eee..64369a21ec2c0353aefd10426f2fe705e7def7ba 100644 GIT binary patch literal 6972 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 Z#SxI`#^>+UECq>xhC)S9Ehek!e*u!t-Om63 literal 6816 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 NRuVb8Y%|$S{||oO4ov_6 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml index 634256a5f44..0075a7b5fa9 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,952 +25,941 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - podManagementPolicy: :YĹ爩í鬯濴VǕ癶L浼h嫨炛ʭŞ - replicas: -1978186127 - revisionHistoryLimit: -1836333731 + podManagementPolicy: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + replicas: 896585016 + revisionHistoryLimit: 1575668098 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F - serviceName: "452" + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 + serviceName: "433" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" updateStrategy: rollingUpdate: - partition: -719918379 - type: ő净湅oĒ + partition: -1578718618 + type: 瓘ȿ4 volumeClaimTemplates: - metadata: annotations: - "426": "427" - clusterName: "432" + "411": "412" + clusterName: "417" creationTimestamp: null - deletionGracePeriodSeconds: -5717089103430590081 + deletionGracePeriodSeconds: -7871971636641833314 finalizers: - - "431" - generateName: "420" - generation: 4222921737865567580 + - "416" + generateName: "405" + generation: -3408884454087787958 labels: - "424": "425" + "409": "410" managedFields: - - apiVersion: "434" - fields: - "435": - "436": null - manager: "433" - operation: ºDZ秶ʑ韝e溣狣愿激H\Ȳȍŋƀ - name: "419" - namespace: "421" + - apiVersion: "419" + manager: "418" + operation: ÕW肤 + name: "404" + namespace: "406" ownerReferences: - - apiVersion: "428" + - apiVersion: "413" blockOwnerDeletion: true - controller: true - kind: "429" - name: "430" - uid: 綶ĀRġ磸蛕ʟ?ȊJ赟鷆šl - resourceVersion: "5909244224410561046" - selfLink: "422" - uid: Z槇鿖]甙ªŒ,躻[鶆f盧詳痍4' + controller: false + kind: "414" + name: "415" + uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ + resourceVersion: "7821588463673401230" + selfLink: "407" + uid: 鋡浤ɖ緖焿熣 spec: accessModes: - - 菸Fǥ楶4 + - 婻漛Ǒ僕ʨƌɦ dataSource: - apiGroup: "447" - kind: "448" - name: "449" + apiGroup: "428" + kind: "429" + name: "430" resources: limits: - ųd,4;蛡媈U曰n夬LJ:B: "971" + 宥ɓ: "692" requests: - iʍjʒu+,妧縖%Á扰: "778" + 犔kU坥;ȉv5: "156" selector: matchExpressions: - - key: P05._Lsu-H_.f82-8_.UdWn - operator: DoesNotExist + - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + operator: Exists matchLabels: - l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b69x98--7g0e9/a_dWUV: o7p - storageClassName: "446" - volumeMode: ȩ纾S - volumeName: "445" + ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H + storageClassName: "427" + volumeMode: qwïźU痤ȵ + volumeName: "426" status: accessModes: - - ķ´ʑ潞Ĵ3Q蠯0ƍ\溮Ŀ + - \屪kƱ capacity: - NZ!: "174" + '"娥Qô!- å2:濕': "362" conditions: - - lastProbeTime: "2285-12-25T00:38:18Z" - lastTransitionTime: "2512-02-22T10:46:17Z" - message: "451" - reason: "450" - status: 喣JȶZy傦ɵNJ"M! - type: ĩ僙 - phase: +½剎惃ȳTʬ戱PRɄɝ + - lastProbeTime: "2513-10-02T03:37:43Z" + lastTransitionTime: "2172-12-06T22:36:31Z" + message: "432" + reason: "431" + status: RY客\ǯ'_ + type: nj + phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj status: - collisionCount: -1055115763 + collisionCount: -2044314719 conditions: - - lastTransitionTime: "2481-04-16T00:02:28Z" - message: "456" - reason: "455" - status: Ŷö靌瀞鈝Ń¥厀Ł8Ì所Í绝鲸Ȭ - type: 疅檎ǽ曖sƖTƫ雮蛱ñYȴ鴜.弊þ - currentReplicas: 329977250 - currentRevision: "453" - observedGeneration: -4981998708334029152 - readyReplicas: -2075681814 - replicas: -572386114 - updateRevision: "454" - updatedReplicas: -758762196 + - lastTransitionTime: "2583-07-02T00:14:17Z" + message: "437" + reason: "436" + status: x臥 + type: GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V + currentReplicas: -981691190 + currentRevision: "434" + observedGeneration: -2994706141758547943 + readyReplicas: -1823513364 + replicas: -148329440 + updateRevision: "435" + updatedReplicas: 2069003631 diff --git a/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.json b/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.json index 8d16df9e064..8db869d9ccd 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.json +++ b/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,25 +35,24 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "audiences": [ - "24" + "18" ], - "expirationSeconds": -8496244716696586452, + "expirationSeconds": 3850803321873644574, "boundObjectRef": { - "kind": "25", - "apiVersion": "26", - "name": "27", - "uid": "Ă凗蓏Ŋ蛊ĉy" + "kind": "19", + "apiVersion": "20", + "name": "21", + "uid": "r鯹)晿\u003co,c鮽ort昍řČ扷5ƗǸ" } }, "status": { - "token": "28", - "expirationTimestamp": "2095-08-29T22:12:41Z" + "token": "22", + "expirationTimestamp": "1999-07-03T22:31:10Z" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.pb b/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenRequest.pb index 27d10cb05c4ed2646c6cecfd3b22b40082fde099..5e754aa522fb138215f78a2e11f6edef07bd804a 100644 GIT binary patch delta 143 zcmV;A0C4}&0umFA4%NIT8XgFd70fF(M&y>94sd=9#}dZ!BZ!uDx$^ xbmo|i#hJv6=83m8#+S#qAfEWJp@65exHTFM3IZ}R5(o&cp8C535C9qgA^;aBE$jdQ delta 178 zcmZ3-bdhO-zV{p^t{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|4#bjh6B?lx;g_w-Yq?nA%l?0A7J#C-g delta 161 zcmeBS+RrpW&%2w6>joniqmdA!u@s|;5~Hb>(vjAei@T4kF7$dfuPf2w#lqf%BP&kM z(0egsz1flOu%}CQq#B7Bnpv8e7?~QFn^+iIn3VU3;@8`qChUKFHp*e3L4vSLfC_Oeg-lGoBRgf{5YTHr2AmUJ8wUr2MCNI zNALt?gTr2`;^tEPY|@S@)g<@#1$+PQ&NHDlMm^&?2VMwG7)>LZB^t{-4Sl>Ov=T!K Ef0^MDOaK4? delta 161 zcmbQpbcAVwv3EBU*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1j7+6eI2eQ^fIKrG&s>Vh$U=z=$g>n;;bJm2kYX}6QerYT Jlwwd~008#^C=37q diff --git a/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.yaml b/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.yaml index c047c1f5268..56a40a23757 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,22 +25,22 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: audiences: - - "25" - token: "24" + - "19" + token: "18" status: audiences: - - "31" - error: "32" + - "25" + error: "26" user: extra: - "29": - - "30" + "23": + - "24" groups: - - "28" - uid: "27" - username: "26" + - "22" + uid: "21" + username: "20" diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.json b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.json index dbbcf624e44..f459b2470d4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.json +++ b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,40 +35,38 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "resourceAttributes": { - "namespace": "24", - "verb": "25", - "group": "26", - "version": "27", - "resource": "28", - "subresource": "29", - "name": "30" + "namespace": "18", + "verb": "19", + "group": "20", + "version": "21", + "resource": "22", + "subresource": "23", + "name": "24" }, "nonResourceAttributes": { - "path": "31", - "verb": "32" + "path": "25", + "verb": "26" }, - "user": "33", + "user": "27", "groups": [ - "34" + "28" ], "extra": { - "35": [ - "36" + "29": [ + "30" ] }, - "uid": "37" + "uid": "31" }, "status": { "allowed": false, - "denied": true, - "reason": "38", - "evaluationError": "39" + "reason": "32", + "evaluationError": "33" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.pb b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.LocalSubjectAccessReview.pb index ff00cc0ef21703e16af15c708b3a32af04bcf089..6a8b454ff5b5f5f0e9e1596697b960a9dd8c9077 100644 GIT binary patch delta 142 zcmWN`u?@m75Cu@*7e#cUvZyQyl+tO=|D420#SmGEo(#bb%)$yRKuOy7zIfxg=AYI_7-v!gI!-*tb}r zlkBAgsZlzQDQRKRTISHvn>K3R9(P%{?|O3=d$LHwAx#fz08<1>Fkivq77JDfHh)-T Mx9@A5jW@yk0cUIz@&Et; delta 169 zcmbQwbctz#rT1het{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|?+J}xFh z3n30JHXv;}=>CBwyJWFo|5WGcmEWTwPqWUj?zWMRZ)WNF1@YyecrWNawJWNakG T!@&Tgjis23O%xcV7?cST5QSmhi6XixvQi+IEeu&w<&dMzKj;Sv z29yX-s53S`ayF-1^}Si!R$FQ1e7~@q*YXUbN^UXfy>|~ni^80Q3^x^)etbfAjYAs# DFjNt= delta 155 zcmbQhbeL&^g?B3x*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1M&?RPMj$mzMwUWM#s(4$N=(LvQVdEA E01Ch-b^rhX diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml index bb029b9888f..4f185a35076 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,25 +25,25 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - namespace: "24" + namespace: "18" status: - evaluationError: "31" - incomplete: false + evaluationError: "25" + incomplete: true nonResourceRules: - nonResourceURLs: - - "30" + - "24" verbs: - - "29" + - "23" resourceRules: - apiGroups: - - "26" + - "20" resourceNames: - - "28" + - "22" resources: - - "27" + - "21" verbs: - - "25" + - "19" diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.json b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.json index e9aadf558ba..49d7e4c0f93 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.json +++ b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,40 +35,38 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "resourceAttributes": { - "namespace": "24", - "verb": "25", - "group": "26", - "version": "27", - "resource": "28", - "subresource": "29", - "name": "30" + "namespace": "18", + "verb": "19", + "group": "20", + "version": "21", + "resource": "22", + "subresource": "23", + "name": "24" }, "nonResourceAttributes": { - "path": "31", - "verb": "32" + "path": "25", + "verb": "26" }, - "user": "33", + "user": "27", "groups": [ - "34" + "28" ], "extra": { - "35": [ - "36" + "29": [ + "30" ] }, - "uid": "37" + "uid": "31" }, "status": { "allowed": false, - "denied": true, - "reason": "38", - "evaluationError": "39" + "reason": "32", + "evaluationError": "33" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.pb b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.pb index 340fdc9670022251f32551312aadba76f3bb037b..b1e56c78887e5e495c10b90e856a42ee323157fd 100644 GIT binary patch delta 142 zcmWN`u?@m75Cu@*7e!=Iov17dl+tO=|Lnw}Vu%dH2rvW_FbgX%10`wS`{Ip9%Rh-P zi9!`mQb%c77M@D6%4)5y-TE@yO!Mb`lj-@HHoe7jMCppMCeTK(WRL{?3RWE=*c6=i bUH0uc?y~A3!j15fjzds56WlK$g)#gAq*fOw delta 193 zcmWNH!3se^6o&7dBu$bgtI0yMyh`_;Gc$KaDQmW}#e%(uup!0HN{NNCuwdZtiCA$6j}i-BH5qRZ%mjs{Nq a&il5cyDWB4cqY8WV;2n02=_~fp$~t%vKLwa delta 193 zcmdnX^nq!Dz4vM+t{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|=0(6LySVI)0_`ByzcQQ_AOTE zBzq}AYLw1nN?KU7mSyPZO&c|@&xg$GcfPrcJz1pTkQNVW08<1>FkivqCJR;vHh-98 Mx9@A5jW@yk0dT?;3jhEB delta 169 zcmZ3&be(B}o%duWt{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|?+J}xFh z3n30JHXv;}=>CBwyJWFo|5WGcmEWTwPqWUj?zWMRZ)WNF1@YyecrWNawJWNakG T!@&Tgjis23O%xcV7?cV!Z delta 155 zcmbQrbb@Jut#>OE*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1$AtJ8_S;gO&gn9~YCM zg%Af98<4gXVi02CVlpz3QsNQ-(xyU8MrKk>M&?RPMj$mzMwUWM#s(4$N=(LvQVdEA E02XN{j{pDw diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml index c395c30b43c..5dfd5d0684f 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,25 +25,25 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - namespace: "24" + namespace: "18" status: - evaluationError: "31" - incomplete: false + evaluationError: "25" + incomplete: true nonResourceRules: - nonResourceURLs: - - "30" + - "24" verbs: - - "29" + - "23" resourceRules: - apiGroups: - - "26" + - "20" resourceNames: - - "28" + - "22" resources: - - "27" + - "21" verbs: - - "25" + - "19" diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.json b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.json index ac0b09d2fd3..6e2333be176 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.json +++ b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,40 +35,38 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "resourceAttributes": { - "namespace": "24", - "verb": "25", - "group": "26", - "version": "27", - "resource": "28", - "subresource": "29", - "name": "30" + "namespace": "18", + "verb": "19", + "group": "20", + "version": "21", + "resource": "22", + "subresource": "23", + "name": "24" }, "nonResourceAttributes": { - "path": "31", - "verb": "32" + "path": "25", + "verb": "26" }, - "user": "33", + "user": "27", "group": [ - "34" + "28" ], "extra": { - "35": [ - "36" + "29": [ + "30" ] }, - "uid": "37" + "uid": "31" }, "status": { "allowed": false, - "denied": true, - "reason": "38", - "evaluationError": "39" + "reason": "32", + "evaluationError": "33" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.pb b/staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1beta1.SubjectAccessReview.pb index 1adcdac56dd00803e0c7af109d525e650a8c6604..bf3cd0350bde94822ecb4dc10c9775fd1e81cc93 100644 GIT binary patch delta 142 zcmWN`u?@m75Cu@*7e#cUvZyQyl+tO=|D420#SmGEo(#bb%)$yRKuOy7zIfxg=AY+ou3iN0-rF8}xs1dIv`r~ID$8_bka q=Xkc@`Sisfwl3e!C~@{-$AZ5QCGXpNS3s0#-2S!ZC6g3`5(5B!gFJZv delta 192 zcmdnY^nhuCf%hsVt{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|Ndb;20A#z$nGZG4IC)MIk0b3n>OA1^}0v7z_Xa delta 143 zcmaFDIG1UHocB*gt{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|cH&%Z6D4g3-*?XU z%_N;{l|b=ObUf!}`=cX6sYGpF>l?^LRr%47ml-N~sa$lV!;97Zw__k9|FTM)mxQFr zlJ1v`fMfPu;B zwUBICa{BHQk}LaEWw=K8RL$>G^}vJcOXV+*-PpY?J2!RxU^?jIyj6~r@u^11rAXzl#5?F)w|*DZYh*6gmAIGZhBs}`$xzr#gb zzfV(EUp+DN;j%RcuKfAk?|<`>0`FFfCl^jnMV&kE?SFap!u)Z(b9~yG-P>J0cXeR? z@W8j{?(F<}_N2TZRWfO+?9&*irgJp>%Z1N&1GAFo7j9h&0P+MTkQ46h01sS5bp*)d z=jMc)4-;S;7LkB9nGS`*U5F0SM)@flV$D`Rpann$1W+bMwS!I=D# zcubAyU_-paQ4!GXjumioJ+(o|lvlKSxt5gQ-DqfS04WvHChA0F*hq$(ZmB2FQd>H^ z41hYq-c~|tb2q!$5cZ5SLJS30h-I#6`2UiGPgiBWGj+%Rn{#GFlvEOG+@{1~bMA0SUZLo5D#$O28ci95NGo?b(LyDH z+!okmb*eU@(~xSVNbFua)DDCpY)W85mft}mlGf6Ws7H(u|GR9lZ!l2yu2y0Lgl-{Qnbp-O+-$Y@G8Q4gprLe}F@rG6BkxkX;J-W$lWgc=J& z*_^*Jd|L@{a5UHd*YcHTb}YPk_TwEto|M-7^!2S%zM4;`rvCodLBY$*#p5+I(=!*Z zefaa$>FdWAPM=)db7=mH#SUHFxsIe@TRz+$|E@yGafKBJd zinYD@&N_CVTz!{MHpt~v!~YSF%4DlBE!*+GD~YV=wc>ezQQ!==27UceW7M>w<9Zy1 zYZV|Bns5+^lGJJfsb_KWV*19V)rUX%VDgW<-?7Tb99;`uV2YL|AC-hBUNDH=&Y-p$7_QSp-OaAf zMX^Qa%76-#sH9|5go6c^0Ym35U>hGmaPk{uEH!Rs%6hCJuMhJvpmYb(cp9}ZWm%`T z%PLBO$sAzgm?77QN17TSlk41q3HDi&%_n%Ok&b&)s9@AIw<4>`@8M}ty)=Dg@#-%5 lf#~MunIlV=_st&B{VP|NZ%)n`tE&P&%MJQ$#a|Vu`UfA?3={wW literal 1603 zcmY+DYitx%7=}B`tvMlBM*_HNEUOq?{m#yrGiT-uk;LAx-L~5+y%{;~Zg<<#y>z?V zvRyP0Oa+SsFs;^7D^L?bRJ?#fO2p7@3&a>hVnQ^;U%kb|$PW$vFnU_$hcn5XnaMZr zyx;phr;{gh5JnI9ds6Xa&>!iDwRw8=Kq%!W>c-M|cSj~3OZg+!@z#R>Dni}r!L{g? zf)rgF1UpRUA#q8=FsJ(CgBM=yfA71|38iH>xwh86NA?d>`hJ$OdsiTI|$KoxYF$)M#e$dfU;edn(F4oqXV;p1B>JDOpU?L z+0pZpU->=P2Vb5$wr}g)rMI)My&%;rcOF_N%ek71R?F2^bJY2jXf1N+hU(Cn)1jMr zciy=D{oTLip=|o=!tifvTvIF2qo(J^P{Y*7*6fvQ1M`Dp3!ffcJauTMzi#H_^pU#9 zpHjb7mQ^gN!ljCAf@;oHXay&l>x_cR(S2>K!}dg=84C=CVW>Q)i_SWm;1DYZ5i+R& zK_Lcm5wr)e5Y<9pYbWfC3qwG$)h!?WQPWUckgj7{RU+zoh0x9NCQ&Ozu`kt*1wfrJ ziVFlV0Y;?8&?^CA1eoe5i#hYFdI*jR%nBMo)B&b#*b;i!7i1s>YMZ!QT4pwJ9#oKn zTB>{^n(f?+wxfIofXfBe0EAX;30#C*LIA~@h5Z8ei6ZquO|XPdmkvNwVxPdmZ(=)8 zy1P`}hBiMZ4GUtMfLohHM=vRr4dQn2LM66EJx;`z4c^Z%K(e0c0gQdJrE>1tfO6~D z%;6iOGwJ}@58%qIWQQxYAPc-AyQo~r<5@uh6 zX33z0Pu+qZ@`elLC^IrefiaDQpvHh&&^X1#>gtkoM>3UMwyF`AbS&w2ezPif`sOcp zzL+@nW8@%ak(ot0?QwuSTkdrF?Y_Ez%h*~u?&e3E_TnaMNrV_&Pk zFO$WH>R@t1Fe+E$U$Thnrh;~%N1AO4X*1B#78Ofo5|+s!Dm1Y}qr$6hufUWE!2*~; zQIlvWEW+NH5tivwy9vw2QdNKx;V>>qw}@^FObk)^R!W6!s8PF6IH9p1iKIh`z8FXf z>{jNdU8a` zYZ8E9E5?yt5dMmqvU{N|A!ulZGlLu^St8J~EN2vzA!3F|Lz;^+knWf%c_O?SK;BTV zWYgfyI3e*A1a?TUgy<|+*V}S7RRVhjJSQ<|07EYcs`+SxY_ejhNul|K4_8t7Sr6{J zXTkLZ+PH9e|I<@L*$=ZPDi?+iluz}0u1+kTxR`hL&$}P2S<0U=+kH_oXmWL2L64yo zJ%yI~a2U4*gxmvM?gD^5uiWkenj~6jpHF=WbyEmhgp;m5;3;a^NeVnoWgdE>2Q-;i zLSBJ0Y=Du<*l7TR$^fO5oUtxXY5{~attSH+Eg1veo`!^90v_j43a#26tBd#A9;*>! zL(UdM`~P6%`ZA0LwRHon?InTvOGoEE8<`(}T~!xO?4KNce){;Xh0Fc+_2YBnL(bgX WTeCk8)#v5792RpsEYq3e%J~O}g5IJ4 diff --git a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml index 7aeb5cc5d46..f7fb676f48e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,105 +25,106 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - maxReplicas: 2114329341 + maxReplicas: -1971381490 metrics: - external: - metricName: "44" + metricName: "38" metricSelector: matchExpressions: - - key: JfB._.zS-._..3le-Q4-R-083.D - operator: Exists + - key: 1295at-o7qff7-x--r7v66bm71u-n4f9wk-3--652x01--p--n4-4-t--2gk-0/d.83_iq_-y.-25C.A-j..9dfn3Y8d_0_.---M_4FpF_W-1._-vL_i.-_-a--GI + operator: DoesNotExist matchLabels: - cd525-6ni4-g3-s-98w-4-27/03f_--0..L.0qQ6W-.d.20h-OK-_8gI_z_-tY-R6S17_.8n: 7z.WH-.._Td2-N_Y.t--_0..--_6yV07-_._N - targetAverageValue: "602" - targetValue: "201" + 4kh6oqu-or---40--87-1wpl6-2-310e5hz/B._z: G6t-2.-_-8w6 + targetAverageValue: "829" + targetValue: "570" object: - averageValue: "591" - metricName: "30" + averageValue: "954" + metricName: "24" selector: matchExpressions: - - key: 2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5 - operator: In + - key: 1d3-7-fP81.-.9Vdx.TB_M-H5 + operator: NotIn values: - - Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8 + - Q42M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.Wu5--.H matchLabels: - g5i9/l-Y._.-444: c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64 + An---v_-5-_8LXP-o-9..1l-_5---5w9vL_-.M.y._-_R58_HLU..8._Q: 7-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_-q target: - apiVersion: "29" - kind: "27" - name: "28" - targetValue: "810" + apiVersion: "23" + kind: "21" + name: "22" + targetValue: "79" pods: - metricName: "37" + metricName: "31" selector: matchExpressions: - - key: G-___196-.dX_iv1H.__.h-J-M.9_T.qo - operator: In + - key: 20h-OK-_8gI_z_-tY-R6S17_.8CnK_Od + operator: NotIn values: - - 5.--sT52b..N.-.K8 + - P.-i.Fg.Cs_.8-E._2IN..3O4y..-W.5w9-Wm_AO-l8VKLyHM matchLabels: - 5--.K_.0--_0P7_.C.Ze--D07.a_.y_C: 0_5qN2_---_M.N_._a6.9bHjH - targetAverageValue: "109" + ? 8---196g8d--iv1-5--5ht-a-29--0qso79yg--792.a6-4y4-j8553sog-405--l071yyms7-tk1po/5t_k-_v.-6b6.N_-u.---.8--LI--U.v.L.U_8f.-H2._67yg-Lz + : 03f_x + targetAverageValue: "538" resource: - name: S5Ǎʜǝ - targetAverageUtilization: 87018792 - targetAverageValue: "274" - type: 6/ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+ - minReplicas: -1978186127 + name: ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö + targetAverageUtilization: 1253093074 + targetAverageValue: "8" + type: 枊a8衍`Ĩɘ.蘯6ċV夸eɑeʤ脽ě + minReplicas: 896585016 scaleTargetRef: - apiVersion: "26" - kind: "24" - name: "25" + apiVersion: "20" + kind: "18" + name: "19" status: conditions: - - lastTransitionTime: "2685-12-24T19:19:52Z" - message: "76" - reason: "75" - status: 蠂Ü[ƛ^輅9ɛ棕 - type: v1b繐汚磉 + - lastTransitionTime: "2416-12-01T11:47:49Z" + message: "70" + reason: "69" + status: aTGÒ鵌Ē3 + type: 鯶縆 currentMetrics: - external: - currentAverageValue: "439" - currentValue: "821" - metricName: "68" + currentAverageValue: "606" + currentValue: "229" + metricName: "62" metricSelector: matchExpressions: - - key: 3-c7181py-8t379s3-8x32--2qu-0-k-q-0--85.4-4tz9x--43--3---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w7p8v9/7W..4....-hD + - key: FC-rtSY.g._2F7.-_e..OP operator: Exists matchLabels: - uB7: f.gb_2_-8-----yJY.__-X_.8xNN + 4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8vJ: zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq4 object: - averageValue: "404" - currentValue: "811" - metricName: "54" + averageValue: "14" + currentValue: "55" + metricName: "48" selector: matchExpressions: - - key: q05c1lxeqyn-5--9d5a3-7bf46g-40883176jt-e8b--i.1v53nyx5u-o-k-md--381l/KpDZ-._._t__2--A.0.__cd..lv-_aLQI + - key: 665--4-j8---t6-r7--9.9dy/XvSA..1 operator: Exists matchLabels: - Y93-x6bigm_-._.q768-m_0_F03_J: L.35__5b.5-CX_VBC.Jn4f__.39X...-tO-.qff.ExZ_r7-6.-m..-_-.f9-Q + 8._Wxpe..J7rs6.0_OHz_.B-.-_w_--.8_r_N-.3n-xu: o_-Nm-_X8 target: - apiVersion: "53" - kind: "51" - name: "52" + apiVersion: "47" + kind: "45" + name: "46" pods: - currentAverageValue: "777" - metricName: "61" + currentAverageValue: "878" + metricName: "55" selector: matchExpressions: - - key: 6.-L..-__0N_N.O30-_u.y - operator: Exists + - key: g-..__._____K_g1cXfr.4_.B + operator: DoesNotExist matchLabels: - 6e1Vx8_I-.-_56-__18Y--6-_3J--.48Y.q.0-_1-F.h-__kK: 9_..O_.J_-G_--V-42Ec + 6fv--m-8--72-bca4m56au3f-j/0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A4..-L..-__0N_N.O3i: r_gn.8-c.C3_F._oX-F9_.v resource: - currentAverageUtilization: 1962818731 - currentAverageValue: "559" - name: 輂,ŕĪĠM蘇KŅ/»頸 - type: :贅wE@Ȗs«öʮĀ<é瞾 - currentReplicas: 310937924 - desiredReplicas: 912103005 - observedGeneration: 6319752985051851078 + currentAverageUtilization: -1607821167 + currentAverageValue: "832" + name: šeSvEȤƏ埮pɵ{WOŭW灬pȭ + type: ' ïì«丯Ƙ枛牐ɺ皚|懥' + currentReplicas: 596942561 + desiredReplicas: -1880980172 + observedGeneration: -7224326297454280417 diff --git a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.json b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.json index f6c00ac8591..396971671f6 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.json +++ b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,47 +35,43 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "scaleTargetRef": { - "kind": "24", - "name": "25", - "apiVersion": "26" + "kind": "18", + "name": "19", + "apiVersion": "20" }, - "minReplicas": -1978186127, - "maxReplicas": 2114329341, + "minReplicas": 896585016, + "maxReplicas": -1971381490, "metrics": [ { - "type": "6/ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+", + "type": "枊a8衍`Ĩɘ.蘯6ċV夸eɑeʤ脽ě", "object": { "describedObject": { - "kind": "27", - "name": "28", - "apiVersion": "29" + "kind": "21", + "name": "22", + "apiVersion": "23" }, "target": { - "type": "H牗洝尿彀亞螩B", - "value": "52", - "averageValue": "835", - "averageUtilization": -1161251830 + "type": "凗蓏Ŋ蛊ĉy緅縕\u003eŽ", + "value": "309", + "averageValue": "39", + "averageUtilization": 1001983654 }, "metric": { - "name": "30", + "name": "24", "selector": { "matchLabels": { - "8y-o-4-m-7r--0am6b4---l---rcdj24r-----v--26-----7v9-th0-i4/9..1l-_5---5w9vL_-.M.y._-_R58_HLU..8._bQw.-dG6s": "8TB_M-H_5_.t..bGE.9__.O" + "QQ.N2.1.L.l-Y._.4": "0.d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.__G" }, "matchExpressions": [ { - "key": "0pq-0-7-9-2-ekg-071a-2y-y-o0-59.u5oii37/g.7_2fNc5-_.-RX-82_g50_u__.c", - "operator": "In", - "values": [ - "LI--U.v.L.U_8f.-H2._67yg-Ln-__.-__2--z.t20w-.-td---ndm_.A" - ] + "key": "816m59-dx8----i--5-8t36b0/D7r__.am6-4_WE-_JTrcd-2.-__E_Sv__26KX_R7", + "operator": "DoesNotExist" } ] } @@ -83,158 +79,161 @@ }, "pods": { "metric": { - "name": "37", + "name": "31", "selector": { "matchLabels": { - "d3-x-2v4r--5-xgc3-yz-7-x--c04.2b-6-17-58-n---5df1--wc-n-pwr-f5--r1i1-7z03/F-.4--_vLW.jj-.5B.._.5_3-_4.31-4.xXe..03Y": "8j" + "8-10pq-0-7-9-2-ekg-071a-2y-y-o0-5q-21.6h/87_2fNc5-_.-RX-82_g50_uL": "6N_._a69" }, "matchExpressions": [ { - "key": "vs-3-d/M.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o--Bo-F__..XR.7_1-p-W", - "operator": "Exists" + "key": "w.__-___196-.dX_iv1H.__.h-J-M.9_T.q-o7.y-SQ.A", + "operator": "NotIn", + "values": [ + "0.N.-.Kj8..3s--_4..I_l...-ym-._k" + ] } ] } }, "target": { - "type": "蚛隖\u003cǶĬ4y£軶ǃ*ʙ嫙\u0026蒒5靇C'", - "value": "815", - "averageValue": "377", - "averageUtilization": 2126876305 + "type": "抴ŨfZhUʎ浵ɲõ", + "value": "303", + "averageValue": "800", + "averageUtilization": -1980941277 } }, "resource": { - "name": "ȉ彂", + "name": "倱\u003c", "target": { - "type": "ȹ嫰ƹǔw÷nI粛E煹ǐƲE", - "value": "970", - "averageValue": "603", - "averageUtilization": -88173241 + "type": "ź贩j瀉", + "value": "621", + "averageValue": "404", + "averageUtilization": 580681683 } }, "external": { "metric": { - "name": "44", + "name": "38", "selector": { "matchLabels": { - "yM_4FpF_W-1._-vL_i.-_-a--G-I.-_Y33k": "8U.-.5--_zm-.-_RJt2pX_2_28.-.7_8B.HF-U-_ik_--S" + "9s-m---vl80.5-6y-07b-3---g-jdi/z_-tY-R6S17_.8CnK_O.d-._NwcGnP-w-Sf5_Or.i1_7z.WH-.._d": "1_57__JR.N-1zL-4--6o--Bo-F__..XR.7_1-l" }, "matchExpressions": [ { - "key": "l8-r1/0n-A9..9__Y-H-Mqpt._.-_..05c.---qy-_5_S.d5a3J.--.6g_4....1..jte", - "operator": "Exists" + "key": "n3-8d-0-5qty--4-p---u16-wv-i.84-n4f--139-295at-o7qff7-x--r7v66bm71u-n4f0/2_31.-.-yz-0-_p4mz--.I_f6kjsz-7lwY-Y93-x6bigm_-._q", + "operator": "In", + "values": [ + "Q3_Y.5.-..P_pDZ-._._t__2k" + ] } ] } }, "target": { - "type": "", - "value": "891", - "averageValue": "765", - "averageUtilization": -2717401 + "type": "3.v-鿧悮坮Ȣ", + "value": "82", + "averageValue": "301", + "averageUtilization": -521487971 } } } ] }, "status": { - "observedGeneration": -6410519298686885049, - "currentReplicas": -740777212, - "desiredReplicas": 1741405963, + "observedGeneration": -6706242512760583856, + "currentReplicas": 1761963371, + "desiredReplicas": 645599318, "currentMetrics": [ { - "type": "崟¿", + "type": "矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", "object": { "metric": { - "name": "51", + "name": "45", "selector": { "matchLabels": { - "0dt6e-3-dq848-9q50v-1o-0hvy/Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._Bt": "0E.-2o_-.N.9D-F45eJK7Q5-R4_7A" + "990-17-hg1-o-p665--4-j8---t6-r7---d--uml-89.n0v-1o-0hv--k6/0_OHz_.B-.-_w_--.8_r_N-.3n-x.-_-_-Nm-_X3.1d_YH3x---5": "s2oy" }, "matchExpressions": [ { - "key": "b9g-qy5--ar-gn58nc23/JP_oA_4A.J2s3.XL6_EU--AH-Q.GM72_-a", - "operator": "NotIn", - "values": [ - "F._oX-F9_.5vN5.25aWx.2aM214_.-C" - ] + "key": "rR4_7FA.2", + "operator": "DoesNotExist" } ] } }, "current": { - "value": "168", - "averageValue": "500", - "averageUtilization": -1562283537 + "value": "861", + "averageValue": "289", + "averageUtilization": 1980459939 }, "describedObject": { - "kind": "58", - "name": "59", - "apiVersion": "60" + "kind": "52", + "name": "53", + "apiVersion": "54" } }, "pods": { "metric": { - "name": "61", + "name": "55", "selector": { "matchLabels": { - "p7---g88w2k4usz--mj-8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/Xfr.4_.-_G": "9.M.134-5-.q6H_.--t" + "7-gg93--5-------g1c-fr4/mQ.GM72_-c-.-.6--3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY.__-X2": "0_.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-E" }, "matchExpressions": [ { - "key": "7U_-m.-P.yP9S--858LI__.8U", + "key": "1q5--uk5mj-94-8134i5k6q6--5tu-tie4-7--gm4p-83.91z---883d-vj/z.-_Z4.A", "operator": "NotIn", "values": [ - "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m" + "G.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-t" ] } ] } }, "current": { - "value": "886", - "averageValue": "310", - "averageUtilization": 757223010 + "value": "485", + "averageValue": "638", + "averageUtilization": 1333166203 } }, "resource": { - "name": "臜裡×銵-紑浘", + "name": "ɻ;襕ċ桉桃喕", "current": { - "value": "370", - "averageValue": "1", - "averageUtilization": -1095116290 + "value": "826", + "averageValue": "886", + "averageUtilization": -280562323 } }, "external": { "metric": { - "name": "68", + "name": "62", "selector": { "matchLabels": { - "ewco28---f-53-x1y-8---3----p-pdn--j2---2--82--cj-1-s--op3w.nl84--162-gk2-99v2xu-3po4--3s/2-.8-Jp-9-4-Tm.__G-8...__.Q_c3": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" + "Z": "C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_91" }, "matchExpressions": [ { - "key": "v8_.O_..8n.--z_-..6W.K", + "key": "7pdn--j2---25/I._31-_I-A-_3b6", "operator": "Exists" } ] } }, "current": { - "value": "386", - "averageValue": "882", - "averageUtilization": -500012714 + "value": "108", + "averageValue": "909", + "averageUtilization": -1726456869 } } } ], "conditions": [ { - "type": "蚢鑸鶲Ãq", - "status": "", - "lastTransitionTime": "2132-02-01T06:56:28Z", - "reason": "75", - "message": "76" + "type": "Ƚȿ醏g遧", + "status": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "lastTransitionTime": "2039-12-25T06:58:01Z", + "reason": "69", + "message": "70" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.pb b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.pb index 231fa3e2519d7e5fd9ab0a114364e59353b768e3..6e68319cccc26163d5579efff85234abc402562d 100644 GIT binary patch delta 1652 zcmY+EYiv|S6vw%jQp!jKCK$^`Vy#hP@toedkGc1%5nEc@QdsB%XsdCg-FCa%?rz)N zZXYCWQG@^qSW1D24Fd8~L69N{Atcb67C&Huj|BCDhQ54!Fq#Nrz}eQsIQPR%Cg;rg zpWpn?9GQDy&RbU2=!4|2LKK}UhDR|o6)Q`z_4$lxrfzDM={lNYbB*ho(cM+9Ebjhl z@gllyCYeoC=1`Tn9#z-oo`3u52h-EHfAaT@+xO*CGAB~W5QtnE|U!UGn&ktUrGstv9b3G|UHQbCN zeYd`!?&(uxvPpL<GF*<0P>BLfx>!RW3Q^#9Ko<>VF2h=@7!snE8v=v@ zVURyzv_dk7mXchD@sQ<$uiXK;0ss~`F@slY*?D%05V$VH!4zxrK`bk8squl1GCyCG z#f8v$afK+g>Fm5nZPXiy<+lf-G0%?*IVCk3j2>6W3Xt4AN-Mz8h2PRd>vEdLy#mEL?$QbZZBn4DB$&$qeH9`QXN7VL>tPwJKv$GwGem6c zfU*+Ip)+LpqOd1JLoWgr2OUHs3Ls3xBGHJ5(2)qqo*O6-I=Z!g@K{|{{pxGmN6(%e z{`l(IDbR*T@^&;W;GQhB9b!Fb^1B_D48{QVZ8r%aI9-fGMeiw8EtB2#*O>G z?NYP8RLK!lw(ZdUDtV2RyHN;9pz%gWLkoBZ$ojAWjt?}jnqwUR zCN#;jTN#J8I0Vo!A#BzGFvA7iwbsQXtme8p8`=R{>^SGuA)B=(W3+5t7)(-wj!t=+ zXfi{c01{grZwN*^!ES7;gi61bet&=Sy~z>roJdXkV&{Raf80Cv=Rqa? z=bODlsTp6t`^y-r3mF}A;}_*&oC-u|MOn_e0?8XY(`yeV<@;J}69J%gW)bnPjl zR}`{O`pvZHE`_v_i0f*=Y^e7$h(HtPR+3FH>FyYpt;@epatbwq<6>Bg1B-xG9|vgQ z*_v2c*eNhqvJh=TLU2Tj@B$iPXqQ{^^M*iFBn)IeQCVn6mSEA8s2=H{3&^aNQd8J3 z=Ai!niJW`k`-5oSNy8kAS69)iOM)WqMAlWUsW3WzlYxY*xq`8~lC= zU5?|_^0OMKYcaD!C738!Ve0~Fq)g->JtfB^231bk>Vj2LCblLU0Q6T288tc9(6LND z4+1K53Yx$If4ME}T#+Yl4zR&&h0Yw=uAE2Y1vxrj3Q_b1C8vD4Q6YJ(S&C?FutGs_ zO>o!}!wgsryjj+^VyzGh)S4i<`a@(-7MACJkv6# F{R6u2{xJXm literal 2086 zcmX|?eQX>@8OFU^;zXmWM3acPhfrNpL1py5w>!JDJBxtIPHdlDJMl-{IFZnBzB^xh zw(riq^PTSy5^3tDaf+HmrunGjDhW~x0UCuQZHP)l@npApR-XJ`3^n2M84< z|Y{!iDjUmHC;ds+|4KHx^#Ma}p~j-|!ZW zJhS}0w-REj?FF7Iq~*KHQJ(ZH;RNdUe|`4efg^JVvduN!KYHQH!Rc3jHFw?ESIZ2a z8)|SPGXiefR;r$vwg{QF)9}cS^78fB+lRiHyEU`;Qnt~wZL3BZ6Q=E!O5+Zf1|ra>X~XTKWxm z4ZpFGJ3n7W z`_24Q%#=}2ckqC!2`Q$&cj zc{#pK?QYgx5YbX&9&xa(1p}>d7pHUVu(IP|fe!%)NQ@-G^6e;y643E1kO5B0%Ej>va#kkp?4h5a<0R33NPVCoe2q7X+dwwYiooS#|Gz35y z^TH|uLOxE%PshhJHicd^*)I)(l~^wBz!Zo=m4Sq*WXyq5nT|LG5VKqqgW!Sf zgH({NB8U&!0L2(RWQ!9pL|7*5VH^Ci<%C-S39Bx2?!iswTg&(@5cg|O?UtK!bc=y!ug;QUs96v7C&K%nQ zMP9XuEvs&Ee82wKnV0{yvEgfM!|lV%Z$HZ=3*El9eBt8awWZnO%{SBStCwDBS)IPN zbae4jOZC;jx2mstmQ%m507YoKE8{!j4A>h zw$jitA(dymL{8Ox7?)9}gC@{R5_`IA#8f`<39!$ynspd~ zT~*|Jvi`N>zkBepqR=mDH!Usx<;KZ-?>_gMQTN>92lMyWrPd#L@Z+D=Hoj2HHY{I$ z^_?61zQKM&(xuJs8Z1HXj_18ZwW8z7RS=9zs{nQeto?;jxI3zK8g|4113K_Nv^3$_ zpG2L}S@^2r|3M^N*^77)_}ZO*eOxS z=$-=4mja37UW6tg&tvRSzhA=`LN}JWgFXNyRcAXzLiPV&+fzR1Y`4~vSrnZ*2N~ZF z$b};ywbsxxju^}BuYPr(y}M9!f>ym9Ch~oIkqRMN{V~3^s$D6ss@<`zx)0_KubB_(2>#q)a|SCW zim{APq;&`+bsM_`)rYEhig7khjU`3hiZD>4qqdU*8*%`dtW(7FsG|Jao`B?tfFLM{ zsY!6M8Jcu*VF9S1BTN0%h23MQbsH#hJ2C0eF^4}csK|g_IbY|oTRVsm#F3y&c^E`B zSiLr{XP+r3YR{A*l_t(*G9G$+@aa#ovTg_Z$6XJM5_RwW_Rg{Os2HMwJzP0`Ztd7x iYgaGbJUGs4LYp?t9lZbimd!N{rY{>!-wV|=)chB;5scmd diff --git a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml index 12e09b7b5df..cf42b0c016f 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,135 +25,135 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - maxReplicas: 2114329341 + maxReplicas: -1971381490 metrics: - external: metric: - name: "44" + name: "38" selector: matchExpressions: - - key: l8-r1/0n-A9..9__Y-H-Mqpt._.-_..05c.---qy-_5_S.d5a3J.--.6g_4....1..jte - operator: Exists - matchLabels: - yM_4FpF_W-1._-vL_i.-_-a--G-I.-_Y33k: 8U.-.5--_zm-.-_RJt2pX_2_28.-.7_8B.HF-U-_ik_--S - target: - averageUtilization: -2717401 - averageValue: "765" - type: "" - value: "891" - object: - describedObject: - apiVersion: "29" - kind: "27" - name: "28" - metric: - name: "30" - selector: - matchExpressions: - - key: 0pq-0-7-9-2-ekg-071a-2y-y-o0-59.u5oii37/g.7_2fNc5-_.-RX-82_g50_u__.c + - key: n3-8d-0-5qty--4-p---u16-wv-i.84-n4f--139-295at-o7qff7-x--r7v66bm71u-n4f0/2_31.-.-yz-0-_p4mz--.I_f6kjsz-7lwY-Y93-x6bigm_-._q operator: In values: - - LI--U.v.L.U_8f.-H2._67yg-Ln-__.-__2--z.t20w-.-td---ndm_.A + - Q3_Y.5.-..P_pDZ-._._t__2k matchLabels: - 8y-o-4-m-7r--0am6b4---l---rcdj24r-----v--26-----7v9-th0-i4/9..1l-_5---5w9vL_-.M.y._-_R58_HLU..8._bQw.-dG6s: 8TB_M-H_5_.t..bGE.9__.O + 9s-m---vl80.5-6y-07b-3---g-jdi/z_-tY-R6S17_.8CnK_O.d-._NwcGnP-w-Sf5_Or.i1_7z.WH-.._d: 1_57__JR.N-1zL-4--6o--Bo-F__..XR.7_1-l target: - averageUtilization: -1161251830 - averageValue: "835" - type: H牗洝尿彀亞螩B - value: "52" - pods: + averageUtilization: -521487971 + averageValue: "301" + type: 3.v-鿧悮坮Ȣ + value: "82" + object: + describedObject: + apiVersion: "23" + kind: "21" + name: "22" metric: - name: "37" + name: "24" selector: matchExpressions: - - key: vs-3-d/M.-F_E2_QOuQ_8.-1_57__JR.N-1zL-4--6o--Bo-F__..XR.7_1-p-W - operator: Exists + - key: 816m59-dx8----i--5-8t36b0/D7r__.am6-4_WE-_JTrcd-2.-__E_Sv__26KX_R7 + operator: DoesNotExist matchLabels: - d3-x-2v4r--5-xgc3-yz-7-x--c04.2b-6-17-58-n---5df1--wc-n-pwr-f5--r1i1-7z03/F-.4--_vLW.jj-.5B.._.5_3-_4.31-4.xXe..03Y: 8j + QQ.N2.1.L.l-Y._.4: 0.d.__Gg8-2_kS91.e5K-_e63_-_3-n-_-__3u-.__G target: - averageUtilization: 2126876305 - averageValue: "377" - type: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C' - value: "815" + averageUtilization: 1001983654 + averageValue: "39" + type: 凗蓏Ŋ蛊ĉy緅縕>Ž + value: "309" + pods: + metric: + name: "31" + selector: + matchExpressions: + - key: w.__-___196-.dX_iv1H.__.h-J-M.9_T.q-o7.y-SQ.A + operator: NotIn + values: + - 0.N.-.Kj8..3s--_4..I_l...-ym-._k + matchLabels: + 8-10pq-0-7-9-2-ekg-071a-2y-y-o0-5q-21.6h/87_2fNc5-_.-RX-82_g50_uL: 6N_._a69 + target: + averageUtilization: -1980941277 + averageValue: "800" + type: 抴ŨfZhUʎ浵ɲõ + value: "303" resource: - name: ȉ彂 + name: 倱< target: - averageUtilization: -88173241 - averageValue: "603" - type: ȹ嫰ƹǔw÷nI粛E煹ǐƲE - value: "970" - type: 6/ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+ - minReplicas: -1978186127 + averageUtilization: 580681683 + averageValue: "404" + type: ź贩j瀉 + value: "621" + type: 枊a8衍`Ĩɘ.蘯6ċV夸eɑeʤ脽ě + minReplicas: 896585016 scaleTargetRef: - apiVersion: "26" - kind: "24" - name: "25" + apiVersion: "20" + kind: "18" + name: "19" status: conditions: - - lastTransitionTime: "2132-02-01T06:56:28Z" - message: "76" - reason: "75" - status: "" - type: 蚢鑸鶲Ãq + - lastTransitionTime: "2039-12-25T06:58:01Z" + message: "70" + reason: "69" + status: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + type: Ƚȿ醏g遧 currentMetrics: - external: current: - averageUtilization: -500012714 - averageValue: "882" - value: "386" + averageUtilization: -1726456869 + averageValue: "909" + value: "108" metric: - name: "68" + name: "62" selector: matchExpressions: - - key: v8_.O_..8n.--z_-..6W.K + - key: 7pdn--j2---25/I._31-_I-A-_3b6 operator: Exists matchLabels: - ewco28---f-53-x1y-8---3----p-pdn--j2---2--82--cj-1-s--op3w.nl84--162-gk2-99v2xu-3po4--3s/2-.8-Jp-9-4-Tm.__G-8...__.Q_c3: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 + Z: C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_91 object: current: - averageUtilization: -1562283537 - averageValue: "500" - value: "168" + averageUtilization: 1980459939 + averageValue: "289" + value: "861" describedObject: - apiVersion: "60" - kind: "58" - name: "59" + apiVersion: "54" + kind: "52" + name: "53" metric: - name: "51" + name: "45" selector: matchExpressions: - - key: b9g-qy5--ar-gn58nc23/JP_oA_4A.J2s3.XL6_EU--AH-Q.GM72_-a - operator: NotIn - values: - - F._oX-F9_.5vN5.25aWx.2aM214_.-C + - key: rR4_7FA.2 + operator: DoesNotExist matchLabels: - 0dt6e-3-dq848-9q50v-1o-0hvy/Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._Bt: 0E.-2o_-.N.9D-F45eJK7Q5-R4_7A + 990-17-hg1-o-p665--4-j8---t6-r7---d--uml-89.n0v-1o-0hv--k6/0_OHz_.B-.-_w_--.8_r_N-.3n-x.-_-_-Nm-_X3.1d_YH3x---5: s2oy pods: current: - averageUtilization: 757223010 - averageValue: "310" - value: "886" + averageUtilization: 1333166203 + averageValue: "638" + value: "485" metric: - name: "61" + name: "55" selector: matchExpressions: - - key: 7U_-m.-P.yP9S--858LI__.8U + - key: 1q5--uk5mj-94-8134i5k6q6--5tu-tie4-7--gm4p-83.91z---883d-vj/z.-_Z4.A operator: NotIn values: - - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m + - G.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-t matchLabels: - p7---g88w2k4usz--mj-8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/Xfr.4_.-_G: 9.M.134-5-.q6H_.--t + 7-gg93--5-------g1c-fr4/mQ.GM72_-c-.-.6--3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY.__-X2: 0_.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-E resource: current: - averageUtilization: -1095116290 - averageValue: "1" - value: "370" - name: 臜裡×銵-紑浘 - type: 崟¿ - currentReplicas: -740777212 - desiredReplicas: 1741405963 - observedGeneration: -6410519298686885049 + averageUtilization: -280562323 + averageValue: "886" + value: "826" + name: ɻ;襕ċ桉桃喕 + type: 矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + currentReplicas: 1761963371 + desiredReplicas: 645599318 + observedGeneration: -6706242512760583856 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json index cbe81905945..10f41203be4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,26 +35,25 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "parallelism": -1978186127, - "completions": -1821918122, - "activeDeadlineSeconds": -1888486794478722029, - "backoffLimit": -596764376, + "parallelism": 896585016, + "completions": 1305381319, + "activeDeadlineSeconds": -5584804243908071872, + "backoffLimit": -783752440, "selector": { "matchLabels": { - "l3snh-z--3uy5-----578/B_._-.-W._AAn---v_-5-_8LXP-o-9..1l-_5---5w9vL_-.M.y._-_5": "" + "hjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4": "3L.u" }, "matchExpressions": [ { - "key": "U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t", + "key": "S91.e5K-_e63_-_3-h", "operator": "In", "values": [ - "M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5" + "3_bQw.-dG6c-.x" ] } ] @@ -62,241 +61,236 @@ "manualSelector": true, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "Šĸů湙騘\u0026啞", - "resourceVersion": "6776706803848751502", - "generation": 1142764901371385923, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "ɸ=ǤÆ碛,1", + "resourceVersion": "10505102892351749453", + "generation": 7014477246743953430, "creationTimestamp": null, - "deletionGracePeriodSeconds": 986128679342689494, + "deletionGracePeriodSeconds": -5781250394576755223, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "ºɖgȏ哙ȍȂ揲ȼDDŽL", - "controller": true, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "譋娲瘹ɭȊɚɎ(", + "controller": false, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "糷磩窮秳ķ蟒苾h", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "bJ5ʬ昹ʞĹ鑑6NJPM饣`" + "path": "41", + "type": "龷ȪÆl" }, "emptyDir": { - "medium": "z徃鷢6ȥ啕禗Ǐ2", - "sizeLimit": "387" + "medium": "瓷雼浢Ü礽绅{囥", + "sizeLimit": "721" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -347579237, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": 1673568505 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 903876536, - "readOnly": true + "volumeID": "44", + "fsType": "45", + "partition": -972874331 }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": 2022312348 + "key": "50", + "path": "51", + "mode": -1628457490 } ], - "defaultMode": -963895759, + "defaultMode": 798972405, "optional": false }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53" }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -539733119, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": -1888506207, + "iscsiInterface": "56", + "fsType": "57", "readOnly": true, "portals": [ - "69" + "58" ], - "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" + "name": "70" }, "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, - "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "770" + "containerName": "89", + "resource": "90", + "divisor": "110" }, - "mode": 1539635748 + "mode": 848754324 } ], - "defaultMode": -388204860 + "defaultMode": -331664193 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -573382936, - "fsType": "103", + "lun": -1341615783, + "fsType": "92", "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": 1825892582 + "key": "97", + "path": "98", + "mode": -421817404 } ], - "defaultMode": 1532914928, + "defaultMode": 938765968, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "鎥ʟ\u003c$洅ɹ7", + "fsType": "110", "readOnly": false, - "kind": "坼É/pȿŘ阌Ŗ怳" + "kind": "Þ" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": -1629040033 + "key": "114", + "path": "115", + "mode": 1550211208 } ], "optional": false @@ -304,134 +298,134 @@ "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "908" + "containerName": "119", + "resource": "120", + "divisor": "750" }, - "mode": -239847982 + "mode": -1240667156 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": -1305215109 + "key": "122", + "path": "123", + "mode": -1147975588 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": 8048348966862776448, - "path": "136" + "audience": "124", + "expirationSeconds": 2293771102284463819, + "path": "125" } } ], - "defaultMode": -556258965 + "defaultMode": -1884322607 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", - "readOnly": true + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "sslEnabled": true, + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135", + "readOnly": true }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", - "readOnly": false, - "fsType": "152", + "driver": "140", + "readOnly": true, + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 273818613, - "containerPort": -522879476, - "protocol": "N", - "hostIP": "162" + "name": "150", + "hostPort": -884734093, + "containerPort": 223177366, + "protocol": "2ħ籦ö嗏ʑ\u003e季", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", - "optional": true + "name": "153", + "optional": false }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "587" + "containerName": "159", + "resource": "160", + "divisor": "671" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": false } } @@ -439,162 +433,160 @@ ], "resources": { "limits": { - "倱\u003c": "920" + "\u0026啞川J缮ǚbJ": "99" }, "requests": { - "贩j瀉ǚ": "455" + "/淹\\韲翁\u0026ʢsɜ曢\\%枅:=ǛƓ": "330" } }, "volumeMounts": [ { - "name": "176", - "readOnly": true, - "mountPath": "177", - "subPath": "178", - "mountPropagation": "Ɋł/擇ɦĽ胚O醔ɍ厶耈 ", - "subPathExpr": "179" + "name": "165", + "mountPath": "166", + "subPath": "167", + "mountPropagation": "2啗塧ȱ蓿彭聡A3fƻfʣ繡楙¯ĦE勗", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "腿ħ缶.蒅!a", + "path": "172", + "port": "173", + "host": "174", + "scheme": "ȲϤĦʅ芝M", "httpHeaders": [ { - "name": "186", - "value": "187" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "188", - "host": "189" + "port": 1784914896, + "host": "177" }, - "initialDelaySeconds": 1154560741, - "timeoutSeconds": -1376537100, - "periodSeconds": 1100645882, - "successThreshold": -532628939, - "failureThreshold": -748919010 + "initialDelaySeconds": 664393458, + "timeoutSeconds": -573382936, + "periodSeconds": 964433164, + "successThreshold": 679825403, + "failureThreshold": -20764200 }, "readinessProbe": { "exec": { "command": [ - "190" + "178" ] }, "httpGet": { - "path": "191", - "port": -1477511050, - "host": "192", - "scheme": ";栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼", + "path": "179", + "port": "180", + "host": "181", + "scheme": "狩鴈o_", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "182", + "value": "183" } ] }, "tcpSocket": { - "port": "195", - "host": "196" + "port": "184", + "host": "185" }, - "initialDelaySeconds": -709825668, - "timeoutSeconds": -1144400181, - "periodSeconds": -379514302, - "successThreshold": 173916181, - "failureThreshold": -813624408 + "initialDelaySeconds": -1249460160, + "timeoutSeconds": -1027661779, + "periodSeconds": -1944279238, + "successThreshold": 1169718433, + "failureThreshold": -2039036935 }, "lifecycle": { "postStart": { "exec": { "command": [ - "197" + "186" ] }, "httpGet": { - "path": "198", - "port": 200992434, - "host": "199", - "scheme": "ņ榱*Gưoɘ檲ɨ銦妰黖ȓ", + "path": "187", + "port": "188", + "host": "189", + "scheme": "怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": "202", - "host": "203" + "port": "192", + "host": "193" } }, "preStop": { "exec": { "command": [ - "204" + "194" ] }, "httpGet": { - "path": "205", - "port": "206", - "host": "207", - "scheme": "ɋ瀐\u003cɉ", + "path": "195", + "port": "196", + "host": "197", + "scheme": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c", "httpHeaders": [ { - "name": "208", - "value": "209" + "name": "198", + "value": "199" } ] }, "tcpSocket": { - "port": -1334904807, - "host": "210" + "port": "200", + "host": "201" } } }, - "terminationMessagePath": "211", - "terminationMessagePolicy": "å睫}堇硲蕵ɢ苆", - "imagePullPolicy": "猀2:ö", + "terminationMessagePath": "202", + "imagePullPolicy": "j瀉ǚrǜnh0åȂ町恰nj揠8lj黳鈫", "securityContext": { "capabilities": { "add": [ - "5w垁鷌辪虽U珝Żwʮ馜üNșƶ" + "Ƙá腿ħ缶.蒅!a坩O`" ], "drop": [ - "ĩĉş蝿ɖȃ賲鐅臬" + "İ而踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț" ] }, "privileged": false, "seLinuxOptions": { - "user": "212", - "role": "213", - "type": "214", - "level": "215" + "user": "203", + "role": "204", + "type": "205", + "level": "206" }, "windowsOptions": { - "gmsaCredentialSpecName": "216", - "gmsaCredentialSpec": "217", - "runAsUserName": "218" + "gmsaCredentialSpecName": "207", + "gmsaCredentialSpec": "208", + "runAsUserName": "209" }, - "runAsUser": -1799108093609470992, - "runAsGroup": -1245112587824234591, + "runAsUser": -7587297753202451973, + "runAsGroup": -6305787278980855165, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "ǵʭd鲡:贅wE@Ȗs«öʮ" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "綸_Ú8參遼ūPH炮掊°nʮ" }, "stdin": true, "stdinOnce": true @@ -602,145 +594,169 @@ ], "containers": [ { - "name": "219", - "image": "220", + "name": "210", + "image": "211", "command": [ - "221" + "212" ], "args": [ - "222" + "213" ], - "workingDir": "223", + "workingDir": "214", "ports": [ { - "name": "224", - "hostPort": 1702578303, - "containerPort": -1565157256, - "protocol": "Ŭ", - "hostIP": "225" + "name": "215", + "hostPort": -766145437, + "containerPort": 1569606284, + "protocol": "ƞ究:hoĂɋ瀐\u003cɉ", + "hostIP": "216" } ], "envFrom": [ { - "prefix": "226", + "prefix": "217", "configMapRef": { - "name": "227", - "optional": true + "name": "218", + "optional": false }, "secretRef": { - "name": "228", - "optional": false + "name": "219", + "optional": true } } ], "env": [ { - "name": "229", - "value": "230", + "name": "220", + "value": "221", "valueFrom": { "fieldRef": { - "apiVersion": "231", - "fieldPath": "232" + "apiVersion": "222", + "fieldPath": "223" }, "resourceFieldRef": { - "containerName": "233", - "resource": "234", - "divisor": "157" + "containerName": "224", + "resource": "225", + "divisor": "343" }, "configMapKeyRef": { - "name": "235", - "key": "236", - "optional": true + "name": "226", + "key": "227", + "optional": false }, "secretKeyRef": { - "name": "237", - "key": "238", - "optional": false + "name": "228", + "key": "229", + "optional": true } } } ], "resources": { "limits": { - "ŴĿ": "377" + "苆ǮńMǰ溟ɴ扵閝ȝ鐵儣廡": "281" }, "requests": { - ".Q貇£ȹ嫰ƹǔw÷nI": "718" + "珝Żwʮ馜ü": "513" } }, "volumeMounts": [ { - "name": "239", - "mountPath": "240", - "subPath": "241", - "mountPropagation": "樺ȃ", - "subPathExpr": "242" + "name": "230", + "readOnly": true, + "mountPath": "231", + "subPath": "232", + "mountPropagation": "=6}ɡ", + "subPathExpr": "233" } ], "volumeDevices": [ { - "name": "243", - "devicePath": "244" + "name": "234", + "devicePath": "235" } ], "livenessProbe": { "exec": { "command": [ - "245" + "236" ] }, "httpGet": { - "path": "246", - "port": -88173241, - "host": "247", - "scheme": "Źʣy豎@ɀ羭,铻O", + "path": "237", + "port": "238", + "host": "239", + "scheme": "賲鐅臬dH巧", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "240", + "value": "241" } ] }, "tcpSocket": { - "port": "250", - "host": "251" + "port": 559781916, + "host": "242" }, - "initialDelaySeconds": 1424053148, - "timeoutSeconds": 747521320, - "periodSeconds": 859639931, - "successThreshold": -1663149700, - "failureThreshold": -1131820775 + "initialDelaySeconds": -1703360754, + "timeoutSeconds": -1569009987, + "periodSeconds": -1053603859, + "successThreshold": 1471432155, + "failureThreshold": 571942197 }, "readinessProbe": { "exec": { "command": [ - "252" + "243" ] }, "httpGet": { - "path": "253", - "port": -1710454086, - "host": "254", - "scheme": "mɩC[ó瓧", + "path": "244", + "port": "245", + "host": "246", + "scheme": "+?ƭ峧Y栲茇竛吲蚛隖", "httpHeaders": [ { - "name": "255", - "value": "256" + "name": "247", + "value": "248" } ] }, "tcpSocket": { - "port": -122979840, - "host": "257" + "port": "249", + "host": "250" }, - "initialDelaySeconds": 915577348, - "timeoutSeconds": -590798124, - "periodSeconds": -1386967282, - "successThreshold": -2030286732, - "failureThreshold": -233378149 + "initialDelaySeconds": -1839582103, + "timeoutSeconds": 1054302708, + "periodSeconds": -1696471293, + "successThreshold": 1545364977, + "failureThreshold": -2093767566 }, "lifecycle": { "postStart": { + "exec": { + "command": [ + "251" + ] + }, + "httpGet": { + "path": "252", + "port": "253", + "host": "254", + "scheme": "嫙\u0026蒒5靇C'ɵK.Q貇", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 1428858742, + "host": "257" + } + }, + "preStop": { "exec": { "command": [ "258" @@ -748,134 +764,110 @@ }, "httpGet": { "path": "259", - "port": 1385030458, - "host": "260", - "scheme": "Ao/樝fw[Řż丩ŽoǠŻ", + "port": "260", + "host": "261", + "scheme": "dz@ùƸʋŀ樺ȃv渟7¤7djƯĖ漘Z", "httpHeaders": [ { - "name": "261", - "value": "262" + "name": "262", + "value": "263" } ] }, "tcpSocket": { - "port": "263", - "host": "264" - } - }, - "preStop": { - "exec": { - "command": [ - "265" - ] - }, - "httpGet": { - "path": "266", - "port": -1589303862, - "host": "267", - "scheme": "ľǎɳ,ǿ飏騀呣ǎ", - "httpHeaders": [ - { - "name": "268", - "value": "269" - } - ] - }, - "tcpSocket": { - "port": "270", - "host": "271" + "port": "264", + "host": "265" } } }, - "terminationMessagePath": "272", - "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", + "terminationMessagePath": "266", + "terminationMessagePolicy": "0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭", + "imagePullPolicy": "捏ĨF", "securityContext": { "capabilities": { "add": [ - "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" + "Àǒ" ], "drop": [ - "rʤî萨zvt莭琽§ć\\ ïì" + "ʒ刽ʼn掏1ſ盷褎weLJèux榜" ] }, "privileged": false, "seLinuxOptions": { - "user": "273", - "role": "274", - "type": "275", - "level": "276" + "user": "267", + "role": "268", + "type": "269", + "level": "270" }, "windowsOptions": { - "gmsaCredentialSpecName": "277", - "gmsaCredentialSpec": "278", - "runAsUserName": "279" + "gmsaCredentialSpecName": "271", + "gmsaCredentialSpec": "272", + "runAsUserName": "273" }, - "runAsUser": -5738810661106213940, - "runAsGroup": 3195567116206635190, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ƖN粕擓Ɩ" - }, - "stdin": true, - "tty": true + "runAsUser": -7799096735007368868, + "runAsGroup": -7778175203330288214, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l" + } } ], "ephemeralContainers": [ { - "name": "280", - "image": "281", + "name": "274", + "image": "275", "command": [ - "282" + "276" ], "args": [ - "283" + "277" ], - "workingDir": "284", + "workingDir": "278", "ports": [ { - "name": "285", - "hostPort": -1097611426, - "containerPort": 1871952835, - "protocol": "D剂讼ɓȌʟni酛3ƁÀ*", - "hostIP": "286" + "name": "279", + "hostPort": 2035347577, + "containerPort": -819723498, + "protocol": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", + "hostIP": "280" } ], "envFrom": [ { - "prefix": "287", + "prefix": "281", "configMapRef": { - "name": "288", + "name": "282", "optional": false }, "secretRef": { - "name": "289", - "optional": true + "name": "283", + "optional": false } } ], "env": [ { - "name": "290", - "value": "291", + "name": "284", + "value": "285", "valueFrom": { "fieldRef": { - "apiVersion": "292", - "fieldPath": "293" + "apiVersion": "286", + "fieldPath": "287" }, "resourceFieldRef": { - "containerName": "294", - "resource": "295", - "divisor": "19" + "containerName": "288", + "resource": "289", + "divisor": "609" }, "configMapKeyRef": { - "name": "296", - "key": "297", + "name": "290", + "key": "291", "optional": false }, "secretKeyRef": { - "name": "298", - "key": "299", + "name": "292", + "key": "293", "optional": true } } @@ -883,28 +875,57 @@ ], "resources": { "limits": { - "Jȉ罴ņ螡źȰ?$矡ȶ网棊": "199" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" }, "requests": { - "ʎȺ眖R#": "985" + "擓ƖHVe熼'FD剂讼ɓȌʟni酛": "499" } }, "volumeMounts": [ { - "name": "300", - "mountPath": "301", - "subPath": "302", - "mountPropagation": "¿", - "subPathExpr": "303" + "name": "294", + "readOnly": true, + "mountPath": "295", + "subPath": "296", + "mountPropagation": "Ɏ R§耶FfBl", + "subPathExpr": "297" } ], "volumeDevices": [ { - "name": "304", - "devicePath": "305" + "name": "298", + "devicePath": "299" } ], "livenessProbe": { + "exec": { + "command": [ + "300" + ] + }, + "httpGet": { + "path": "301", + "port": 896430536, + "host": "302", + "scheme": "罴ņ螡źȰ", + "httpHeaders": [ + { + "name": "303", + "value": "304" + } + ] + }, + "tcpSocket": { + "port": 513341278, + "host": "305" + }, + "initialDelaySeconds": 627713162, + "timeoutSeconds": 1255312175, + "periodSeconds": -1740959124, + "successThreshold": 158280212, + "failureThreshold": -361442565 + }, + "readinessProbe": { "exec": { "command": [ "306" @@ -912,9 +933,9 @@ }, "httpGet": { "path": "307", - "port": -534498506, + "port": -2013568185, "host": "308", - "scheme": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { "name": "309", @@ -923,55 +944,50 @@ ] }, "tcpSocket": { - "port": "311", - "host": "312" + "port": -20130017, + "host": "311" }, - "initialDelaySeconds": -805795167, - "timeoutSeconds": 1791615594, - "periodSeconds": 785984384, - "successThreshold": 193463975, - "failureThreshold": 1831208885 - }, - "readinessProbe": { - "exec": { - "command": [ - "313" - ] - }, - "httpGet": { - "path": "314", - "port": "315", - "host": "316", - "scheme": "更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "317", - "value": "318" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "319" - }, - "initialDelaySeconds": -1664778008, - "timeoutSeconds": -1191528701, - "periodSeconds": -978176982, - "successThreshold": 415947324, - "failureThreshold": 18113448 + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737 }, "lifecycle": { "postStart": { "exec": { "command": [ - "320" + "312" ] }, "httpGet": { - "path": "321", - "port": -467985423, + "path": "313", + "port": 1791615594, + "host": "314", + "scheme": "Ƥ熪军g\u003e郵[+扴", + "httpHeaders": [ + { + "name": "315", + "value": "316" + } + ] + }, + "tcpSocket": { + "port": "317", + "host": "318" + } + }, + "preStop": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": "321", "host": "322", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", "httpHeaders": [ { "name": "323", @@ -983,112 +999,91 @@ "port": "325", "host": "326" } - }, - "preStop": { - "exec": { - "command": [ - "327" - ] - }, - "httpGet": { - "path": "328", - "port": 591440053, - "host": "329", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", - "httpHeaders": [ - { - "name": "330", - "value": "331" - } - ] - }, - "tcpSocket": { - "port": "332", - "host": "333" - } } }, - "terminationMessagePath": "334", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "327", + "terminationMessagePolicy": "輦唊#v铿ʩȂ4ē鐭", + "imagePullPolicy": "岼昕ĬÇó藢xɮĵȑ6L*Z", "securityContext": { "capabilities": { "add": [ - "碔" + "咡W" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "敄lu|" ] }, "privileged": false, "seLinuxOptions": { - "user": "335", - "role": "336", - "type": "337", - "level": "338" + "user": "328", + "role": "329", + "type": "330", + "level": "331" }, "windowsOptions": { - "gmsaCredentialSpecName": "339", - "gmsaCredentialSpec": "340", - "runAsUserName": "341" + "gmsaCredentialSpecName": "332", + "gmsaCredentialSpec": "333", + "runAsUserName": "334" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, - "runAsNonRoot": false, + "runAsUser": -230763786643460687, + "runAsGroup": 8175137418799691442, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "procMount": "=E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展" }, + "stdin": true, "stdinOnce": true, - "targetContainerName": "342" + "targetContainerName": "335" } ], - "restartPolicy": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", - "terminationGracePeriodSeconds": -1027492015449357669, - "activeDeadlineSeconds": 1968932441807931700, - "dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴", + "restartPolicy": "庰%皧V", + "terminationGracePeriodSeconds": -5569844914519516591, + "activeDeadlineSeconds": -1117820874616112287, + "dnsPolicy": "\\E¦队偯J僳徥淳", "nodeSelector": { - "343": "344" + "336": "337" }, - "serviceAccountName": "345", - "serviceAccount": "346", - "automountServiceAccountToken": false, - "nodeName": "347", - "hostNetwork": true, - "shareProcessNamespace": true, + "serviceAccountName": "338", + "serviceAccount": "339", + "automountServiceAccountToken": true, + "nodeName": "340", + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "348", - "role": "349", - "type": "350", - "level": "351" + "user": "341", + "role": "342", + "type": "343", + "level": "344" }, "windowsOptions": { - "gmsaCredentialSpecName": "352", - "gmsaCredentialSpec": "353", - "runAsUserName": "354" + "gmsaCredentialSpecName": "345", + "gmsaCredentialSpec": "346", + "runAsUserName": "347" }, - "runAsUser": -6241205430888228274, - "runAsGroup": 3716388262106582789, + "runAsUser": 5307265951662522113, + "runAsGroup": 8025933883888025358, "runAsNonRoot": true, "supplementalGroups": [ - 2706433733228765005 + 6410850623145248813 ], - "fsGroup": -500234369132816308, + "fsGroup": -4038707688124072116, "sysctls": [ { - "name": "355", - "value": "356" + "name": "348", + "value": "349" } ] }, "imagePullSecrets": [ { - "name": "357" + "name": "350" } ], - "hostname": "358", - "subdomain": "359", + "hostname": "351", + "subdomain": "352", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1096,19 +1091,19 @@ { "matchExpressions": [ { - "key": "360", - "operator": "鱎ƙ;Nŕ璻Ji", + "key": "353", + "operator": "", "values": [ - "361" + "354" ] } ], "matchFields": [ { - "key": "362", - "operator": "J", + "key": "355", + "operator": "蘇KŅ/»頸+SÄ蚃", "values": [ - "363" + "356" ] } ] @@ -1117,23 +1112,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 902978249, + "weight": -1179798619, "preference": { "matchExpressions": [ { - "key": "364", - "operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6", + "key": "357", + "operator": "酊龨δ摖ȱğ_\u003c", "values": [ - "365" + "358" ] } ], "matchFields": [ { - "key": "366", - "operator": "ʎǑyZ涬P­", + "key": "359", + "operator": " ƺ蛜6Ɖ飴Ɏ", "values": [ - "367" + "360" ] } ] @@ -1146,46 +1141,40 @@ { "labelSelector": { "matchLabels": { - "05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3": "0-8-.M-.-.-v" + "5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M": "4-_-_-...1py_8-3..s._.x.2K_2u" }, "matchExpressions": [ { - "key": "1zET_..3dCv3j._.-_pP__up.2N", - "operator": "NotIn", - "values": [ - "f.p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.TV" - ] + "key": "t-43--3---93-2-2-37--e00uz-z0sn-8hx-qa-0/P8--21kFc", + "operator": "Exists" } ] }, "namespaces": [ - "374" + "367" ], - "topologyKey": "375" + "topologyKey": "368" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -3478003, + "weight": 50066853, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J": "28_38xm-.nx.sEK4B" + "7o7799-skj5---r-q3c.2f7ef8jzv4-9-35o-1-5w5z3-d----0p---s-9----747o-x3k/4-P.yP9S--858LI__.8____rO-S-P_-..0": "C9..__-6_k.N-2B_V.-tfh4.caTz_g" }, "matchExpressions": [ { - "key": "d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81", - "operator": "NotIn", - "values": [ - "MXOnf_ZN.-_--r.E__-8" - ] + "key": "R8D_X._B__-p", + "operator": "Exists" } ] }, "namespaces": [ - "382" + "375" ], - "topologyKey": "383" + "topologyKey": "376" } } ] @@ -1195,109 +1184,109 @@ { "labelSelector": { "matchLabels": { - "O.Um.-__k.j._g-G-7--p9.-0": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3" + "w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo": "T1mel--F......G" }, "matchExpressions": [ { - "key": "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d", - "operator": "In", - "values": [ - "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" - ] + "key": "4__XOnf_ZN.-_--r.E__-.8_e_l0", + "operator": "Exists" } ] }, "namespaces": [ - "390" + "383" ], - "topologyKey": "391" + "topologyKey": "384" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1078366610, + "weight": -1387335192, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "0..7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_E": "mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "key": "89o9.68o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---r/we16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH1", "operator": "NotIn", "values": [ - "VT3sn-0_.i__a.O2G_J" + "v_._e_-8" ] } ] }, "namespaces": [ - "398" + "391" ], - "topologyKey": "399" + "topologyKey": "392" } } ] } }, - "schedulerName": "400", + "schedulerName": "393", "tolerations": [ { - "key": "401", - "operator": "抷qTfZȻ干m謆7", - "value": "402", - "effect": "儉ɩ柀", - "tolerationSeconds": -7411984641310969236 + "key": "394", + "operator": "滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼɏ眞a", + "value": "395", + "effect": "vĝ線", + "tolerationSeconds": 3441490580161241924 } ], "hostAliases": [ { - "ip": "403", + "ip": "396", "hostnames": [ - "404" + "397" ] } ], - "priorityClassName": "405", - "priority": -895317190, + "priorityClassName": "398", + "priority": 449312902, "dnsConfig": { "nameservers": [ - "406" + "399" ], "searches": [ - "407" + "400" ], "options": [ { - "name": "408", - "value": "409" + "name": "401", + "value": "402" } ] }, "readinessGates": [ { - "conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n" + "conditionType": ":" } ], - "runtimeClassName": "410", + "runtimeClassName": "403", "enableServiceLinks": true, - "preemptionPolicy": "qiǙĞǠ", + "preemptionPolicy": "L©鈀6w屑_ǪɄ6ɲǛʦ緒gb", "overhead": { - "锒鿦Ršțb贇髪č": "840" + "": "814" }, "topologySpreadConstraints": [ { - "maxSkew": 44905239, - "topologyKey": "411", - "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "maxSkew": -4712534, + "topologyKey": "404", + "whenUnsatisfiable": "'6Ǫ槲Ǭ9|`gɩ", "labelSelector": { "matchLabels": { - "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + "5-ux3--0--2pn-5023-lt3-w-br75gp-c-coa--yh/83Po_L3f1-7_4": "Ca.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-j" }, "matchExpressions": [ { - "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", - "operator": "DoesNotExist" + "key": "sf--kh.f4x4-br5r-g/3_e_3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.eV", + "operator": "NotIn", + "values": [ + "8oh..2_uGGP..-_Nh" + ] } ] } @@ -1305,21 +1294,21 @@ ] } }, - "ttlSecondsAfterFinished": -37906634 + "ttlSecondsAfterFinished": -1388868268 }, "status": { "conditions": [ { - "type": "齑誀ŭ\"ɦ?鮻ȧH僠 \u0026G凒罹ń賎Ȍű", - "status": "\u003ceÙ蝌铀íÅė 宣a(炛帵(", - "lastProbeTime": "2554-11-16T00:22:37Z", - "lastTransitionTime": "2104-05-10T07:51:25Z", - "reason": "418", - "message": "419" + "type": "ɍ颬灲Ɍ邪鳖üz", + "status": "钖", + "lastProbeTime": "2821-07-19T11:49:26Z", + "lastTransitionTime": "2086-12-20T18:43:07Z", + "reason": "411", + "message": "412" } ], - "active": 813966816, - "succeeded": -1671851501, - "failed": -1826123075 + "active": -810338968, + "succeeded": -1842112975, + "failed": 1007324766 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb index 489c580ada322b1265a7750115e942e6e1de411e..ba84a61646cd550dd2c2f1e53441179762855682 100644 GIT binary patch literal 5941 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 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml index 3f18c6bec0d..0a2e02563da 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,879 +25,869 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - activeDeadlineSeconds: -1888486794478722029 - backoffLimit: -596764376 - completions: -1821918122 + activeDeadlineSeconds: -5584804243908071872 + backoffLimit: -783752440 + completions: 1305381319 manualSelector: true - parallelism: -1978186127 + parallelism: 896585016 selector: matchExpressions: - - key: U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t + - key: S91.e5K-_e63_-_3-h operator: In values: - - M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5 + - 3_bQw.-dG6c-.x matchLabels: - l3snh-z--3uy5-----578/B_._-.-W._AAn---v_-5-_8LXP-o-9..1l-_5---5w9vL_-.M.y._-_5: "" + hjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4: 3L.u template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: 986128679342689494 + deletionGracePeriodSeconds: -5781250394576755223 finalizers: - - "42" - generateName: "31" - generation: 1142764901371385923 + - "36" + generateName: "25" + generation: 7014477246743953430 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: true - kind: "40" - name: "41" - uid: ºɖgȏ哙ȍȂ揲ȼDDŽL - resourceVersion: "6776706803848751502" - selfLink: "33" - uid: Šĸů湙騘&啞 + manager: "38" + operation: 糷磩窮秳ķ蟒苾h + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: false + kind: "34" + name: "35" + uid: 譋娲瘹ɭȊɚɎ( + resourceVersion: "10505102892351749453" + selfLink: "27" + uid: ɸ=ǤÆ碛,1 spec: - activeDeadlineSeconds: 1968932441807931700 + activeDeadlineSeconds: -1117820874616112287 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "364" - operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6 + - key: "357" + operator: 酊龨δ摖ȱğ_< values: - - "365" + - "358" matchFields: - - key: "366" - operator: ʎǑyZ涬P­ + - key: "359" + operator: ' ƺ蛜6Ɖ飴Ɏ' values: - - "367" - weight: 902978249 + - "360" + weight: -1179798619 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "360" - operator: 鱎ƙ;Nŕ璻Ji + - key: "353" + operator: "" values: - - "361" + - "354" matchFields: - - key: "362" - operator: J + - key: "355" + operator: 蘇KŅ/»頸+SÄ蚃 values: - - "363" + - "356" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81 - operator: NotIn - values: - - MXOnf_ZN.-_--r.E__-8 + - key: R8D_X._B__-p + operator: Exists matchLabels: - 26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B + 7o7799-skj5---r-q3c.2f7ef8jzv4-9-35o-1-5w5z3-d----0p---s-9----747o-x3k/4-P.yP9S--858LI__.8____rO-S-P_-..0: C9..__-6_k.N-2B_V.-tfh4.caTz_g namespaces: - - "382" - topologyKey: "383" - weight: -3478003 + - "375" + topologyKey: "376" + weight: 50066853 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1zET_..3dCv3j._.-_pP__up.2N - operator: NotIn - values: - - f.p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.TV + - key: t-43--3---93-2-2-37--e00uz-z0sn-8hx-qa-0/P8--21kFc + operator: Exists matchLabels: - 05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v + 5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M: 4-_-_-...1py_8-3..s._.x.2K_2u namespaces: - - "374" - topologyKey: "375" + - "367" + topologyKey: "368" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + - key: 89o9.68o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---r/we16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH1 operator: NotIn values: - - VT3sn-0_.i__a.O2G_J + - v_._e_-8 matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 0..7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_E: mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 namespaces: - - "398" - topologyKey: "399" - weight: -1078366610 + - "391" + topologyKey: "392" + weight: -1387335192 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d - operator: In - values: - - dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX + - key: 4__XOnf_ZN.-_--r.E__-.8_e_l0 + operator: Exists matchLabels: - O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3 + w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo: T1mel--F......G namespaces: - - "390" - topologyKey: "391" - automountServiceAccountToken: false + - "383" + topologyKey: "384" + automountServiceAccountToken: true containers: - args: - - "222" + - "213" command: - - "221" + - "212" env: - - name: "229" - value: "230" + - name: "220" + value: "221" valueFrom: configMapKeyRef: - key: "236" - name: "235" - optional: true - fieldRef: - apiVersion: "231" - fieldPath: "232" - resourceFieldRef: - containerName: "233" - divisor: "157" - resource: "234" - secretKeyRef: - key: "238" - name: "237" + key: "227" + name: "226" optional: false + fieldRef: + apiVersion: "222" + fieldPath: "223" + resourceFieldRef: + containerName: "224" + divisor: "343" + resource: "225" + secretKeyRef: + key: "229" + name: "228" + optional: true envFrom: - configMapRef: - name: "227" - optional: true - prefix: "226" - secretRef: - name: "228" + name: "218" optional: false - image: "220" + prefix: "217" + secretRef: + name: "219" + optional: true + image: "211" + imagePullPolicy: 捏ĨF lifecycle: postStart: + exec: + command: + - "251" + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "252" + port: "253" + scheme: 嫙&蒒5靇C'ɵK.Q貇 + tcpSocket: + host: "257" + port: 1428858742 + preStop: exec: command: - "258" httpGet: - host: "260" + host: "261" httpHeaders: - - name: "261" - value: "262" + - name: "262" + value: "263" path: "259" - port: 1385030458 - scheme: Ao/樝fw[Řż丩ŽoǠŻ + port: "260" + scheme: dz@ùƸʋŀ樺ȃv渟7¤7djƯĖ漘Z tcpSocket: - host: "264" - port: "263" - preStop: - exec: - command: - - "265" - httpGet: - host: "267" - httpHeaders: - - name: "268" - value: "269" - path: "266" - port: -1589303862 - scheme: ľǎɳ,ǿ飏騀呣ǎ - tcpSocket: - host: "271" - port: "270" + host: "265" + port: "264" livenessProbe: exec: command: - - "245" - failureThreshold: -1131820775 + - "236" + failureThreshold: 571942197 httpGet: - host: "247" + host: "239" httpHeaders: - - name: "248" - value: "249" - path: "246" - port: -88173241 - scheme: Źʣy豎@ɀ羭,铻O - initialDelaySeconds: 1424053148 - periodSeconds: 859639931 - successThreshold: -1663149700 + - name: "240" + value: "241" + path: "237" + port: "238" + scheme: 賲鐅臬dH巧 + initialDelaySeconds: -1703360754 + periodSeconds: -1053603859 + successThreshold: 1471432155 tcpSocket: - host: "251" - port: "250" - timeoutSeconds: 747521320 - name: "219" + host: "242" + port: 559781916 + timeoutSeconds: -1569009987 + name: "210" ports: - - containerPort: -1565157256 - hostIP: "225" - hostPort: 1702578303 - name: "224" - protocol: Ŭ + - containerPort: 1569606284 + hostIP: "216" + hostPort: -766145437 + name: "215" + protocol: ƞ究:hoĂɋ瀐<ɉ readinessProbe: exec: command: - - "252" - failureThreshold: -233378149 + - "243" + failureThreshold: -2093767566 httpGet: - host: "254" + host: "246" httpHeaders: - - name: "255" - value: "256" - path: "253" - port: -1710454086 - scheme: mɩC[ó瓧 - initialDelaySeconds: 915577348 - periodSeconds: -1386967282 - successThreshold: -2030286732 + - name: "247" + value: "248" + path: "244" + port: "245" + scheme: +?ƭ峧Y栲茇竛吲蚛隖 + initialDelaySeconds: -1839582103 + periodSeconds: -1696471293 + successThreshold: 1545364977 tcpSocket: - host: "257" - port: -122979840 - timeoutSeconds: -590798124 + host: "250" + port: "249" + timeoutSeconds: 1054302708 resources: limits: - ŴĿ: "377" + 苆ǮńMǰ溟ɴ扵閝ȝ鐵儣廡: "281" requests: - .Q貇£ȹ嫰ƹǔw÷nI: "718" + 珝Żwʮ馜ü: "513" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 + - Àǒ drop: - - rʤî萨zvt莭琽§ć\ ïì + - ʒ刽ʼn掏1ſ盷褎weLJèux榜 privileged: false - procMount: ƖN粕擓Ɩ - readOnlyRootFilesystem: false - runAsGroup: 3195567116206635190 - runAsNonRoot: true - runAsUser: -5738810661106213940 + procMount: ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l + readOnlyRootFilesystem: true + runAsGroup: -7778175203330288214 + runAsNonRoot: false + runAsUser: -7799096735007368868 seLinuxOptions: - level: "276" - role: "274" - type: "275" - user: "273" + level: "270" + role: "268" + type: "269" + user: "267" windowsOptions: - gmsaCredentialSpec: "278" - gmsaCredentialSpecName: "277" - runAsUserName: "279" - stdin: true - terminationMessagePath: "272" - terminationMessagePolicy: 萭旿@掇lNdǂ>5姣 - tty: true + gmsaCredentialSpec: "272" + gmsaCredentialSpecName: "271" + runAsUserName: "273" + terminationMessagePath: "266" + terminationMessagePolicy: 0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭 volumeDevices: - - devicePath: "244" - name: "243" + - devicePath: "235" + name: "234" volumeMounts: - - mountPath: "240" - mountPropagation: 樺ȃ - name: "239" - subPath: "241" - subPathExpr: "242" - workingDir: "223" + - mountPath: "231" + mountPropagation: =6}ɡ + name: "230" + readOnly: true + subPath: "232" + subPathExpr: "233" + workingDir: "214" dnsConfig: nameservers: - - "406" + - "399" options: - - name: "408" - value: "409" + - name: "401" + value: "402" searches: - - "407" - dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴 + - "400" + dnsPolicy: \E¦队偯J僳徥淳 enableServiceLinks: true ephemeralContainers: - args: - - "283" + - "277" command: - - "282" + - "276" env: - - name: "290" - value: "291" + - name: "284" + value: "285" valueFrom: configMapKeyRef: - key: "297" - name: "296" + key: "291" + name: "290" optional: false fieldRef: - apiVersion: "292" - fieldPath: "293" + apiVersion: "286" + fieldPath: "287" resourceFieldRef: - containerName: "294" - divisor: "19" - resource: "295" + containerName: "288" + divisor: "609" + resource: "289" secretKeyRef: - key: "299" - name: "298" + key: "293" + name: "292" optional: true envFrom: - configMapRef: - name: "288" + name: "282" optional: false - prefix: "287" + prefix: "281" secretRef: - name: "289" - optional: true - image: "281" - imagePullPolicy: Ļǟi& + name: "283" + optional: false + image: "275" + imagePullPolicy: 岼昕ĬÇó藢xɮĵȑ6L*Z lifecycle: postStart: exec: command: - - "320" + - "312" + httpGet: + host: "314" + httpHeaders: + - name: "315" + value: "316" + path: "313" + port: 1791615594 + scheme: Ƥ熪军g>郵[+扴 + tcpSocket: + host: "318" + port: "317" + preStop: + exec: + command: + - "319" httpGet: host: "322" httpHeaders: - name: "323" value: "324" - path: "321" - port: -467985423 - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + path: "320" + port: "321" + scheme: ']佱¿>犵殇ŕ-Ɂ圯W' tcpSocket: host: "326" port: "325" - preStop: - exec: - command: - - "327" - httpGet: - host: "329" - httpHeaders: - - name: "330" - value: "331" - path: "328" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 - tcpSocket: - host: "333" - port: "332" livenessProbe: + exec: + command: + - "300" + failureThreshold: -361442565 + httpGet: + host: "302" + httpHeaders: + - name: "303" + value: "304" + path: "301" + port: 896430536 + scheme: 罴ņ螡źȰ + initialDelaySeconds: 627713162 + periodSeconds: -1740959124 + successThreshold: 158280212 + tcpSocket: + host: "305" + port: 513341278 + timeoutSeconds: 1255312175 + name: "274" + ports: + - containerPort: -819723498 + hostIP: "280" + hostPort: 2035347577 + name: "279" + protocol: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' + readinessProbe: exec: command: - "306" - failureThreshold: 1831208885 + failureThreshold: -36782737 httpGet: host: "308" httpHeaders: - name: "309" value: "310" path: "307" - port: -534498506 - scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ - initialDelaySeconds: -805795167 - periodSeconds: 785984384 - successThreshold: 193463975 + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' + initialDelaySeconds: -1244623134 + periodSeconds: -398297599 + successThreshold: 873056500 tcpSocket: - host: "312" - port: "311" - timeoutSeconds: 1791615594 - name: "280" - ports: - - containerPort: 1871952835 - hostIP: "286" - hostPort: -1097611426 - name: "285" - protocol: D剂讼ɓȌʟni酛3ƁÀ* - readinessProbe: - exec: - command: - - "313" - failureThreshold: 18113448 - httpGet: - host: "316" - httpHeaders: - - name: "317" - value: "318" - path: "314" - port: "315" - scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - initialDelaySeconds: -1664778008 - periodSeconds: -978176982 - successThreshold: 415947324 - tcpSocket: - host: "319" - port: 467291328 - timeoutSeconds: -1191528701 + host: "311" + port: -20130017 + timeoutSeconds: -1334110502 resources: limits: - Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" + 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p: "604" requests: - ʎȺ眖R#: "985" + 擓ƖHVe熼'FD剂讼ɓȌʟni酛: "499" securityContext: allowPrivilegeEscalation: true capabilities: add: - - 碔 + - 咡W drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - 敄lu| privileged: false - procMount: ',ŕ' + procMount: =E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展 readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 - runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsGroup: 8175137418799691442 + runAsNonRoot: true + runAsUser: -230763786643460687 seLinuxOptions: - level: "338" - role: "336" - type: "337" - user: "335" + level: "331" + role: "329" + type: "330" + user: "328" windowsOptions: - gmsaCredentialSpec: "340" - gmsaCredentialSpecName: "339" - runAsUserName: "341" + gmsaCredentialSpec: "333" + gmsaCredentialSpecName: "332" + runAsUserName: "334" + stdin: true stdinOnce: true - targetContainerName: "342" - terminationMessagePath: "334" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + targetContainerName: "335" + terminationMessagePath: "327" + terminationMessagePolicy: 輦唊#v铿ʩȂ4ē鐭 volumeDevices: - - devicePath: "305" - name: "304" + - devicePath: "299" + name: "298" volumeMounts: - - mountPath: "301" - mountPropagation: ¿ - name: "300" - subPath: "302" - subPathExpr: "303" - workingDir: "284" + - mountPath: "295" + mountPropagation: Ɏ R§耶FfBl + name: "294" + readOnly: true + subPath: "296" + subPathExpr: "297" + workingDir: "278" hostAliases: - hostnames: - - "404" - ip: "403" - hostNetwork: true - hostname: "358" + - "397" + ip: "396" + hostIPC: true + hostPID: true + hostname: "351" imagePullSecrets: - - name: "357" + - name: "350" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "587" - resource: "171" + containerName: "159" + divisor: "671" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: false envFrom: - configMapRef: - name: "164" - optional: true - prefix: "163" + name: "153" + optional: false + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: 猀2:ö + image: "146" + imagePullPolicy: j瀉ǚrǜnh0åȂ町恰nj揠8lj黳鈫 lifecycle: postStart: exec: command: - - "197" + - "186" httpGet: - host: "199" + host: "189" httpHeaders: - - name: "200" - value: "201" - path: "198" - port: 200992434 - scheme: ņ榱*Gưoɘ檲ɨ銦妰黖ȓ + - name: "190" + value: "191" + path: "187" + port: "188" + scheme: 怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4 tcpSocket: - host: "203" - port: "202" + host: "193" + port: "192" preStop: exec: command: - - "204" + - "194" httpGet: - host: "207" + host: "197" httpHeaders: - - name: "208" - value: "209" - path: "205" - port: "206" - scheme: ɋ瀐<ɉ + - name: "198" + value: "199" + path: "195" + port: "196" + scheme: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< tcpSocket: - host: "210" - port: -1334904807 + host: "201" + port: "200" livenessProbe: exec: command: - - "182" - failureThreshold: -748919010 + - "171" + failureThreshold: -20764200 httpGet: - host: "185" + host: "174" httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: 腿ħ缶.蒅!a - initialDelaySeconds: 1154560741 - periodSeconds: 1100645882 - successThreshold: -532628939 + - name: "175" + value: "176" + path: "172" + port: "173" + scheme: ȲϤĦʅ芝M + initialDelaySeconds: 664393458 + periodSeconds: 964433164 + successThreshold: 679825403 tcpSocket: - host: "189" - port: "188" - timeoutSeconds: -1376537100 - name: "156" + host: "177" + port: 1784914896 + timeoutSeconds: -573382936 + name: "145" ports: - - containerPort: -522879476 - hostIP: "162" - hostPort: 273818613 - name: "161" - protocol: "N" + - containerPort: 223177366 + hostIP: "151" + hostPort: -884734093 + name: "150" + protocol: 2ħ籦ö嗏ʑ>季 readinessProbe: exec: command: - - "190" - failureThreshold: -813624408 + - "178" + failureThreshold: -2039036935 httpGet: - host: "192" + host: "181" httpHeaders: - - name: "193" - value: "194" - path: "191" - port: -1477511050 - scheme: ;栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼 - initialDelaySeconds: -709825668 - periodSeconds: -379514302 - successThreshold: 173916181 + - name: "182" + value: "183" + path: "179" + port: "180" + scheme: 狩鴈o_ + initialDelaySeconds: -1249460160 + periodSeconds: -1944279238 + successThreshold: 1169718433 tcpSocket: - host: "196" - port: "195" - timeoutSeconds: -1144400181 + host: "185" + port: "184" + timeoutSeconds: -1027661779 resources: limits: - 倱<: "920" + '&啞川J缮ǚbJ': "99" requests: - 贩j瀉ǚ: "455" + /淹\韲翁&ʢsɜ曢\%枅:=ǛƓ: "330" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 5w垁鷌辪虽U珝Żwʮ馜üNșƶ + - Ƙá腿ħ缶.蒅!a坩O` drop: - - ĩĉş蝿ɖȃ賲鐅臬 + - İ而踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț privileged: false - procMount: ǵʭd鲡:贅wE@Ȗs«öʮ - readOnlyRootFilesystem: false - runAsGroup: -1245112587824234591 + procMount: 綸_Ú8參遼ūPH炮掊°nʮ + readOnlyRootFilesystem: true + runAsGroup: -6305787278980855165 runAsNonRoot: true - runAsUser: -1799108093609470992 + runAsUser: -7587297753202451973 seLinuxOptions: - level: "215" - role: "213" - type: "214" - user: "212" + level: "206" + role: "204" + type: "205" + user: "203" windowsOptions: - gmsaCredentialSpec: "217" - gmsaCredentialSpecName: "216" - runAsUserName: "218" + gmsaCredentialSpec: "208" + gmsaCredentialSpecName: "207" + runAsUserName: "209" stdin: true stdinOnce: true - terminationMessagePath: "211" - terminationMessagePolicy: å睫}堇硲蕵ɢ苆 + terminationMessagePath: "202" volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: Ɋł/擇ɦĽ胚O醔ɍ厶耈  - name: "176" - readOnly: true - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "347" + - mountPath: "166" + mountPropagation: 2啗塧ȱ蓿彭聡A3fƻfʣ繡楙¯ĦE勗 + name: "165" + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "340" nodeSelector: - "343": "344" + "336": "337" overhead: - 锒鿦Ršțb贇髪č: "840" - preemptionPolicy: qiǙĞǠ - priority: -895317190 - priorityClassName: "405" + "": "814" + preemptionPolicy: L©鈀6w屑_ǪɄ6ɲǛʦ緒gb + priority: 449312902 + priorityClassName: "398" readinessGates: - - conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n - restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - runtimeClassName: "410" - schedulerName: "400" + - conditionType: ':' + restartPolicy: 庰%皧V + runtimeClassName: "403" + schedulerName: "393" securityContext: - fsGroup: -500234369132816308 - runAsGroup: 3716388262106582789 + fsGroup: -4038707688124072116 + runAsGroup: 8025933883888025358 runAsNonRoot: true - runAsUser: -6241205430888228274 + runAsUser: 5307265951662522113 seLinuxOptions: - level: "351" - role: "349" - type: "350" - user: "348" + level: "344" + role: "342" + type: "343" + user: "341" supplementalGroups: - - 2706433733228765005 + - 6410850623145248813 sysctls: - - name: "355" - value: "356" + - name: "348" + value: "349" windowsOptions: - gmsaCredentialSpec: "353" - gmsaCredentialSpecName: "352" - runAsUserName: "354" - serviceAccount: "346" - serviceAccountName: "345" - shareProcessNamespace: true - subdomain: "359" - terminationGracePeriodSeconds: -1027492015449357669 + gmsaCredentialSpec: "346" + gmsaCredentialSpecName: "345" + runAsUserName: "347" + serviceAccount: "339" + serviceAccountName: "338" + shareProcessNamespace: false + subdomain: "352" + terminationGracePeriodSeconds: -5569844914519516591 tolerations: - - effect: 儉ɩ柀 - key: "401" - operator: 抷qTfZȻ干m謆7 - tolerationSeconds: -7411984641310969236 - value: "402" + - effect: vĝ線 + key: "394" + operator: 滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼɏ眞a + tolerationSeconds: 3441490580161241924 + value: "395" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p - operator: DoesNotExist + - key: sf--kh.f4x4-br5r-g/3_e_3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.eV + operator: NotIn + values: + - 8oh..2_uGGP..-_Nh matchLabels: - 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa - maxSkew: 44905239 - topologyKey: "411" - whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 + 5-ux3--0--2pn-5023-lt3-w-br75gp-c-coa--yh/83Po_L3f1-7_4: Ca.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-j + maxSkew: -4712534 + topologyKey: "404" + whenUnsatisfiable: '''6Ǫ槲Ǭ9|`gɩ' volumes: - awsElasticBlockStore: - fsType: "56" - partition: 903876536 - readOnly: true - volumeID: "55" + fsType: "45" + partition: -972874331 + volumeID: "44" azureDisk: - cachingMode: "" - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 坼É/pȿŘ阌Ŗ怳 + cachingMode: 鎥ʟ<$洅ɹ7 + diskName: "108" + diskURI: "109" + fsType: "110" + kind: Þ readOnly: false azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 1532914928 + defaultMode: 938765968 items: - - key: "108" - mode: 1825892582 - path: "109" - name: "107" + - key: "97" + mode: -421817404 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" - readOnly: false + name: "144" + readOnly: true volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -388204860 + defaultMode: -331664193 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: 1539635748 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 848754324 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "770" - resource: "101" + containerName: "89" + divisor: "110" + resource: "90" emptyDir: - medium: z徃鷢6ȥ啕禗Ǐ2 - sizeLimit: "387" + medium: 瓷雼浢Ü礽绅{囥 + sizeLimit: "721" fc: - fsType: "103" - lun: -573382936 + fsType: "92" + lun: -1341615783 targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" - readOnly: true + "74": "75" secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -347579237 - pdName: "53" - readOnly: true + fsType: "43" + partition: 1673568505 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: bJ5ʬ昹ʞĹ鑑6NJPM饣` + path: "41" + type: 龷ȪÆl iscsi: - chapAuthDiscovery: true - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -539733119 + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: -1888506207 portals: - - "69" + - "58" readOnly: true secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" - readOnly: true - volumeID: "137" + fsType: "127" + volumeID: "126" projected: - defaultMode: -556258965 + defaultMode: -1884322607 sources: - configMap: items: - - key: "133" - mode: -1305215109 - path: "134" - name: "132" + - key: "122" + mode: -1147975588 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -239847982 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: -1240667156 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "908" - resource: "131" + containerName: "119" + divisor: "750" + resource: "120" secret: items: - - key: "125" - mode: -1629040033 - path: "126" - name: "124" + - key: "114" + mode: 1550211208 + path: "115" + name: "113" optional: false serviceAccountToken: - audience: "135" - expirationSeconds: 8048348966862776448 - path: "136" + audience: "124" + expirationSeconds: 2293771102284463819 + path: "125" quobyte: - group: "117" - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - secretRef: - name: "141" - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" - secret: - defaultMode: -963895759 - items: - - key: "61" - mode: 2022312348 - path: "62" - optional: false - secretName: "60" - storageos: - fsType: "149" + fsType: "135" + gateway: "128" + protectionDomain: "131" readOnly: true secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "130" + sslEnabled: true + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" + secret: + defaultMode: 798972405 + items: + - key: "50" + mode: -1628457490 + path: "51" + optional: false + secretName: "49" + storageos: + fsType: "138" + secretRef: + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" - ttlSecondsAfterFinished: -37906634 + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" + ttlSecondsAfterFinished: -1388868268 status: - active: 813966816 + active: -810338968 conditions: - - lastProbeTime: "2554-11-16T00:22:37Z" - lastTransitionTime: "2104-05-10T07:51:25Z" - message: "419" - reason: "418" - status: ANTiax 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: "44" + 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷: "948" requests: - $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫: "130" + "": "83" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 军g>郵[+扴ȨŮ+朷Ǝ膯lj + - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 drop: - - "" + - rʤî萨zvt莭琽§ć\ ïì privileged: false - procMount: 碧闳ȩr - readOnlyRootFilesystem: true - runAsGroup: 4468469649483616089 - runAsNonRoot: false - runAsUser: -5821728037462880994 + procMount: ƖN粕擓Ɩ + readOnlyRootFilesystem: false + runAsGroup: 3195567116206635190 + runAsNonRoot: true + runAsUser: -5738810661106213940 seLinuxOptions: - level: "292" - role: "290" - type: "291" - user: "289" + level: "283" + role: "281" + type: "282" + user: "280" windowsOptions: - gmsaCredentialSpec: "294" - gmsaCredentialSpecName: "293" - runAsUserName: "295" - terminationMessagePath: "288" - terminationMessagePolicy: ǩ + gmsaCredentialSpec: "285" + gmsaCredentialSpecName: "284" + runAsUserName: "286" + stdin: true + terminationMessagePath: "279" + terminationMessagePolicy: 萭旿@掇lNdǂ>5姣 + tty: true volumeDevices: - - devicePath: "262" - name: "261" + - devicePath: "250" + name: "249" volumeMounts: - - mountPath: "258" - mountPropagation: 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0 - name: "257" - readOnly: true - subPath: "259" - subPathExpr: "260" - workingDir: "241" + - mountPath: "246" + mountPropagation: '@ùƸʋŀ樺ȃv' + name: "245" + subPath: "247" + subPathExpr: "248" + workingDir: "229" dnsConfig: nameservers: - - "419" + - "413" options: - - name: "421" - value: "422" + - name: "415" + value: "416" searches: - - "420" + - "414" + dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴 enableServiceLinks: true ephemeralContainers: - args: - - "299" + - "290" command: - - "298" + - "289" env: - - name: "306" - value: "307" + - name: "297" + value: "298" valueFrom: configMapKeyRef: - key: "313" - name: "312" + key: "304" + name: "303" optional: false fieldRef: - apiVersion: "308" - fieldPath: "309" + apiVersion: "299" + fieldPath: "300" resourceFieldRef: - containerName: "310" - divisor: "475" - resource: "311" + containerName: "301" + divisor: "19" + resource: "302" secretKeyRef: - key: "315" - name: "314" - optional: false + key: "306" + name: "305" + optional: true envFrom: - configMapRef: - name: "304" - optional: true - prefix: "303" - secretRef: - name: "305" + name: "295" optional: false - image: "297" - imagePullPolicy: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ + prefix: "294" + secretRef: + name: "296" + optional: true + image: "288" + imagePullPolicy: Ļǟi& lifecycle: postStart: exec: command: - - "335" + - "327" httpGet: - host: "337" + host: "329" httpHeaders: - - name: "338" - value: "339" - path: "336" - port: 1965273344 - scheme: L²sNƗ¸g + - name: "330" + value: "331" + path: "328" + port: -467985423 + scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ tcpSocket: - host: "340" - port: -1468297794 + host: "333" + port: "332" preStop: exec: command: - - "341" + - "334" httpGet: - host: "343" + host: "336" httpHeaders: - - name: "344" - value: "345" - path: "342" - port: 807879779 - scheme: ȱğ_<ǬëJ橈'琕鶫:顇ə + - name: "337" + value: "338" + path: "335" + port: 591440053 + scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 tcpSocket: - host: "346" - port: -116224247 + host: "340" + port: "339" livenessProbe: exec: command: - - "322" - failureThreshold: -787458357 + - "313" + failureThreshold: 1831208885 httpGet: - host: "324" + host: "315" httpHeaders: - - name: "325" - value: "326" - path: "323" - port: 1017803158 - scheme: 碔 - initialDelaySeconds: -1296830577 - periodSeconds: 1174240097 - successThreshold: -1928016742 + - name: "316" + value: "317" + path: "314" + port: -534498506 + scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ + initialDelaySeconds: -805795167 + periodSeconds: 785984384 + successThreshold: 193463975 tcpSocket: - host: "328" - port: "327" - timeoutSeconds: -1314967760 - name: "296" + host: "319" + port: "318" + timeoutSeconds: 1791615594 + name: "287" ports: - - containerPort: -888240870 - hostIP: "302" - hostPort: 1748715911 - name: "301" - protocol: ʁ岼昕ĬÇ + - containerPort: 1871952835 + hostIP: "293" + hostPort: -1097611426 + name: "292" + protocol: D剂讼ɓȌʟni酛3ƁÀ* readinessProbe: exec: command: - - "329" - failureThreshold: 1150894260 + - "320" + failureThreshold: 18113448 httpGet: - host: "331" + host: "323" httpHeaders: - - name: "332" - value: "333" - path: "330" - port: -651090190 - scheme: 跣Hǝcw媀瓄&翜舞拉Œɥ颶 - initialDelaySeconds: 2030115750 - periodSeconds: 153385505 - successThreshold: 1746399757 + - name: "324" + value: "325" + path: "321" + port: "322" + scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + initialDelaySeconds: -1664778008 + periodSeconds: -978176982 + successThreshold: 415947324 tcpSocket: - host: "334" - port: -341287812 - timeoutSeconds: 1847163341 + host: "326" + port: 467291328 + timeoutSeconds: -1191528701 resources: limits: - 鐫û咡W<敄lu|榝: "506" + Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" requests: - w忊|E剒蔞|表徶đ寳议: "804" + ʎȺ眖R#: "985" securityContext: allowPrivilegeEscalation: true capabilities: add: - - nj汰8ŕİi騎C"6x$1sȣ±p + - 碔 drop: - - "" - privileged: true - procMount: 斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ - readOnlyRootFilesystem: true - runAsGroup: -5027542616778527781 - runAsNonRoot: true - runAsUser: 6199053026450141133 + - NKƙ順\E¦队偯J僳徥淳4揻-$ + privileged: false + procMount: ',ŕ' + readOnlyRootFilesystem: false + runAsGroup: 2011630253582325853 + runAsNonRoot: false + runAsUser: -7971724279034955974 seLinuxOptions: - level: "351" - role: "349" - type: "350" - user: "348" + level: "345" + role: "343" + type: "344" + user: "342" windowsOptions: - gmsaCredentialSpec: "353" - gmsaCredentialSpecName: "352" - runAsUserName: "354" + gmsaCredentialSpec: "347" + gmsaCredentialSpecName: "346" + runAsUserName: "348" stdinOnce: true - targetContainerName: "355" - terminationMessagePath: "347" - terminationMessagePolicy: '{屿oiɥ嵐sC8?Ǻ' - tty: true + targetContainerName: "349" + terminationMessagePath: "341" + terminationMessagePolicy: ' wƯ貾坢''跩aŕ' volumeDevices: - - devicePath: "321" - name: "320" + - devicePath: "312" + name: "311" volumeMounts: - - mountPath: "317" - mountPropagation: 貾坢'跩aŕ翑0 - name: "316" - readOnly: true - subPath: "318" - subPathExpr: "319" - workingDir: "300" + - mountPath: "308" + mountPropagation: ¿ + name: "307" + subPath: "309" + subPathExpr: "310" + workingDir: "291" hostAliases: - hostnames: - - "417" - ip: "416" - hostname: "371" + - "411" + ip: "410" + hostNetwork: true + hostname: "365" imagePullSecrets: - - name: "370" + - name: "364" initContainers: - args: - - "180" + - "165" command: - - "179" + - "164" env: - - name: "187" - value: "188" + - name: "172" + value: "173" valueFrom: configMapKeyRef: - key: "194" - name: "193" - optional: true + key: "179" + name: "178" + optional: false fieldRef: - apiVersion: "189" - fieldPath: "190" + apiVersion: "174" + fieldPath: "175" resourceFieldRef: - containerName: "191" - divisor: "832" - resource: "192" + containerName: "176" + divisor: "597" + resource: "177" secretKeyRef: - key: "196" - name: "195" - optional: true + key: "181" + name: "180" + optional: false envFrom: - configMapRef: - name: "185" + name: "170" optional: false - prefix: "184" + prefix: "169" secretRef: - name: "186" + name: "171" optional: false - image: "178" - imagePullPolicy: ȹ嫰ƹǔw÷nI粛E煹ǐƲE + image: "163" + imagePullPolicy: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 lifecycle: postStart: exec: command: - - "216" + - "202" httpGet: - host: "219" + host: "205" httpHeaders: - - name: "220" - value: "221" - path: "217" - port: "218" - scheme: n芞QÄȻȊ+?ƭ峧Y栲茇竛 + - name: "206" + value: "207" + path: "203" + port: "204" + scheme: '%:;栍dʪīT捘ɍi' tcpSocket: - host: "222" - port: -592581809 + host: "209" + port: "208" preStop: exec: command: - - "223" + - "210" httpGet: - host: "225" + host: "212" httpHeaders: - - name: "226" - value: "227" - path: "224" - port: 1702578303 - scheme: NŬɨǙÄr蛏豈ɃHŠơŴĿ + - name: "213" + value: "214" + path: "211" + port: -1171060347 + scheme: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° tcpSocket: - host: "228" - port: -1047607622 + host: "216" + port: "215" livenessProbe: exec: command: - - "203" - failureThreshold: -1064240304 + - "188" + failureThreshold: 1231820696 httpGet: - host: "205" + host: "191" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 290736426 - scheme: ö - initialDelaySeconds: 322201525 - periodSeconds: 66472042 - successThreshold: 2130088978 + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: 0åȂ町恰nj揠8lj + initialDelaySeconds: -1188153605 + periodSeconds: 912004803 + successThreshold: -2098817064 tcpSocket: - host: "209" - port: "208" - timeoutSeconds: -1784033404 - name: "177" + host: "194" + port: -2049272966 + timeoutSeconds: -427769948 + name: "162" ports: - - containerPort: 1154560741 - hostIP: "183" - hostPort: 1971383046 - name: "182" - protocol: 涁İ而踪鄌eÞȦY籎顒ǥ + - containerPort: 487826951 + hostIP: "168" + hostPort: 1632959949 + name: "167" + protocol: ldg滠鼍ƭt? readinessProbe: exec: command: - - "210" - failureThreshold: -522126070 + - "195" + failureThreshold: -1618937335 httpGet: - host: "212" + host: "198" httpHeaders: - - name: "213" - value: "214" - path: "211" - port: -566408554 - scheme: 劳&¼傭Ȟ1酃=6}ɡŇƉ立 - initialDelaySeconds: -1628697284 - periodSeconds: 354496320 - successThreshold: -418887496 + - name: "199" + value: "200" + path: "196" + port: "197" + initialDelaySeconds: 994527057 + periodSeconds: -1346458591 + successThreshold: 1234551517 tcpSocket: - host: "215" - port: -31530684 - timeoutSeconds: 843845736 + host: "201" + port: 675406340 + timeoutSeconds: -1482763519 resources: limits: - 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°: "465" + ÙæNǚ錯ƶRq: "575" requests: - oɘ檲ɨ銦妰黖ȓ: "793" + To&蕭k ź: "644" securityContext: allowPrivilegeEscalation: false capabilities: add: - - þŹʣy豎@ɀ羭, + - 瓼猀2:öY鶪5w垁鷌辪 drop: - - OŤǢʭ嵔棂p儼Ƿ裚瓶釆Ɗ+ + - U珝Żwʮ馜üNșƶ4ĩĉ privileged: false - procMount: 籘Àǒɿʒ刽ʼn + procMount: "" readOnlyRootFilesystem: false - runAsGroup: 1898367611285047958 - runAsNonRoot: true - runAsUser: -739484406984751446 + runAsGroup: 6165457529064596376 + runAsNonRoot: false + runAsUser: -4642229086806245627 seLinuxOptions: - level: "233" - role: "231" - type: "232" - user: "230" + level: "221" + role: "219" + type: "220" + user: "218" windowsOptions: - gmsaCredentialSpec: "235" - gmsaCredentialSpecName: "234" - runAsUserName: "236" - stdin: true - terminationMessagePath: "229" - terminationMessagePolicy: ȉ彂 + gmsaCredentialSpec: "223" + gmsaCredentialSpecName: "222" + runAsUserName: "224" + stdinOnce: true + terminationMessagePath: "217" + terminationMessagePolicy: 閼咎櫸eʔŊ tty: true volumeDevices: - - devicePath: "202" - name: "201" + - devicePath: "187" + name: "186" volumeMounts: - - mountPath: "198" - mountPropagation: oĂɋ瀐<ɉ湨H=å睫}堇硲蕵ɢ - name: "197" - subPath: "199" - subPathExpr: "200" - workingDir: "181" - nodeName: "360" + - mountPath: "183" + mountPropagation: 瑥A + name: "182" + readOnly: true + subPath: "184" + subPathExpr: "185" + workingDir: "166" + nodeName: "354" nodeSelector: - "356": "357" + "350": "351" overhead: 锒鿦Ršțb贇髪č: "840" preemptionPolicy: qiǙĞǠ priority: -895317190 - priorityClassName: "418" + priorityClassName: "412" readinessGates: - conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n - restartPolicy: ʗN - runtimeClassName: "423" - schedulerName: "413" + restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + runtimeClassName: "417" + schedulerName: "407" securityContext: - fsGroup: 5322145418345067191 - runAsGroup: 4019602632531869440 + fsGroup: -500234369132816308 + runAsGroup: 3716388262106582789 runAsNonRoot: true - runAsUser: 3781687155382614739 + runAsUser: -6241205430888228274 seLinuxOptions: - level: "364" - role: "362" - type: "363" - user: "361" + level: "358" + role: "356" + type: "357" + user: "355" supplementalGroups: - - 5883045102427621492 + - 2706433733228765005 sysctls: - - name: "368" - value: "369" + - name: "362" + value: "363" windowsOptions: - gmsaCredentialSpec: "366" - gmsaCredentialSpecName: "365" - runAsUserName: "367" - serviceAccount: "359" - serviceAccountName: "358" - shareProcessNamespace: false - subdomain: "372" - terminationGracePeriodSeconds: 4288903380102217677 + gmsaCredentialSpec: "360" + gmsaCredentialSpecName: "359" + runAsUserName: "361" + serviceAccount: "353" + serviceAccountName: "352" + shareProcessNamespace: true + subdomain: "366" + terminationGracePeriodSeconds: -1027492015449357669 tolerations: - effect: 儉ɩ柀 - key: "414" + key: "408" operator: 抷qTfZȻ干m謆7 tolerationSeconds: -7411984641310969236 - value: "415" + value: "409" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -719,214 +712,216 @@ spec: matchLabels: 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa maxSkew: 44905239 - topologyKey: "424" + topologyKey: "418" whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 volumes: - awsElasticBlockStore: - fsType: "77" - partition: 717712876 - volumeID: "76" + fsType: "62" + partition: -1853411528 + volumeID: "61" azureDisk: - cachingMode: ÙæNǚ錯ƶRq - diskName: "140" - diskURI: "141" - fsType: "142" - kind: ?瞲Ť倱<įXŋ朘瑥A徙 + cachingMode: A3fƻfʣ繡楙¯ + diskName: "125" + diskURI: "126" + fsType: "127" + kind: 勗E濞偘1ɩÅ議Ǹ轺@)蓳嗘TʡȂ readOnly: true azureFile: - secretName: "126" - shareName: "127" + secretName: "111" + shareName: "112" cephfs: monitors: - - "111" - path: "112" + - "96" + path: "97" readOnly: true - secretFile: "114" + secretFile: "99" secretRef: - name: "115" - user: "113" + name: "100" + user: "98" cinder: - fsType: "109" + fsType: "94" secretRef: - name: "110" - volumeID: "108" + name: "95" + volumeID: "93" configMap: - defaultMode: -1558831136 + defaultMode: -347579237 items: - - key: "129" - mode: 926891073 - path: "130" - name: "128" - optional: true + - key: "114" + mode: 1793473487 + path: "115" + name: "113" + optional: false csi: - driver: "172" - fsType: "173" + driver: "157" + fsType: "158" nodePublishSecretRef: - name: "176" - readOnly: true + name: "161" + readOnly: false volumeAttributes: - "174": "175" + "159": "160" downwardAPI: - defaultMode: 186998979 + defaultMode: -1775926229 items: - fieldRef: - apiVersion: "119" - fieldPath: "120" - mode: -1305215109 - path: "118" + apiVersion: "104" + fieldPath: "105" + mode: -1011172037 + path: "103" resourceFieldRef: - containerName: "121" - divisor: "857" - resource: "122" + containerName: "106" + divisor: "52" + resource: "107" emptyDir: - medium: 芝M 宸@Z^嫫猤痈 - sizeLimit: "179" + medium: 捵TwMȗ礼2ħ籦ö嗏ʑ>季Cʖ畬 + sizeLimit: "347" fc: - fsType: "124" - lun: 1179332384 - readOnly: true + fsType: "109" + lun: -740816174 targetWWNs: - - "123" + - "108" wwids: - - "125" + - "110" flexVolume: - driver: "103" - fsType: "104" - options: - "106": "107" - readOnly: true - secretRef: - name: "105" - flocker: - datasetName: "116" - datasetUUID: "117" - gcePersistentDisk: - fsType: "75" - partition: -2127673004 - pdName: "74" - gitRepo: - directory: "80" - repository: "78" - revision: "79" - glusterfs: - endpoints: "93" - path: "94" - hostPath: - path: "73" - type: ȸŹăȲϤĦ - iscsi: + driver: "88" fsType: "89" - initiatorName: "92" - iqn: "87" - iscsiInterface: "88" - lun: 1029074742 - portals: - - "90" + options: + "91": "92" secretRef: - name: "91" - targetPortal: "86" - name: "72" + name: "90" + flocker: + datasetName: "101" + datasetUUID: "102" + gcePersistentDisk: + fsType: "60" + partition: 1399152294 + pdName: "59" + readOnly: true + gitRepo: + directory: "65" + repository: "63" + revision: "64" + glusterfs: + endpoints: "78" + path: "79" + readOnly: true + hostPath: + path: "58" + type: j剐'宣I拍N嚳ķȗ + iscsi: + fsType: "74" + initiatorName: "77" + iqn: "72" + iscsiInterface: "73" + lun: -1483417237 + portals: + - "75" + secretRef: + name: "76" + targetPortal: "71" + name: "57" nfs: - path: "85" - server: "84" + path: "70" + server: "69" persistentVolumeClaim: - claimName: "95" + claimName: "80" readOnly: true photonPersistentDisk: - fsType: "144" - pdID: "143" + fsType: "129" + pdID: "128" portworxVolume: - fsType: "159" - volumeID: "158" + fsType: "144" + volumeID: "143" projected: - defaultMode: -427769948 + defaultMode: -1332301579 sources: - configMap: items: - - key: "154" - mode: -1950133943 - path: "155" - name: "153" + - key: "139" + mode: -1249460160 + path: "140" + name: "138" optional: false downwardAPI: items: - fieldRef: - apiVersion: "149" - fieldPath: "150" - mode: 1669671203 - path: "148" + apiVersion: "134" + fieldPath: "135" + mode: 1525389481 + path: "133" resourceFieldRef: - containerName: "151" - divisor: "580" - resource: "152" + containerName: "136" + divisor: "618" + resource: "137" secret: items: - - key: "146" - mode: -1120128337 - path: "147" - name: "145" + - key: "131" + mode: 550215822 + path: "132" + name: "130" optional: false serviceAccountToken: - audience: "156" - expirationSeconds: -8801560367353238479 - path: "157" + audience: "141" + expirationSeconds: -8988970531898753887 + path: "142" quobyte: - group: "138" - registry: "135" - tenant: "139" - user: "137" - volume: "136" + group: "123" + readOnly: true + registry: "120" + tenant: "124" + user: "122" + volume: "121" rbd: - fsType: "98" - image: "97" - keyring: "101" + fsType: "83" + image: "82" + keyring: "86" monitors: - - "96" - pool: "99" + - "81" + pool: "84" readOnly: true secretRef: - name: "102" - user: "100" + name: "87" + user: "85" scaleIO: - fsType: "167" - gateway: "160" - protectionDomain: "163" + fsType: "152" + gateway: "145" + protectionDomain: "148" readOnly: true secretRef: - name: "162" - storageMode: "165" - storagePool: "164" - system: "161" - volumeName: "166" + name: "147" + storageMode: "150" + storagePool: "149" + system: "146" + volumeName: "151" secret: - defaultMode: -1249460160 + defaultMode: -1852451720 items: - - key: "82" - mode: 147264373 - path: "83" - optional: false - secretName: "81" + - key: "67" + mode: 1395607230 + path: "68" + optional: true + secretName: "66" storageos: - fsType: "170" + fsType: "155" + readOnly: true secretRef: - name: "171" - volumeName: "168" - volumeNamespace: "169" + name: "156" + volumeName: "153" + volumeNamespace: "154" vsphereVolume: - fsType: "132" - storagePolicyID: "134" - storagePolicyName: "133" - volumePath: "131" + fsType: "117" + storagePolicyID: "119" + storagePolicyName: "118" + volumePath: "116" ttlSecondsAfterFinished: -37906634 - schedule: "24" - startingDeadlineSeconds: -8817021678265088399 + schedule: "18" + startingDeadlineSeconds: -2555947251840004808 successfulJobsHistoryLimit: 1893057016 - suspend: false + suspend: true status: active: - - apiVersion: "434" - fieldPath: "436" - kind: "431" - name: "433" - namespace: "432" - resourceVersion: "435" + - apiVersion: "428" + fieldPath: "430" + kind: "425" + name: "427" + namespace: "426" + resourceVersion: "429" diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json index 9a271a3e9aa..3f2a8602501 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,302 +35,304 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "template": { "metadata": { - "name": "24", - "generateName": "25", - "namespace": "26", - "selfLink": "27", - "uid": "^苣", - "resourceVersion": "1092536316763508004", - "generation": 1905795315403748486, + "name": "18", + "generateName": "19", + "namespace": "20", + "selfLink": "21", + "uid": "SǡƏ", + "resourceVersion": "17916580954637291219", + "generation": 5259823216098853135, "creationTimestamp": null, - "deletionGracePeriodSeconds": 7323204920313990232, + "deletionGracePeriodSeconds": 4075183944016503389, "labels": { - "29": "30" + "23": "24" }, "annotations": { - "31": "32" + "25": "26" }, "ownerReferences": [ { - "apiVersion": "33", - "kind": "34", - "name": "35", - "uid": "谐颋DžSǡƏS$+½H牗洝尿", + "apiVersion": "27", + "kind": "28", + "name": "29", + "uid": "ɑ", "controller": true, "blockOwnerDeletion": false } ], "finalizers": [ - "36" + "30" ], - "clusterName": "37", + "clusterName": "31", "managedFields": [ { - "manager": "38", - "operation": "B峅x4%a", - "apiVersion": "39", - "fields": {"40":{"41":null}} + "manager": "32", + "operation": "ěĂ凗蓏Ŋ蛊ĉy緅縕", + "apiVersion": "33" } ] }, "spec": { - "parallelism": -856030588, - "completions": -106888179, - "activeDeadlineSeconds": -1483125035702892746, - "backoffLimit": -1822122846, + "parallelism": -443114323, + "completions": -1771909905, + "activeDeadlineSeconds": -9086179100394185427, + "backoffLimit": -1796008812, "selector": { "matchLabels": { - "2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am6-4_WE-_T": "cd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DAm" + "g5i9/l-Y._.-444": "c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64" }, "matchExpressions": [ { - "key": "rnr", - "operator": "DoesNotExist" + "key": "2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5", + "operator": "In", + "values": [ + "Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8" + ] } ] }, - "manualSelector": true, + "manualSelector": false, "template": { "metadata": { - "name": "51", - "generateName": "52", - "namespace": "53", - "selfLink": "54", - "uid": "@ʊʓ誒j剐'宣I拍N嚳ķȗɊ捵Tw", - "resourceVersion": "11115488420961080514", - "generation": -1988464041375677738, + "name": "40", + "generateName": "41", + "namespace": "42", + "selfLink": "43", + "uid": "Ȗ脵鴈Ō", + "resourceVersion": "5994087412557504692", + "generation": 9213888658033954596, "creationTimestamp": null, - "deletionGracePeriodSeconds": -961038652544818647, + "deletionGracePeriodSeconds": -2901856114738744973, "labels": { - "56": "57" + "45": "46" }, "annotations": { - "58": "59" + "47": "48" }, "ownerReferences": [ { - "apiVersion": "60", - "kind": "61", - "name": "62", - "uid": "a縳讋ɮ衺勽Ƙq/Ź u衲\u003c¿燥ǖ_è", + "apiVersion": "49", + "kind": "50", + "name": "51", + "uid": "I拍N嚳ķȗɊ捵TwMȗ礼", "controller": false, "blockOwnerDeletion": false } ], "finalizers": [ - "63" + "52" ], - "clusterName": "64", + "clusterName": "53", "managedFields": [ { - "manager": "65", - "operation": "聻鎥ʟ\u003c$洅ɹ7\\弌Þ帺萸", - "apiVersion": "66", - "fields": {"67":{"68":null}} + "manager": "54", + "operation": "ö嗏ʑ\u003e季Cʖ畬x骀Šĸů", + "apiVersion": "55" } ] }, "spec": { "volumes": [ { - "name": "71", + "name": "56", "hostPath": { - "path": "72", - "type": "ħ籦ö嗏ʑ\u003e季Cʖ畬x" + "path": "57", + "type": "/淹\\韲翁\u0026ʢsɜ曢\\%枅:=ǛƓ" }, "emptyDir": { - "medium": "Šĸů湙騘\u0026啞", - "sizeLimit": "577" + "medium": "踓Ǻǧ湬淊kŪ睴鸏:ɥ³ƞsɁ8^ʥ", + "sizeLimit": "681" }, "gcePersistentDisk": { - "pdName": "73", - "fsType": "74", - "partition": 663386308 + "pdName": "58", + "fsType": "59", + "partition": 2065358741, + "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "75", - "fsType": "76", - "partition": -156457987, + "volumeID": "60", + "fsType": "61", + "partition": -104666658, "readOnly": true }, "gitRepo": { - "repository": "77", - "revision": "78", - "directory": "79" + "repository": "62", + "revision": "63", + "directory": "64" }, "secret": { - "secretName": "80", + "secretName": "65", "items": [ { - "key": "81", - "path": "82", - "mode": -5672822 + "key": "66", + "path": "67", + "mode": 1648350164 } ], - "defaultMode": -861289979, + "defaultMode": 1655406148, "optional": true }, "nfs": { - "server": "83", - "path": "84", - "readOnly": true + "server": "68", + "path": "69" }, "iscsi": { - "targetPortal": "85", - "iqn": "86", - "lun": -1636694746, - "iscsiInterface": "87", - "fsType": "88", + "targetPortal": "70", + "iqn": "71", + "lun": -663180249, + "iscsiInterface": "72", + "fsType": "73", + "readOnly": true, "portals": [ - "89" + "74" ], "chapAuthSession": true, "secretRef": { - "name": "90" + "name": "75" }, - "initiatorName": "91" + "initiatorName": "76" }, "glusterfs": { - "endpoints": "92", - "path": "93", - "readOnly": true + "endpoints": "77", + "path": "78" }, "persistentVolumeClaim": { - "claimName": "94" + "claimName": "79" }, "rbd": { "monitors": [ - "95" + "80" ], - "image": "96", - "fsType": "97", - "pool": "98", - "user": "99", - "keyring": "100", + "image": "81", + "fsType": "82", + "pool": "83", + "user": "84", + "keyring": "85", "secretRef": { - "name": "101" - } + "name": "86" + }, + "readOnly": true }, "flexVolume": { - "driver": "102", - "fsType": "103", + "driver": "87", + "fsType": "88", "secretRef": { - "name": "104" + "name": "89" }, "readOnly": true, "options": { - "105": "106" + "90": "91" } }, "cinder": { - "volumeID": "107", - "fsType": "108", + "volumeID": "92", + "fsType": "93", + "readOnly": true, "secretRef": { - "name": "109" + "name": "94" } }, "cephfs": { "monitors": [ - "110" + "95" ], - "path": "111", - "user": "112", - "secretFile": "113", + "path": "96", + "user": "97", + "secretFile": "98", "secretRef": { - "name": "114" + "name": "99" } }, "flocker": { - "datasetName": "115", - "datasetUUID": "116" + "datasetName": "100", + "datasetUUID": "101" }, "downwardAPI": { "items": [ { - "path": "117", + "path": "102", "fieldRef": { - "apiVersion": "118", - "fieldPath": "119" + "apiVersion": "103", + "fieldPath": "104" }, "resourceFieldRef": { - "containerName": "120", - "resource": "121", - "divisor": "327" + "containerName": "105", + "resource": "106", + "divisor": "889" }, - "mode": -1965578645 + "mode": 1322858613 } ], - "defaultMode": -1008038372 + "defaultMode": 1801487647 }, "fc": { "targetWWNs": [ - "122" + "107" ], - "lun": -658258937, - "fsType": "123", + "lun": 1169718433, + "fsType": "108", "wwids": [ - "124" + "109" ] }, "azureFile": { - "secretName": "125", - "shareName": "126", - "readOnly": true + "secretName": "110", + "shareName": "111" }, "configMap": { - "name": "127", + "name": "112", "items": [ { - "key": "128", - "path": "129", - "mode": -675987103 + "key": "113", + "path": "114", + "mode": -1194714697 } ], - "defaultMode": 1754292691, + "defaultMode": -599608368, "optional": true }, "vsphereVolume": { - "volumePath": "130", - "fsType": "131", - "storagePolicyName": "132", - "storagePolicyID": "133" + "volumePath": "115", + "fsType": "116", + "storagePolicyName": "117", + "storagePolicyID": "118" }, "quobyte": { - "registry": "134", - "volume": "135", - "user": "136", - "group": "137", - "tenant": "138" + "registry": "119", + "volume": "120", + "readOnly": true, + "user": "121", + "group": "122", + "tenant": "123" }, "azureDisk": { - "diskName": "139", - "diskURI": "140", - "cachingMode": "ĦE勗E濞偘1", - "fsType": "141", + "diskName": "124", + "diskURI": "125", + "cachingMode": "ʜǝ鿟ldg滠鼍ƭt", + "fsType": "126", "readOnly": true, - "kind": "議Ǹ轺@)蓳嗘" + "kind": "ȫşŇɜa" }, "photonPersistentDisk": { - "pdID": "142", - "fsType": "143" + "pdID": "127", + "fsType": "128" }, "projected": { "sources": [ { "secret": { - "name": "144", + "name": "129", "items": [ { - "key": "145", - "path": "146", - "mode": 679825403 + "key": "130", + "path": "131", + "mode": 782113097 } ], "optional": true @@ -338,357 +340,358 @@ "downwardAPI": { "items": [ { - "path": "147", + "path": "132", "fieldRef": { - "apiVersion": "148", - "fieldPath": "149" + "apiVersion": "133", + "fieldPath": "134" }, "resourceFieldRef": { - "containerName": "150", - "resource": "151", - "divisor": "184" + "containerName": "135", + "resource": "136", + "divisor": "952" }, - "mode": -783297752 + "mode": -555780268 } ] }, "configMap": { - "name": "152", + "name": "137", "items": [ { - "key": "153", - "path": "154", - "mode": -106644772 + "key": "138", + "path": "139", + "mode": 1730325900 } ], "optional": true }, "serviceAccountToken": { - "audience": "155", - "expirationSeconds": 1897892355466772544, - "path": "156" + "audience": "140", + "expirationSeconds": -2937394236764575757, + "path": "141" } } ], - "defaultMode": 345648859 + "defaultMode": -1980941277 }, "portworxVolume": { - "volumeID": "157", - "fsType": "158", + "volumeID": "142", + "fsType": "143", "readOnly": true }, "scaleIO": { - "gateway": "159", - "system": "160", + "gateway": "144", + "system": "145", "secretRef": { - "name": "161" + "name": "146" }, - "protectionDomain": "162", - "storagePool": "163", - "storageMode": "164", - "volumeName": "165", - "fsType": "166", - "readOnly": true + "sslEnabled": true, + "protectionDomain": "147", + "storagePool": "148", + "storageMode": "149", + "volumeName": "150", + "fsType": "151" }, "storageos": { - "volumeName": "167", - "volumeNamespace": "168", - "fsType": "169", + "volumeName": "152", + "volumeNamespace": "153", + "fsType": "154", + "readOnly": true, "secretRef": { - "name": "170" + "name": "155" } }, "csi": { - "driver": "171", + "driver": "156", "readOnly": true, - "fsType": "172", + "fsType": "157", "volumeAttributes": { - "173": "174" + "158": "159" }, "nodePublishSecretRef": { - "name": "175" + "name": "160" } } } ], "initContainers": [ { - "name": "176", - "image": "177", + "name": "161", + "image": "162", "command": [ - "178" + "163" ], "args": [ - "179" + "164" ], - "workingDir": "180", + "workingDir": "165", "ports": [ { - "name": "181", - "hostPort": -958191807, - "containerPort": -1629040033, - "protocol": "ʜǝ鿟ldg滠鼍ƭt", - "hostIP": "182" + "name": "166", + "hostPort": 580681683, + "containerPort": 38897467, + "protocol": "h0åȂ町恰nj揠", + "hostIP": "167" } ], "envFrom": [ { - "prefix": "183", + "prefix": "168", "configMapRef": { - "name": "184", - "optional": true + "name": "169", + "optional": false }, "secretRef": { - "name": "185", - "optional": false + "name": "170", + "optional": true } } ], "env": [ { - "name": "186", - "value": "187", + "name": "171", + "value": "172", "valueFrom": { "fieldRef": { - "apiVersion": "188", - "fieldPath": "189" + "apiVersion": "173", + "fieldPath": "174" }, "resourceFieldRef": { - "containerName": "190", - "resource": "191", - "divisor": "980" + "containerName": "175", + "resource": "176", + "divisor": "618" }, "configMapKeyRef": { - "name": "192", - "key": "193", + "name": "177", + "key": "178", "optional": false }, "secretKeyRef": { - "name": "194", - "key": "195", - "optional": true + "name": "179", + "key": "180", + "optional": false } } } ], "resources": { "limits": { - ")ÙæNǚ錯ƶRquA?瞲Ť倱": "289" + "缶.蒅!a坩O`涁İ而踪鄌eÞȦY籎顒": "45" }, "requests": { - "ź贩j瀉": "621" + "T捘ɍi縱ù墴": "848" } }, "volumeMounts": [ { - "name": "196", + "name": "181", "readOnly": true, - "mountPath": "197", - "subPath": "198", - "mountPropagation": "ɶ", - "subPathExpr": "199" + "mountPath": "182", + "subPath": "183", + "mountPropagation": "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°", + "subPathExpr": "184" } ], "volumeDevices": [ { - "name": "200", - "devicePath": "201" + "name": "185", + "devicePath": "186" } ], "livenessProbe": { "exec": { "command": [ - "202" + "187" ] }, "httpGet": { - "path": "203", - "port": -1365115016, - "host": "204", - "scheme": "町恰nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶.蒅", + "path": "188", + "port": -575512248, + "host": "189", + "scheme": "ɨ銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", "httpHeaders": [ { - "name": "205", - "value": "206" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": -1105572246, - "host": "207" + "port": 1180382332, + "host": "192" }, - "initialDelaySeconds": 1971383046, - "timeoutSeconds": 1154560741, - "periodSeconds": -1376537100, - "successThreshold": 1100645882, - "failureThreshold": -532628939 + "initialDelaySeconds": -1846991380, + "timeoutSeconds": 325236550, + "periodSeconds": -1398498492, + "successThreshold": -2035009296, + "failureThreshold": -559252309 }, "readinessProbe": { "exec": { "command": [ - "208" + "193" ] }, "httpGet": { - "path": "209", - "port": "210", - "host": "211", - "scheme": "%:;栍dʪīT捘ɍi", + "path": "194", + "port": 1403721475, + "host": "195", + "scheme": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": "214", - "host": "215" + "port": -2064174383, + "host": "198" }, - "initialDelaySeconds": -1510026905, - "timeoutSeconds": 437857734, - "periodSeconds": 2025698376, - "successThreshold": -1766555420, - "failureThreshold": 195263908 + "initialDelaySeconds": -1327537699, + "timeoutSeconds": 483512911, + "periodSeconds": -1941847253, + "successThreshold": 1596028039, + "failureThreshold": 1427781619 }, "lifecycle": { "postStart": { "exec": { "command": [ - "216" + "199" ] }, "httpGet": { - "path": "217", - "port": -33154680, - "host": "218", - "scheme": "跾|@?鷅bȻN+ņ榱*", + "path": "200", + "port": "201", + "host": "202", + "scheme": "Ɖ立hdz緄Ú|dk_瀹鞎", "httpHeaders": [ { - "name": "219", - "value": "220" + "name": "203", + "value": "204" } ] }, "tcpSocket": { - "port": "221", - "host": "222" + "port": 1150375229, + "host": "205" } }, "preStop": { "exec": { "command": [ - "223" + "206" ] }, "httpGet": { - "path": "224", - "port": "225", - "host": "226", - "scheme": "櫸eʔŊ", + "path": "207", + "port": "208", + "host": "209", + "scheme": "鲡:", "httpHeaders": [ { - "name": "227", - "value": "228" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": 731879508, - "host": "229" + "port": -2037320199, + "host": "212" } } }, - "terminationMessagePath": "230", - "terminationMessagePolicy": "hoĂɋ", - "imagePullPolicy": "腬", + "terminationMessagePath": "213", + "terminationMessagePolicy": "@Ȗs«öʮĀ\u003cé瞾", + "imagePullPolicy": "4y£軶ǃ*ʙ嫙\u0026蒒5", "securityContext": { "capabilities": { "add": [ - "" + "'ɵK.Q貇£ȹ嫰ƹǔw÷" ], "drop": [ - "ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö" + "I粛E煹ǐƲE'iþŹʣy" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "231", - "role": "232", - "type": "233", - "level": "234" + "user": "214", + "role": "215", + "type": "216", + "level": "217" }, "windowsOptions": { - "gmsaCredentialSpecName": "235", - "gmsaCredentialSpec": "236", - "runAsUserName": "237" + "gmsaCredentialSpecName": "218", + "gmsaCredentialSpec": "219", + "runAsUserName": "220" }, - "runAsUser": -7433417845068148860, - "runAsGroup": 285495246564691952, - "runAsNonRoot": false, + "runAsUser": -3150075726777852858, + "runAsGroup": -4491268618106522555, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "珝Żwʮ馜ü" + "allowPrivilegeEscalation": false, + "procMount": "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ" }, - "stdin": true, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "238", - "image": "239", + "name": "221", + "image": "222", "command": [ - "240" + "223" ], "args": [ - "241" + "224" ], - "workingDir": "242", + "workingDir": "225", "ports": [ { - "name": "243", - "hostPort": -1872407654, - "containerPort": 32378685, - "protocol": "ş蝿ɖȃ賲鐅臬", - "hostIP": "244" + "name": "226", + "hostPort": -321513994, + "containerPort": 1024248645, + "protocol": "籘Àǒɿʒ刽ʼn", + "hostIP": "227" } ], "envFrom": [ { - "prefix": "245", + "prefix": "228", "configMapRef": { - "name": "246", - "optional": false + "name": "229", + "optional": true }, "secretRef": { - "name": "247", + "name": "230", "optional": true } } ], "env": [ { - "name": "248", - "value": "249", + "name": "231", + "value": "232", "valueFrom": { "fieldRef": { - "apiVersion": "250", - "fieldPath": "251" + "apiVersion": "233", + "fieldPath": "234" }, "resourceFieldRef": { - "containerName": "252", - "resource": "253", - "divisor": "117" + "containerName": "235", + "resource": "236", + "divisor": "103" }, "configMapKeyRef": { - "name": "254", - "key": "255", - "optional": true + "name": "237", + "key": "238", + "optional": false }, "secretKeyRef": { - "name": "256", - "key": "257", + "name": "239", + "key": "240", "optional": false } } @@ -696,433 +699,437 @@ ], "resources": { "limits": { - "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN": "197" + "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ": "861" }, "requests": { - "軶ǃ*ʙ嫙\u0026蒒5靇": "813" + "悖ȩ0Ƹ[Ęİ榌U": "396" } }, "volumeMounts": [ { - "name": "258", - "mountPath": "259", - "subPath": "260", - "mountPropagation": "ǹ_Áȉ彂Ŵ廷s", - "subPathExpr": "261" + "name": "241", + "readOnly": true, + "mountPath": "242", + "subPath": "243", + "mountPropagation": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", + "subPathExpr": "244" } ], "volumeDevices": [ { - "name": "262", - "devicePath": "263" + "name": "245", + "devicePath": "246" } ], "livenessProbe": { "exec": { "command": [ - "264" + "247" ] }, "httpGet": { - "path": "265", - "port": 1923650413, - "host": "266", - "scheme": "I粛E煹ǐƲE'iþŹʣy", + "path": "248", + "port": -1821078703, + "host": "249", + "scheme": "萨zvt", "httpHeaders": [ { - "name": "267", - "value": "268" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": "269", - "host": "270" + "port": 1182477686, + "host": "252" }, - "initialDelaySeconds": -1961863213, - "timeoutSeconds": -103588794, - "periodSeconds": -1045704964, - "successThreshold": 1089147958, - "failureThreshold": -1273036797 + "initialDelaySeconds": -503805926, + "timeoutSeconds": 77312514, + "periodSeconds": -763687725, + "successThreshold": -246563990, + "failureThreshold": 10098903 }, "readinessProbe": { "exec": { "command": [ - "271" + "253" ] }, "httpGet": { - "path": "272", - "port": 424236719, - "host": "273", + "path": "254", + "port": "255", + "host": "256", + "scheme": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "257", + "value": "258" } ] }, "tcpSocket": { - "port": -648954478, - "host": "276" + "port": "259", + "host": "260" }, - "initialDelaySeconds": 1170649416, - "timeoutSeconds": 893619181, - "periodSeconds": -1891134534, - "successThreshold": -1710454086, - "failureThreshold": 192146389 + "initialDelaySeconds": 932904270, + "timeoutSeconds": 1810980158, + "periodSeconds": 100356493, + "successThreshold": -110792150, + "failureThreshold": 1255258741 }, "lifecycle": { "postStart": { "exec": { "command": [ - "277" + "261" ] }, "httpGet": { - "path": "278", - "port": "279", - "host": "280", - "scheme": "ó瓧嫭塓烀罁胾^拜Ȍzɟ踡", + "path": "262", + "port": -498930176, + "host": "263", + "scheme": " R§耶Ff", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "264", + "value": "265" } ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": "266", + "host": "267" } }, "preStop": { "exec": { "command": [ - "285" + "268" ] }, "httpGet": { - "path": "286", - "port": 1255169591, - "host": "287", - "scheme": "褎weLJèux", + "path": "269", + "port": -331283026, + "host": "270", + "scheme": "ȉ", "httpHeaders": [ { - "name": "288", - "value": "289" + "name": "271", + "value": "272" } ] }, "tcpSocket": { - "port": "290", - "host": "291" + "port": 714088955, + "host": "273" } } }, - "terminationMessagePath": "292", - "terminationMessagePolicy": "ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ", - "imagePullPolicy": "ƻ悖ȩ0Ƹ[", + "terminationMessagePath": "274", + "terminationMessagePolicy": "źȰ?$矡ȶ网棊ʢ=wǕɳ", + "imagePullPolicy": "#yV'WKw(ğ儴Ůĺ}", "securityContext": { "capabilities": { "add": [ - "榌" + "胵輓Ɔ" ], "drop": [ - "髷裎$MVȟ@7飣奺Ȋ" + "" ] }, "privileged": true, "seLinuxOptions": { - "user": "293", - "role": "294", - "type": "295", - "level": "296" + "user": "275", + "role": "276", + "type": "277", + "level": "278" }, "windowsOptions": { - "gmsaCredentialSpecName": "297", - "gmsaCredentialSpec": "298", - "runAsUserName": "299" + "gmsaCredentialSpecName": "279", + "gmsaCredentialSpec": "280", + "runAsUserName": "281" }, - "runAsUser": 4138932295697017546, - "runAsGroup": -1672896055328756812, + "runAsUser": -7735837526010191986, + "runAsGroup": -3460863886200664373, "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "鸫" + "allowPrivilegeEscalation": false, + "procMount": "g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" }, - "tty": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "300", - "image": "301", + "name": "282", + "image": "283", "command": [ - "302" + "284" ], "args": [ - "303" + "285" ], - "workingDir": "304", + "workingDir": "286", "ports": [ { - "name": "305", - "hostPort": 62799871, - "containerPort": -775325416, - "protocol": "t莭琽§ć\\ ïì", - "hostIP": "306" + "name": "287", + "hostPort": -602419938, + "containerPort": 1040396664, + "protocol": "爻ƙt叀碧闳ȩr嚧ʣq埄", + "hostIP": "288" } ], "envFrom": [ { - "prefix": "307", + "prefix": "289", "configMapRef": { - "name": "308", - "optional": false + "name": "290", + "optional": true }, "secretRef": { - "name": "309", - "optional": false + "name": "291", + "optional": true } } ], "env": [ { - "name": "310", - "value": "311", + "name": "292", + "value": "293", "valueFrom": { "fieldRef": { - "apiVersion": "312", - "fieldPath": "313" + "apiVersion": "294", + "fieldPath": "295" }, "resourceFieldRef": { - "containerName": "314", - "resource": "315", - "divisor": "595" + "containerName": "296", + "resource": "297", + "divisor": "340" }, "configMapKeyRef": { - "name": "316", - "key": "317", - "optional": true + "name": "298", + "key": "299", + "optional": false }, "secretKeyRef": { - "name": "318", - "key": "319", - "optional": false + "name": "300", + "key": "301", + "optional": true } } } ], "resources": { "limits": { - "N粕擓ƖHVe熼": "334" + "": "548" }, "requests": { - "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + "ñKJɐ扵Gƚ绤": "879" } }, "volumeMounts": [ { - "name": "320", + "name": "302", "readOnly": true, - "mountPath": "321", - "subPath": "322", - "mountPropagation": "癃8鸖", - "subPathExpr": "323" + "mountPath": "303", + "subPath": "304", + "mountPropagation": "敄lu|", + "subPathExpr": "305" } ], "volumeDevices": [ { - "name": "324", - "devicePath": "325" + "name": "306", + "devicePath": "307" } ], "livenessProbe": { "exec": { "command": [ - "326" + "308" ] }, "httpGet": { - "path": "327", - "port": -1654678802, - "host": "328", - "scheme": "毋", + "path": "309", + "port": "310", + "host": "311", + "scheme": "忊|E剒", "httpHeaders": [ { - "name": "329", - "value": "330" + "name": "312", + "value": "313" } ] }, "tcpSocket": { - "port": 391562775, - "host": "331" + "port": 1004325340, + "host": "314" }, - "initialDelaySeconds": -775511009, - "timeoutSeconds": -832805508, - "periodSeconds": -228822833, - "successThreshold": -970312425, - "failureThreshold": -1213051101 + "initialDelaySeconds": -1313320434, + "timeoutSeconds": 14304392, + "periodSeconds": 465972736, + "successThreshold": -1784617397, + "failureThreshold": 1941923625 }, "readinessProbe": { "exec": { "command": [ - "332" + "315" ] }, "httpGet": { - "path": "333", - "port": -1905643191, - "host": "334", - "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "path": "316", + "port": 432291364, + "host": "317", "httpHeaders": [ { - "name": "335", - "value": "336" + "name": "318", + "value": "319" } ] }, "tcpSocket": { - "port": "337", - "host": "338" + "port": "320", + "host": "321" }, - "initialDelaySeconds": 852780575, - "timeoutSeconds": -1252938503, - "periodSeconds": 893823156, - "successThreshold": -1980314709, - "failureThreshold": 571739592 + "initialDelaySeconds": -677617960, + "timeoutSeconds": 383015301, + "periodSeconds": -1717997927, + "successThreshold": 1533365989, + "failureThreshold": 656200799 }, "lifecycle": { "postStart": { "exec": { "command": [ - "339" + "322" ] }, "httpGet": { - "path": "340", - "port": 376404581, - "host": "341", - "scheme": "1ØœȠƬQg鄠", + "path": "323", + "port": "324", + "host": "325", + "scheme": "%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄", "httpHeaders": [ { - "name": "342", - "value": "343" + "name": "326", + "value": "327" } ] }, "tcpSocket": { - "port": 1102291854, - "host": "344" + "port": "328", + "host": "329" } }, "preStop": { "exec": { "command": [ - "345" + "330" ] }, "httpGet": { - "path": "346", - "port": 809006670, - "host": "347", - "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", + "path": "331", + "port": "332", + "host": "333", + "scheme": "锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "334", + "value": "335" } ] }, "tcpSocket": { - "port": -1748648882, - "host": "350" + "port": 1315054653, + "host": "336" } } }, - "terminationMessagePath": "351", - "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", - "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "terminationMessagePath": "337", + "terminationMessagePolicy": "蚃ɣľ)酊龨δ摖ȱ", + "imagePullPolicy": "冓鍓贯", "securityContext": { "capabilities": { "add": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ƺ蛜6Ɖ飴ɎiǨź" ], "drop": [ - "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" + "ǵɐ鰥Z" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "352", - "role": "353", - "type": "354", - "level": "355" + "user": "338", + "role": "339", + "type": "340", + "level": "341" }, "windowsOptions": { - "gmsaCredentialSpecName": "356", - "gmsaCredentialSpec": "357", - "runAsUserName": "358" + "gmsaCredentialSpecName": "342", + "gmsaCredentialSpec": "343", + "runAsUserName": "344" }, - "runAsUser": -3342656999442156006, - "runAsGroup": -5569844914519516591, - "runAsNonRoot": true, + "runAsUser": -500234369132816308, + "runAsGroup": 1006111877741141889, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ" + "allowPrivilegeEscalation": true, + "procMount": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²" }, + "stdin": true, + "stdinOnce": true, "tty": true, - "targetContainerName": "359" + "targetContainerName": "345" } ], - "restartPolicy": "輂,ŕĪĠM蘇KŅ/»頸", - "terminationGracePeriodSeconds": 877160958076533931, - "activeDeadlineSeconds": 5648116728415793349, - "dnsPolicy": "¸gĩ", + "restartPolicy": "ǦŐnj汰8ŕİi騎C\"", + "terminationGracePeriodSeconds": 2582126978155733738, + "activeDeadlineSeconds": 3168496047243051519, + "dnsPolicy": "Ǒ", "nodeSelector": { - "360": "361" + "346": "347" }, - "serviceAccountName": "362", - "serviceAccount": "363", - "automountServiceAccountToken": true, - "nodeName": "364", + "serviceAccountName": "348", + "serviceAccount": "349", + "automountServiceAccountToken": false, + "nodeName": "350", + "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "365", - "role": "366", - "type": "367", - "level": "368" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "369", - "gmsaCredentialSpec": "370", - "runAsUserName": "371" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 4912549079266037151, - "runAsGroup": -8467189055144615123, - "runAsNonRoot": false, + "runAsUser": 4608737617101049023, + "runAsGroup": 3557544419897236324, + "runAsNonRoot": true, "supplementalGroups": [ - -7758217742974482282 + 5014869561632118364 ], - "fsGroup": -1656129410837620707, + "fsGroup": -1335795712555820375, "sysctls": [ { - "name": "372", - "value": "373" + "name": "358", + "value": "359" } ] }, "imagePullSecrets": [ { - "name": "374" + "name": "360" } ], - "hostname": "375", - "subdomain": "376", + "hostname": "361", + "subdomain": "362", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1130,19 +1137,19 @@ { "matchExpressions": [ { - "key": "377", - "operator": ":顇ə娯Ȱ囌", + "key": "363", + "operator": "", "values": [ - "378" + "364" ] } ], "matchFields": [ { - "key": "379", - "operator": "鰥Z龏´DÒȗ", + "key": "365", + "operator": "{WOŭW灬pȭCV擭銆jʒǚ鍰", "values": [ - "380" + "366" ] } ] @@ -1151,23 +1158,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -708413798, + "weight": -1330095135, "preference": { "matchExpressions": [ { - "key": "381", - "operator": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "key": "367", + "operator": "撑¼蠾8餑噭", "values": [ - "382" + "368" ] } ], "matchFields": [ { - "key": "383", - "operator": "3", + "key": "369", + "operator": "ɪǹ0衷,ƷƣMț譎懚XW疪鑳w", "values": [ - "384" + "370" ] } ] @@ -1180,46 +1187,43 @@ { "labelSelector": { "matchLabels": { - "gT7_7B_D-..-.k4uz": "J--_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sI" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "1/M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o7", + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "operator": "NotIn", "values": [ - "SA995IKCR.s--fe" + "z" ] } ] }, "namespaces": [ - "391" + "377" ], - "topologyKey": "392" + "topologyKey": "378" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1661550048, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-539.0--z-o-3bz6-2/X._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_3": "d-_H-.___._D8.TS-jJ.Ys_Mop34_-y8" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "p--3a-cgr6---r58-e-l203-8sln7-3x-b--55039780bdw0-1-47rrw8-5tn.0-1y-tw/G_65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..8n.--zr", - "operator": "In", - "values": [ - "S2--_v2.5p_..Y-.wg_-b8a6" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "399" + "385" ], - "topologyKey": "400" + "topologyKey": "386" } } ] @@ -1229,106 +1233,109 @@ { "labelSelector": { "matchLabels": { - "p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c": "b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C", + "key": "QZ9p_6.C.e", "operator": "DoesNotExist" } ] }, "namespaces": [ - "407" + "393" ], - "topologyKey": "408" + "topologyKey": "394" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1675320961, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC_1Q": "V_T3sn-0_.i__a.O2G_-_K-.03.p" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "3-.z", + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "operator": "NotIn", "values": [ - "S-.._Lf2t_8" + "txb__-ex-_1_-ODgC_1-_V" ] } ] }, "namespaces": [ - "415" + "401" ], - "topologyKey": "416" + "topologyKey": "402" } } ] } }, - "schedulerName": "417", + "schedulerName": "403", "tolerations": [ { - "key": "418", - "operator": "n", - "value": "419", - "effect": "ʀŖ鱓", - "tolerationSeconds": -2817829995132015826 + "key": "404", + "operator": "堺ʣ", + "value": "405", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "420", + "ip": "406", "hostnames": [ - "421" + "407" ] } ], - "priorityClassName": "422", - "priority": -1727081143, + "priorityClassName": "408", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "423" + "409" ], "searches": [ - "424" + "410" ], "options": [ { - "name": "425", - "value": "426" + "name": "411", + "value": "412" } ] }, "readinessGates": [ { - "conditionType": "ŋŏ}ŀ姳Ŭ尌eáNRNJ丧鴻ĿW癜鞤" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "427", - "enableServiceLinks": true, - "preemptionPolicy": "z芀¿l磶Bb偃礳Ȭ痍脉PPö", + "runtimeClassName": "413", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "镳餘ŁƁ翂|C ɩ繞": "442" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -899509541, - "topologyKey": "428", - "whenUnsatisfiable": "ƴ磳藷曥摮Z Ǐg鲅", + "maxSkew": -150478704, + "topologyKey": "414", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "nt-23h-4z-21-sap--h--q0h-t2n4s-6-5/Q1-wv3UDf.-4D-r.-F__r.o7": "lR__8-7_-YD-Q9_-__..YNFu7Pg-.814i" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "39-A_-_l67Q.-_r", - "operator": "Exists" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1336,7 +1343,7 @@ ] } }, - "ttlSecondsAfterFinished": 952328575 + "ttlSecondsAfterFinished": 920774957 } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb index 7ca32be9002bdeca074bbaac93d6e8e387e488ab..fba545274a187c9b894f489351fde228343072d3 100644 GIT binary patch literal 6105 zcmZWtdw5mFwLf#h%YCiJU90ivr|}du2KUaM*>75_JdL3|+G~oV9g(!d|>3Icqa!|08MlmbJ-g>8YEulG)w_=4Hen!XnXz zBs-GhkxK5wSdfS$$daxJnyLs25k&31PYeE%Uv@Y@eW7Jl&w+vcMQxW3kD*Po7^JdD z+cKL$I%~y3N-Sf=#Ad~!{kFxq{;@i5$!{}V4tHgGycP6XG?Zb*Qmz%t4m1zCD(r*d zDu=($5$96Sth562tED#PH_b=zw4NCbHS=)Jos; zvgkk$!6=EncXH6*SUFYw3x7|?qN#>p{pp)-&ok85lVo7;@}% zoeH-0hleZY`(B>tb05j{}?g-mP#9LKSK=ZAt^rU6=4Co|pL|d$?k_3ZQ@U5!FSXR%1 zcRkv&2~MO2N?^TK4faqIj#vfV+OWcsey zz=;}6_Qkaiznl@><|ue?mIK{QzpK&5ZhX))!v?QftR)^EdJVc2zF?{w;}}abU}d^OY)gH9TVU*H_mH-&ik2FD$QOl`-K0*;1TQzeJas(kgVFNFW`89(9IrjFq&pFQG{R?1hIh-?I5Ih5HjKDCnfsJ?soza z5RGv)^o64A(ZREaCi6TszKc^e{sR|WrL?;`e;ITasV0%wo?u`uLd_?l#6pY_YCegW zj|I_o8}%Upn?b~M~IDtvv9c`k-K zD#M+5{^|}-1wHwif>|4LN1&j=+a1kbtP#5Oa(pzFA%^?5MunJ zzX+7nJrpb+3iY;4j)z*#_BG6x2odbD-t{89< z_LoQ+d;1(q^q(5uY>6Zln}sUZ?XyBvow<9n;;H#Ega(l@95Dv^e);YveKTwp+C-w8 ztFBf~`?TQ0Pv^$|x#^SINHoNK^yQ#~ZtP7YynQw_W7B@b80OTn$S$T@CH9s%D4NbE z%Ty@#2Zdl;-mqYjcX$7q287?0LdQ|P=6~z z^rf#qJ|7h`KI(dZR&064KN8|jeOUk6^di3ar~9unwj4sta&r~nY67bO@T3mNyIfWi zvBPwLBHC|>T|IF!lsCBa1#?cwiO^a8w>be~p+#k%im21rc~qTls(YoZ@an&*Q-M-= zOHDm04J?&R`|_K~|9Z=6`cf5Bpk2yff4Xn|BO8`w$2r^lh5ZmOqrc1D#oWrw3GE*U zov(ElvliHYKpmpeKvV&Bhzh7fR4umRV)M18L+9SCLva>LGoE~{_2}^7x7xpb10~(F z?HA$w1HYaZDDC%lx?Y(VI6UO82o<04l&-#=Dx(h61W=~oJcJG)OBDhv1Q;VkV{b7{ zBs$C-c@>3dz`lE2qu$;p<_6o2c?W|RsskO4srJXSJ@vl6QxvWUWMvSF?M}}LSC!{r z;B2qvs(1G82zOR2vd4bp>Z|ns_uoJIY23~IEw6s?TJN{>h}BaKSt?4Dz_+5LE(D<^ zfzVe+iL$WK@*A`rWjx1#`JxPt6lFN;q6}wUl%?p4O($zwFMaU!6EP_E^6C7%@vf%V zm&A1qd~>|yaP8PXknrJPqyJAg#?D}K4hkTmtS) z26fD4>Jc-a(O@f}MPwmtMTm(w`cG!>`|XC6uAU9S{L|^)o<-{ewLM`+amrMUr#W2S zOM5EphB+S$eNYt1A#4(0FSM%c?SY!=iSwbO<68K5wZEx{_BA6(gh+b8cgiy&gpLh8 z<{ol)EcdpAdMW}X%^Noa8%~9*`?8@k$vmIIKEa3zmt$ls(s`hk zoMPRx5w}`U1C2+bG|-NUmihq z_V0-KD`J*1SXqy`jCHU*hM@4tFYc6=0Eg%Jjfot;lUMmvgWI6(=8c>r%%v_}U~ClG zJJt({gyVA)v-v~=_HzANwhS>T0>=s4xEDD>GNkN%$uil;ZC9a0O5K;9DM^~h?dCY~ z1)L6>BZ<4Rxl}GkOGwN$)*F0=u@`nJ+2B-dx1oSd7#nK(Mu@qzU#8~3)?^!5P%Oy2 zB&^Ps7JnZgcV*>l0T(Cda0WKGm5aA6GGNEovr&?OZ6HW90x7nm8^8rH;5!Jw2Mk~i z0=NLwaRd%5R+Q*J-~7DJ8Z%bmX6<)u7bai!76j`?1NpsxQk6$(Pm=~dzeZ`mFByS}3!We3Lp4PYZuYl!t^7@3 zFyGl5$~zbuJ{2xJm^^vJd*WBYvlZcEH7u}Rz|I)v_O*fXL%#AI!Qr!$BmVY&lOq5k zJ`P4`CJ(^CyWw4of5=}m7Hn+v9!qog?+XqN8371_nDau1FMh1`u8m1+t4THOqPIk68*_*$1A66R`;il78L6otnq(s za)Y>QpZ{?nLI8#C8(m*S7O<%b!9k%*)J1j)eMl_j9{XQ8-8z$IXspZj2R*%k(KcUy zpmZSI(CTdsR}J_JJN#qEeAVIc?%((weKg}@9dZfQRoh*R$#ndePe!JrX%|ZQ=qr=o z6;D(9H;#J(D7L$}5c}Qk z(qMPlc28e$sBp6RrRR4V!Mu_1kqR^O3zS5fg$lLg!YSAB2#bQECDF{Ug2FyR^{W5U zt5LnWeMb1)vH7MFTBi_@!sdArN^2mfCCac(|>eys)Hhf zY`@KQ!Pl`c*w(mYV)(<6@wmTVZn^St(}iy@A+xfQ!1vHkouCM!dC{2@?t_tleG}b9 zwZTD_umH#l55NStmUstQuA+yTxvtT0kHdd#+}AKSV|S{z%s05lS0-op3rl@nfwnw2 zLH$J^fm$qHLzb`6{SUedv9ruQ@=~Dae4sl&RC+E{RvbE0AE-PN&aW!40{@pDaaIOe z>I28C0`)Ds0wYZ(|Hp#E>O^y@UTqtmPK%&avc>!?JaQ~tUHjp9QMj?(Rq5LADsxr- z&Xs3xM9gC5@pSThN?PVtU;>-BYI}$XnGk+N*#k5{CA&D8PtiC*AOZ(BI0;$u27qR` z;vvfkZ|q>BviGiIS2B-EoV1wB;JKxSk-_iY&hy0B^VCzTAa@!ojO~V$n96Mw48mXEr3&So3EyH)cUxX;AGE4KfzdB#0|bjt8L- zjeb(2k2JskKM_2L`ReMyYf<)lg9pakOa;oD+e_J6PshPDK zTq;BnNQ05u4Uhx=$!6_Fp@0As0I-OXFkQRpG!AvR6N%JrBE4o11ssDGKE&L@Sg7x1 zD3btK!cJmqcC*G}MvkY2BLb zKb04(Ei~6eV3S0m{`;EfD&d;qIddYos8|RSL52SPL{O*0f6@LxxUSOICV8qu=L;T# zO5>FC=bGBJFn zVB#FbN0Hv|h!SOUl4O=-Kj0(LAcV}6p#vyRmt;Edfp&CvsCmDy!#VzFxX2M6@0_fd m=nqskc+Z+3DN>XZA-{l1S*z=M{bXcApX_v*A_i{=D9YD< z51@#Gh@xCX1QF$~ARwTqH0%YICpAgiq-pKfJm$;nC286uZNHkB#_v6|q))nkynE)% znfJW+^Lx)mE#JmIzWkHoRqA9W> zV4`c+|5Ex!No7+>Zjx=;*?kvwm$h7L8e`Vn!7?hxXqmHFM(6CJkmF|UB6itD;+dOV zWR4x3D*vy1e?_1=H^DB7f=y%c?4nd;7v&1(`><5u9*iEUFppM5+m890(Mq#v$UBme z7(Dum(BYE!(8YS+-k$B(g&cYsV62$Fj?g6^|XO3A26{ zscggdh=Pt~q7YG06(S3oAV}KY=qFuo|E}+%3siWk;f*tcrLVn~wPp^m0MUt%2_quH z2bHsW`BTWA1=AJNM$tQV+-)jPx9pwJV~_u3*o+jPU4SIV1Aw_mYs$ewWAaf5yO2(oG&rG*G`A}%6EO=4Et;+i z*Y@t@zR5cLCw-&-zR<;E(awg4&Dv(}D{P#ssxAk7NjSSIIei~>UADVzp8H@%h8e~A zugQT6F`v7cgu7r`g=x)YS9Sa_Yu5zuiCqK3YuH(F+8jDfMHINK|x{`QF#Odh+YCfGGiu+6t?`T|?pEY_|ItC>u@E~dc8I_B&;aWZL; zPrBr=t?|G=Fwqs4T~|GJT}!a*I*t z5(SlxHK)yEEz$G74U?h(lcMMXf;~V;0(~h;f~|;tFVgQtrIdM+O{9-1XU%GKR(E|J zrZ8oIMY=7)s{8#{{`BTeOHoHtQ+G?uEEUWHbR~9_@2d`2R%2j8Ox(5v_>*dwyXb4W z6;_-~Bl9pzg}^FzAN`}7VcmJ7^o=XAZ=JvKzU;fh&75NHh4+LCK&S?UYCuRg^DR0p z(PC$|0}P>Wb$BZYuDQPU#b#yw;?Q`rS<)cFT1kW)b41SePmV^eTw3sG zJ?$17$` z>bCgF*fN_;=rYOq$A8q!lrcBsq4ttx$1jVI_x9ZA?s0+9WW{m)e<9jF^r;T?v?mnu4_*HrAGrhpUzBE?q7+`idt9EK7LM0dquN$>y>6M$e0*1-~S zG29Ect&i@yu?)_}vg~9$GtUZrR-Lw_6gGiz}^!X8=l;qFn!GIIrea*rbdpQD5q~Vk)*`aoiv9H z6qI#PP!SRwlNSwd$<%)HN~wRy92?2UFfFF-XV{gNV2Z@ehp(XGv2$#W586-F&UVr7 z6~%M^v*Cf`i^F9XCl3V%7C-Wm_p1NmblWbPwwSsBgBu*|SLZO+h6;oiRt3jz`d)r3 zmS4`m=&!EL6sylp^i{=DEq=JOw|thcyZEz{x2!Z=vxQx3i2`-=Az%$vlZw)J_RKV6 ziJ}sZ&DvC@MpR|j{p{VapypO!dM2)HbY5{xz0-JZmh*%9gWYlNOC8Oh#>9xfR6Fom z%&)>5zkBt^nY|4Av)G0zw}@`2abGB*(%8@hkJ~#KKGI?KoHbjIgm)K*uarb~U;SCA zvT5o-QLrU4+G@!Ig%(!hFBt&}E6hk-ip3vFE7T;cDV9PbmtTH!mZgxUdhU#zK3JGF zS?=xJzB9&)#*?OhiI+}eN*8m0;JiBnW1-TzsV*Tf`s1Q(fNyc3_5<8~(Vme=+rfvP zUp3XTK#jJwnP)CdRX`R%8eyHvqD!EVE<-HnihKHv_9NkzrcpiK2IzxXF!Z~~+wWcO zc{jqO#6?GY((a~TQOD|#Us%_R8QVU_c8Gz32L%g50r;w=m!yElXNIZ+s@!)2m1{)* zIp5)MQ-$y9z#v2slYrn9AS4Zl zwA%KfZ3C0{A`3bb2xB0M3yA6gqB&ZQzw(Eddq(S$oi=yf;m`kcbmH~yqfGpX{$P0M zo$AskBb*I1zjmhT#<+S{^)RcJ@v6o5v5(FE!43r*m_o{b$xhuU1bCC3|b8>fs%n*XeT_ zKR9+S7RTJvtPE@*tR4-XiuP88_tqsvD$YhK&QElQ8(JeR?I}sqEzzp#CDFdpiGk>e zV}Sw61#@4cpAibz;a}oz#jza>+sLrX*so`=Pz^Q7NJc#1w~f;FBJPP4geaI(o>_>M zMJS(7%|Yt``$-4^=3682&n+ZNRz0H=gE#nR3BX0f3#iB_67rt~5g!*5pNEA!(srN} zv1suMgXhV*MLS3iEJsEzV9V{fJbuo|M_X0yD*z0i-Qv1CeW9+)&n{h*#^)onJ`3!s z!-+@$OkA_iIl1S0IF_N@FYWB0oh@hBwRuR#DnbBDH)?1tMhM}og7q6Dacu@FLUJ}P zT)P!(FufkhL_nLe$+AFnRTDDT6$(g1lA4!Ss3Eyv3rHsJLIs71&lrllSu;c=@;bHu^ZBY# zz%Mfh&oANmjr#MN!s{6Z5&&wiF^uPSXa@fR7+2fEgKl}89qi~#2SXS;FfZrAn;#** zFxxt-)GpLutF~Xv~29;m!>Wfz!00k2Ah$Ro@=C{be?|! zC9UCk1>{LbN#N~FaV;00Y2>0^eAeE?ok{10UVt>P*e zwn*5qRnFX%t8GL1>qUgJ3sFuHQe+(=VH1M(FB5j#gtKHY+eUc@*bt#C>Lo1XOZ;|~ z+O=pi+O(4hLLn;1K}6Oh0ToKw2wblvuB4t36h3R)MtQM;B*d=9`399&c(e=UOVFP#+iE;VKxWl=LE^U*LTj{B z)HWCF%!Fvq+KCL&KrbX`FEYgC+ykqO6(oNP5)A$&!^q%Yz|X+)rH~Ya&xPckMG#-~ zMWElA4vA(ww;mT5P|+n(2B}1)kpZfnVs73+kqJ0U1e^~<13ahd32~w(U`TyY6CE#K zJ1`PEDV=YhKK{>`9-e!qnIAMUOF)$)(u(7D= z6pV=U5D_8Mpm^yTph;T4MMydz1d!*U_&miKa7b|+`&Iv?$WT{KxOhLEQ?Qr) zSrMvg2v)shNg&cQO(b7BwnYk3MA;EOb*nG7pEGd%-PaiRROJ8sv*X__`SpbvFmn1< z)lW0q7XK;7MYFHh?CkaSg^yeg zA1KE2y~8sg1nx!PTMXL~0w9D)?maCXXS>E;dB1^~K_MTu44pn%RdXvY2uNcChuhnju7f$0tY%KYB9rn366+x-dPv~dJNcXW+*#sr5;JS;BmA4q?9p({sp1;yx{R@Aw*)izvHTw@_d0SJ{CM(_@ z?T8MI`Nn@3KGqa%KK&l$tA5BZpEBPmic}O&jBg6J4JT!qCA-6?2d8?&^;MBQ`II9gLoC@RtNi!sDesU*ryUg)dr{1(Jj->>bRU>t`x{6Dt{17R_~kU?|)+ z7^xo#9X}H~d~S_eJiRW!Z?=MCm2C z*SMSLXd%4Xq^QdQ59D!oSQkV2HTHkbX8#Ip7!-Rrtps}f3(yb~fg}KtFru$y$L-rU zzwK=J_{_l=DDr&0Aad|*_|TP!4qy3C+}=JfbYVnLXyGIDa)7|)fYpT&nv6swwD1v{ zh6JiFq_wQevBC$JdUR6#q6;Gs3-GK%7q*ynvUjJ32Wmq{js)tKtjY@Sy-X_`fiC?~ z)@>Hor-zQ!n8Woey@!mzxrL#lrxSyt!GrF!iH=C|u(edvQlJebSfE9aVCdBe#tE~- z$98Mc(K-xIB&~#Dm(ZjnSm7S0f3bA`%Z1P1i$xescY@(u2=!IctR!&92vP_$Sy_MJ z`X%U!=#=PanQELdlJm3ak3Notfcw=OAJxQ4M|}Nzo#$h-LR)k2%1pnthhf)PG7!u? z1v`*fH4eVh`L|fdWXV7z&;66N!NK5&?mb`*wZN5GLwm3;JW^|kMH7=iV*a}UBm~L_ zA%M7FdA%;q`N{7C-Ld`LL$5b>$Hn*5Uw<{mUYI)m+97-90K=xn#LzhmV!%x&tvlx5 zuMAp!ACW}QT+!R$KQeVP(7QZ4y62>|Gri*=5}7f`!O3e?&{feXiF?uF2Ym`vONzB! z*ZzE?B+k-EQa#@a?H`)z^q+ey)HD(}7}?u5xqsDaF>*3j9n)>w%$7Y?-6e3` bK=9Hik#+6V#hT+WLoT>IQ567xcx?X季Cʖ畬x骀Šĸů + name: "40" + namespace: "42" ownerReferences: - - apiVersion: "60" + - apiVersion: "49" blockOwnerDeletion: false controller: false - kind: "61" - name: "62" - uid: a縳讋ɮ衺勽Ƙq/Ź u衲<¿燥ǖ_è - resourceVersion: "11115488420961080514" - selfLink: "54" - uid: '@ʊʓ誒j剐''宣I拍N嚳ķȗɊ捵Tw' + kind: "50" + name: "51" + uid: I拍N嚳ķȗɊ捵TwMȗ礼 + resourceVersion: "5994087412557504692" + selfLink: "43" + uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: 5648116728415793349 + activeDeadlineSeconds: 3168496047243051519 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "381" - operator: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ + - key: "367" + operator: 撑¼蠾8餑噭 values: - - "382" + - "368" matchFields: - - key: "383" - operator: "3" + - key: "369" + operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w values: - - "384" - weight: -708413798 + - "370" + weight: -1330095135 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "377" - operator: :顇ə娯Ȱ囌 + - key: "363" + operator: "" values: - - "378" + - "364" matchFields: - - key: "379" - operator: 鰥Z龏´DÒȗ + - key: "365" + operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' values: - - "380" + - "366" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p--3a-cgr6---r58-e-l203-8sln7-3x-b--55039780bdw0-1-47rrw8-5tn.0-1y-tw/G_65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..8n.--zr - operator: In - values: - - S2--_v2.5p_..Y-.wg_-b8a6 + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-539.0--z-o-3bz6-2/X._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_3: d-_H-.___._D8.TS-jJ.Ys_Mop34_-y8 + 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP namespaces: - - "399" - topologyKey: "400" - weight: -1661550048 + - "385" + topologyKey: "386" + weight: -217760519 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1/M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o7 + - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 operator: NotIn values: - - SA995IKCR.s--fe + - z matchLabels: - gT7_7B_D-..-.k4uz: J--_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sI + 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r namespaces: - - "391" - topologyKey: "392" + - "377" + topologyKey: "378" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3-.z + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D operator: NotIn values: - - S-.._Lf2t_8 + - txb__-ex-_1_-ODgC_1-_V matchLabels: - 52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC_1Q: V_T3sn-0_.i__a.O2G_-_K-.03.p + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "415" - topologyKey: "416" - weight: -1675320961 + - "401" + topologyKey: "402" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C + - key: QZ9p_6.C.e operator: DoesNotExist matchLabels: - p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c: b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "407" - topologyKey: "408" - automountServiceAccountToken: true + - "393" + topologyKey: "394" + automountServiceAccountToken: false containers: - args: - - "241" + - "224" command: - - "240" + - "223" env: - - name: "248" - value: "249" + - name: "231" + value: "232" valueFrom: configMapKeyRef: - key: "255" - name: "254" - optional: true + key: "238" + name: "237" + optional: false fieldRef: - apiVersion: "250" - fieldPath: "251" + apiVersion: "233" + fieldPath: "234" resourceFieldRef: - containerName: "252" - divisor: "117" - resource: "253" + containerName: "235" + divisor: "103" + resource: "236" secretKeyRef: - key: "257" - name: "256" + key: "240" + name: "239" optional: false envFrom: - configMapRef: - name: "246" - optional: false - prefix: "245" - secretRef: - name: "247" + name: "229" optional: true - image: "239" - imagePullPolicy: ƻ悖ȩ0Ƹ[ - lifecycle: - postStart: - exec: - command: - - "277" - httpGet: - host: "280" - httpHeaders: - - name: "281" - value: "282" - path: "278" - port: "279" - scheme: ó瓧嫭塓烀罁胾^拜Ȍzɟ踡 - tcpSocket: - host: "284" - port: "283" - preStop: - exec: - command: - - "285" - httpGet: - host: "287" - httpHeaders: - - name: "288" - value: "289" - path: "286" - port: 1255169591 - scheme: 褎weLJèux - tcpSocket: - host: "291" - port: "290" - livenessProbe: - exec: - command: - - "264" - failureThreshold: -1273036797 - httpGet: - host: "266" - httpHeaders: - - name: "267" - value: "268" - path: "265" - port: 1923650413 - scheme: I粛E煹ǐƲE'iþŹʣy - initialDelaySeconds: -1961863213 - periodSeconds: -1045704964 - successThreshold: 1089147958 - tcpSocket: - host: "270" - port: "269" - timeoutSeconds: -103588794 - name: "238" - ports: - - containerPort: 32378685 - hostIP: "244" - hostPort: -1872407654 - name: "243" - protocol: ş蝿ɖȃ賲鐅臬 - readinessProbe: - exec: - command: - - "271" - failureThreshold: 192146389 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 424236719 - initialDelaySeconds: 1170649416 - periodSeconds: -1891134534 - successThreshold: -1710454086 - tcpSocket: - host: "276" - port: -648954478 - timeoutSeconds: 893619181 - resources: - limits: - ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN: "197" - requests: - 軶ǃ*ʙ嫙&蒒5靇: "813" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - 榌 - drop: - - 髷裎$MVȟ@7飣奺Ȋ - privileged: true - procMount: 鸫 - readOnlyRootFilesystem: true - runAsGroup: -1672896055328756812 - runAsNonRoot: false - runAsUser: 4138932295697017546 - seLinuxOptions: - level: "296" - role: "294" - type: "295" - user: "293" - windowsOptions: - gmsaCredentialSpec: "298" - gmsaCredentialSpecName: "297" - runAsUserName: "299" - terminationMessagePath: "292" - terminationMessagePolicy: ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ - tty: true - volumeDevices: - - devicePath: "263" - name: "262" - volumeMounts: - - mountPath: "259" - mountPropagation: ǹ_Áȉ彂Ŵ廷s - name: "258" - subPath: "260" - subPathExpr: "261" - workingDir: "242" - dnsConfig: - nameservers: - - "423" - options: - - name: "425" - value: "426" - searches: - - "424" - dnsPolicy: ¸gĩ - enableServiceLinks: true - ephemeralContainers: - - args: - - "303" - command: - - "302" - env: - - name: "310" - value: "311" - valueFrom: - configMapKeyRef: - key: "317" - name: "316" - optional: true - fieldRef: - apiVersion: "312" - fieldPath: "313" - resourceFieldRef: - containerName: "314" - divisor: "595" - resource: "315" - secretKeyRef: - key: "319" - name: "318" - optional: false - envFrom: - - configMapRef: - name: "308" - optional: false - prefix: "307" + prefix: "228" secretRef: - name: "309" - optional: false - image: "301" - imagePullPolicy: ē鐭#嬀ơŸ8T 苧yñKJɐ + name: "230" + optional: true + image: "222" + imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}' lifecycle: postStart: exec: command: - - "339" + - "261" httpGet: - host: "341" + host: "263" httpHeaders: - - name: "342" - value: "343" - path: "340" - port: 376404581 - scheme: 1ØœȠƬQg鄠 + - name: "264" + value: "265" + path: "262" + port: -498930176 + scheme: ' R§耶Ff' tcpSocket: - host: "344" - port: 1102291854 + host: "267" + port: "266" preStop: exec: command: - - "345" + - "268" httpGet: - host: "347" + host: "270" httpHeaders: - - name: "348" - value: "349" - path: "346" - port: 809006670 - scheme: 扴ȨŮ+朷Ǝ膯ljVX1虊谇 + - name: "271" + value: "272" + path: "269" + port: -331283026 + scheme: ȉ tcpSocket: - host: "350" - port: -1748648882 + host: "273" + port: 714088955 livenessProbe: exec: command: - - "326" - failureThreshold: -1213051101 + - "247" + failureThreshold: 10098903 httpGet: - host: "328" + host: "249" httpHeaders: - - name: "329" - value: "330" - path: "327" - port: -1654678802 - scheme: 毋 - initialDelaySeconds: -775511009 - periodSeconds: -228822833 - successThreshold: -970312425 + - name: "250" + value: "251" + path: "248" + port: -1821078703 + scheme: 萨zvt + initialDelaySeconds: -503805926 + periodSeconds: -763687725 + successThreshold: -246563990 tcpSocket: - host: "331" - port: 391562775 - timeoutSeconds: -832805508 - name: "300" + host: "252" + port: 1182477686 + timeoutSeconds: 77312514 + name: "221" ports: - - containerPort: -775325416 - hostIP: "306" - hostPort: 62799871 - name: "305" - protocol: t莭琽§ć\ ïì + - containerPort: 1024248645 + hostIP: "227" + hostPort: -321513994 + name: "226" + protocol: 籘Àǒɿʒ刽ʼn readinessProbe: exec: command: - - "332" - failureThreshold: 571739592 + - "253" + failureThreshold: 1255258741 httpGet: - host: "334" + host: "256" httpHeaders: - - name: "335" - value: "336" - path: "333" - port: -1905643191 - scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 - initialDelaySeconds: 852780575 - periodSeconds: 893823156 - successThreshold: -1980314709 + - name: "257" + value: "258" + path: "254" + port: "255" + scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + initialDelaySeconds: 932904270 + periodSeconds: 100356493 + successThreshold: -110792150 tcpSocket: - host: "338" - port: "337" - timeoutSeconds: -1252938503 + host: "260" + port: "259" + timeoutSeconds: 1810980158 resources: limits: - N粕擓ƖHVe熼: "334" + x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861" requests: - 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" + 悖ȩ0Ƹ[Ęİ榌U: "396" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 + - 胵輓Ɔ drop: - - 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥 - privileged: false - procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ + - "" + privileged: true + procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj readOnlyRootFilesystem: true - runAsGroup: -5569844914519516591 - runAsNonRoot: true - runAsUser: -3342656999442156006 + runAsGroup: -3460863886200664373 + runAsNonRoot: false + runAsUser: -7735837526010191986 seLinuxOptions: - level: "355" - role: "353" - type: "354" - user: "352" + level: "278" + role: "276" + type: "277" + user: "275" windowsOptions: - gmsaCredentialSpec: "357" - gmsaCredentialSpecName: "356" - runAsUserName: "358" - targetContainerName: "359" - terminationMessagePath: "351" - terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 - tty: true + gmsaCredentialSpec: "280" + gmsaCredentialSpecName: "279" + runAsUserName: "281" + stdin: true + terminationMessagePath: "274" + terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ volumeDevices: - - devicePath: "325" - name: "324" + - devicePath: "246" + name: "245" volumeMounts: - - mountPath: "321" - mountPropagation: 癃8鸖 - name: "320" + - mountPath: "242" + mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' + name: "241" readOnly: true - subPath: "322" - subPathExpr: "323" - workingDir: "304" - hostAliases: - - hostnames: - - "421" - ip: "420" - hostIPC: true - hostname: "375" - imagePullSecrets: - - name: "374" - initContainers: + subPath: "243" + subPathExpr: "244" + workingDir: "225" + dnsConfig: + nameservers: + - "409" + options: + - name: "411" + value: "412" + searches: + - "410" + dnsPolicy: Ǒ + enableServiceLinks: false + ephemeralContainers: - args: - - "179" + - "285" command: - - "178" + - "284" env: - - name: "186" - value: "187" + - name: "292" + value: "293" valueFrom: configMapKeyRef: - key: "193" - name: "192" + key: "299" + name: "298" optional: false fieldRef: - apiVersion: "188" - fieldPath: "189" + apiVersion: "294" + fieldPath: "295" resourceFieldRef: - containerName: "190" - divisor: "980" - resource: "191" + containerName: "296" + divisor: "340" + resource: "297" secretKeyRef: - key: "195" - name: "194" + key: "301" + name: "300" optional: true envFrom: - configMapRef: - name: "184" + name: "290" optional: true - prefix: "183" + prefix: "289" secretRef: - name: "185" - optional: false - image: "177" - imagePullPolicy: 腬 + name: "291" + optional: true + image: "283" + imagePullPolicy: 冓鍓贯 lifecycle: postStart: exec: command: - - "216" + - "322" httpGet: - host: "218" + host: "325" httpHeaders: - - name: "219" - value: "220" - path: "217" - port: -33154680 - scheme: 跾|@?鷅bȻN+ņ榱* + - name: "326" + value: "327" + path: "323" + port: "324" + scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' tcpSocket: - host: "222" - port: "221" + host: "329" + port: "328" preStop: exec: command: - - "223" + - "330" httpGet: - host: "226" + host: "333" httpHeaders: - - name: "227" - value: "228" - path: "224" - port: "225" - scheme: 櫸eʔŊ + - name: "334" + value: "335" + path: "331" + port: "332" + scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 tcpSocket: - host: "229" - port: 731879508 + host: "336" + port: 1315054653 livenessProbe: exec: command: - - "202" - failureThreshold: -532628939 + - "308" + failureThreshold: 1941923625 httpGet: - host: "204" + host: "311" httpHeaders: - - name: "205" - value: "206" - path: "203" - port: -1365115016 - scheme: 町恰nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶.蒅 - initialDelaySeconds: 1971383046 - periodSeconds: -1376537100 - successThreshold: 1100645882 + - name: "312" + value: "313" + path: "309" + port: "310" + scheme: 忊|E剒 + initialDelaySeconds: -1313320434 + periodSeconds: 465972736 + successThreshold: -1784617397 tcpSocket: - host: "207" - port: -1105572246 - timeoutSeconds: 1154560741 - name: "176" + host: "314" + port: 1004325340 + timeoutSeconds: 14304392 + name: "282" ports: - - containerPort: -1629040033 - hostIP: "182" - hostPort: -958191807 - name: "181" - protocol: ʜǝ鿟ldg滠鼍ƭt + - containerPort: 1040396664 + hostIP: "288" + hostPort: -602419938 + name: "287" + protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 readinessProbe: exec: command: - - "208" - failureThreshold: 195263908 + - "315" + failureThreshold: 656200799 httpGet: - host: "211" + host: "317" httpHeaders: - - name: "212" - value: "213" - path: "209" - port: "210" - scheme: '%:;栍dʪīT捘ɍi' - initialDelaySeconds: -1510026905 - periodSeconds: 2025698376 - successThreshold: -1766555420 + - name: "318" + value: "319" + path: "316" + port: 432291364 + initialDelaySeconds: -677617960 + periodSeconds: -1717997927 + successThreshold: 1533365989 tcpSocket: - host: "215" - port: "214" - timeoutSeconds: 437857734 + host: "321" + port: "320" + timeoutSeconds: 383015301 resources: limits: - )ÙæNǚ錯ƶRquA?瞲Ť倱: "289" + "": "548" requests: - ź贩j瀉: "621" + ñKJɐ扵Gƚ绤: "879" securityContext: allowPrivilegeEscalation: true capabilities: add: - - "" + - ƺ蛜6Ɖ飴ɎiǨź drop: - - ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö + - ǵɐ鰥Z privileged: true - procMount: 珝Żwʮ馜ü + procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² readOnlyRootFilesystem: true - runAsGroup: 285495246564691952 + runAsGroup: 1006111877741141889 runAsNonRoot: false - runAsUser: -7433417845068148860 + runAsUser: -500234369132816308 seLinuxOptions: - level: "234" - role: "232" - type: "233" - user: "231" + level: "341" + role: "339" + type: "340" + user: "338" windowsOptions: - gmsaCredentialSpec: "236" - gmsaCredentialSpecName: "235" - runAsUserName: "237" + gmsaCredentialSpec: "343" + gmsaCredentialSpecName: "342" + runAsUserName: "344" stdin: true - terminationMessagePath: "230" - terminationMessagePolicy: hoĂɋ + stdinOnce: true + targetContainerName: "345" + terminationMessagePath: "337" + terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ tty: true volumeDevices: - - devicePath: "201" - name: "200" + - devicePath: "307" + name: "306" volumeMounts: - - mountPath: "197" - mountPropagation: ɶ - name: "196" + - mountPath: "303" + mountPropagation: 敄lu| + name: "302" readOnly: true - subPath: "198" - subPathExpr: "199" - workingDir: "180" - nodeName: "364" + subPath: "304" + subPathExpr: "305" + workingDir: "286" + hostAliases: + - hostnames: + - "407" + ip: "406" + hostIPC: true + hostPID: true + hostname: "361" + imagePullSecrets: + - name: "360" + initContainers: + - args: + - "164" + command: + - "163" + env: + - name: "171" + value: "172" + valueFrom: + configMapKeyRef: + key: "178" + name: "177" + optional: false + fieldRef: + apiVersion: "173" + fieldPath: "174" + resourceFieldRef: + containerName: "175" + divisor: "618" + resource: "176" + secretKeyRef: + key: "180" + name: "179" + optional: false + envFrom: + - configMapRef: + name: "169" + optional: false + prefix: "168" + secretRef: + name: "170" + optional: true + image: "162" + imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 + lifecycle: + postStart: + exec: + command: + - "199" + httpGet: + host: "202" + httpHeaders: + - name: "203" + value: "204" + path: "200" + port: "201" + scheme: Ɖ立hdz緄Ú|dk_瀹鞎 + tcpSocket: + host: "205" + port: 1150375229 + preStop: + exec: + command: + - "206" + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "207" + port: "208" + scheme: '鲡:' + tcpSocket: + host: "212" + port: -2037320199 + livenessProbe: + exec: + command: + - "187" + failureThreshold: -559252309 + httpGet: + host: "189" + httpHeaders: + - name: "190" + value: "191" + path: "188" + port: -575512248 + scheme: ɨ銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + initialDelaySeconds: -1846991380 + periodSeconds: -1398498492 + successThreshold: -2035009296 + tcpSocket: + host: "192" + port: 1180382332 + timeoutSeconds: 325236550 + name: "161" + ports: + - containerPort: 38897467 + hostIP: "167" + hostPort: 580681683 + name: "166" + protocol: h0åȂ町恰nj揠 + readinessProbe: + exec: + command: + - "193" + failureThreshold: 1427781619 + httpGet: + host: "195" + httpHeaders: + - name: "196" + value: "197" + path: "194" + port: 1403721475 + scheme: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 + initialDelaySeconds: -1327537699 + periodSeconds: -1941847253 + successThreshold: 1596028039 + tcpSocket: + host: "198" + port: -2064174383 + timeoutSeconds: 483512911 + resources: + limits: + 缶.蒅!a坩O`涁İ而踪鄌eÞȦY籎顒: "45" + requests: + T捘ɍi縱ù墴: "848" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - '''ɵK.Q貇£ȹ嫰ƹǔw÷' + drop: + - I粛E煹ǐƲE'iþŹʣy + privileged: false + procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ + readOnlyRootFilesystem: true + runAsGroup: -4491268618106522555 + runAsNonRoot: true + runAsUser: -3150075726777852858 + seLinuxOptions: + level: "217" + role: "215" + type: "216" + user: "214" + windowsOptions: + gmsaCredentialSpec: "219" + gmsaCredentialSpecName: "218" + runAsUserName: "220" + stdinOnce: true + terminationMessagePath: "213" + terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' + tty: true + volumeDevices: + - devicePath: "186" + name: "185" + volumeMounts: + - mountPath: "182" + mountPropagation: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° + name: "181" + readOnly: true + subPath: "183" + subPathExpr: "184" + workingDir: "165" + nodeName: "350" nodeSelector: - "360": "361" + "346": "347" overhead: - 镳餘ŁƁ翂|C ɩ繞: "442" - preemptionPolicy: z芀¿l磶Bb偃礳Ȭ痍脉PPö - priority: -1727081143 - priorityClassName: "422" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "408" readinessGates: - - conditionType: ŋŏ}ŀ姳Ŭ尌eáNRNJ丧鴻ĿW癜鞤 - restartPolicy: 輂,ŕĪĠM蘇KŅ/»頸 - runtimeClassName: "427" - schedulerName: "417" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ǦŐnj汰8ŕİi騎C" + runtimeClassName: "413" + schedulerName: "403" securityContext: - fsGroup: -1656129410837620707 - runAsGroup: -8467189055144615123 - runAsNonRoot: false - runAsUser: 4912549079266037151 + fsGroup: -1335795712555820375 + runAsGroup: 3557544419897236324 + runAsNonRoot: true + runAsUser: 4608737617101049023 seLinuxOptions: - level: "368" - role: "366" - type: "367" - user: "365" + level: "354" + role: "352" + type: "353" + user: "351" supplementalGroups: - - -7758217742974482282 + - 5014869561632118364 sysctls: - - name: "372" - value: "373" + - name: "358" + value: "359" windowsOptions: - gmsaCredentialSpec: "370" - gmsaCredentialSpecName: "369" - runAsUserName: "371" - serviceAccount: "363" - serviceAccountName: "362" - shareProcessNamespace: true - subdomain: "376" - terminationGracePeriodSeconds: 877160958076533931 + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + serviceAccount: "349" + serviceAccountName: "348" + shareProcessNamespace: false + subdomain: "362" + terminationGracePeriodSeconds: 2582126978155733738 tolerations: - - effect: ʀŖ鱓 - key: "418" - operator: "n" - tolerationSeconds: -2817829995132015826 - value: "419" + - effect: ŽɣB矗E¸乾 + key: "404" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "405" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 39-A_-_l67Q.-_r - operator: Exists + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - nt-23h-4z-21-sap--h--q0h-t2n4s-6-5/Q1-wv3UDf.-4D-r.-F__r.o7: lR__8-7_-YD-Q9_-__..YNFu7Pg-.814i - maxSkew: -899509541 - topologyKey: "428" - whenUnsatisfiable: ƴ磳藷曥摮Z Ǐg鲅 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "414" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: - fsType: "76" - partition: -156457987 + fsType: "61" + partition: -104666658 readOnly: true - volumeID: "75" + volumeID: "60" azureDisk: - cachingMode: ĦE勗E濞偘1 - diskName: "139" - diskURI: "140" - fsType: "141" - kind: 議Ǹ轺@)蓳嗘 + cachingMode: ʜǝ鿟ldg滠鼍ƭt + diskName: "124" + diskURI: "125" + fsType: "126" + kind: ȫşŇɜa readOnly: true azureFile: - readOnly: true - secretName: "125" - shareName: "126" + secretName: "110" + shareName: "111" cephfs: monitors: - - "110" - path: "111" - secretFile: "113" + - "95" + path: "96" + secretFile: "98" secretRef: - name: "114" - user: "112" + name: "99" + user: "97" cinder: - fsType: "108" + fsType: "93" + readOnly: true secretRef: - name: "109" - volumeID: "107" + name: "94" + volumeID: "92" configMap: - defaultMode: 1754292691 + defaultMode: -599608368 items: - - key: "128" - mode: -675987103 - path: "129" - name: "127" + - key: "113" + mode: -1194714697 + path: "114" + name: "112" optional: true csi: - driver: "171" - fsType: "172" + driver: "156" + fsType: "157" nodePublishSecretRef: - name: "175" + name: "160" readOnly: true volumeAttributes: - "173": "174" + "158": "159" downwardAPI: - defaultMode: -1008038372 + defaultMode: 1801487647 items: - fieldRef: - apiVersion: "118" - fieldPath: "119" - mode: -1965578645 - path: "117" + apiVersion: "103" + fieldPath: "104" + mode: 1322858613 + path: "102" resourceFieldRef: - containerName: "120" - divisor: "327" - resource: "121" + containerName: "105" + divisor: "889" + resource: "106" emptyDir: - medium: Šĸů湙騘&啞 - sizeLimit: "577" + medium: 踓Ǻǧ湬淊kŪ睴鸏:ɥ³ƞsɁ8^ʥ + sizeLimit: "681" fc: - fsType: "123" - lun: -658258937 + fsType: "108" + lun: 1169718433 targetWWNs: - - "122" + - "107" wwids: - - "124" + - "109" flexVolume: - driver: "102" - fsType: "103" + driver: "87" + fsType: "88" options: - "105": "106" + "90": "91" readOnly: true secretRef: - name: "104" + name: "89" flocker: - datasetName: "115" - datasetUUID: "116" + datasetName: "100" + datasetUUID: "101" gcePersistentDisk: - fsType: "74" - partition: 663386308 - pdName: "73" - gitRepo: - directory: "79" - repository: "77" - revision: "78" - glusterfs: - endpoints: "92" - path: "93" + fsType: "59" + partition: 2065358741 + pdName: "58" readOnly: true + gitRepo: + directory: "64" + repository: "62" + revision: "63" + glusterfs: + endpoints: "77" + path: "78" hostPath: - path: "72" - type: ħ籦ö嗏ʑ>季Cʖ畬x + path: "57" + type: /淹\韲翁&ʢsɜ曢\%枅:=ǛƓ iscsi: chapAuthSession: true - fsType: "88" - initiatorName: "91" - iqn: "86" - iscsiInterface: "87" - lun: -1636694746 + fsType: "73" + initiatorName: "76" + iqn: "71" + iscsiInterface: "72" + lun: -663180249 portals: - - "89" + - "74" + readOnly: true secretRef: - name: "90" - targetPortal: "85" - name: "71" + name: "75" + targetPortal: "70" + name: "56" nfs: - path: "84" - readOnly: true - server: "83" + path: "69" + server: "68" persistentVolumeClaim: - claimName: "94" + claimName: "79" photonPersistentDisk: - fsType: "143" - pdID: "142" + fsType: "128" + pdID: "127" portworxVolume: - fsType: "158" + fsType: "143" readOnly: true - volumeID: "157" + volumeID: "142" projected: - defaultMode: 345648859 + defaultMode: -1980941277 sources: - configMap: items: - - key: "153" - mode: -106644772 - path: "154" - name: "152" + - key: "138" + mode: 1730325900 + path: "139" + name: "137" optional: true downwardAPI: items: - fieldRef: - apiVersion: "148" - fieldPath: "149" - mode: -783297752 - path: "147" + apiVersion: "133" + fieldPath: "134" + mode: -555780268 + path: "132" resourceFieldRef: - containerName: "150" - divisor: "184" - resource: "151" + containerName: "135" + divisor: "952" + resource: "136" secret: items: - - key: "145" - mode: 679825403 - path: "146" - name: "144" + - key: "130" + mode: 782113097 + path: "131" + name: "129" optional: true serviceAccountToken: - audience: "155" - expirationSeconds: 1897892355466772544 - path: "156" + audience: "140" + expirationSeconds: -2937394236764575757 + path: "141" quobyte: - group: "137" - registry: "134" - tenant: "138" - user: "136" - volume: "135" + group: "122" + readOnly: true + registry: "119" + tenant: "123" + user: "121" + volume: "120" rbd: - fsType: "97" - image: "96" - keyring: "100" + fsType: "82" + image: "81" + keyring: "85" monitors: - - "95" - pool: "98" - secretRef: - name: "101" - user: "99" - scaleIO: - fsType: "166" - gateway: "159" - protectionDomain: "162" + - "80" + pool: "83" readOnly: true secretRef: - name: "161" - storageMode: "164" - storagePool: "163" - system: "160" - volumeName: "165" - secret: - defaultMode: -861289979 - items: - - key: "81" - mode: -5672822 - path: "82" - optional: true - secretName: "80" - storageos: - fsType: "169" + name: "86" + user: "84" + scaleIO: + fsType: "151" + gateway: "144" + protectionDomain: "147" secretRef: - name: "170" - volumeName: "167" - volumeNamespace: "168" + name: "146" + sslEnabled: true + storageMode: "149" + storagePool: "148" + system: "145" + volumeName: "150" + secret: + defaultMode: 1655406148 + items: + - key: "66" + mode: 1648350164 + path: "67" + optional: true + secretName: "65" + storageos: + fsType: "154" + readOnly: true + secretRef: + name: "155" + volumeName: "152" + volumeNamespace: "153" vsphereVolume: - fsType: "131" - storagePolicyID: "133" - storagePolicyName: "132" - volumePath: "130" - ttlSecondsAfterFinished: 952328575 + fsType: "116" + storagePolicyID: "118" + storagePolicyName: "117" + volumePath: "115" + ttlSecondsAfterFinished: 920774957 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json index dbdecb15a58..33b479ae05b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,309 +35,304 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "schedule": "24", - "startingDeadlineSeconds": -8817021678265088399, - "concurrencyPolicy": "ěĂ凗蓏Ŋ蛊ĉy緅縕", - "suspend": false, + "schedule": "18", + "startingDeadlineSeconds": -2555947251840004808, + "concurrencyPolicy": "Hr鯹)晿\u003co,c鮽ort昍řČ扷5Ɨ", + "suspend": true, "jobTemplate": { "metadata": { - "name": "25", - "generateName": "26", - "namespace": "27", - "selfLink": "28", - "uid": "ɭîcP$Iņ", - "resourceVersion": "14926502199533077124", - "generation": -1382274715716350298, + "name": "19", + "generateName": "20", + "namespace": "21", + "selfLink": "22", + "uid": "^苣", + "resourceVersion": "1092536316763508004", + "generation": 3798025802092444428, "creationTimestamp": null, - "deletionGracePeriodSeconds": -8477149434422619117, + "deletionGracePeriodSeconds": -6114802437535409255, "labels": { - "30": "31" + "24": "25" }, "annotations": { - "32": "33" + "26": "27" }, "ownerReferences": [ { - "apiVersion": "34", - "kind": "35", - "name": "36", - "uid": "+½H牗洝尿彀亞螩", + "apiVersion": "28", + "kind": "29", + "name": "30", + "uid": "憍峕?狱³-Ǐ忄*", "controller": false, - "blockOwnerDeletion": true + "blockOwnerDeletion": false } ], "finalizers": [ - "37" + "31" ], - "clusterName": "38", + "clusterName": "32", "managedFields": [ { - "manager": "39", - "operation": "4%a鯿r", - "apiVersion": "40", - "fields": {"41":{"42":null}} + "manager": "33", + "operation": "ȎțêɘIJ斬³;Ơ歿", + "apiVersion": "34" } ] }, "spec": { - "parallelism": -110482268, - "completions": -54954325, - "activeDeadlineSeconds": 8559948711650432497, - "backoffLimit": -907310967, + "parallelism": -856030588, + "completions": -106888179, + "activeDeadlineSeconds": -1483125035702892746, + "backoffLimit": -1822122846, "selector": { "matchLabels": { - "WR58_HLU..8._bQw.-dG6c-.6--_x.--0wmZk1_8._3U": "UBq.m_-.q8_v2LiTF_a981d3-7-fP81.-9" + "2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am6-4_WE-_T": "cd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DAm" }, "matchExpressions": [ { - "key": "GE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5-0", - "operator": "NotIn", - "values": [ - "YM9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.G" - ] + "key": "rnr", + "operator": "DoesNotExist" } ] }, - "manualSelector": false, + "manualSelector": true, "template": { "metadata": { - "name": "52", - "generateName": "53", - "namespace": "54", - "selfLink": "55", - "uid": "³ƞsɁ8^", - "resourceVersion": "8685765401091182865", - "generation": 2849222499405033998, + "name": "41", + "generateName": "42", + "namespace": "43", + "selfLink": "44", + "uid": "A", + "resourceVersion": "13282108741396501211", + "generation": -1988464041375677738, "creationTimestamp": null, - "deletionGracePeriodSeconds": -671981934547025691, + "deletionGracePeriodSeconds": -961038652544818647, "labels": { - "57": "58" + "46": "47" }, "annotations": { - "59": "60" + "48": "49" }, "ownerReferences": [ { - "apiVersion": "61", - "kind": "62", - "name": "63", - "uid": "Ǡ/淹\\韲翁\u0026ʢ", - "controller": true, - "blockOwnerDeletion": true + "apiVersion": "50", + "kind": "51", + "name": "52", + "uid": "a縳讋ɮ衺勽Ƙq/Ź u衲\u003c¿燥ǖ_è", + "controller": false, + "blockOwnerDeletion": false } ], "finalizers": [ - "64" + "53" ], - "clusterName": "65", + "clusterName": "54", "managedFields": [ { - "manager": "66", - "operation": "\\%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ", - "apiVersion": "67", - "fields": {"68":{"69":null}} + "manager": "55", + "operation": "聻鎥ʟ\u003c$洅ɹ7\\弌Þ帺萸", + "apiVersion": "56" } ] }, "spec": { "volumes": [ { - "name": "72", + "name": "57", "hostPath": { - "path": "73", - "type": "ȸŹăȲϤĦ" + "path": "58", + "type": "j剐'宣I拍N嚳ķȗ" }, "emptyDir": { - "medium": "芝M 宸@Z^嫫猤痈", - "sizeLimit": "179" + "medium": "捵TwMȗ礼2ħ籦ö嗏ʑ\u003e季Cʖ畬", + "sizeLimit": "347" }, "gcePersistentDisk": { - "pdName": "74", - "fsType": "75", - "partition": -2127673004 + "pdName": "59", + "fsType": "60", + "partition": 1399152294, + "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "76", - "fsType": "77", - "partition": 717712876 + "volumeID": "61", + "fsType": "62", + "partition": -1853411528 }, "gitRepo": { - "repository": "78", - "revision": "79", - "directory": "80" + "repository": "63", + "revision": "64", + "directory": "65" }, "secret": { - "secretName": "81", + "secretName": "66", "items": [ { - "key": "82", - "path": "83", - "mode": 147264373 + "key": "67", + "path": "68", + "mode": 1395607230 } ], - "defaultMode": -1249460160, - "optional": false + "defaultMode": -1852451720, + "optional": true }, "nfs": { - "server": "84", - "path": "85" + "server": "69", + "path": "70" }, "iscsi": { - "targetPortal": "86", - "iqn": "87", - "lun": 1029074742, - "iscsiInterface": "88", - "fsType": "89", + "targetPortal": "71", + "iqn": "72", + "lun": -1483417237, + "iscsiInterface": "73", + "fsType": "74", "portals": [ - "90" + "75" ], "secretRef": { - "name": "91" + "name": "76" }, - "initiatorName": "92" + "initiatorName": "77" }, "glusterfs": { - "endpoints": "93", - "path": "94" + "endpoints": "78", + "path": "79", + "readOnly": true }, "persistentVolumeClaim": { - "claimName": "95", + "claimName": "80", "readOnly": true }, "rbd": { "monitors": [ - "96" + "81" ], - "image": "97", - "fsType": "98", - "pool": "99", - "user": "100", - "keyring": "101", + "image": "82", + "fsType": "83", + "pool": "84", + "user": "85", + "keyring": "86", "secretRef": { - "name": "102" + "name": "87" }, "readOnly": true }, "flexVolume": { - "driver": "103", - "fsType": "104", + "driver": "88", + "fsType": "89", "secretRef": { - "name": "105" + "name": "90" }, - "readOnly": true, "options": { - "106": "107" + "91": "92" } }, "cinder": { - "volumeID": "108", - "fsType": "109", + "volumeID": "93", + "fsType": "94", "secretRef": { - "name": "110" + "name": "95" } }, "cephfs": { "monitors": [ - "111" + "96" ], - "path": "112", - "user": "113", - "secretFile": "114", + "path": "97", + "user": "98", + "secretFile": "99", "secretRef": { - "name": "115" + "name": "100" }, "readOnly": true }, "flocker": { - "datasetName": "116", - "datasetUUID": "117" + "datasetName": "101", + "datasetUUID": "102" }, "downwardAPI": { "items": [ { - "path": "118", + "path": "103", "fieldRef": { - "apiVersion": "119", - "fieldPath": "120" + "apiVersion": "104", + "fieldPath": "105" }, "resourceFieldRef": { - "containerName": "121", - "resource": "122", - "divisor": "857" + "containerName": "106", + "resource": "107", + "divisor": "52" }, - "mode": -1305215109 + "mode": -1011172037 } ], - "defaultMode": 186998979 + "defaultMode": -1775926229 }, "fc": { "targetWWNs": [ - "123" + "108" ], - "lun": 1179332384, - "fsType": "124", - "readOnly": true, + "lun": -740816174, + "fsType": "109", "wwids": [ - "125" + "110" ] }, "azureFile": { - "secretName": "126", - "shareName": "127" + "secretName": "111", + "shareName": "112" }, "configMap": { - "name": "128", + "name": "113", "items": [ { - "key": "129", - "path": "130", - "mode": 926891073 + "key": "114", + "path": "115", + "mode": 1793473487 } ], - "defaultMode": -1558831136, - "optional": true + "defaultMode": -347579237, + "optional": false }, "vsphereVolume": { - "volumePath": "131", - "fsType": "132", - "storagePolicyName": "133", - "storagePolicyID": "134" + "volumePath": "116", + "fsType": "117", + "storagePolicyName": "118", + "storagePolicyID": "119" }, "quobyte": { - "registry": "135", - "volume": "136", - "user": "137", - "group": "138", - "tenant": "139" + "registry": "120", + "volume": "121", + "readOnly": true, + "user": "122", + "group": "123", + "tenant": "124" }, "azureDisk": { - "diskName": "140", - "diskURI": "141", - "cachingMode": "ÙæNǚ錯ƶRq", - "fsType": "142", + "diskName": "125", + "diskURI": "126", + "cachingMode": "A3fƻfʣ繡楙¯", + "fsType": "127", "readOnly": true, - "kind": "?瞲Ť倱\u003cįXŋ朘瑥A徙" + "kind": "勗E濞偘1ɩÅ議Ǹ轺@)蓳嗘TʡȂ" }, "photonPersistentDisk": { - "pdID": "143", - "fsType": "144" + "pdID": "128", + "fsType": "129" }, "projected": { "sources": [ { "secret": { - "name": "145", + "name": "130", "items": [ { - "key": "146", - "path": "147", - "mode": -1120128337 + "key": "131", + "path": "132", + "mode": 550215822 } ], "optional": false @@ -345,576 +340,356 @@ "downwardAPI": { "items": [ { - "path": "148", + "path": "133", "fieldRef": { - "apiVersion": "149", - "fieldPath": "150" + "apiVersion": "134", + "fieldPath": "135" }, "resourceFieldRef": { - "containerName": "151", - "resource": "152", - "divisor": "580" + "containerName": "136", + "resource": "137", + "divisor": "618" }, - "mode": 1669671203 + "mode": 1525389481 } ] }, "configMap": { - "name": "153", + "name": "138", "items": [ { - "key": "154", - "path": "155", - "mode": -1950133943 + "key": "139", + "path": "140", + "mode": -1249460160 } ], "optional": false }, "serviceAccountToken": { - "audience": "156", - "expirationSeconds": -8801560367353238479, - "path": "157" + "audience": "141", + "expirationSeconds": -8988970531898753887, + "path": "142" } } ], - "defaultMode": -427769948 + "defaultMode": -1332301579 }, "portworxVolume": { - "volumeID": "158", - "fsType": "159" + "volumeID": "143", + "fsType": "144" }, "scaleIO": { - "gateway": "160", - "system": "161", + "gateway": "145", + "system": "146", "secretRef": { - "name": "162" + "name": "147" }, - "protectionDomain": "163", - "storagePool": "164", - "storageMode": "165", - "volumeName": "166", - "fsType": "167", + "protectionDomain": "148", + "storagePool": "149", + "storageMode": "150", + "volumeName": "151", + "fsType": "152", "readOnly": true }, "storageos": { - "volumeName": "168", - "volumeNamespace": "169", - "fsType": "170", + "volumeName": "153", + "volumeNamespace": "154", + "fsType": "155", + "readOnly": true, "secretRef": { - "name": "171" + "name": "156" } }, "csi": { - "driver": "172", - "readOnly": true, - "fsType": "173", + "driver": "157", + "readOnly": false, + "fsType": "158", "volumeAttributes": { - "174": "175" + "159": "160" }, "nodePublishSecretRef": { - "name": "176" + "name": "161" } } } ], "initContainers": [ { - "name": "177", - "image": "178", + "name": "162", + "image": "163", "command": [ - "179" + "164" ], "args": [ - "180" + "165" ], - "workingDir": "181", + "workingDir": "166", "ports": [ { - "name": "182", - "hostPort": 1971383046, - "containerPort": 1154560741, - "protocol": "涁İ而踪鄌eÞȦY籎顒ǥ", - "hostIP": "183" + "name": "167", + "hostPort": 1632959949, + "containerPort": 487826951, + "protocol": "ldg滠鼍ƭt?", + "hostIP": "168" } ], "envFrom": [ { - "prefix": "184", + "prefix": "169", "configMapRef": { - "name": "185", + "name": "170", "optional": false }, "secretRef": { - "name": "186", + "name": "171", "optional": false } } ], "env": [ { - "name": "187", - "value": "188", + "name": "172", + "value": "173", "valueFrom": { "fieldRef": { - "apiVersion": "189", - "fieldPath": "190" + "apiVersion": "174", + "fieldPath": "175" }, "resourceFieldRef": { - "containerName": "191", - "resource": "192", - "divisor": "832" + "containerName": "176", + "resource": "177", + "divisor": "597" }, "configMapKeyRef": { - "name": "193", - "key": "194", - "optional": true + "name": "178", + "key": "179", + "optional": false }, "secretKeyRef": { - "name": "195", - "key": "196", - "optional": true + "name": "180", + "key": "181", + "optional": false } } } ], "resources": { "limits": { - "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°": "465" + "ÙæNǚ錯ƶRq": "575" }, "requests": { - "oɘ檲ɨ銦妰黖ȓ": "793" + "To\u0026蕭k ź": "644" } }, "volumeMounts": [ { - "name": "197", - "mountPath": "198", - "subPath": "199", - "mountPropagation": "oĂɋ瀐\u003cɉ湨H=å睫}堇硲蕵ɢ", - "subPathExpr": "200" + "name": "182", + "readOnly": true, + "mountPath": "183", + "subPath": "184", + "mountPropagation": "瑥A", + "subPathExpr": "185" } ], "volumeDevices": [ { - "name": "201", - "devicePath": "202" + "name": "186", + "devicePath": "187" } ], "livenessProbe": { "exec": { "command": [ - "203" + "188" ] }, "httpGet": { - "path": "204", - "port": 290736426, - "host": "205", - "scheme": "ö", + "path": "189", + "port": "190", + "host": "191", + "scheme": "0åȂ町恰nj揠8lj", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "192", + "value": "193" } ] }, "tcpSocket": { - "port": "208", - "host": "209" + "port": -2049272966, + "host": "194" }, - "initialDelaySeconds": 322201525, - "timeoutSeconds": -1784033404, - "periodSeconds": 66472042, - "successThreshold": 2130088978, - "failureThreshold": -1064240304 + "initialDelaySeconds": -1188153605, + "timeoutSeconds": -427769948, + "periodSeconds": 912004803, + "successThreshold": -2098817064, + "failureThreshold": 1231820696 }, "readinessProbe": { "exec": { "command": [ - "210" + "195" ] }, "httpGet": { - "path": "211", - "port": -566408554, - "host": "212", - "scheme": "劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立", + "path": "196", + "port": "197", + "host": "198", "httpHeaders": [ { - "name": "213", - "value": "214" + "name": "199", + "value": "200" } ] }, "tcpSocket": { - "port": -31530684, - "host": "215" + "port": 675406340, + "host": "201" }, - "initialDelaySeconds": -1628697284, - "timeoutSeconds": 843845736, - "periodSeconds": 354496320, - "successThreshold": -418887496, - "failureThreshold": -522126070 + "initialDelaySeconds": 994527057, + "timeoutSeconds": -1482763519, + "periodSeconds": -1346458591, + "successThreshold": 1234551517, + "failureThreshold": -1618937335 }, "lifecycle": { "postStart": { "exec": { "command": [ - "216" + "202" ] }, "httpGet": { - "path": "217", - "port": "218", - "host": "219", - "scheme": "n芞QÄȻȊ+?ƭ峧Y栲茇竛", + "path": "203", + "port": "204", + "host": "205", + "scheme": "%:;栍dʪīT捘ɍi", "httpHeaders": [ { - "name": "220", - "value": "221" + "name": "206", + "value": "207" } ] }, "tcpSocket": { - "port": -592581809, - "host": "222" + "port": "208", + "host": "209" } }, "preStop": { "exec": { "command": [ - "223" + "210" ] }, "httpGet": { - "path": "224", - "port": 1702578303, - "host": "225", - "scheme": "NŬɨǙÄr蛏豈ɃHŠơŴĿ", + "path": "211", + "port": -1171060347, + "host": "212", + "scheme": "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°", "httpHeaders": [ { - "name": "226", - "value": "227" + "name": "213", + "value": "214" } ] }, "tcpSocket": { - "port": -1047607622, - "host": "228" + "port": "215", + "host": "216" } } }, - "terminationMessagePath": "229", - "terminationMessagePolicy": "ȉ彂", - "imagePullPolicy": "ȹ嫰ƹǔw÷nI粛E煹ǐƲE", + "terminationMessagePath": "217", + "terminationMessagePolicy": "閼咎櫸eʔŊ", + "imagePullPolicy": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", "securityContext": { "capabilities": { "add": [ - "þŹʣy豎@ɀ羭," + "瓼猀2:öY鶪5w垁鷌辪" ], "drop": [ - "OŤǢʭ嵔棂p儼Ƿ裚瓶釆Ɗ+" + "U珝Żwʮ馜üNșƶ4ĩĉ" ] }, "privileged": false, "seLinuxOptions": { - "user": "230", - "role": "231", - "type": "232", - "level": "233" + "user": "218", + "role": "219", + "type": "220", + "level": "221" }, "windowsOptions": { - "gmsaCredentialSpecName": "234", - "gmsaCredentialSpec": "235", - "runAsUserName": "236" + "gmsaCredentialSpecName": "222", + "gmsaCredentialSpec": "223", + "runAsUserName": "224" }, - "runAsUser": -739484406984751446, - "runAsGroup": 1898367611285047958, - "runAsNonRoot": true, + "runAsUser": -4642229086806245627, + "runAsGroup": 6165457529064596376, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "籘Àǒɿʒ刽ʼn" + "procMount": "" }, - "stdin": true, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "237", - "image": "238", + "name": "225", + "image": "226", "command": [ - "239" + "227" ], "args": [ - "240" + "228" ], - "workingDir": "241", + "workingDir": "229", "ports": [ { - "name": "242", - "hostPort": 622473257, - "containerPort": -966649167, - "protocol": "eLJèux榜VƋZ", - "hostIP": "243" + "name": "230", + "hostPort": -1703360754, + "containerPort": -1569009987, + "protocol": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", + "hostIP": "231" } ], "envFrom": [ { - "prefix": "244", + "prefix": "232", "configMapRef": { - "name": "245", + "name": "233", "optional": true }, "secretRef": { - "name": "246", - "optional": true - } - } - ], - "env": [ - { - "name": "247", - "value": "248", - "valueFrom": { - "fieldRef": { - "apiVersion": "249", - "fieldPath": "250" - }, - "resourceFieldRef": { - "containerName": "251", - "resource": "252", - "divisor": "700" - }, - "configMapKeyRef": { - "name": "253", - "key": "254", - "optional": true - }, - "secretKeyRef": { - "name": "255", - "key": "256", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "騀呣ǎfǣ萭旿@掇lNdǂ\u003e": "44" - }, - "requests": { - "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫": "130" - } - }, - "volumeMounts": [ - { - "name": "257", - "readOnly": true, - "mountPath": "258", - "subPath": "259", - "mountPropagation": "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0", - "subPathExpr": "260" - } - ], - "volumeDevices": [ - { - "name": "261", - "devicePath": "262" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "263" - ] - }, - "httpGet": { - "path": "264", - "port": "265", - "host": "266", - "scheme": "|懥ƖN粕擓ƖHVe熼", - "httpHeaders": [ - { - "name": "267", - "value": "268" - } - ] - }, - "tcpSocket": { - "port": -327987957, - "host": "269" - }, - "initialDelaySeconds": -801430937, - "timeoutSeconds": 1883209805, - "periodSeconds": -236125597, - "successThreshold": 385729478, - "failureThreshold": -1285424066 - }, - "readinessProbe": { - "exec": { - "command": [ - "270" - ] - }, - "httpGet": { - "path": "271", - "port": -1273659804, - "host": "272", - "scheme": "/ɸɎ R§耶FfBls3!", - "httpHeaders": [ - { - "name": "273", - "value": "274" - } - ] - }, - "tcpSocket": { - "port": -1654678802, - "host": "275" - }, - "initialDelaySeconds": -625194347, - "timeoutSeconds": -720450949, - "periodSeconds": -630252364, - "successThreshold": 391562775, - "failureThreshold": -775511009 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "276" - ] - }, - "httpGet": { - "path": "277", - "port": -1213051101, - "host": "278", - "scheme": "埽uʎȺ眖R", - "httpHeaders": [ - { - "name": "279", - "value": "280" - } - ] - }, - "tcpSocket": { - "port": 1260448044, - "host": "281" - } - }, - "preStop": { - "exec": { - "command": [ - "282" - ] - }, - "httpGet": { - "path": "283", - "port": 1689978741, - "host": "284", - "scheme": "緕ȚÍ勅跦", - "httpHeaders": [ - { - "name": "285", - "value": "286" - } - ] - }, - "tcpSocket": { - "port": 571739592, - "host": "287" - } - } - }, - "terminationMessagePath": "288", - "terminationMessagePolicy": "ǩ", - "imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8", - "securityContext": { - "capabilities": { - "add": [ - "军g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" - ], - "drop": [ - "" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "289", - "role": "290", - "type": "291", - "level": "292" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "293", - "gmsaCredentialSpec": "294", - "runAsUserName": "295" - }, - "runAsUser": -5821728037462880994, - "runAsGroup": 4468469649483616089, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "碧闳ȩr" - } - } - ], - "ephemeralContainers": [ - { - "name": "296", - "image": "297", - "command": [ - "298" - ], - "args": [ - "299" - ], - "workingDir": "300", - "ports": [ - { - "name": "301", - "hostPort": 1748715911, - "containerPort": -888240870, - "protocol": "ʁ岼昕ĬÇ", - "hostIP": "302" - } - ], - "envFrom": [ - { - "prefix": "303", - "configMapRef": { - "name": "304", - "optional": true - }, - "secretRef": { - "name": "305", + "name": "234", "optional": false } } ], "env": [ { - "name": "306", - "value": "307", + "name": "235", + "value": "236", "valueFrom": { "fieldRef": { - "apiVersion": "308", - "fieldPath": "309" + "apiVersion": "237", + "fieldPath": "238" }, "resourceFieldRef": { - "containerName": "310", - "resource": "311", - "divisor": "475" + "containerName": "239", + "resource": "240", + "divisor": "405" }, "configMapKeyRef": { - "name": "312", - "key": "313", + "name": "241", + "key": "242", "optional": false }, "secretKeyRef": { - "name": "314", - "key": "315", + "name": "243", + "key": "244", "optional": false } } @@ -922,212 +697,433 @@ ], "resources": { "limits": { - "鐫û咡W\u003c敄lu|榝": "506" + "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷": "948" }, "requests": { - "w忊|E剒蔞|表徶đ寳议": "804" + "": "83" } }, "volumeMounts": [ { - "name": "316", - "readOnly": true, - "mountPath": "317", - "subPath": "318", - "mountPropagation": "貾坢'跩aŕ翑0", - "subPathExpr": "319" + "name": "245", + "mountPath": "246", + "subPath": "247", + "mountPropagation": "@ùƸʋŀ樺ȃv", + "subPathExpr": "248" } ], "volumeDevices": [ { - "name": "320", - "devicePath": "321" + "name": "249", + "devicePath": "250" } ], "livenessProbe": { "exec": { "command": [ - "322" + "251" ] }, "httpGet": { - "path": "323", - "port": 1017803158, - "host": "324", - "scheme": "碔", + "path": "252", + "port": "253", + "host": "254", + "scheme": "Źʣy豎@ɀ羭,铻O", "httpHeaders": [ { - "name": "325", - "value": "326" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "327", - "host": "328" + "port": "257", + "host": "258" }, - "initialDelaySeconds": -1296830577, - "timeoutSeconds": -1314967760, - "periodSeconds": 1174240097, - "successThreshold": -1928016742, - "failureThreshold": -787458357 + "initialDelaySeconds": 1424053148, + "timeoutSeconds": 747521320, + "periodSeconds": 859639931, + "successThreshold": -1663149700, + "failureThreshold": -1131820775 }, "readinessProbe": { "exec": { "command": [ - "329" + "259" ] }, "httpGet": { - "path": "330", - "port": -651090190, - "host": "331", - "scheme": "跣Hǝcw媀瓄\u0026翜舞拉Œɥ颶", + "path": "260", + "port": -1710454086, + "host": "261", + "scheme": "mɩC[ó瓧", "httpHeaders": [ { - "name": "332", - "value": "333" + "name": "262", + "value": "263" } ] }, "tcpSocket": { - "port": -341287812, - "host": "334" + "port": -122979840, + "host": "264" }, - "initialDelaySeconds": 2030115750, - "timeoutSeconds": 1847163341, - "periodSeconds": 153385505, - "successThreshold": 1746399757, - "failureThreshold": 1150894260 + "initialDelaySeconds": 915577348, + "timeoutSeconds": -590798124, + "periodSeconds": -1386967282, + "successThreshold": -2030286732, + "failureThreshold": -233378149 }, "lifecycle": { "postStart": { "exec": { "command": [ - "335" + "265" ] }, "httpGet": { - "path": "336", - "port": 1965273344, - "host": "337", - "scheme": "L²sNƗ¸g", + "path": "266", + "port": 1385030458, + "host": "267", + "scheme": "Ao/樝fw[Řż丩ŽoǠŻ", "httpHeaders": [ { - "name": "338", - "value": "339" + "name": "268", + "value": "269" } ] }, "tcpSocket": { - "port": -1468297794, - "host": "340" + "port": "270", + "host": "271" } }, "preStop": { "exec": { "command": [ - "341" + "272" ] }, "httpGet": { - "path": "342", - "port": 807879779, - "host": "343", - "scheme": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", + "path": "273", + "port": -1589303862, + "host": "274", + "scheme": "ľǎɳ,ǿ飏騀呣ǎ", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "275", + "value": "276" } ] }, "tcpSocket": { - "port": -116224247, - "host": "346" + "port": "277", + "host": "278" } } }, - "terminationMessagePath": "347", - "terminationMessagePolicy": "{屿oiɥ嵐sC8?Ǻ", - "imagePullPolicy": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "terminationMessagePath": "279", + "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", "securityContext": { "capabilities": { "add": [ - "nj汰8ŕİi騎C\"6x$1sȣ±p" + "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" ], "drop": [ - "" + "rʤî萨zvt莭琽§ć\\ ïì" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "348", - "role": "349", - "type": "350", - "level": "351" + "user": "280", + "role": "281", + "type": "282", + "level": "283" }, "windowsOptions": { - "gmsaCredentialSpecName": "352", - "gmsaCredentialSpec": "353", - "runAsUserName": "354" + "gmsaCredentialSpecName": "284", + "gmsaCredentialSpec": "285", + "runAsUserName": "286" }, - "runAsUser": 6199053026450141133, - "runAsGroup": -5027542616778527781, + "runAsUser": -5738810661106213940, + "runAsGroup": 3195567116206635190, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ƖN粕擓Ɩ" }, - "stdinOnce": true, - "tty": true, - "targetContainerName": "355" + "stdin": true, + "tty": true } ], - "restartPolicy": "ʗN", - "terminationGracePeriodSeconds": 4288903380102217677, - "activeDeadlineSeconds": 6618112330449141397, + "ephemeralContainers": [ + { + "name": "287", + "image": "288", + "command": [ + "289" + ], + "args": [ + "290" + ], + "workingDir": "291", + "ports": [ + { + "name": "292", + "hostPort": -1097611426, + "containerPort": 1871952835, + "protocol": "D剂讼ɓȌʟni酛3ƁÀ*", + "hostIP": "293" + } + ], + "envFrom": [ + { + "prefix": "294", + "configMapRef": { + "name": "295", + "optional": false + }, + "secretRef": { + "name": "296", + "optional": true + } + } + ], + "env": [ + { + "name": "297", + "value": "298", + "valueFrom": { + "fieldRef": { + "apiVersion": "299", + "fieldPath": "300" + }, + "resourceFieldRef": { + "containerName": "301", + "resource": "302", + "divisor": "19" + }, + "configMapKeyRef": { + "name": "303", + "key": "304", + "optional": false + }, + "secretKeyRef": { + "name": "305", + "key": "306", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "Jȉ罴ņ螡źȰ?$矡ȶ网棊": "199" + }, + "requests": { + "ʎȺ眖R#": "985" + } + }, + "volumeMounts": [ + { + "name": "307", + "mountPath": "308", + "subPath": "309", + "mountPropagation": "¿", + "subPathExpr": "310" + } + ], + "volumeDevices": [ + { + "name": "311", + "devicePath": "312" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "313" + ] + }, + "httpGet": { + "path": "314", + "port": -534498506, + "host": "315", + "scheme": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ", + "httpHeaders": [ + { + "name": "316", + "value": "317" + } + ] + }, + "tcpSocket": { + "port": "318", + "host": "319" + }, + "initialDelaySeconds": -805795167, + "timeoutSeconds": 1791615594, + "periodSeconds": 785984384, + "successThreshold": 193463975, + "failureThreshold": 1831208885 + }, + "readinessProbe": { + "exec": { + "command": [ + "320" + ] + }, + "httpGet": { + "path": "321", + "port": "322", + "host": "323", + "scheme": "更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "httpHeaders": [ + { + "name": "324", + "value": "325" + } + ] + }, + "tcpSocket": { + "port": 467291328, + "host": "326" + }, + "initialDelaySeconds": -1664778008, + "timeoutSeconds": -1191528701, + "periodSeconds": -978176982, + "successThreshold": 415947324, + "failureThreshold": 18113448 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "327" + ] + }, + "httpGet": { + "path": "328", + "port": -467985423, + "host": "329", + "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "httpHeaders": [ + { + "name": "330", + "value": "331" + } + ] + }, + "tcpSocket": { + "port": "332", + "host": "333" + } + }, + "preStop": { + "exec": { + "command": [ + "334" + ] + }, + "httpGet": { + "path": "335", + "port": 591440053, + "host": "336", + "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "httpHeaders": [ + { + "name": "337", + "value": "338" + } + ] + }, + "tcpSocket": { + "port": "339", + "host": "340" + } + } + }, + "terminationMessagePath": "341", + "terminationMessagePolicy": " wƯ貾坢'跩aŕ", + "imagePullPolicy": "Ļǟi\u0026", + "securityContext": { + "capabilities": { + "add": [ + "碔" + ], + "drop": [ + "NKƙ順\\E¦队偯J僳徥淳4揻-$" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "342", + "role": "343", + "type": "344", + "level": "345" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "346", + "gmsaCredentialSpec": "347", + "runAsUserName": "348" + }, + "runAsUser": -7971724279034955974, + "runAsGroup": 2011630253582325853, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": ",ŕ" + }, + "stdinOnce": true, + "targetContainerName": "349" + } + ], + "restartPolicy": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "terminationGracePeriodSeconds": -1027492015449357669, + "activeDeadlineSeconds": 1968932441807931700, + "dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴", "nodeSelector": { - "356": "357" + "350": "351" }, - "serviceAccountName": "358", - "serviceAccount": "359", + "serviceAccountName": "352", + "serviceAccount": "353", "automountServiceAccountToken": false, - "nodeName": "360", - "shareProcessNamespace": false, + "nodeName": "354", + "hostNetwork": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "361", - "role": "362", - "type": "363", - "level": "364" + "user": "355", + "role": "356", + "type": "357", + "level": "358" }, "windowsOptions": { - "gmsaCredentialSpecName": "365", - "gmsaCredentialSpec": "366", - "runAsUserName": "367" + "gmsaCredentialSpecName": "359", + "gmsaCredentialSpec": "360", + "runAsUserName": "361" }, - "runAsUser": 3781687155382614739, - "runAsGroup": 4019602632531869440, + "runAsUser": -6241205430888228274, + "runAsGroup": 3716388262106582789, "runAsNonRoot": true, "supplementalGroups": [ - 5883045102427621492 + 2706433733228765005 ], - "fsGroup": 5322145418345067191, + "fsGroup": -500234369132816308, "sysctls": [ { - "name": "368", - "value": "369" + "name": "362", + "value": "363" } ] }, "imagePullSecrets": [ { - "name": "370" + "name": "364" } ], - "hostname": "371", - "subdomain": "372", + "hostname": "365", + "subdomain": "366", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1135,19 +1131,19 @@ { "matchExpressions": [ { - "key": "373", - "operator": "ț譎懚XW疪鑳w", + "key": "367", + "operator": "鱎ƙ;Nŕ璻Ji", "values": [ - "374" + "368" ] } ], "matchFields": [ { - "key": "375", - "operator": "åe躒訙", + "key": "369", + "operator": "J", "values": [ - "376" + "370" ] } ] @@ -1156,23 +1152,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1337533938, + "weight": 902978249, "preference": { "matchExpressions": [ { - "key": "377", - "operator": "ǂť嗆u8晲T", + "key": "371", + "operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6", "values": [ - "378" + "372" ] } ], "matchFields": [ { - "key": "379", - "operator": "ǨŴ壶Ƶ", + "key": "373", + "operator": "ʎǑyZ涬P­", "values": [ - "380" + "374" ] } ] @@ -1185,40 +1181,46 @@ { "labelSelector": { "matchLabels": { - "8vl-1z---883d-vj/t-_---.M.U_-mp": "R_rO-S-P_-...0c.-.p_3_J_SA995IKCR.s-f" + "05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3": "0-8-.M-.-.-v" }, "matchExpressions": [ { - "key": "5-.-.T-V_D_p", - "operator": "DoesNotExist" + "key": "1zET_..3dCv3j._.-_pP__up.2N", + "operator": "NotIn", + "values": [ + "f.p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.TV" + ] } ] }, "namespaces": [ - "387" + "381" ], - "topologyKey": "388" + "topologyKey": "382" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1443270783, + "weight": -3478003, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "x3..-.8-Jp-9-4-Tm.Y": "k8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M01" + "26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J": "28_38xm-.nx.sEK4B" }, "matchExpressions": [ { - "key": "w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo", - "operator": "DoesNotExist" + "key": "d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81", + "operator": "NotIn", + "values": [ + "MXOnf_ZN.-_--r.E__-8" + ] } ] }, "namespaces": [ - "395" + "389" ], - "topologyKey": "396" + "topologyKey": "390" } } ] @@ -1228,31 +1230,31 @@ { "labelSelector": { "matchLabels": { - "7-3x-3/9a_-0R_.Z__Lv8_.O_..8n.--z_-..6W.VK.sTt.-U_--56-.7D.3_P": "d._.Um.-__k.5" + "O.Um.-__k.j._g-G-7--p9.-0": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3" }, "matchExpressions": [ { - "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", + "key": "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d", "operator": "In", "values": [ - "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw" + "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" ] } ] }, "namespaces": [ - "403" + "397" ], - "topologyKey": "404" + "topologyKey": "398" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1505385143, + "weight": -1078366610, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81": "o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { @@ -1265,45 +1267,45 @@ ] }, "namespaces": [ - "411" + "405" ], - "topologyKey": "412" + "topologyKey": "406" } } ] } }, - "schedulerName": "413", + "schedulerName": "407", "tolerations": [ { - "key": "414", + "key": "408", "operator": "抷qTfZȻ干m謆7", - "value": "415", + "value": "409", "effect": "儉ɩ柀", "tolerationSeconds": -7411984641310969236 } ], "hostAliases": [ { - "ip": "416", + "ip": "410", "hostnames": [ - "417" + "411" ] } ], - "priorityClassName": "418", + "priorityClassName": "412", "priority": -895317190, "dnsConfig": { "nameservers": [ - "419" + "413" ], "searches": [ - "420" + "414" ], "options": [ { - "name": "421", - "value": "422" + "name": "415", + "value": "416" } ] }, @@ -1312,7 +1314,7 @@ "conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n" } ], - "runtimeClassName": "423", + "runtimeClassName": "417", "enableServiceLinks": true, "preemptionPolicy": "qiǙĞǠ", "overhead": { @@ -1321,7 +1323,7 @@ "topologySpreadConstraints": [ { "maxSkew": 44905239, - "topologyKey": "424", + "topologyKey": "418", "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", "labelSelector": { "matchLabels": { @@ -1347,12 +1349,12 @@ "status": { "active": [ { - "kind": "431", - "namespace": "432", - "name": "433", - "apiVersion": "434", - "resourceVersion": "435", - "fieldPath": "436" + "kind": "425", + "namespace": "426", + "name": "427", + "apiVersion": "428", + "resourceVersion": "429", + "fieldPath": "430" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb index 44fa1f816479f0ea10fd6b42293a82a4df310d36..80cc70ff156c07bb64628158be337338acca0ea6 100644 GIT binary patch literal 6303 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 Kk)1Y|?SBA$`cn7+ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml index a572a01537e..f84f8a70985 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,142 +25,138 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - concurrencyPolicy: ěĂ凗蓏Ŋ蛊ĉy緅縕 + concurrencyPolicy: Hr鯹)晿: "44" + 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷: "948" requests: - $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫: "130" + "": "83" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 军g>郵[+扴ȨŮ+朷Ǝ膯lj + - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 drop: - - "" + - rʤî萨zvt莭琽§ć\ ïì privileged: false - procMount: 碧闳ȩr - readOnlyRootFilesystem: true - runAsGroup: 4468469649483616089 - runAsNonRoot: false - runAsUser: -5821728037462880994 + procMount: ƖN粕擓Ɩ + readOnlyRootFilesystem: false + runAsGroup: 3195567116206635190 + runAsNonRoot: true + runAsUser: -5738810661106213940 seLinuxOptions: - level: "292" - role: "290" - type: "291" - user: "289" + level: "283" + role: "281" + type: "282" + user: "280" windowsOptions: - gmsaCredentialSpec: "294" - gmsaCredentialSpecName: "293" - runAsUserName: "295" - terminationMessagePath: "288" - terminationMessagePolicy: ǩ + gmsaCredentialSpec: "285" + gmsaCredentialSpecName: "284" + runAsUserName: "286" + stdin: true + terminationMessagePath: "279" + terminationMessagePolicy: 萭旿@掇lNdǂ>5姣 + tty: true volumeDevices: - - devicePath: "262" - name: "261" + - devicePath: "250" + name: "249" volumeMounts: - - mountPath: "258" - mountPropagation: 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0 - name: "257" - readOnly: true - subPath: "259" - subPathExpr: "260" - workingDir: "241" + - mountPath: "246" + mountPropagation: '@ùƸʋŀ樺ȃv' + name: "245" + subPath: "247" + subPathExpr: "248" + workingDir: "229" dnsConfig: nameservers: - - "419" + - "413" options: - - name: "421" - value: "422" + - name: "415" + value: "416" searches: - - "420" + - "414" + dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴 enableServiceLinks: true ephemeralContainers: - args: - - "299" + - "290" command: - - "298" + - "289" env: - - name: "306" - value: "307" + - name: "297" + value: "298" valueFrom: configMapKeyRef: - key: "313" - name: "312" + key: "304" + name: "303" optional: false fieldRef: - apiVersion: "308" - fieldPath: "309" + apiVersion: "299" + fieldPath: "300" resourceFieldRef: - containerName: "310" - divisor: "475" - resource: "311" + containerName: "301" + divisor: "19" + resource: "302" secretKeyRef: - key: "315" - name: "314" - optional: false + key: "306" + name: "305" + optional: true envFrom: - configMapRef: - name: "304" - optional: true - prefix: "303" - secretRef: - name: "305" + name: "295" optional: false - image: "297" - imagePullPolicy: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ + prefix: "294" + secretRef: + name: "296" + optional: true + image: "288" + imagePullPolicy: Ļǟi& lifecycle: postStart: exec: command: - - "335" + - "327" httpGet: - host: "337" + host: "329" httpHeaders: - - name: "338" - value: "339" - path: "336" - port: 1965273344 - scheme: L²sNƗ¸g + - name: "330" + value: "331" + path: "328" + port: -467985423 + scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ tcpSocket: - host: "340" - port: -1468297794 + host: "333" + port: "332" preStop: exec: command: - - "341" + - "334" httpGet: - host: "343" + host: "336" httpHeaders: - - name: "344" - value: "345" - path: "342" - port: 807879779 - scheme: ȱğ_<ǬëJ橈'琕鶫:顇ə + - name: "337" + value: "338" + path: "335" + port: 591440053 + scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 tcpSocket: - host: "346" - port: -116224247 + host: "340" + port: "339" livenessProbe: exec: command: - - "322" - failureThreshold: -787458357 + - "313" + failureThreshold: 1831208885 httpGet: - host: "324" + host: "315" httpHeaders: - - name: "325" - value: "326" - path: "323" - port: 1017803158 - scheme: 碔 - initialDelaySeconds: -1296830577 - periodSeconds: 1174240097 - successThreshold: -1928016742 + - name: "316" + value: "317" + path: "314" + port: -534498506 + scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ + initialDelaySeconds: -805795167 + periodSeconds: 785984384 + successThreshold: 193463975 tcpSocket: - host: "328" - port: "327" - timeoutSeconds: -1314967760 - name: "296" + host: "319" + port: "318" + timeoutSeconds: 1791615594 + name: "287" ports: - - containerPort: -888240870 - hostIP: "302" - hostPort: 1748715911 - name: "301" - protocol: ʁ岼昕ĬÇ + - containerPort: 1871952835 + hostIP: "293" + hostPort: -1097611426 + name: "292" + protocol: D剂讼ɓȌʟni酛3ƁÀ* readinessProbe: exec: command: - - "329" - failureThreshold: 1150894260 + - "320" + failureThreshold: 18113448 httpGet: - host: "331" + host: "323" httpHeaders: - - name: "332" - value: "333" - path: "330" - port: -651090190 - scheme: 跣Hǝcw媀瓄&翜舞拉Œɥ颶 - initialDelaySeconds: 2030115750 - periodSeconds: 153385505 - successThreshold: 1746399757 + - name: "324" + value: "325" + path: "321" + port: "322" + scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + initialDelaySeconds: -1664778008 + periodSeconds: -978176982 + successThreshold: 415947324 tcpSocket: - host: "334" - port: -341287812 - timeoutSeconds: 1847163341 + host: "326" + port: 467291328 + timeoutSeconds: -1191528701 resources: limits: - 鐫û咡W<敄lu|榝: "506" + Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" requests: - w忊|E剒蔞|表徶đ寳议: "804" + ʎȺ眖R#: "985" securityContext: allowPrivilegeEscalation: true capabilities: add: - - nj汰8ŕİi騎C"6x$1sȣ±p + - 碔 drop: - - "" - privileged: true - procMount: 斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ - readOnlyRootFilesystem: true - runAsGroup: -5027542616778527781 - runAsNonRoot: true - runAsUser: 6199053026450141133 + - NKƙ順\E¦队偯J僳徥淳4揻-$ + privileged: false + procMount: ',ŕ' + readOnlyRootFilesystem: false + runAsGroup: 2011630253582325853 + runAsNonRoot: false + runAsUser: -7971724279034955974 seLinuxOptions: - level: "351" - role: "349" - type: "350" - user: "348" + level: "345" + role: "343" + type: "344" + user: "342" windowsOptions: - gmsaCredentialSpec: "353" - gmsaCredentialSpecName: "352" - runAsUserName: "354" + gmsaCredentialSpec: "347" + gmsaCredentialSpecName: "346" + runAsUserName: "348" stdinOnce: true - targetContainerName: "355" - terminationMessagePath: "347" - terminationMessagePolicy: '{屿oiɥ嵐sC8?Ǻ' - tty: true + targetContainerName: "349" + terminationMessagePath: "341" + terminationMessagePolicy: ' wƯ貾坢''跩aŕ' volumeDevices: - - devicePath: "321" - name: "320" + - devicePath: "312" + name: "311" volumeMounts: - - mountPath: "317" - mountPropagation: 貾坢'跩aŕ翑0 - name: "316" - readOnly: true - subPath: "318" - subPathExpr: "319" - workingDir: "300" + - mountPath: "308" + mountPropagation: ¿ + name: "307" + subPath: "309" + subPathExpr: "310" + workingDir: "291" hostAliases: - hostnames: - - "417" - ip: "416" - hostname: "371" + - "411" + ip: "410" + hostNetwork: true + hostname: "365" imagePullSecrets: - - name: "370" + - name: "364" initContainers: - args: - - "180" + - "165" command: - - "179" + - "164" env: - - name: "187" - value: "188" + - name: "172" + value: "173" valueFrom: configMapKeyRef: - key: "194" - name: "193" - optional: true + key: "179" + name: "178" + optional: false fieldRef: - apiVersion: "189" - fieldPath: "190" + apiVersion: "174" + fieldPath: "175" resourceFieldRef: - containerName: "191" - divisor: "832" - resource: "192" + containerName: "176" + divisor: "597" + resource: "177" secretKeyRef: - key: "196" - name: "195" - optional: true + key: "181" + name: "180" + optional: false envFrom: - configMapRef: - name: "185" + name: "170" optional: false - prefix: "184" + prefix: "169" secretRef: - name: "186" + name: "171" optional: false - image: "178" - imagePullPolicy: ȹ嫰ƹǔw÷nI粛E煹ǐƲE + image: "163" + imagePullPolicy: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 lifecycle: postStart: exec: command: - - "216" + - "202" httpGet: - host: "219" + host: "205" httpHeaders: - - name: "220" - value: "221" - path: "217" - port: "218" - scheme: n芞QÄȻȊ+?ƭ峧Y栲茇竛 + - name: "206" + value: "207" + path: "203" + port: "204" + scheme: '%:;栍dʪīT捘ɍi' tcpSocket: - host: "222" - port: -592581809 + host: "209" + port: "208" preStop: exec: command: - - "223" + - "210" httpGet: - host: "225" + host: "212" httpHeaders: - - name: "226" - value: "227" - path: "224" - port: 1702578303 - scheme: NŬɨǙÄr蛏豈ɃHŠơŴĿ + - name: "213" + value: "214" + path: "211" + port: -1171060347 + scheme: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° tcpSocket: - host: "228" - port: -1047607622 + host: "216" + port: "215" livenessProbe: exec: command: - - "203" - failureThreshold: -1064240304 + - "188" + failureThreshold: 1231820696 httpGet: - host: "205" + host: "191" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 290736426 - scheme: ö - initialDelaySeconds: 322201525 - periodSeconds: 66472042 - successThreshold: 2130088978 + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: 0åȂ町恰nj揠8lj + initialDelaySeconds: -1188153605 + periodSeconds: 912004803 + successThreshold: -2098817064 tcpSocket: - host: "209" - port: "208" - timeoutSeconds: -1784033404 - name: "177" + host: "194" + port: -2049272966 + timeoutSeconds: -427769948 + name: "162" ports: - - containerPort: 1154560741 - hostIP: "183" - hostPort: 1971383046 - name: "182" - protocol: 涁İ而踪鄌eÞȦY籎顒ǥ + - containerPort: 487826951 + hostIP: "168" + hostPort: 1632959949 + name: "167" + protocol: ldg滠鼍ƭt? readinessProbe: exec: command: - - "210" - failureThreshold: -522126070 + - "195" + failureThreshold: -1618937335 httpGet: - host: "212" + host: "198" httpHeaders: - - name: "213" - value: "214" - path: "211" - port: -566408554 - scheme: 劳&¼傭Ȟ1酃=6}ɡŇƉ立 - initialDelaySeconds: -1628697284 - periodSeconds: 354496320 - successThreshold: -418887496 + - name: "199" + value: "200" + path: "196" + port: "197" + initialDelaySeconds: 994527057 + periodSeconds: -1346458591 + successThreshold: 1234551517 tcpSocket: - host: "215" - port: -31530684 - timeoutSeconds: 843845736 + host: "201" + port: 675406340 + timeoutSeconds: -1482763519 resources: limits: - 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°: "465" + ÙæNǚ錯ƶRq: "575" requests: - oɘ檲ɨ銦妰黖ȓ: "793" + To&蕭k ź: "644" securityContext: allowPrivilegeEscalation: false capabilities: add: - - þŹʣy豎@ɀ羭, + - 瓼猀2:öY鶪5w垁鷌辪 drop: - - OŤǢʭ嵔棂p儼Ƿ裚瓶釆Ɗ+ + - U珝Żwʮ馜üNșƶ4ĩĉ privileged: false - procMount: 籘Àǒɿʒ刽ʼn + procMount: "" readOnlyRootFilesystem: false - runAsGroup: 1898367611285047958 - runAsNonRoot: true - runAsUser: -739484406984751446 + runAsGroup: 6165457529064596376 + runAsNonRoot: false + runAsUser: -4642229086806245627 seLinuxOptions: - level: "233" - role: "231" - type: "232" - user: "230" + level: "221" + role: "219" + type: "220" + user: "218" windowsOptions: - gmsaCredentialSpec: "235" - gmsaCredentialSpecName: "234" - runAsUserName: "236" - stdin: true - terminationMessagePath: "229" - terminationMessagePolicy: ȉ彂 + gmsaCredentialSpec: "223" + gmsaCredentialSpecName: "222" + runAsUserName: "224" + stdinOnce: true + terminationMessagePath: "217" + terminationMessagePolicy: 閼咎櫸eʔŊ tty: true volumeDevices: - - devicePath: "202" - name: "201" + - devicePath: "187" + name: "186" volumeMounts: - - mountPath: "198" - mountPropagation: oĂɋ瀐<ɉ湨H=å睫}堇硲蕵ɢ - name: "197" - subPath: "199" - subPathExpr: "200" - workingDir: "181" - nodeName: "360" + - mountPath: "183" + mountPropagation: 瑥A + name: "182" + readOnly: true + subPath: "184" + subPathExpr: "185" + workingDir: "166" + nodeName: "354" nodeSelector: - "356": "357" + "350": "351" overhead: 锒鿦Ršțb贇髪č: "840" preemptionPolicy: qiǙĞǠ priority: -895317190 - priorityClassName: "418" + priorityClassName: "412" readinessGates: - conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n - restartPolicy: ʗN - runtimeClassName: "423" - schedulerName: "413" + restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + runtimeClassName: "417" + schedulerName: "407" securityContext: - fsGroup: 5322145418345067191 - runAsGroup: 4019602632531869440 + fsGroup: -500234369132816308 + runAsGroup: 3716388262106582789 runAsNonRoot: true - runAsUser: 3781687155382614739 + runAsUser: -6241205430888228274 seLinuxOptions: - level: "364" - role: "362" - type: "363" - user: "361" + level: "358" + role: "356" + type: "357" + user: "355" supplementalGroups: - - 5883045102427621492 + - 2706433733228765005 sysctls: - - name: "368" - value: "369" + - name: "362" + value: "363" windowsOptions: - gmsaCredentialSpec: "366" - gmsaCredentialSpecName: "365" - runAsUserName: "367" - serviceAccount: "359" - serviceAccountName: "358" - shareProcessNamespace: false - subdomain: "372" - terminationGracePeriodSeconds: 4288903380102217677 + gmsaCredentialSpec: "360" + gmsaCredentialSpecName: "359" + runAsUserName: "361" + serviceAccount: "353" + serviceAccountName: "352" + shareProcessNamespace: true + subdomain: "366" + terminationGracePeriodSeconds: -1027492015449357669 tolerations: - effect: 儉ɩ柀 - key: "414" + key: "408" operator: 抷qTfZȻ干m謆7 tolerationSeconds: -7411984641310969236 - value: "415" + value: "409" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -719,214 +712,216 @@ spec: matchLabels: 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa maxSkew: 44905239 - topologyKey: "424" + topologyKey: "418" whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 volumes: - awsElasticBlockStore: - fsType: "77" - partition: 717712876 - volumeID: "76" + fsType: "62" + partition: -1853411528 + volumeID: "61" azureDisk: - cachingMode: ÙæNǚ錯ƶRq - diskName: "140" - diskURI: "141" - fsType: "142" - kind: ?瞲Ť倱<įXŋ朘瑥A徙 + cachingMode: A3fƻfʣ繡楙¯ + diskName: "125" + diskURI: "126" + fsType: "127" + kind: 勗E濞偘1ɩÅ議Ǹ轺@)蓳嗘TʡȂ readOnly: true azureFile: - secretName: "126" - shareName: "127" + secretName: "111" + shareName: "112" cephfs: monitors: - - "111" - path: "112" + - "96" + path: "97" readOnly: true - secretFile: "114" + secretFile: "99" secretRef: - name: "115" - user: "113" + name: "100" + user: "98" cinder: - fsType: "109" + fsType: "94" secretRef: - name: "110" - volumeID: "108" + name: "95" + volumeID: "93" configMap: - defaultMode: -1558831136 + defaultMode: -347579237 items: - - key: "129" - mode: 926891073 - path: "130" - name: "128" - optional: true + - key: "114" + mode: 1793473487 + path: "115" + name: "113" + optional: false csi: - driver: "172" - fsType: "173" + driver: "157" + fsType: "158" nodePublishSecretRef: - name: "176" - readOnly: true + name: "161" + readOnly: false volumeAttributes: - "174": "175" + "159": "160" downwardAPI: - defaultMode: 186998979 + defaultMode: -1775926229 items: - fieldRef: - apiVersion: "119" - fieldPath: "120" - mode: -1305215109 - path: "118" + apiVersion: "104" + fieldPath: "105" + mode: -1011172037 + path: "103" resourceFieldRef: - containerName: "121" - divisor: "857" - resource: "122" + containerName: "106" + divisor: "52" + resource: "107" emptyDir: - medium: 芝M 宸@Z^嫫猤痈 - sizeLimit: "179" + medium: 捵TwMȗ礼2ħ籦ö嗏ʑ>季Cʖ畬 + sizeLimit: "347" fc: - fsType: "124" - lun: 1179332384 - readOnly: true + fsType: "109" + lun: -740816174 targetWWNs: - - "123" + - "108" wwids: - - "125" + - "110" flexVolume: - driver: "103" - fsType: "104" - options: - "106": "107" - readOnly: true - secretRef: - name: "105" - flocker: - datasetName: "116" - datasetUUID: "117" - gcePersistentDisk: - fsType: "75" - partition: -2127673004 - pdName: "74" - gitRepo: - directory: "80" - repository: "78" - revision: "79" - glusterfs: - endpoints: "93" - path: "94" - hostPath: - path: "73" - type: ȸŹăȲϤĦ - iscsi: + driver: "88" fsType: "89" - initiatorName: "92" - iqn: "87" - iscsiInterface: "88" - lun: 1029074742 - portals: - - "90" + options: + "91": "92" secretRef: - name: "91" - targetPortal: "86" - name: "72" + name: "90" + flocker: + datasetName: "101" + datasetUUID: "102" + gcePersistentDisk: + fsType: "60" + partition: 1399152294 + pdName: "59" + readOnly: true + gitRepo: + directory: "65" + repository: "63" + revision: "64" + glusterfs: + endpoints: "78" + path: "79" + readOnly: true + hostPath: + path: "58" + type: j剐'宣I拍N嚳ķȗ + iscsi: + fsType: "74" + initiatorName: "77" + iqn: "72" + iscsiInterface: "73" + lun: -1483417237 + portals: + - "75" + secretRef: + name: "76" + targetPortal: "71" + name: "57" nfs: - path: "85" - server: "84" + path: "70" + server: "69" persistentVolumeClaim: - claimName: "95" + claimName: "80" readOnly: true photonPersistentDisk: - fsType: "144" - pdID: "143" + fsType: "129" + pdID: "128" portworxVolume: - fsType: "159" - volumeID: "158" + fsType: "144" + volumeID: "143" projected: - defaultMode: -427769948 + defaultMode: -1332301579 sources: - configMap: items: - - key: "154" - mode: -1950133943 - path: "155" - name: "153" + - key: "139" + mode: -1249460160 + path: "140" + name: "138" optional: false downwardAPI: items: - fieldRef: - apiVersion: "149" - fieldPath: "150" - mode: 1669671203 - path: "148" + apiVersion: "134" + fieldPath: "135" + mode: 1525389481 + path: "133" resourceFieldRef: - containerName: "151" - divisor: "580" - resource: "152" + containerName: "136" + divisor: "618" + resource: "137" secret: items: - - key: "146" - mode: -1120128337 - path: "147" - name: "145" + - key: "131" + mode: 550215822 + path: "132" + name: "130" optional: false serviceAccountToken: - audience: "156" - expirationSeconds: -8801560367353238479 - path: "157" + audience: "141" + expirationSeconds: -8988970531898753887 + path: "142" quobyte: - group: "138" - registry: "135" - tenant: "139" - user: "137" - volume: "136" + group: "123" + readOnly: true + registry: "120" + tenant: "124" + user: "122" + volume: "121" rbd: - fsType: "98" - image: "97" - keyring: "101" + fsType: "83" + image: "82" + keyring: "86" monitors: - - "96" - pool: "99" + - "81" + pool: "84" readOnly: true secretRef: - name: "102" - user: "100" + name: "87" + user: "85" scaleIO: - fsType: "167" - gateway: "160" - protectionDomain: "163" + fsType: "152" + gateway: "145" + protectionDomain: "148" readOnly: true secretRef: - name: "162" - storageMode: "165" - storagePool: "164" - system: "161" - volumeName: "166" + name: "147" + storageMode: "150" + storagePool: "149" + system: "146" + volumeName: "151" secret: - defaultMode: -1249460160 + defaultMode: -1852451720 items: - - key: "82" - mode: 147264373 - path: "83" - optional: false - secretName: "81" + - key: "67" + mode: 1395607230 + path: "68" + optional: true + secretName: "66" storageos: - fsType: "170" + fsType: "155" + readOnly: true secretRef: - name: "171" - volumeName: "168" - volumeNamespace: "169" + name: "156" + volumeName: "153" + volumeNamespace: "154" vsphereVolume: - fsType: "132" - storagePolicyID: "134" - storagePolicyName: "133" - volumePath: "131" + fsType: "117" + storagePolicyID: "119" + storagePolicyName: "118" + volumePath: "116" ttlSecondsAfterFinished: -37906634 - schedule: "24" - startingDeadlineSeconds: -8817021678265088399 + schedule: "18" + startingDeadlineSeconds: -2555947251840004808 successfulJobsHistoryLimit: 1893057016 - suspend: false + suspend: true status: active: - - apiVersion: "434" - fieldPath: "436" - kind: "431" - name: "433" - namespace: "432" - resourceVersion: "435" + - apiVersion: "428" + fieldPath: "430" + kind: "425" + name: "427" + namespace: "426" + resourceVersion: "429" diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json index a1aefae6d4c..118f7885cff 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,302 +35,304 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "template": { "metadata": { - "name": "24", - "generateName": "25", - "namespace": "26", - "selfLink": "27", - "uid": "^苣", - "resourceVersion": "1092536316763508004", - "generation": 1905795315403748486, + "name": "18", + "generateName": "19", + "namespace": "20", + "selfLink": "21", + "uid": "SǡƏ", + "resourceVersion": "17916580954637291219", + "generation": 5259823216098853135, "creationTimestamp": null, - "deletionGracePeriodSeconds": 7323204920313990232, + "deletionGracePeriodSeconds": 4075183944016503389, "labels": { - "29": "30" + "23": "24" }, "annotations": { - "31": "32" + "25": "26" }, "ownerReferences": [ { - "apiVersion": "33", - "kind": "34", - "name": "35", - "uid": "谐颋DžSǡƏS$+½H牗洝尿", + "apiVersion": "27", + "kind": "28", + "name": "29", + "uid": "ɑ", "controller": true, "blockOwnerDeletion": false } ], "finalizers": [ - "36" + "30" ], - "clusterName": "37", + "clusterName": "31", "managedFields": [ { - "manager": "38", - "operation": "B峅x4%a", - "apiVersion": "39", - "fields": {"40":{"41":null}} + "manager": "32", + "operation": "ěĂ凗蓏Ŋ蛊ĉy緅縕", + "apiVersion": "33" } ] }, "spec": { - "parallelism": -856030588, - "completions": -106888179, - "activeDeadlineSeconds": -1483125035702892746, - "backoffLimit": -1822122846, + "parallelism": -443114323, + "completions": -1771909905, + "activeDeadlineSeconds": -9086179100394185427, + "backoffLimit": -1796008812, "selector": { "matchLabels": { - "2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am6-4_WE-_T": "cd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DAm" + "g5i9/l-Y._.-444": "c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64" }, "matchExpressions": [ { - "key": "rnr", - "operator": "DoesNotExist" + "key": "2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--n1-5", + "operator": "In", + "values": [ + "Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8" + ] } ] }, - "manualSelector": true, + "manualSelector": false, "template": { "metadata": { - "name": "51", - "generateName": "52", - "namespace": "53", - "selfLink": "54", - "uid": "@ʊʓ誒j剐'宣I拍N嚳ķȗɊ捵Tw", - "resourceVersion": "11115488420961080514", - "generation": -1988464041375677738, + "name": "40", + "generateName": "41", + "namespace": "42", + "selfLink": "43", + "uid": "Ȗ脵鴈Ō", + "resourceVersion": "5994087412557504692", + "generation": 9213888658033954596, "creationTimestamp": null, - "deletionGracePeriodSeconds": -961038652544818647, + "deletionGracePeriodSeconds": -2901856114738744973, "labels": { - "56": "57" + "45": "46" }, "annotations": { - "58": "59" + "47": "48" }, "ownerReferences": [ { - "apiVersion": "60", - "kind": "61", - "name": "62", - "uid": "a縳讋ɮ衺勽Ƙq/Ź u衲\u003c¿燥ǖ_è", + "apiVersion": "49", + "kind": "50", + "name": "51", + "uid": "I拍N嚳ķȗɊ捵TwMȗ礼", "controller": false, "blockOwnerDeletion": false } ], "finalizers": [ - "63" + "52" ], - "clusterName": "64", + "clusterName": "53", "managedFields": [ { - "manager": "65", - "operation": "聻鎥ʟ\u003c$洅ɹ7\\弌Þ帺萸", - "apiVersion": "66", - "fields": {"67":{"68":null}} + "manager": "54", + "operation": "ö嗏ʑ\u003e季Cʖ畬x骀Šĸů", + "apiVersion": "55" } ] }, "spec": { "volumes": [ { - "name": "71", + "name": "56", "hostPath": { - "path": "72", - "type": "ħ籦ö嗏ʑ\u003e季Cʖ畬x" + "path": "57", + "type": "/淹\\韲翁\u0026ʢsɜ曢\\%枅:=ǛƓ" }, "emptyDir": { - "medium": "Šĸů湙騘\u0026啞", - "sizeLimit": "577" + "medium": "踓Ǻǧ湬淊kŪ睴鸏:ɥ³ƞsɁ8^ʥ", + "sizeLimit": "681" }, "gcePersistentDisk": { - "pdName": "73", - "fsType": "74", - "partition": 663386308 + "pdName": "58", + "fsType": "59", + "partition": 2065358741, + "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "75", - "fsType": "76", - "partition": -156457987, + "volumeID": "60", + "fsType": "61", + "partition": -104666658, "readOnly": true }, "gitRepo": { - "repository": "77", - "revision": "78", - "directory": "79" + "repository": "62", + "revision": "63", + "directory": "64" }, "secret": { - "secretName": "80", + "secretName": "65", "items": [ { - "key": "81", - "path": "82", - "mode": -5672822 + "key": "66", + "path": "67", + "mode": 1648350164 } ], - "defaultMode": -861289979, + "defaultMode": 1655406148, "optional": true }, "nfs": { - "server": "83", - "path": "84", - "readOnly": true + "server": "68", + "path": "69" }, "iscsi": { - "targetPortal": "85", - "iqn": "86", - "lun": -1636694746, - "iscsiInterface": "87", - "fsType": "88", + "targetPortal": "70", + "iqn": "71", + "lun": -663180249, + "iscsiInterface": "72", + "fsType": "73", + "readOnly": true, "portals": [ - "89" + "74" ], "chapAuthSession": true, "secretRef": { - "name": "90" + "name": "75" }, - "initiatorName": "91" + "initiatorName": "76" }, "glusterfs": { - "endpoints": "92", - "path": "93", - "readOnly": true + "endpoints": "77", + "path": "78" }, "persistentVolumeClaim": { - "claimName": "94" + "claimName": "79" }, "rbd": { "monitors": [ - "95" + "80" ], - "image": "96", - "fsType": "97", - "pool": "98", - "user": "99", - "keyring": "100", + "image": "81", + "fsType": "82", + "pool": "83", + "user": "84", + "keyring": "85", "secretRef": { - "name": "101" - } + "name": "86" + }, + "readOnly": true }, "flexVolume": { - "driver": "102", - "fsType": "103", + "driver": "87", + "fsType": "88", "secretRef": { - "name": "104" + "name": "89" }, "readOnly": true, "options": { - "105": "106" + "90": "91" } }, "cinder": { - "volumeID": "107", - "fsType": "108", + "volumeID": "92", + "fsType": "93", + "readOnly": true, "secretRef": { - "name": "109" + "name": "94" } }, "cephfs": { "monitors": [ - "110" + "95" ], - "path": "111", - "user": "112", - "secretFile": "113", + "path": "96", + "user": "97", + "secretFile": "98", "secretRef": { - "name": "114" + "name": "99" } }, "flocker": { - "datasetName": "115", - "datasetUUID": "116" + "datasetName": "100", + "datasetUUID": "101" }, "downwardAPI": { "items": [ { - "path": "117", + "path": "102", "fieldRef": { - "apiVersion": "118", - "fieldPath": "119" + "apiVersion": "103", + "fieldPath": "104" }, "resourceFieldRef": { - "containerName": "120", - "resource": "121", - "divisor": "327" + "containerName": "105", + "resource": "106", + "divisor": "889" }, - "mode": -1965578645 + "mode": 1322858613 } ], - "defaultMode": -1008038372 + "defaultMode": 1801487647 }, "fc": { "targetWWNs": [ - "122" + "107" ], - "lun": -658258937, - "fsType": "123", + "lun": 1169718433, + "fsType": "108", "wwids": [ - "124" + "109" ] }, "azureFile": { - "secretName": "125", - "shareName": "126", - "readOnly": true + "secretName": "110", + "shareName": "111" }, "configMap": { - "name": "127", + "name": "112", "items": [ { - "key": "128", - "path": "129", - "mode": -675987103 + "key": "113", + "path": "114", + "mode": -1194714697 } ], - "defaultMode": 1754292691, + "defaultMode": -599608368, "optional": true }, "vsphereVolume": { - "volumePath": "130", - "fsType": "131", - "storagePolicyName": "132", - "storagePolicyID": "133" + "volumePath": "115", + "fsType": "116", + "storagePolicyName": "117", + "storagePolicyID": "118" }, "quobyte": { - "registry": "134", - "volume": "135", - "user": "136", - "group": "137", - "tenant": "138" + "registry": "119", + "volume": "120", + "readOnly": true, + "user": "121", + "group": "122", + "tenant": "123" }, "azureDisk": { - "diskName": "139", - "diskURI": "140", - "cachingMode": "ĦE勗E濞偘1", - "fsType": "141", + "diskName": "124", + "diskURI": "125", + "cachingMode": "ʜǝ鿟ldg滠鼍ƭt", + "fsType": "126", "readOnly": true, - "kind": "議Ǹ轺@)蓳嗘" + "kind": "ȫşŇɜa" }, "photonPersistentDisk": { - "pdID": "142", - "fsType": "143" + "pdID": "127", + "fsType": "128" }, "projected": { "sources": [ { "secret": { - "name": "144", + "name": "129", "items": [ { - "key": "145", - "path": "146", - "mode": 679825403 + "key": "130", + "path": "131", + "mode": 782113097 } ], "optional": true @@ -338,357 +340,358 @@ "downwardAPI": { "items": [ { - "path": "147", + "path": "132", "fieldRef": { - "apiVersion": "148", - "fieldPath": "149" + "apiVersion": "133", + "fieldPath": "134" }, "resourceFieldRef": { - "containerName": "150", - "resource": "151", - "divisor": "184" + "containerName": "135", + "resource": "136", + "divisor": "952" }, - "mode": -783297752 + "mode": -555780268 } ] }, "configMap": { - "name": "152", + "name": "137", "items": [ { - "key": "153", - "path": "154", - "mode": -106644772 + "key": "138", + "path": "139", + "mode": 1730325900 } ], "optional": true }, "serviceAccountToken": { - "audience": "155", - "expirationSeconds": 1897892355466772544, - "path": "156" + "audience": "140", + "expirationSeconds": -2937394236764575757, + "path": "141" } } ], - "defaultMode": 345648859 + "defaultMode": -1980941277 }, "portworxVolume": { - "volumeID": "157", - "fsType": "158", + "volumeID": "142", + "fsType": "143", "readOnly": true }, "scaleIO": { - "gateway": "159", - "system": "160", + "gateway": "144", + "system": "145", "secretRef": { - "name": "161" + "name": "146" }, - "protectionDomain": "162", - "storagePool": "163", - "storageMode": "164", - "volumeName": "165", - "fsType": "166", - "readOnly": true + "sslEnabled": true, + "protectionDomain": "147", + "storagePool": "148", + "storageMode": "149", + "volumeName": "150", + "fsType": "151" }, "storageos": { - "volumeName": "167", - "volumeNamespace": "168", - "fsType": "169", + "volumeName": "152", + "volumeNamespace": "153", + "fsType": "154", + "readOnly": true, "secretRef": { - "name": "170" + "name": "155" } }, "csi": { - "driver": "171", + "driver": "156", "readOnly": true, - "fsType": "172", + "fsType": "157", "volumeAttributes": { - "173": "174" + "158": "159" }, "nodePublishSecretRef": { - "name": "175" + "name": "160" } } } ], "initContainers": [ { - "name": "176", - "image": "177", + "name": "161", + "image": "162", "command": [ - "178" + "163" ], "args": [ - "179" + "164" ], - "workingDir": "180", + "workingDir": "165", "ports": [ { - "name": "181", - "hostPort": -958191807, - "containerPort": -1629040033, - "protocol": "ʜǝ鿟ldg滠鼍ƭt", - "hostIP": "182" + "name": "166", + "hostPort": 580681683, + "containerPort": 38897467, + "protocol": "h0åȂ町恰nj揠", + "hostIP": "167" } ], "envFrom": [ { - "prefix": "183", + "prefix": "168", "configMapRef": { - "name": "184", - "optional": true + "name": "169", + "optional": false }, "secretRef": { - "name": "185", - "optional": false + "name": "170", + "optional": true } } ], "env": [ { - "name": "186", - "value": "187", + "name": "171", + "value": "172", "valueFrom": { "fieldRef": { - "apiVersion": "188", - "fieldPath": "189" + "apiVersion": "173", + "fieldPath": "174" }, "resourceFieldRef": { - "containerName": "190", - "resource": "191", - "divisor": "980" + "containerName": "175", + "resource": "176", + "divisor": "618" }, "configMapKeyRef": { - "name": "192", - "key": "193", + "name": "177", + "key": "178", "optional": false }, "secretKeyRef": { - "name": "194", - "key": "195", - "optional": true + "name": "179", + "key": "180", + "optional": false } } } ], "resources": { "limits": { - ")ÙæNǚ錯ƶRquA?瞲Ť倱": "289" + "缶.蒅!a坩O`涁İ而踪鄌eÞȦY籎顒": "45" }, "requests": { - "ź贩j瀉": "621" + "T捘ɍi縱ù墴": "848" } }, "volumeMounts": [ { - "name": "196", + "name": "181", "readOnly": true, - "mountPath": "197", - "subPath": "198", - "mountPropagation": "ɶ", - "subPathExpr": "199" + "mountPath": "182", + "subPath": "183", + "mountPropagation": "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°", + "subPathExpr": "184" } ], "volumeDevices": [ { - "name": "200", - "devicePath": "201" + "name": "185", + "devicePath": "186" } ], "livenessProbe": { "exec": { "command": [ - "202" + "187" ] }, "httpGet": { - "path": "203", - "port": -1365115016, - "host": "204", - "scheme": "町恰nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶.蒅", + "path": "188", + "port": -575512248, + "host": "189", + "scheme": "ɨ銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", "httpHeaders": [ { - "name": "205", - "value": "206" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": -1105572246, - "host": "207" + "port": 1180382332, + "host": "192" }, - "initialDelaySeconds": 1971383046, - "timeoutSeconds": 1154560741, - "periodSeconds": -1376537100, - "successThreshold": 1100645882, - "failureThreshold": -532628939 + "initialDelaySeconds": -1846991380, + "timeoutSeconds": 325236550, + "periodSeconds": -1398498492, + "successThreshold": -2035009296, + "failureThreshold": -559252309 }, "readinessProbe": { "exec": { "command": [ - "208" + "193" ] }, "httpGet": { - "path": "209", - "port": "210", - "host": "211", - "scheme": "%:;栍dʪīT捘ɍi", + "path": "194", + "port": 1403721475, + "host": "195", + "scheme": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": "214", - "host": "215" + "port": -2064174383, + "host": "198" }, - "initialDelaySeconds": -1510026905, - "timeoutSeconds": 437857734, - "periodSeconds": 2025698376, - "successThreshold": -1766555420, - "failureThreshold": 195263908 + "initialDelaySeconds": -1327537699, + "timeoutSeconds": 483512911, + "periodSeconds": -1941847253, + "successThreshold": 1596028039, + "failureThreshold": 1427781619 }, "lifecycle": { "postStart": { "exec": { "command": [ - "216" + "199" ] }, "httpGet": { - "path": "217", - "port": -33154680, - "host": "218", - "scheme": "跾|@?鷅bȻN+ņ榱*", + "path": "200", + "port": "201", + "host": "202", + "scheme": "Ɖ立hdz緄Ú|dk_瀹鞎", "httpHeaders": [ { - "name": "219", - "value": "220" + "name": "203", + "value": "204" } ] }, "tcpSocket": { - "port": "221", - "host": "222" + "port": 1150375229, + "host": "205" } }, "preStop": { "exec": { "command": [ - "223" + "206" ] }, "httpGet": { - "path": "224", - "port": "225", - "host": "226", - "scheme": "櫸eʔŊ", + "path": "207", + "port": "208", + "host": "209", + "scheme": "鲡:", "httpHeaders": [ { - "name": "227", - "value": "228" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": 731879508, - "host": "229" + "port": -2037320199, + "host": "212" } } }, - "terminationMessagePath": "230", - "terminationMessagePolicy": "hoĂɋ", - "imagePullPolicy": "腬", + "terminationMessagePath": "213", + "terminationMessagePolicy": "@Ȗs«öʮĀ\u003cé瞾", + "imagePullPolicy": "4y£軶ǃ*ʙ嫙\u0026蒒5", "securityContext": { "capabilities": { "add": [ - "" + "'ɵK.Q貇£ȹ嫰ƹǔw÷" ], "drop": [ - "ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö" + "I粛E煹ǐƲE'iþŹʣy" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "231", - "role": "232", - "type": "233", - "level": "234" + "user": "214", + "role": "215", + "type": "216", + "level": "217" }, "windowsOptions": { - "gmsaCredentialSpecName": "235", - "gmsaCredentialSpec": "236", - "runAsUserName": "237" + "gmsaCredentialSpecName": "218", + "gmsaCredentialSpec": "219", + "runAsUserName": "220" }, - "runAsUser": -7433417845068148860, - "runAsGroup": 285495246564691952, - "runAsNonRoot": false, + "runAsUser": -3150075726777852858, + "runAsGroup": -4491268618106522555, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "珝Żwʮ馜ü" + "allowPrivilegeEscalation": false, + "procMount": "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ" }, - "stdin": true, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "238", - "image": "239", + "name": "221", + "image": "222", "command": [ - "240" + "223" ], "args": [ - "241" + "224" ], - "workingDir": "242", + "workingDir": "225", "ports": [ { - "name": "243", - "hostPort": -1872407654, - "containerPort": 32378685, - "protocol": "ş蝿ɖȃ賲鐅臬", - "hostIP": "244" + "name": "226", + "hostPort": -321513994, + "containerPort": 1024248645, + "protocol": "籘Àǒɿʒ刽ʼn", + "hostIP": "227" } ], "envFrom": [ { - "prefix": "245", + "prefix": "228", "configMapRef": { - "name": "246", - "optional": false + "name": "229", + "optional": true }, "secretRef": { - "name": "247", + "name": "230", "optional": true } } ], "env": [ { - "name": "248", - "value": "249", + "name": "231", + "value": "232", "valueFrom": { "fieldRef": { - "apiVersion": "250", - "fieldPath": "251" + "apiVersion": "233", + "fieldPath": "234" }, "resourceFieldRef": { - "containerName": "252", - "resource": "253", - "divisor": "117" + "containerName": "235", + "resource": "236", + "divisor": "103" }, "configMapKeyRef": { - "name": "254", - "key": "255", - "optional": true + "name": "237", + "key": "238", + "optional": false }, "secretKeyRef": { - "name": "256", - "key": "257", + "name": "239", + "key": "240", "optional": false } } @@ -696,433 +699,437 @@ ], "resources": { "limits": { - "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN": "197" + "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ": "861" }, "requests": { - "軶ǃ*ʙ嫙\u0026蒒5靇": "813" + "悖ȩ0Ƹ[Ęİ榌U": "396" } }, "volumeMounts": [ { - "name": "258", - "mountPath": "259", - "subPath": "260", - "mountPropagation": "ǹ_Áȉ彂Ŵ廷s", - "subPathExpr": "261" + "name": "241", + "readOnly": true, + "mountPath": "242", + "subPath": "243", + "mountPropagation": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", + "subPathExpr": "244" } ], "volumeDevices": [ { - "name": "262", - "devicePath": "263" + "name": "245", + "devicePath": "246" } ], "livenessProbe": { "exec": { "command": [ - "264" + "247" ] }, "httpGet": { - "path": "265", - "port": 1923650413, - "host": "266", - "scheme": "I粛E煹ǐƲE'iþŹʣy", + "path": "248", + "port": -1821078703, + "host": "249", + "scheme": "萨zvt", "httpHeaders": [ { - "name": "267", - "value": "268" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": "269", - "host": "270" + "port": 1182477686, + "host": "252" }, - "initialDelaySeconds": -1961863213, - "timeoutSeconds": -103588794, - "periodSeconds": -1045704964, - "successThreshold": 1089147958, - "failureThreshold": -1273036797 + "initialDelaySeconds": -503805926, + "timeoutSeconds": 77312514, + "periodSeconds": -763687725, + "successThreshold": -246563990, + "failureThreshold": 10098903 }, "readinessProbe": { "exec": { "command": [ - "271" + "253" ] }, "httpGet": { - "path": "272", - "port": 424236719, - "host": "273", + "path": "254", + "port": "255", + "host": "256", + "scheme": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "257", + "value": "258" } ] }, "tcpSocket": { - "port": -648954478, - "host": "276" + "port": "259", + "host": "260" }, - "initialDelaySeconds": 1170649416, - "timeoutSeconds": 893619181, - "periodSeconds": -1891134534, - "successThreshold": -1710454086, - "failureThreshold": 192146389 + "initialDelaySeconds": 932904270, + "timeoutSeconds": 1810980158, + "periodSeconds": 100356493, + "successThreshold": -110792150, + "failureThreshold": 1255258741 }, "lifecycle": { "postStart": { "exec": { "command": [ - "277" + "261" ] }, "httpGet": { - "path": "278", - "port": "279", - "host": "280", - "scheme": "ó瓧嫭塓烀罁胾^拜Ȍzɟ踡", + "path": "262", + "port": -498930176, + "host": "263", + "scheme": " R§耶Ff", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "264", + "value": "265" } ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": "266", + "host": "267" } }, "preStop": { "exec": { "command": [ - "285" + "268" ] }, "httpGet": { - "path": "286", - "port": 1255169591, - "host": "287", - "scheme": "褎weLJèux", + "path": "269", + "port": -331283026, + "host": "270", + "scheme": "ȉ", "httpHeaders": [ { - "name": "288", - "value": "289" + "name": "271", + "value": "272" } ] }, "tcpSocket": { - "port": "290", - "host": "291" + "port": 714088955, + "host": "273" } } }, - "terminationMessagePath": "292", - "terminationMessagePolicy": "ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ", - "imagePullPolicy": "ƻ悖ȩ0Ƹ[", + "terminationMessagePath": "274", + "terminationMessagePolicy": "źȰ?$矡ȶ网棊ʢ=wǕɳ", + "imagePullPolicy": "#yV'WKw(ğ儴Ůĺ}", "securityContext": { "capabilities": { "add": [ - "榌" + "胵輓Ɔ" ], "drop": [ - "髷裎$MVȟ@7飣奺Ȋ" + "" ] }, "privileged": true, "seLinuxOptions": { - "user": "293", - "role": "294", - "type": "295", - "level": "296" + "user": "275", + "role": "276", + "type": "277", + "level": "278" }, "windowsOptions": { - "gmsaCredentialSpecName": "297", - "gmsaCredentialSpec": "298", - "runAsUserName": "299" + "gmsaCredentialSpecName": "279", + "gmsaCredentialSpec": "280", + "runAsUserName": "281" }, - "runAsUser": 4138932295697017546, - "runAsGroup": -1672896055328756812, + "runAsUser": -7735837526010191986, + "runAsGroup": -3460863886200664373, "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "鸫" + "allowPrivilegeEscalation": false, + "procMount": "g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" }, - "tty": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "300", - "image": "301", + "name": "282", + "image": "283", "command": [ - "302" + "284" ], "args": [ - "303" + "285" ], - "workingDir": "304", + "workingDir": "286", "ports": [ { - "name": "305", - "hostPort": 62799871, - "containerPort": -775325416, - "protocol": "t莭琽§ć\\ ïì", - "hostIP": "306" + "name": "287", + "hostPort": -602419938, + "containerPort": 1040396664, + "protocol": "爻ƙt叀碧闳ȩr嚧ʣq埄", + "hostIP": "288" } ], "envFrom": [ { - "prefix": "307", + "prefix": "289", "configMapRef": { - "name": "308", - "optional": false + "name": "290", + "optional": true }, "secretRef": { - "name": "309", - "optional": false + "name": "291", + "optional": true } } ], "env": [ { - "name": "310", - "value": "311", + "name": "292", + "value": "293", "valueFrom": { "fieldRef": { - "apiVersion": "312", - "fieldPath": "313" + "apiVersion": "294", + "fieldPath": "295" }, "resourceFieldRef": { - "containerName": "314", - "resource": "315", - "divisor": "595" + "containerName": "296", + "resource": "297", + "divisor": "340" }, "configMapKeyRef": { - "name": "316", - "key": "317", - "optional": true + "name": "298", + "key": "299", + "optional": false }, "secretKeyRef": { - "name": "318", - "key": "319", - "optional": false + "name": "300", + "key": "301", + "optional": true } } } ], "resources": { "limits": { - "N粕擓ƖHVe熼": "334" + "": "548" }, "requests": { - "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + "ñKJɐ扵Gƚ绤": "879" } }, "volumeMounts": [ { - "name": "320", + "name": "302", "readOnly": true, - "mountPath": "321", - "subPath": "322", - "mountPropagation": "癃8鸖", - "subPathExpr": "323" + "mountPath": "303", + "subPath": "304", + "mountPropagation": "敄lu|", + "subPathExpr": "305" } ], "volumeDevices": [ { - "name": "324", - "devicePath": "325" + "name": "306", + "devicePath": "307" } ], "livenessProbe": { "exec": { "command": [ - "326" + "308" ] }, "httpGet": { - "path": "327", - "port": -1654678802, - "host": "328", - "scheme": "毋", + "path": "309", + "port": "310", + "host": "311", + "scheme": "忊|E剒", "httpHeaders": [ { - "name": "329", - "value": "330" + "name": "312", + "value": "313" } ] }, "tcpSocket": { - "port": 391562775, - "host": "331" + "port": 1004325340, + "host": "314" }, - "initialDelaySeconds": -775511009, - "timeoutSeconds": -832805508, - "periodSeconds": -228822833, - "successThreshold": -970312425, - "failureThreshold": -1213051101 + "initialDelaySeconds": -1313320434, + "timeoutSeconds": 14304392, + "periodSeconds": 465972736, + "successThreshold": -1784617397, + "failureThreshold": 1941923625 }, "readinessProbe": { "exec": { "command": [ - "332" + "315" ] }, "httpGet": { - "path": "333", - "port": -1905643191, - "host": "334", - "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "path": "316", + "port": 432291364, + "host": "317", "httpHeaders": [ { - "name": "335", - "value": "336" + "name": "318", + "value": "319" } ] }, "tcpSocket": { - "port": "337", - "host": "338" + "port": "320", + "host": "321" }, - "initialDelaySeconds": 852780575, - "timeoutSeconds": -1252938503, - "periodSeconds": 893823156, - "successThreshold": -1980314709, - "failureThreshold": 571739592 + "initialDelaySeconds": -677617960, + "timeoutSeconds": 383015301, + "periodSeconds": -1717997927, + "successThreshold": 1533365989, + "failureThreshold": 656200799 }, "lifecycle": { "postStart": { "exec": { "command": [ - "339" + "322" ] }, "httpGet": { - "path": "340", - "port": 376404581, - "host": "341", - "scheme": "1ØœȠƬQg鄠", + "path": "323", + "port": "324", + "host": "325", + "scheme": "%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄", "httpHeaders": [ { - "name": "342", - "value": "343" + "name": "326", + "value": "327" } ] }, "tcpSocket": { - "port": 1102291854, - "host": "344" + "port": "328", + "host": "329" } }, "preStop": { "exec": { "command": [ - "345" + "330" ] }, "httpGet": { - "path": "346", - "port": 809006670, - "host": "347", - "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", + "path": "331", + "port": "332", + "host": "333", + "scheme": "锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "334", + "value": "335" } ] }, "tcpSocket": { - "port": -1748648882, - "host": "350" + "port": 1315054653, + "host": "336" } } }, - "terminationMessagePath": "351", - "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", - "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "terminationMessagePath": "337", + "terminationMessagePolicy": "蚃ɣľ)酊龨δ摖ȱ", + "imagePullPolicy": "冓鍓贯", "securityContext": { "capabilities": { "add": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ƺ蛜6Ɖ飴ɎiǨź" ], "drop": [ - "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" + "ǵɐ鰥Z" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "352", - "role": "353", - "type": "354", - "level": "355" + "user": "338", + "role": "339", + "type": "340", + "level": "341" }, "windowsOptions": { - "gmsaCredentialSpecName": "356", - "gmsaCredentialSpec": "357", - "runAsUserName": "358" + "gmsaCredentialSpecName": "342", + "gmsaCredentialSpec": "343", + "runAsUserName": "344" }, - "runAsUser": -3342656999442156006, - "runAsGroup": -5569844914519516591, - "runAsNonRoot": true, + "runAsUser": -500234369132816308, + "runAsGroup": 1006111877741141889, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ" + "allowPrivilegeEscalation": true, + "procMount": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²" }, + "stdin": true, + "stdinOnce": true, "tty": true, - "targetContainerName": "359" + "targetContainerName": "345" } ], - "restartPolicy": "輂,ŕĪĠM蘇KŅ/»頸", - "terminationGracePeriodSeconds": 877160958076533931, - "activeDeadlineSeconds": 5648116728415793349, - "dnsPolicy": "¸gĩ", + "restartPolicy": "ǦŐnj汰8ŕİi騎C\"", + "terminationGracePeriodSeconds": 2582126978155733738, + "activeDeadlineSeconds": 3168496047243051519, + "dnsPolicy": "Ǒ", "nodeSelector": { - "360": "361" + "346": "347" }, - "serviceAccountName": "362", - "serviceAccount": "363", - "automountServiceAccountToken": true, - "nodeName": "364", + "serviceAccountName": "348", + "serviceAccount": "349", + "automountServiceAccountToken": false, + "nodeName": "350", + "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "365", - "role": "366", - "type": "367", - "level": "368" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "369", - "gmsaCredentialSpec": "370", - "runAsUserName": "371" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 4912549079266037151, - "runAsGroup": -8467189055144615123, - "runAsNonRoot": false, + "runAsUser": 4608737617101049023, + "runAsGroup": 3557544419897236324, + "runAsNonRoot": true, "supplementalGroups": [ - -7758217742974482282 + 5014869561632118364 ], - "fsGroup": -1656129410837620707, + "fsGroup": -1335795712555820375, "sysctls": [ { - "name": "372", - "value": "373" + "name": "358", + "value": "359" } ] }, "imagePullSecrets": [ { - "name": "374" + "name": "360" } ], - "hostname": "375", - "subdomain": "376", + "hostname": "361", + "subdomain": "362", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1130,19 +1137,19 @@ { "matchExpressions": [ { - "key": "377", - "operator": ":顇ə娯Ȱ囌", + "key": "363", + "operator": "", "values": [ - "378" + "364" ] } ], "matchFields": [ { - "key": "379", - "operator": "鰥Z龏´DÒȗ", + "key": "365", + "operator": "{WOŭW灬pȭCV擭銆jʒǚ鍰", "values": [ - "380" + "366" ] } ] @@ -1151,23 +1158,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -708413798, + "weight": -1330095135, "preference": { "matchExpressions": [ { - "key": "381", - "operator": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "key": "367", + "operator": "撑¼蠾8餑噭", "values": [ - "382" + "368" ] } ], "matchFields": [ { - "key": "383", - "operator": "3", + "key": "369", + "operator": "ɪǹ0衷,ƷƣMț譎懚XW疪鑳w", "values": [ - "384" + "370" ] } ] @@ -1180,46 +1187,43 @@ { "labelSelector": { "matchLabels": { - "gT7_7B_D-..-.k4uz": "J--_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sI" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "1/M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o7", + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "operator": "NotIn", "values": [ - "SA995IKCR.s--fe" + "z" ] } ] }, "namespaces": [ - "391" + "377" ], - "topologyKey": "392" + "topologyKey": "378" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1661550048, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-539.0--z-o-3bz6-2/X._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_3": "d-_H-.___._D8.TS-jJ.Ys_Mop34_-y8" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "p--3a-cgr6---r58-e-l203-8sln7-3x-b--55039780bdw0-1-47rrw8-5tn.0-1y-tw/G_65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..8n.--zr", - "operator": "In", - "values": [ - "S2--_v2.5p_..Y-.wg_-b8a6" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "399" + "385" ], - "topologyKey": "400" + "topologyKey": "386" } } ] @@ -1229,106 +1233,109 @@ { "labelSelector": { "matchLabels": { - "p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c": "b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C", + "key": "QZ9p_6.C.e", "operator": "DoesNotExist" } ] }, "namespaces": [ - "407" + "393" ], - "topologyKey": "408" + "topologyKey": "394" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1675320961, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC_1Q": "V_T3sn-0_.i__a.O2G_-_K-.03.p" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "3-.z", + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "operator": "NotIn", "values": [ - "S-.._Lf2t_8" + "txb__-ex-_1_-ODgC_1-_V" ] } ] }, "namespaces": [ - "415" + "401" ], - "topologyKey": "416" + "topologyKey": "402" } } ] } }, - "schedulerName": "417", + "schedulerName": "403", "tolerations": [ { - "key": "418", - "operator": "n", - "value": "419", - "effect": "ʀŖ鱓", - "tolerationSeconds": -2817829995132015826 + "key": "404", + "operator": "堺ʣ", + "value": "405", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "420", + "ip": "406", "hostnames": [ - "421" + "407" ] } ], - "priorityClassName": "422", - "priority": -1727081143, + "priorityClassName": "408", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "423" + "409" ], "searches": [ - "424" + "410" ], "options": [ { - "name": "425", - "value": "426" + "name": "411", + "value": "412" } ] }, "readinessGates": [ { - "conditionType": "ŋŏ}ŀ姳Ŭ尌eáNRNJ丧鴻ĿW癜鞤" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "427", - "enableServiceLinks": true, - "preemptionPolicy": "z芀¿l磶Bb偃礳Ȭ痍脉PPö", + "runtimeClassName": "413", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "镳餘ŁƁ翂|C ɩ繞": "442" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -899509541, - "topologyKey": "428", - "whenUnsatisfiable": "ƴ磳藷曥摮Z Ǐg鲅", + "maxSkew": -150478704, + "topologyKey": "414", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "nt-23h-4z-21-sap--h--q0h-t2n4s-6-5/Q1-wv3UDf.-4D-r.-F__r.o7": "lR__8-7_-YD-Q9_-__..YNFu7Pg-.814i" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "39-A_-_l67Q.-_r", - "operator": "Exists" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1336,7 +1343,7 @@ ] } }, - "ttlSecondsAfterFinished": 952328575 + "ttlSecondsAfterFinished": 920774957 } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb index 89853f8b3a1cf2e8e81ada954ccc49881ce26607..f328e17ff2de8bb6bbaa7e955ed50dd56fd6f216 100644 GIT binary patch literal 6106 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 literal 6281 zcmY*7Ygkm*wQ~j=?MZ5;Cy!32X*-$5gplmxIeVX{NgG8>3?@WDt)-6>P{iO10Y$m( z{QyN2L=@#AB8Vt&0RaKUN5ec|_)?R!O`6u;<}){E9!b+CX?ts88t>X?NWXM`tl4Mn zz1Lpvz1H5S<=fbAvvV^u3f69zzXNA%%H5D5a(54CWZ( zVk8eECwP2i(Y8uo&$i@Hb47+0X{~zE*BNZ!BMtqEuX43{dMpdyD=NAoVOdZmjcAIj z2$<;F^}m$9QBv7dlACB-es@u7+=J0W73R^3XxlM=Gg@Uf4SPp3 z<_C}dB6PSUK6IhpxA&(&O-*pHb78s0&0+6=f1R^&CG*)~hP7jfvt!w1$BM^})r46; zi&VDZdqhFUGEs=As0xt29ggJ0E!A^+4Xtq2%QHtzD ztzaI4jlg4~IaIb&nwJ42^cd%o5aV1Df%8c;XHQuq{Ml{zF^;NzdwxYnw;AWiL2u>x z;j#1YGoJruv)LbDV`G{w@>%jSWMnDCKn6iu5d0ZrJK_yvxnc0?Dzs{=AsHx1&4bU3 z%?gr?A1*=0N^aiTbqMpYdWn&?!!WS2Y>km>@Q6<-*uWbIr5RGvqRrerY+T-!JnpWf zty%dgTML%#d?~*mp23G6Xa5HJl|dykSX3q+yDTMqZ{c*s^pQw+O^&($&?9DF+q0p{ zsuZ(v$TvDwAFK#fonKi9E(AYW(liMRx*~%5Wl_@JEbEHC@#_B$y~}_Bx_q@KZdZNq z+m9J)0a<}VRB8cPgOQ%2vUWvu*%j=Wmk}Ntiu6?m`y#Cu&C1JxhHdlx7u?$;t%FZa zTn(3>nXEIsoe6eD0Pg}*D5S`)NEM6*6lCs!NXdBg;F;-`Cm#w8mjy4VKQS*I@HU%c z7bAzpfW8tlkD|uRqiA5B`UJLaHfvW!u6j0vm|ex(H+&u8bM4*{v%Y%z@DI$hZHuSt z!nM6Sxo@%#|4HANzdv;0ShTa@VY9ZG`wAN;tE$TZI|*l3C8zJBu1j{e&2t}MWWXrS ze@zaakJ;SKB-{mP70{Z?uIl(<)~*R)6T1eA*RZqV#+iT3xJTKZ4m0L7Ze{@sD}cNv zIhn-yFb2Y!;%u*&`r9X#GkNTqnqb#7!M4Dz=?iVCvsk+>tYI?kx|j@`b;XU$=%gqKwj#P;r29pslzEb!Pd`=8!fF(&yS@%6 zObK9-9!s$5e*cv}y?N6T)X~(`-4atv1@i!1i5=zpssonR7&s6Uw=Dtwq#EWfI!%wl zij!$%9%d;MSmo}cfAlb{J8zV}aXGfv`5W)czB}B^Ddt|7CzJs~B_LD+Lb{o6QM5$S zGDr)5N&)~C1JDK;LT7cDl?2yZU;7fXvVKYEYO`6=Ai`Qngcx%~&JIkDMJ``l_-N$F zkXhewk)d)+RK*gRu=tg!I%UntOfx*p$&{iZSn5|qOELvxK#>Iiq(lI6G5}>c^K0fX z!|r3)Z&_kW66c__srZuOywy_cv%48iv=lDI6fRL6NHK-WR9@LqxTs0)&i1PnGb(jk z^ki(QO(t}iz{_U>RLcNrAvmv2YmNdGG}Z5Bv>- zcmQH7%RAwxLv9T;W8PCkOLcdj~Eisu*U>}@5yDmD|x*#%KR=8y0R9*f=k9TCc z&sY4Uw=3LyWx6u%PBvV0y-{Y!t6Jrrv4no8|nV{$O{U`(j7)r!h9-FV+se7PG7H z#_wMJab_>W{w#K&$}Oe`YTOq>sMI$!!Q=K0g^zTYJ!j3H`OHs#(rFs%|f;cwIAT_i}s90+73SS{OYNe zg=(~|%{+5)ssf?_!U*e>7hM8@bQyd>SKQNYv>yq#G>z%;HmE+Bg~Pv#y#3y#o_8Zm za$Iz*C-rW+iyBsk_`-Sf%Kj&R43y1U~2H#$H0ZTbFlDflZBW7)ngxU}Mk0tz9Dm;*fExo)TmV!L0L{^I{FOhv+%r~}{lVOu2y7 zSQnjDxw#9Xt>wXEW@rD@fO-4?-KlZboX*XS4xCAkUa6iKPV&}F)x#Xz*J*PaKRDJG z^JDI5Rt7TQR*wcxMSH8ld+QP-6=x$A=O((t4Xu%u_TTn|x zC?>Ai=bYSgJsgWr?w59U$j+8C?Akn}V-+DNOE+q0Ek+38tb+9$Bynv9DnfELE?m16 zYk*#lWTFFyfZd8nW|4yM{58OfjF$2%DWm*KwAx5A1hmXpgbdwCHx~1}y44_@dmS>C z(t;R7P15+4X(%U||53j2{MK9omGLf(YiHOpCKn-+f!1c{DR5k#tf4Hl2@3>i`J1+= zi0nj}2+6WQbX5~F*A)s#M3S19SEwPmU<+_2?m`8H^Pe#kd9!ASNaS^@|L5~nqkvy- z5T0Mk^BeW&HHFtR3?x9Qoo*Px^7C;f3K?j?Wl9p?vpfsL;0VSsM zyaN2Bp+vBDrnr`i&opw;E_U`NgcMmvNZ5p+{mX>YHsLH8)V5LH0Xjq|i&_Z_`4YcfrFt#e zj5h5gf>4MGauAU@N1l>=QEHwPJ(HD?HkT@+Ig`mv1$mBfzt2ydd#g3ZXUHDQcSw zc4mUNXYE9WXrLF8vKJfT3hsf`#!8aE1qlZKl3`@eS7U4v?p=5G;#4gi75bLN{?qB;~Oi8}i|*7d0On72J;vN3v~KQNNIZTq69 z!p(#J(`NBGT4%r|#c}Lc{TCy{T{+?6{S>EQF&UDas4G?l23-J*p$!O*U>NABCm1&0 zx;dZ)NCgrC;ph#1^Yik5d}`GI*0m@|o=3w+FNR76CJ%(FPim94$zV^Q>Q^Akbt^U|~&cO9|Ut`=;k^l40j(@l0*XL)7k<+)T zewx|FuxqTd;YH*7a5gkBR5kmC8a|AbPL^s!&2w*L^vcf{J{27;%bXfddCb2z)P61@ z#sjUqu<#`wFfB|l=AN-AW5PWKl;OSOi!ukEJ>XmM%n9|3WlbOTS6FnQodK){O%tuZ zemn5_AMKVRv7Q4}vyc}TDeEmNV&}0o?!n;x=)qC5sw;Bh%F<}d1+%}`?CkaShmTwe zA1KBPydyJ32)v8HUJS<(0!0Xs+48WFBN83^k6~LW5HG%$_dx*G11AiSK*!kLRae_kR2qW3^H6_yD1c#R-U7jHj4j z_xM!IX1`|c2NIxA0Fn#J1$geFW92P|d53v~o#(IgSO3CaY<3L!d(D9ZS>D!^)X9o> z$2y|JJ^Pn0 z_l}g>zr)@atsRP2BhE(2yGKKpaQ%_%0~*4 z=dTb^;SRDYX+4jmB$UUarwt>Ihs*rIO{s>VLC!=!N(fHVYRr-PRo+8Jpl?y==;`^vvEV^>>O@DRc*I(&Y01!r5-iXpNHFy31mlF+ z;bXhC=vWfQt9a0@({HM9ro!lShoTQo2U1m?dRKtdpW z5CRqVE3enZIY0S*pgVS+d-(On?zs4#`s=U8$O}`)Upr*a9Awy(7#li=fem=+qh>>Fzk%96Uaq1D!*2h}RYd7nz zd|?*A%R&wSG0){Y5~G_Q>K4x9b(P}vvg4UB{ax~4jx zRHAzZ!UIDS1HSRemX{t5H=copi}pA4ZGphs0sslzOP1Y@e?I>4u-S6$btaynPs$5l zA3j%n^P^k8A7ql}O|(ZFTFjFEWOMhBdF4!KbVv$SkE4fzm){+0@z(E*9<2_x&^$}v z9Tfo7Bv66f-RJj%fYRR9Bwa*fHI<&1~6Y季Cʖ畬x骀Šĸů + name: "40" + namespace: "42" ownerReferences: - - apiVersion: "60" + - apiVersion: "49" blockOwnerDeletion: false controller: false - kind: "61" - name: "62" - uid: a縳讋ɮ衺勽Ƙq/Ź u衲<¿燥ǖ_è - resourceVersion: "11115488420961080514" - selfLink: "54" - uid: '@ʊʓ誒j剐''宣I拍N嚳ķȗɊ捵Tw' + kind: "50" + name: "51" + uid: I拍N嚳ķȗɊ捵TwMȗ礼 + resourceVersion: "5994087412557504692" + selfLink: "43" + uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: 5648116728415793349 + activeDeadlineSeconds: 3168496047243051519 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "381" - operator: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ + - key: "367" + operator: 撑¼蠾8餑噭 values: - - "382" + - "368" matchFields: - - key: "383" - operator: "3" + - key: "369" + operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w values: - - "384" - weight: -708413798 + - "370" + weight: -1330095135 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "377" - operator: :顇ə娯Ȱ囌 + - key: "363" + operator: "" values: - - "378" + - "364" matchFields: - - key: "379" - operator: 鰥Z龏´DÒȗ + - key: "365" + operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' values: - - "380" + - "366" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p--3a-cgr6---r58-e-l203-8sln7-3x-b--55039780bdw0-1-47rrw8-5tn.0-1y-tw/G_65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..8n.--zr - operator: In - values: - - S2--_v2.5p_..Y-.wg_-b8a6 + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-539.0--z-o-3bz6-2/X._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_3: d-_H-.___._D8.TS-jJ.Ys_Mop34_-y8 + 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP namespaces: - - "399" - topologyKey: "400" - weight: -1661550048 + - "385" + topologyKey: "386" + weight: -217760519 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1/M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o7 + - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 operator: NotIn values: - - SA995IKCR.s--fe + - z matchLabels: - gT7_7B_D-..-.k4uz: J--_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sI + 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r namespaces: - - "391" - topologyKey: "392" + - "377" + topologyKey: "378" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3-.z + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D operator: NotIn values: - - S-.._Lf2t_8 + - txb__-ex-_1_-ODgC_1-_V matchLabels: - 52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC_1Q: V_T3sn-0_.i__a.O2G_-_K-.03.p + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "415" - topologyKey: "416" - weight: -1675320961 + - "401" + topologyKey: "402" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C + - key: QZ9p_6.C.e operator: DoesNotExist matchLabels: - p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c: b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "407" - topologyKey: "408" - automountServiceAccountToken: true + - "393" + topologyKey: "394" + automountServiceAccountToken: false containers: - args: - - "241" + - "224" command: - - "240" + - "223" env: - - name: "248" - value: "249" + - name: "231" + value: "232" valueFrom: configMapKeyRef: - key: "255" - name: "254" - optional: true + key: "238" + name: "237" + optional: false fieldRef: - apiVersion: "250" - fieldPath: "251" + apiVersion: "233" + fieldPath: "234" resourceFieldRef: - containerName: "252" - divisor: "117" - resource: "253" + containerName: "235" + divisor: "103" + resource: "236" secretKeyRef: - key: "257" - name: "256" + key: "240" + name: "239" optional: false envFrom: - configMapRef: - name: "246" - optional: false - prefix: "245" - secretRef: - name: "247" + name: "229" optional: true - image: "239" - imagePullPolicy: ƻ悖ȩ0Ƹ[ - lifecycle: - postStart: - exec: - command: - - "277" - httpGet: - host: "280" - httpHeaders: - - name: "281" - value: "282" - path: "278" - port: "279" - scheme: ó瓧嫭塓烀罁胾^拜Ȍzɟ踡 - tcpSocket: - host: "284" - port: "283" - preStop: - exec: - command: - - "285" - httpGet: - host: "287" - httpHeaders: - - name: "288" - value: "289" - path: "286" - port: 1255169591 - scheme: 褎weLJèux - tcpSocket: - host: "291" - port: "290" - livenessProbe: - exec: - command: - - "264" - failureThreshold: -1273036797 - httpGet: - host: "266" - httpHeaders: - - name: "267" - value: "268" - path: "265" - port: 1923650413 - scheme: I粛E煹ǐƲE'iþŹʣy - initialDelaySeconds: -1961863213 - periodSeconds: -1045704964 - successThreshold: 1089147958 - tcpSocket: - host: "270" - port: "269" - timeoutSeconds: -103588794 - name: "238" - ports: - - containerPort: 32378685 - hostIP: "244" - hostPort: -1872407654 - name: "243" - protocol: ş蝿ɖȃ賲鐅臬 - readinessProbe: - exec: - command: - - "271" - failureThreshold: 192146389 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 424236719 - initialDelaySeconds: 1170649416 - periodSeconds: -1891134534 - successThreshold: -1710454086 - tcpSocket: - host: "276" - port: -648954478 - timeoutSeconds: 893619181 - resources: - limits: - ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN: "197" - requests: - 軶ǃ*ʙ嫙&蒒5靇: "813" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - 榌 - drop: - - 髷裎$MVȟ@7飣奺Ȋ - privileged: true - procMount: 鸫 - readOnlyRootFilesystem: true - runAsGroup: -1672896055328756812 - runAsNonRoot: false - runAsUser: 4138932295697017546 - seLinuxOptions: - level: "296" - role: "294" - type: "295" - user: "293" - windowsOptions: - gmsaCredentialSpec: "298" - gmsaCredentialSpecName: "297" - runAsUserName: "299" - terminationMessagePath: "292" - terminationMessagePolicy: ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ - tty: true - volumeDevices: - - devicePath: "263" - name: "262" - volumeMounts: - - mountPath: "259" - mountPropagation: ǹ_Áȉ彂Ŵ廷s - name: "258" - subPath: "260" - subPathExpr: "261" - workingDir: "242" - dnsConfig: - nameservers: - - "423" - options: - - name: "425" - value: "426" - searches: - - "424" - dnsPolicy: ¸gĩ - enableServiceLinks: true - ephemeralContainers: - - args: - - "303" - command: - - "302" - env: - - name: "310" - value: "311" - valueFrom: - configMapKeyRef: - key: "317" - name: "316" - optional: true - fieldRef: - apiVersion: "312" - fieldPath: "313" - resourceFieldRef: - containerName: "314" - divisor: "595" - resource: "315" - secretKeyRef: - key: "319" - name: "318" - optional: false - envFrom: - - configMapRef: - name: "308" - optional: false - prefix: "307" + prefix: "228" secretRef: - name: "309" - optional: false - image: "301" - imagePullPolicy: ē鐭#嬀ơŸ8T 苧yñKJɐ + name: "230" + optional: true + image: "222" + imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}' lifecycle: postStart: exec: command: - - "339" + - "261" httpGet: - host: "341" + host: "263" httpHeaders: - - name: "342" - value: "343" - path: "340" - port: 376404581 - scheme: 1ØœȠƬQg鄠 + - name: "264" + value: "265" + path: "262" + port: -498930176 + scheme: ' R§耶Ff' tcpSocket: - host: "344" - port: 1102291854 + host: "267" + port: "266" preStop: exec: command: - - "345" + - "268" httpGet: - host: "347" + host: "270" httpHeaders: - - name: "348" - value: "349" - path: "346" - port: 809006670 - scheme: 扴ȨŮ+朷Ǝ膯ljVX1虊谇 + - name: "271" + value: "272" + path: "269" + port: -331283026 + scheme: ȉ tcpSocket: - host: "350" - port: -1748648882 + host: "273" + port: 714088955 livenessProbe: exec: command: - - "326" - failureThreshold: -1213051101 + - "247" + failureThreshold: 10098903 httpGet: - host: "328" + host: "249" httpHeaders: - - name: "329" - value: "330" - path: "327" - port: -1654678802 - scheme: 毋 - initialDelaySeconds: -775511009 - periodSeconds: -228822833 - successThreshold: -970312425 + - name: "250" + value: "251" + path: "248" + port: -1821078703 + scheme: 萨zvt + initialDelaySeconds: -503805926 + periodSeconds: -763687725 + successThreshold: -246563990 tcpSocket: - host: "331" - port: 391562775 - timeoutSeconds: -832805508 - name: "300" + host: "252" + port: 1182477686 + timeoutSeconds: 77312514 + name: "221" ports: - - containerPort: -775325416 - hostIP: "306" - hostPort: 62799871 - name: "305" - protocol: t莭琽§ć\ ïì + - containerPort: 1024248645 + hostIP: "227" + hostPort: -321513994 + name: "226" + protocol: 籘Àǒɿʒ刽ʼn readinessProbe: exec: command: - - "332" - failureThreshold: 571739592 + - "253" + failureThreshold: 1255258741 httpGet: - host: "334" + host: "256" httpHeaders: - - name: "335" - value: "336" - path: "333" - port: -1905643191 - scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 - initialDelaySeconds: 852780575 - periodSeconds: 893823156 - successThreshold: -1980314709 + - name: "257" + value: "258" + path: "254" + port: "255" + scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + initialDelaySeconds: 932904270 + periodSeconds: 100356493 + successThreshold: -110792150 tcpSocket: - host: "338" - port: "337" - timeoutSeconds: -1252938503 + host: "260" + port: "259" + timeoutSeconds: 1810980158 resources: limits: - N粕擓ƖHVe熼: "334" + x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861" requests: - 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" + 悖ȩ0Ƹ[Ęİ榌U: "396" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 + - 胵輓Ɔ drop: - - 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥 - privileged: false - procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ + - "" + privileged: true + procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj readOnlyRootFilesystem: true - runAsGroup: -5569844914519516591 - runAsNonRoot: true - runAsUser: -3342656999442156006 + runAsGroup: -3460863886200664373 + runAsNonRoot: false + runAsUser: -7735837526010191986 seLinuxOptions: - level: "355" - role: "353" - type: "354" - user: "352" + level: "278" + role: "276" + type: "277" + user: "275" windowsOptions: - gmsaCredentialSpec: "357" - gmsaCredentialSpecName: "356" - runAsUserName: "358" - targetContainerName: "359" - terminationMessagePath: "351" - terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 - tty: true + gmsaCredentialSpec: "280" + gmsaCredentialSpecName: "279" + runAsUserName: "281" + stdin: true + terminationMessagePath: "274" + terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ volumeDevices: - - devicePath: "325" - name: "324" + - devicePath: "246" + name: "245" volumeMounts: - - mountPath: "321" - mountPropagation: 癃8鸖 - name: "320" + - mountPath: "242" + mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' + name: "241" readOnly: true - subPath: "322" - subPathExpr: "323" - workingDir: "304" - hostAliases: - - hostnames: - - "421" - ip: "420" - hostIPC: true - hostname: "375" - imagePullSecrets: - - name: "374" - initContainers: + subPath: "243" + subPathExpr: "244" + workingDir: "225" + dnsConfig: + nameservers: + - "409" + options: + - name: "411" + value: "412" + searches: + - "410" + dnsPolicy: Ǒ + enableServiceLinks: false + ephemeralContainers: - args: - - "179" + - "285" command: - - "178" + - "284" env: - - name: "186" - value: "187" + - name: "292" + value: "293" valueFrom: configMapKeyRef: - key: "193" - name: "192" + key: "299" + name: "298" optional: false fieldRef: - apiVersion: "188" - fieldPath: "189" + apiVersion: "294" + fieldPath: "295" resourceFieldRef: - containerName: "190" - divisor: "980" - resource: "191" + containerName: "296" + divisor: "340" + resource: "297" secretKeyRef: - key: "195" - name: "194" + key: "301" + name: "300" optional: true envFrom: - configMapRef: - name: "184" + name: "290" optional: true - prefix: "183" + prefix: "289" secretRef: - name: "185" - optional: false - image: "177" - imagePullPolicy: 腬 + name: "291" + optional: true + image: "283" + imagePullPolicy: 冓鍓贯 lifecycle: postStart: exec: command: - - "216" + - "322" httpGet: - host: "218" + host: "325" httpHeaders: - - name: "219" - value: "220" - path: "217" - port: -33154680 - scheme: 跾|@?鷅bȻN+ņ榱* + - name: "326" + value: "327" + path: "323" + port: "324" + scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' tcpSocket: - host: "222" - port: "221" + host: "329" + port: "328" preStop: exec: command: - - "223" + - "330" httpGet: - host: "226" + host: "333" httpHeaders: - - name: "227" - value: "228" - path: "224" - port: "225" - scheme: 櫸eʔŊ + - name: "334" + value: "335" + path: "331" + port: "332" + scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 tcpSocket: - host: "229" - port: 731879508 + host: "336" + port: 1315054653 livenessProbe: exec: command: - - "202" - failureThreshold: -532628939 + - "308" + failureThreshold: 1941923625 httpGet: - host: "204" + host: "311" httpHeaders: - - name: "205" - value: "206" - path: "203" - port: -1365115016 - scheme: 町恰nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶.蒅 - initialDelaySeconds: 1971383046 - periodSeconds: -1376537100 - successThreshold: 1100645882 + - name: "312" + value: "313" + path: "309" + port: "310" + scheme: 忊|E剒 + initialDelaySeconds: -1313320434 + periodSeconds: 465972736 + successThreshold: -1784617397 tcpSocket: - host: "207" - port: -1105572246 - timeoutSeconds: 1154560741 - name: "176" + host: "314" + port: 1004325340 + timeoutSeconds: 14304392 + name: "282" ports: - - containerPort: -1629040033 - hostIP: "182" - hostPort: -958191807 - name: "181" - protocol: ʜǝ鿟ldg滠鼍ƭt + - containerPort: 1040396664 + hostIP: "288" + hostPort: -602419938 + name: "287" + protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 readinessProbe: exec: command: - - "208" - failureThreshold: 195263908 + - "315" + failureThreshold: 656200799 httpGet: - host: "211" + host: "317" httpHeaders: - - name: "212" - value: "213" - path: "209" - port: "210" - scheme: '%:;栍dʪīT捘ɍi' - initialDelaySeconds: -1510026905 - periodSeconds: 2025698376 - successThreshold: -1766555420 + - name: "318" + value: "319" + path: "316" + port: 432291364 + initialDelaySeconds: -677617960 + periodSeconds: -1717997927 + successThreshold: 1533365989 tcpSocket: - host: "215" - port: "214" - timeoutSeconds: 437857734 + host: "321" + port: "320" + timeoutSeconds: 383015301 resources: limits: - )ÙæNǚ錯ƶRquA?瞲Ť倱: "289" + "": "548" requests: - ź贩j瀉: "621" + ñKJɐ扵Gƚ绤: "879" securityContext: allowPrivilegeEscalation: true capabilities: add: - - "" + - ƺ蛜6Ɖ飴ɎiǨź drop: - - ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö + - ǵɐ鰥Z privileged: true - procMount: 珝Żwʮ馜ü + procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² readOnlyRootFilesystem: true - runAsGroup: 285495246564691952 + runAsGroup: 1006111877741141889 runAsNonRoot: false - runAsUser: -7433417845068148860 + runAsUser: -500234369132816308 seLinuxOptions: - level: "234" - role: "232" - type: "233" - user: "231" + level: "341" + role: "339" + type: "340" + user: "338" windowsOptions: - gmsaCredentialSpec: "236" - gmsaCredentialSpecName: "235" - runAsUserName: "237" + gmsaCredentialSpec: "343" + gmsaCredentialSpecName: "342" + runAsUserName: "344" stdin: true - terminationMessagePath: "230" - terminationMessagePolicy: hoĂɋ + stdinOnce: true + targetContainerName: "345" + terminationMessagePath: "337" + terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ tty: true volumeDevices: - - devicePath: "201" - name: "200" + - devicePath: "307" + name: "306" volumeMounts: - - mountPath: "197" - mountPropagation: ɶ - name: "196" + - mountPath: "303" + mountPropagation: 敄lu| + name: "302" readOnly: true - subPath: "198" - subPathExpr: "199" - workingDir: "180" - nodeName: "364" + subPath: "304" + subPathExpr: "305" + workingDir: "286" + hostAliases: + - hostnames: + - "407" + ip: "406" + hostIPC: true + hostPID: true + hostname: "361" + imagePullSecrets: + - name: "360" + initContainers: + - args: + - "164" + command: + - "163" + env: + - name: "171" + value: "172" + valueFrom: + configMapKeyRef: + key: "178" + name: "177" + optional: false + fieldRef: + apiVersion: "173" + fieldPath: "174" + resourceFieldRef: + containerName: "175" + divisor: "618" + resource: "176" + secretKeyRef: + key: "180" + name: "179" + optional: false + envFrom: + - configMapRef: + name: "169" + optional: false + prefix: "168" + secretRef: + name: "170" + optional: true + image: "162" + imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 + lifecycle: + postStart: + exec: + command: + - "199" + httpGet: + host: "202" + httpHeaders: + - name: "203" + value: "204" + path: "200" + port: "201" + scheme: Ɖ立hdz緄Ú|dk_瀹鞎 + tcpSocket: + host: "205" + port: 1150375229 + preStop: + exec: + command: + - "206" + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "207" + port: "208" + scheme: '鲡:' + tcpSocket: + host: "212" + port: -2037320199 + livenessProbe: + exec: + command: + - "187" + failureThreshold: -559252309 + httpGet: + host: "189" + httpHeaders: + - name: "190" + value: "191" + path: "188" + port: -575512248 + scheme: ɨ銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + initialDelaySeconds: -1846991380 + periodSeconds: -1398498492 + successThreshold: -2035009296 + tcpSocket: + host: "192" + port: 1180382332 + timeoutSeconds: 325236550 + name: "161" + ports: + - containerPort: 38897467 + hostIP: "167" + hostPort: 580681683 + name: "166" + protocol: h0åȂ町恰nj揠 + readinessProbe: + exec: + command: + - "193" + failureThreshold: 1427781619 + httpGet: + host: "195" + httpHeaders: + - name: "196" + value: "197" + path: "194" + port: 1403721475 + scheme: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 + initialDelaySeconds: -1327537699 + periodSeconds: -1941847253 + successThreshold: 1596028039 + tcpSocket: + host: "198" + port: -2064174383 + timeoutSeconds: 483512911 + resources: + limits: + 缶.蒅!a坩O`涁İ而踪鄌eÞȦY籎顒: "45" + requests: + T捘ɍi縱ù墴: "848" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - '''ɵK.Q貇£ȹ嫰ƹǔw÷' + drop: + - I粛E煹ǐƲE'iþŹʣy + privileged: false + procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ + readOnlyRootFilesystem: true + runAsGroup: -4491268618106522555 + runAsNonRoot: true + runAsUser: -3150075726777852858 + seLinuxOptions: + level: "217" + role: "215" + type: "216" + user: "214" + windowsOptions: + gmsaCredentialSpec: "219" + gmsaCredentialSpecName: "218" + runAsUserName: "220" + stdinOnce: true + terminationMessagePath: "213" + terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' + tty: true + volumeDevices: + - devicePath: "186" + name: "185" + volumeMounts: + - mountPath: "182" + mountPropagation: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° + name: "181" + readOnly: true + subPath: "183" + subPathExpr: "184" + workingDir: "165" + nodeName: "350" nodeSelector: - "360": "361" + "346": "347" overhead: - 镳餘ŁƁ翂|C ɩ繞: "442" - preemptionPolicy: z芀¿l磶Bb偃礳Ȭ痍脉PPö - priority: -1727081143 - priorityClassName: "422" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "408" readinessGates: - - conditionType: ŋŏ}ŀ姳Ŭ尌eáNRNJ丧鴻ĿW癜鞤 - restartPolicy: 輂,ŕĪĠM蘇KŅ/»頸 - runtimeClassName: "427" - schedulerName: "417" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ǦŐnj汰8ŕİi騎C" + runtimeClassName: "413" + schedulerName: "403" securityContext: - fsGroup: -1656129410837620707 - runAsGroup: -8467189055144615123 - runAsNonRoot: false - runAsUser: 4912549079266037151 + fsGroup: -1335795712555820375 + runAsGroup: 3557544419897236324 + runAsNonRoot: true + runAsUser: 4608737617101049023 seLinuxOptions: - level: "368" - role: "366" - type: "367" - user: "365" + level: "354" + role: "352" + type: "353" + user: "351" supplementalGroups: - - -7758217742974482282 + - 5014869561632118364 sysctls: - - name: "372" - value: "373" + - name: "358" + value: "359" windowsOptions: - gmsaCredentialSpec: "370" - gmsaCredentialSpecName: "369" - runAsUserName: "371" - serviceAccount: "363" - serviceAccountName: "362" - shareProcessNamespace: true - subdomain: "376" - terminationGracePeriodSeconds: 877160958076533931 + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + serviceAccount: "349" + serviceAccountName: "348" + shareProcessNamespace: false + subdomain: "362" + terminationGracePeriodSeconds: 2582126978155733738 tolerations: - - effect: ʀŖ鱓 - key: "418" - operator: "n" - tolerationSeconds: -2817829995132015826 - value: "419" + - effect: ŽɣB矗E¸乾 + key: "404" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "405" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 39-A_-_l67Q.-_r - operator: Exists + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - nt-23h-4z-21-sap--h--q0h-t2n4s-6-5/Q1-wv3UDf.-4D-r.-F__r.o7: lR__8-7_-YD-Q9_-__..YNFu7Pg-.814i - maxSkew: -899509541 - topologyKey: "428" - whenUnsatisfiable: ƴ磳藷曥摮Z Ǐg鲅 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "414" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: - fsType: "76" - partition: -156457987 + fsType: "61" + partition: -104666658 readOnly: true - volumeID: "75" + volumeID: "60" azureDisk: - cachingMode: ĦE勗E濞偘1 - diskName: "139" - diskURI: "140" - fsType: "141" - kind: 議Ǹ轺@)蓳嗘 + cachingMode: ʜǝ鿟ldg滠鼍ƭt + diskName: "124" + diskURI: "125" + fsType: "126" + kind: ȫşŇɜa readOnly: true azureFile: - readOnly: true - secretName: "125" - shareName: "126" + secretName: "110" + shareName: "111" cephfs: monitors: - - "110" - path: "111" - secretFile: "113" + - "95" + path: "96" + secretFile: "98" secretRef: - name: "114" - user: "112" + name: "99" + user: "97" cinder: - fsType: "108" + fsType: "93" + readOnly: true secretRef: - name: "109" - volumeID: "107" + name: "94" + volumeID: "92" configMap: - defaultMode: 1754292691 + defaultMode: -599608368 items: - - key: "128" - mode: -675987103 - path: "129" - name: "127" + - key: "113" + mode: -1194714697 + path: "114" + name: "112" optional: true csi: - driver: "171" - fsType: "172" + driver: "156" + fsType: "157" nodePublishSecretRef: - name: "175" + name: "160" readOnly: true volumeAttributes: - "173": "174" + "158": "159" downwardAPI: - defaultMode: -1008038372 + defaultMode: 1801487647 items: - fieldRef: - apiVersion: "118" - fieldPath: "119" - mode: -1965578645 - path: "117" + apiVersion: "103" + fieldPath: "104" + mode: 1322858613 + path: "102" resourceFieldRef: - containerName: "120" - divisor: "327" - resource: "121" + containerName: "105" + divisor: "889" + resource: "106" emptyDir: - medium: Šĸů湙騘&啞 - sizeLimit: "577" + medium: 踓Ǻǧ湬淊kŪ睴鸏:ɥ³ƞsɁ8^ʥ + sizeLimit: "681" fc: - fsType: "123" - lun: -658258937 + fsType: "108" + lun: 1169718433 targetWWNs: - - "122" + - "107" wwids: - - "124" + - "109" flexVolume: - driver: "102" - fsType: "103" + driver: "87" + fsType: "88" options: - "105": "106" + "90": "91" readOnly: true secretRef: - name: "104" + name: "89" flocker: - datasetName: "115" - datasetUUID: "116" + datasetName: "100" + datasetUUID: "101" gcePersistentDisk: - fsType: "74" - partition: 663386308 - pdName: "73" - gitRepo: - directory: "79" - repository: "77" - revision: "78" - glusterfs: - endpoints: "92" - path: "93" + fsType: "59" + partition: 2065358741 + pdName: "58" readOnly: true + gitRepo: + directory: "64" + repository: "62" + revision: "63" + glusterfs: + endpoints: "77" + path: "78" hostPath: - path: "72" - type: ħ籦ö嗏ʑ>季Cʖ畬x + path: "57" + type: /淹\韲翁&ʢsɜ曢\%枅:=ǛƓ iscsi: chapAuthSession: true - fsType: "88" - initiatorName: "91" - iqn: "86" - iscsiInterface: "87" - lun: -1636694746 + fsType: "73" + initiatorName: "76" + iqn: "71" + iscsiInterface: "72" + lun: -663180249 portals: - - "89" + - "74" + readOnly: true secretRef: - name: "90" - targetPortal: "85" - name: "71" + name: "75" + targetPortal: "70" + name: "56" nfs: - path: "84" - readOnly: true - server: "83" + path: "69" + server: "68" persistentVolumeClaim: - claimName: "94" + claimName: "79" photonPersistentDisk: - fsType: "143" - pdID: "142" + fsType: "128" + pdID: "127" portworxVolume: - fsType: "158" + fsType: "143" readOnly: true - volumeID: "157" + volumeID: "142" projected: - defaultMode: 345648859 + defaultMode: -1980941277 sources: - configMap: items: - - key: "153" - mode: -106644772 - path: "154" - name: "152" + - key: "138" + mode: 1730325900 + path: "139" + name: "137" optional: true downwardAPI: items: - fieldRef: - apiVersion: "148" - fieldPath: "149" - mode: -783297752 - path: "147" + apiVersion: "133" + fieldPath: "134" + mode: -555780268 + path: "132" resourceFieldRef: - containerName: "150" - divisor: "184" - resource: "151" + containerName: "135" + divisor: "952" + resource: "136" secret: items: - - key: "145" - mode: 679825403 - path: "146" - name: "144" + - key: "130" + mode: 782113097 + path: "131" + name: "129" optional: true serviceAccountToken: - audience: "155" - expirationSeconds: 1897892355466772544 - path: "156" + audience: "140" + expirationSeconds: -2937394236764575757 + path: "141" quobyte: - group: "137" - registry: "134" - tenant: "138" - user: "136" - volume: "135" + group: "122" + readOnly: true + registry: "119" + tenant: "123" + user: "121" + volume: "120" rbd: - fsType: "97" - image: "96" - keyring: "100" + fsType: "82" + image: "81" + keyring: "85" monitors: - - "95" - pool: "98" - secretRef: - name: "101" - user: "99" - scaleIO: - fsType: "166" - gateway: "159" - protectionDomain: "162" + - "80" + pool: "83" readOnly: true secretRef: - name: "161" - storageMode: "164" - storagePool: "163" - system: "160" - volumeName: "165" - secret: - defaultMode: -861289979 - items: - - key: "81" - mode: -5672822 - path: "82" - optional: true - secretName: "80" - storageos: - fsType: "169" + name: "86" + user: "84" + scaleIO: + fsType: "151" + gateway: "144" + protectionDomain: "147" secretRef: - name: "170" - volumeName: "167" - volumeNamespace: "168" + name: "146" + sslEnabled: true + storageMode: "149" + storagePool: "148" + system: "145" + volumeName: "150" + secret: + defaultMode: 1655406148 + items: + - key: "66" + mode: 1648350164 + path: "67" + optional: true + secretName: "65" + storageos: + fsType: "154" + readOnly: true + secretRef: + name: "155" + volumeName: "152" + volumeNamespace: "153" vsphereVolume: - fsType: "131" - storagePolicyID: "133" - storagePolicyName: "132" - volumePath: "130" - ttlSecondsAfterFinished: 952328575 + fsType: "116" + storagePolicyID: "118" + storagePolicyName: "117" + volumePath: "115" + ttlSecondsAfterFinished: 920774957 diff --git a/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.json b/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.json index d59b783c2d8..078971e29a1 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.json +++ b/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,36 +35,35 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "request": "cQ==", + "request": "OA==", "usages": [ - "Ƣ6/ʕVŚ(ĿȊ甞" + "J枊a" ], - "username": "24", - "uid": "25", + "username": "18", + "uid": "19", "groups": [ - "26" + "20" ], "extra": { - "27": [ - "28" + "21": [ + "22" ] } }, "status": { "conditions": [ { - "type": "憍峕?狱³-Ǐ忄*", - "reason": "29", - "message": "30", - "lastUpdateTime": "2050-07-09T05:54:12Z" + "type": "o,c鮽ort昍řČ扷5Ɨ", + "reason": "23", + "message": "24", + "lastUpdateTime": "2901-11-14T22:54:07Z" } ], - "certificate": "WQ==" + "certificate": "9Q==" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.pb b/staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1beta1.CertificateSigningRequest.pb index aa8d3d7909147c2e63b787b7b272461e763a33d6..dee8b798a0becd70d09984e5877eba0a64c3ff79 100644 GIT binary patch delta 147 zcmV;E0BryM0>T22KPvqJ3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h zHZm|Xk&09SE0NzTSrQ@&0XPx@F*q6mF*zavGB7FyO6H!5VKNE|0x~fY1PTH&G8!)m zDhd{FEMw`ey>D`K=9rDenZ%6diMKVzml6UpGa3RiG$IHHkJhcmZ4dww0reUHA^=F( BCuaZv delta 207 zcmV;=05Jc;0{#M!KTEj+3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgx2p0X>nvD|9Ll3JwYa zF*p(k3I+-SF*yaS{SDG#UajH6j8sHYyRuqBbwel~%=?D8#?WiszJ`G71U; zGB*+g3IZ}X8Y~JY3KQmrjpehIKj(|F!m};MkLACFDiQ)RIT`{pFd_&Dgz3+_2@n7h J0a+RVA^ucxSGSO11QIny6yxT03ra=l@p!- delta 141 zcmaFHxR_~zn)i1`t{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|gD=NAH3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h mHZm|Xk#ucxSGSO11QIny6yxT03ra`H50c0 delta 141 zcmaFOxPobdw)b~Nt{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|oi*c diff --git a/staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1beta1.Lease.yaml b/staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1beta1.Lease.yaml index 7578db17623..f01d1c3bba4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1beta1.Lease.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1beta1.Lease.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,10 +25,10 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - holderIdentity: "24" - leaseDurationSeconds: -1978186127 - leaseTransitions: -1821918122 + holderIdentity: "18" + leaseDurationSeconds: 896585016 + leaseTransitions: 1305381319 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.json index 8c1cc88cd86..3f613c9709b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,18 +35,17 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "target": { - "kind": "24", - "namespace": "25", - "name": "26", - "uid": "ƗǸƢ6/ʕV", - "apiVersion": "27", - "resourceVersion": "28", - "fieldPath": "29" + "kind": "18", + "namespace": "19", + "name": "20", + "uid": "īqJ枊a8衍`Ĩɘ.蘯", + "apiVersion": "21", + "resourceVersion": "22", + "fieldPath": "23" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.pb index 88afd711e796f5b68ca049432aa15e65e620f108..967727fa4be382bb29b0ac6e04f5efe6a490b38f 100644 GIT binary patch delta 111 zcmV-#0FeKj0`mco6e`&P3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h zHZm|XkzZ5+E0MG-H4-lh0x>ue0x>xn0x~cn6~wD?O6H!5VL0fajbOy6$(Szan6D}V RGBGj&GBP>>GBX+gA^_4Z9X0>} delta 152 zcmV;J0B8U60h|Jm6ib2v3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgvh80X>nED?KU@3JwYa zF*p(k3I+-SF*y diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.yaml index 6a859fc70c0..9899d27bfe1 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,14 +25,14 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" target: - apiVersion: "27" - fieldPath: "29" - kind: "24" - name: "26" - namespace: "25" - resourceVersion: "28" - uid: ƗǸƢ6/ʕV + apiVersion: "21" + fieldPath: "23" + kind: "18" + name: "20" + namespace: "19" + resourceVersion: "22" + uid: īqJ枊a8衍`Ĩɘ.蘯 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.json index 5c20e56266d..b46a0bfd70d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,17 +35,16 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "conditions": [ { - "type": "脽ěĂ凗蓏Ŋ蛊ĉy緅縕", - "status": "谐颋DžSǡƏS$+½H牗洝尿", - "message": "24", - "error": "25" + "type": "@Hr鯹)晿", + "status": "`Ĩɘ.蘯6ċ", + "message": "18", + "error": "19" } ] } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ComponentStatus.pb index 26753fa30a7d2bc14d5dd38810bed20f1335e4a2..c59d3029adf317680694a51e2035eb06163fb83f 100644 GIT binary patch delta 98 zcmV-o0G94sd=9#||3}D2l$(Szan6Ea(iy8tkI3fZuIT`>W E0Lo??Z2$lO delta 182 zcmV;n07?Ju0m1^197~`A3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgv(G0X>nMD_bfM3JwYa zF*p(k3I+-SF*y7t9r kg;U3&#*b4ZE5f}<=ZTl*w4LR!zZwEEG$H~rH5vdS0DUi-o-jM^>Di zq4#3Odb1j7+82fh;p2#=lYwN(=zBRV9)D diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ConfigMap.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ConfigMap.yaml index d4a8edf50bd..943600d0681 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ConfigMap.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ConfigMap.yaml @@ -1,8 +1,8 @@ apiVersion: v1 binaryData: - "26": /Q== + "20": Dg== data: - "24": "25" + "18": "19" kind: ConfigMap metadata: annotations: @@ -18,9 +18,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -32,6 +29,6 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.json index e4fde7f3834..6585f4e7295 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,8 +35,7 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, @@ -44,41 +43,41 @@ { "addresses": [ { - "ip": "24", - "hostname": "25", - "nodeName": "26", + "ip": "18", + "hostname": "19", + "nodeName": "20", "targetRef": { - "kind": "27", - "namespace": "28", - "name": "29", - "uid": "ěĂ凗蓏Ŋ蛊ĉy緅縕", - "apiVersion": "30", - "resourceVersion": "31", - "fieldPath": "32" + "kind": "21", + "namespace": "22", + "name": "23", + "uid": "Hr鯹)晿\u003co,c鮽ort昍řČ扷5Ɨ", + "apiVersion": "24", + "resourceVersion": "25", + "fieldPath": "26" } } ], "notReadyAddresses": [ { - "ip": "33", - "hostname": "34", - "nodeName": "35", + "ip": "27", + "hostname": "28", + "nodeName": "29", "targetRef": { - "kind": "36", - "namespace": "37", - "name": "38", - "uid": "颋Dž", - "apiVersion": "39", - "resourceVersion": "40", - "fieldPath": "41" + "kind": "30", + "namespace": "31", + "name": "32", + "uid": "Ă凗蓏Ŋ蛊ĉy", + "apiVersion": "33", + "resourceVersion": "34", + "fieldPath": "35" } } ], "ports": [ { - "name": "42", - "port": 1575426699, - "protocol": "ƏS$+½H牗洝尿" + "name": "36", + "port": 1546792211, + "protocol": "\u003eŽ燹憍峕?狱³-Ǐ忄*" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.pb index 75286bd50aaa669a17419c46a8b12a9535113fa4..4efe9a7338651b4f4868aa80e5d8105cfb73a943 100644 GIT binary patch delta 237 zcmVP3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h zHZm|XkzrH;E0MM94sd=9#}dZ!BZ! zuDx$^bmo|i#hJv6=83m8#+NDrGBh#*GBr8^GBz3lF*zavGB6T23IZ}W5-JJ;GcXbY zGcg(hGcqC&#De9Am*|s^#fs>gio}U|DgrYzG6FL+Is!8_Ga3RiI3fZvIT|Gj0y8!c nliJAP1sWMX#l7c;x#otA<+GJP=Zmqzvn|Ju<-dd~8UP{yY-CDZ delta 261 zcmeyw)WtkO%=;Y^*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1_1SHLcn2ao>n2aoyB#z8J()6@_`isf^N4s9k?mE(0 z`Fwlp^Bq&Qn2ZgKn2Zgrn2e2pDovG`jLd{|xtNTNh2(*xnGln)xfGMJg%az_Mcv0+ zfyyn7m`n_;m`n_%fE*JgCSy}6SuQ3MBZ2O%bKbK`2_EYYR?$AR*W-ET^k-YŽ燹憍峕?狱³-Ǐ忄*' diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json index 4eb07ccaf23..4cf3c2fba8e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,66 +35,64 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "ephemeralContainers": [ { - "name": "24", - "image": "25", + "name": "18", + "image": "19", "command": [ - "26" + "20" ], "args": [ - "27" + "21" ], - "workingDir": "28", + "workingDir": "22", "ports": [ { - "name": "29", - "hostPort": -1821918122, - "containerPort": -439697596, - "protocol": "/ʕVŚ(ĿȊ甞谐颋DžSǡ", - "hostIP": "30" + "name": "23", + "hostPort": 1305381319, + "containerPort": -1300313567, + "hostIP": "24" } ], "envFrom": [ { - "prefix": "31", + "prefix": "25", "configMapRef": { - "name": "32", - "optional": true + "name": "26", + "optional": false }, "secretRef": { - "name": "33", - "optional": true + "name": "27", + "optional": false } } ], "env": [ { - "name": "34", - "value": "35", + "name": "28", + "value": "29", "valueFrom": { "fieldRef": { - "apiVersion": "36", - "fieldPath": "37" + "apiVersion": "30", + "fieldPath": "31" }, "resourceFieldRef": { - "containerName": "38", - "resource": "39", - "divisor": "590" + "containerName": "32", + "resource": "33", + "divisor": "12" }, "configMapKeyRef": { - "name": "40", - "key": "41", + "name": "34", + "key": "35", "optional": false }, "secretKeyRef": { - "name": "42", - "key": "43", + "name": "36", + "key": "37", "optional": false } } @@ -102,86 +100,107 @@ ], "resources": { "limits": { - "亞螩B峅x4%a鯿rŎǀ朲^苣fƼ@h": "494" + "V夸eɑeʤ": "420" }, "requests": { - "ņɖ橙9ȫŚʒUɦOŖ樅尷": "239" + "Ƣ6/ʕVŚ(ĿȊ甞": "776" } }, "volumeMounts": [ { - "name": "44", - "readOnly": true, - "mountPath": "45", - "subPath": "46", - "mountPropagation": "ĴC浔Ű壝ž", - "subPathExpr": "47" + "name": "38", + "mountPath": "39", + "subPath": "40", + "mountPropagation": "憍峕?狱³-Ǐ忄*", + "subPathExpr": "41" } ], "volumeDevices": [ { - "name": "48", - "devicePath": "49" + "name": "42", + "devicePath": "43" } ], "livenessProbe": { "exec": { "command": [ - "50" + "44" ] }, "httpGet": { - "path": "51", - "port": 1747809671, - "host": "52", - "scheme": "潁谯耨V6\u0026]鴍Ɋ恧ȭ%ƎÜ掸8½£.", + "path": "45", + "port": "46", + "host": "47", + "scheme": "亞螩B峅x4%a鯿rŎǀ朲^苣fƼ@h", "httpHeaders": [ { - "name": "53", - "value": "54" + "name": "48", + "value": "49" } ] }, "tcpSocket": { - "port": "55", - "host": "56" + "port": 1366345526, + "host": "50" }, - "initialDelaySeconds": 1167335696, - "timeoutSeconds": -532496585, - "periodSeconds": 153426386, - "successThreshold": 1006284894, - "failureThreshold": -1623705764 + "initialDelaySeconds": 1392988974, + "timeoutSeconds": 1563658126, + "periodSeconds": -1771047449, + "successThreshold": -1280107919, + "failureThreshold": -54954325 }, "readinessProbe": { "exec": { "command": [ - "57" + "51" ] }, "httpGet": { - "path": "58", - "port": "59", - "host": "60", - "scheme": "9Ȏ瀮", + "path": "52", + "port": "53", + "host": "54", + "scheme": "OŖ樅尷", "httpHeaders": [ { - "name": "61", - "value": "62" + "name": "55", + "value": "56" } ] }, "tcpSocket": { - "port": -1081142510, - "host": "63" + "port": 2136826132, + "host": "57" }, - "initialDelaySeconds": 1721139423, - "timeoutSeconds": 252483228, - "periodSeconds": -1077199580, - "successThreshold": 1633185252, - "failureThreshold": 1380868499 + "initialDelaySeconds": 819364842, + "timeoutSeconds": 933484239, + "periodSeconds": -983896210, + "successThreshold": 552512122, + "failureThreshold": -833209928 }, "lifecycle": { "postStart": { + "exec": { + "command": [ + "58" + ] + }, + "httpGet": { + "path": "59", + "port": 1114837452, + "host": "60", + "httpHeaders": [ + { + "name": "61", + "value": "62" + } + ] + }, + "tcpSocket": { + "port": 672648281, + "host": "63" + } + }, + "preStop": { "exec": { "command": [ "64" @@ -191,7 +210,7 @@ "path": "65", "port": "66", "host": "67", - "scheme": "譋娲瘹ɭȊɚɎ(", + "scheme": "魋Ď儇击3ƆìQ喞艋涽", "httpHeaders": [ { "name": "68", @@ -203,65 +222,41 @@ "port": "70", "host": "71" } - }, - "preStop": { - "exec": { - "command": [ - "72" - ] - }, - "httpGet": { - "path": "73", - "port": 75785535, - "host": "74", - "scheme": "圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1ZƜ/", - "httpHeaders": [ - { - "name": "75", - "value": "76" - } - ] - }, - "tcpSocket": { - "port": "77", - "host": "78" - } } }, - "terminationMessagePath": "79", - "terminationMessagePolicy": "ȪÆ", - "imagePullPolicy": "4懙鏮嵒ƫS捕ɷD¡轫n(鲼ƳÐƣKʘ", + "terminationMessagePath": "72", + "terminationMessagePolicy": "w-檮Ǣ冖ž琔n宂¬轚9Ȏ瀮", + "imagePullPolicy": "/", "securityContext": { "capabilities": { "add": [ - ":5塋訩塶\"=y钡n)İ笓" + "-议}ȧ外ĺ稥氹Ç|¶" ], "drop": [ - "筩ƐP_" + "¡ Ɠ(嘒ėf倐ȓ圬剴扲ȿQZ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "80", - "role": "81", - "type": "82", - "level": "83" + "user": "73", + "role": "74", + "type": "75", + "level": "76" }, "windowsOptions": { - "gmsaCredentialSpecName": "84", - "gmsaCredentialSpec": "85", - "runAsUserName": "86" + "gmsaCredentialSpecName": "77", + "gmsaCredentialSpec": "78", + "runAsUserName": "79" }, - "runAsUser": -2890225091301830311, - "runAsGroup": 2270010876567964647, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "runAsUser": -2195720433245498980, + "runAsGroup": -3031446704001093654, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "舁吉蓨O澘銈e棈_Ĭ" + "procMount": "1ZƜ/C龷" }, "stdinOnce": true, - "tty": true, - "targetContainerName": "87" + "targetContainerName": "80" } ] } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb index aeb79e18251288d2123aba7e29fdfa6eedab19ea..2217dcf96b55f854b1fa03802a829fe422c2dc8d 100644 GIT binary patch delta 857 zcmX|9T}TvB6rOumZM{frx1ePLS>`2K5ohk)xiiyCe{a2%5lSw%-LZu(m~OT;>_?StGnElKRYJx~2sRvw4OhiX z*Dy1}m@&46U}gpulM^3{f>+vqCV&2h4`~V%`L-QU1PF6gLHq=pI>n|z*F(f0GSwoW zWNI0K)8vq`f{IqS3AouoWtTxV5)!GC1NRO-Y&*C#K#PfwGo7kr!$O~^Ub<8_-&HX; zojI3l@AYc7E%s~$HYcE{*mO0__3*}Q^94D2X?reqJ3U&p*ea)+!VGhxwgr)TPn&ZJ zopOu%{m8>{0l%$jZzp;5$@cWuAM4g6?ZCU}i)LT&(Map0FZA){`=MV2$sdm=qFBH8<=N*# z;y@gcZEJE44FR7^J)-6QiDkzolZH=?9Kkj_hN@3AA>xwFRjaAgsmygb z&@nfW8@!smb$>Q`GCfAi(^o} zSFvqr*cPGg{->Yc{92iPjVh3i9JJ%zt55y0{Mm0$(4JDGexbX1cYf;dcx@RVZ9qDJ zbQ_U!7NG=Ex=;`{6Wn;_n1DAgM0P;wL*>V-vO}rGKH1zcKb1?gAC;-o>EYGME;kd; THKvA;w+OJm96EAzRne3`jV&2K delta 960 zcmYLIUu;uV7{BLibmauu%|T~j*= z6(iDPO)i}lpZ6=eLPS|mi6&`^tO%l{k955WIz~R<8}PAcD}sIvyOE2oI%aUF1qE9W z6bXi+%t2A%p{V+xsEIn=)!Fa!D9IM3MGOryiUa~X&R(`SWL@VvuLHP&^ zI7nn362rL!L+H^ZL)ZQ*Md$8b;<`CayM z(8*tS`Z7Jr?vsJq{E!*8gI|<$yGp}_aeH`4TU}mF@AJ{hWC=r=a9fev4cPi^nc4~) zUHvB8>{(n7f6~ya?b{opuX}&K|LeUb;io_DKWqrvdj@rGB%6}I?6G=NRIo3TyrP6G5=J(NPQ5Ptx-ZNpA3VrAy4iJNAw95%;AJy!{yF_${lCJO`A)YX^$y`}N}^<-5lf~x#4 zimFmudk?Dm2fK-V{z~n_thEp;%^bIfE}Dz4tR|i1nX}&7+^y1$Kp|R6AE_ihK8Mue0x>xn0x~cn6~wD?O6H!5 zVL0fajbOy6$(Szan6D}VGBGj&GBP>>GBX+iGBhFrGBqj)3IZ}V5&|+eG6)FUm+qK! z5CA#|2$qPmqHYiXK(yMqxcdM9|Nj9>0x~#K3kdY`(C$GHfa#bPS{4ZYliS+_5)25d zSb~|Za}fB|g oio}U|=eLFDxRpM|y($7TGcp1*G&%w^HF5$oHhKaxHyQvU0EhEnSpWb4 delta 310 zcmV-60m=T81E&LBYdCWN3JVGXb}nCD}O2w3JwYaF*p(k3I+-SF*y$7|G@@I0y8vH3<#0`iSa8CsI%Sc0a_afxrMi@2TKwR2=TUyBrC$bNGbv|IWht?FggM>F>(SlGI|0u IGa3LQ03SD9CjbBd diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Event.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Event.yaml index c947e898b7e..b57f62740a4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Event.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Event.yaml @@ -1,19 +1,19 @@ -action: "35" +action: "29" apiVersion: v1 -count: 1749009427 -eventTime: "2343-04-17T01:08:33.494361Z" -firstTimestamp: "2452-08-27T22:01:15Z" +count: -1492226764 +eventTime: "2530-04-08T07:06:28.046544Z" +firstTimestamp: "2958-05-23T21:23:39Z" involvedObject: - apiVersion: "27" - fieldPath: "29" - kind: "24" - name: "26" - namespace: "25" - resourceVersion: "28" - uid: ƗǸƢ6/ʕV + apiVersion: "21" + fieldPath: "23" + kind: "18" + name: "20" + namespace: "19" + resourceVersion: "22" + uid: īqJ枊a8衍`Ĩɘ.蘯 kind: Event -lastTimestamp: "2620-11-25T16:08:31Z" -message: "31" +lastTimestamp: "2907-12-28T01:19:18Z" +message: "25" metadata: annotations: "9": "10" @@ -28,9 +28,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -42,25 +39,24 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e -reason: "30" + uid: "7" +reason: "24" related: - apiVersion: "39" - fieldPath: "41" - kind: "36" - name: "38" - namespace: "37" - resourceVersion: "40" - uid: ǡƏS$+½H -reportingComponent: "42" -reportingInstance: "43" + apiVersion: "33" + fieldPath: "35" + kind: "30" + name: "32" + namespace: "31" + resourceVersion: "34" + uid: ʤ脽ěĂ凗蓏Ŋ蛊ĉy緅縕>Ž +reportingComponent: "36" +reportingInstance: "37" series: - count: 1970127545 - lastObservedTime: "1985-03-23T14:10:57.985776Z" - state: 颋Dž + count: 1266076158 + lastObservedTime: "2951-04-21T20:18:51.456715Z" source: - component: "32" - host: "33" -type: "34" + component: "26" + host: "27" +type: "28" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.json index 4c33f22af4d..898a3322bf9 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,29 +35,28 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "limits": [ { - "type": "脽ěĂ凗蓏Ŋ蛊ĉy緅縕", + "type": "@Hr鯹)晿", "max": { - "Ž燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț": "2" + "o,c鮽ort昍řČ扷5Ɨ": "647" }, "min": { - "峅x": "826" + "Ă凗蓏Ŋ蛊ĉy": "361" }, "default": { - ";Ơ歿:狞夌碕ʂ": "737" + "甞谐颋DžS": "632" }, "defaultRequest": { - "Ƽ@hDrȮO励鹗塢": "874" + "狱³-Ǐ忄*齧獚": "502" }, "maxLimitRequestRatio": { - "UɦOŖ": "746" + "亞螩B峅x4%a鯿rŎǀ朲^苣fƼ@h": "494" } } ] diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.pb index b4f5e80a12926fa4e21934a48416185032995abb..294e65c9c6d1f2b53aa200ae6b96d043153f5580 100644 GIT binary patch delta 238 zcmZ3?{Doyr>3P<< z-SpUWAyzJCGZS+uNiKmSO;6jWznI*AwCly}t|Oh5ASq)rLnTozp665Mz1T3}<)ZH6 zt-)X&#ztDwTtd&gHy+xod%XYY{uZs5dzU}&oduFKF*PtU(&kcnvTNRpc`KcsZf>nG kQB8cget*%?zT*wg=4^_4(Y-kB*dB)ruxd*aDF!750Qk*XRsaA1 delta 285 zcmeyuw3vBf*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1yN+~LKHuK@e8*HF9WK?Q zd!M)OeAd?cbn{gE=iM6*ZPq>B|8#$g*2}%ipZCssHnr_U--+2m%s}T#@p7>|-P~Fs z#LC5NVPvKx%_U@gY{9d&`>mdLJI#B#r04mfsi&GivgXF-T0q%jdmJ)cicYNaf7-S2 h<<99(7cK&8H8(Nh=VA*zxy=9QG_YzDGbsio1_1Wdalilo diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.yaml index 6819df687eb..cedab4a9a6d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.LimitRange.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,19 +25,19 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: limits: - default: - ;Ơ歿:狞夌碕ʂ: "737" + 甞谐颋DžS: "632" defaultRequest: - Ƽ@hDrȮO励鹗塢: "874" + 狱³-Ǐ忄*齧獚: "502" max: - Ž燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț: "2" + o,c鮽ort昍řČ扷5Ɨ: "647" maxLimitRequestRatio: - UɦOŖ: "746" + 亞螩B峅x4%a鯿rŎǀ朲^苣fƼ@h: "494" min: - 峅x: "826" - type: 脽ěĂ凗蓏Ŋ蛊ĉy緅縕 + Ă凗蓏Ŋ蛊ĉy: "361" + type: '@Hr鯹)晿' diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json index 59f1dd52b06..dcbc4f9be15 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,17 +35,16 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "finalizers": [ - "脽ěĂ凗蓏Ŋ蛊ĉy緅縕" + "@Hr鯹)晿" ] }, "status": { - "phase": "谐颋DžSǡƏS$+½H牗洝尿" + "phase": "`Ĩɘ.蘯6ċ" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.pb index 2cfebe8f2c04107a2746bd613ac71b84f3ab556c..5e973494879faf4e41bf320aff8d14a5d895a9a8 100644 GIT binary patch delta 92 zcmV-i0Hgo50^$LX7AnR83Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h yHZm|XkzrH;E0MM94sd=9#}54hjrl#Hh)bF6fxAHpGh>03rYfHySPg delta 176 zcmV;h08jto0k#5=7E77}3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgvnA0X>nGD^)5G3JwYa zF*p(k3I+-SF*ygR03rZ~AxDt_ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.yaml index 3b76a29009c..e855ef2a337 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,11 +25,11 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: finalizers: - - 脽ěĂ凗蓏Ŋ蛊ĉy緅縕 + - '@Hr鯹)晿' status: - phase: 谐颋DžSǡƏS$+½H牗洝尿 + phase: '`Ĩɘ.蘯6ċ' diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json index aad8632b97b..81c487d5436 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,122 +35,121 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "podCIDR": "24", + "podCIDR": "18", "podCIDRs": [ - "25" + "19" ], - "providerID": "26", + "providerID": "20", "taints": [ { - "key": "27", - "value": "28", - "effect": "ěĂ凗蓏Ŋ蛊ĉy緅縕" + "key": "21", + "value": "22", + "effect": "Hr鯹)晿\u003co,c鮽ort昍řČ扷5Ɨ" } ], "configSource": { "configMap": { - "namespace": "29", - "name": "30", - "uid": "颋Dž", - "resourceVersion": "31", - "kubeletConfigKey": "32" + "namespace": "23", + "name": "24", + "uid": "Ă凗蓏Ŋ蛊ĉy", + "resourceVersion": "25", + "kubeletConfigKey": "26" } }, - "externalID": "33" + "externalID": "27" }, "status": { "capacity": { - "ǡƏS$+½H": "758" + "縕\u003eŽ燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț": "2" }, "allocatable": { - "獚敆ȎțêɘIJ斬³;Ơ歿:狞夌碕ʂɭ": "166" + "峅x": "826" }, - "phase": "cP$Iņɖ橙9", + "phase": "%a鯿rŎǀ朲^苣f", "conditions": [ { - "type": "ŚʒUɦOŖ樅尷", - "status": "", - "lastHeartbeatTime": "2363-01-13T11:22:34Z", - "lastTransitionTime": "2809-10-24T21:55:41Z", - "reason": "34", - "message": "35" + "type": "", + "status": "P$Iņɖ橙9ȫŚʒ", + "lastHeartbeatTime": "2339-08-25T14:46:58Z", + "lastTransitionTime": "2681-06-13T05:43:15Z", + "reason": "28", + "message": "29" } ], "addresses": [ { - "type": "ĴC浔Ű壝ž", - "address": "36" + "type": "OŖ樅尷", + "address": "30" } ], "daemonEndpoints": { "kubeletEndpoint": { - "Port": 548013580 + "Port": -1579157235 } }, "nodeInfo": { - "machineID": "37", - "systemUUID": "38", - "bootID": "39", - "kernelVersion": "40", - "osImage": "41", - "containerRuntimeVersion": "42", - "kubeletVersion": "43", - "kubeProxyVersion": "44", - "operatingSystem": "45", - "architecture": "46" + "machineID": "31", + "systemUUID": "32", + "bootID": "33", + "kernelVersion": "34", + "osImage": "35", + "containerRuntimeVersion": "36", + "kubeletVersion": "37", + "kubeProxyVersion": "38", + "operatingSystem": "39", + "architecture": "40" }, "images": [ { "names": [ - "47" + "41" ], - "sizeBytes": 776543445579928012 + "sizeBytes": 9177598355370950419 } ], "volumesInUse": [ - "錕?øēƺ魋Ď儇击3ƆìQ喞艋" + "üA謥ǣ偐圠=l畣潁谯耨V6\u0026]鴍Ɋ" ], "volumesAttached": [ { - "name": "託仭", - "devicePath": "48" + "name": "ȭ%ƎÜ掸8½£.vǴʌ鴜Ł%ŨȈ", + "devicePath": "42" } ], "config": { "assigned": { "configMap": { - "namespace": "49", - "name": "50", - "uid": "檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2", - "resourceVersion": "51", - "kubeletConfigKey": "52" + "namespace": "43", + "name": "44", + "uid": "£趕ã/鈱$-议}ȧ外ĺ", + "resourceVersion": "45", + "kubeletConfigKey": "46" } }, "active": { "configMap": { - "namespace": "53", - "name": "54", - "uid": "-议}ȧ外ĺ稥氹Ç|¶", - "resourceVersion": "55", - "kubeletConfigKey": "56" + "namespace": "47", + "name": "48", + "uid": "譋娲瘹ɭȊɚɎ(", + "resourceVersion": "49", + "kubeletConfigKey": "50" } }, "lastKnownGood": { "configMap": { - "namespace": "57", - "name": "58", - "uid": "ɚɎ(dɅ囥糷磩窮秳ķ蟒", - "resourceVersion": "59", - "kubeletConfigKey": "60" + "namespace": "51", + "name": "52", + "uid": "ėf倐ȓ圬剴扲ȿQZ{ʁgɸ", + "resourceVersion": "53", + "kubeletConfigKey": "54" } }, - "error": "61" + "error": "55" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.pb index f4a2e7febad43d2bb307122a24956950e181bb81..09f0dd59b0afe60f29aa9c90dc257410a2e66d1c 100644 GIT binary patch delta 632 zcmWlWOH30{6oxw&n$&C1dgH>33(2G%dt%N+wAsR_8QfC#rm+hN zj3$hxytDAq7@oE!$Fz_&A1VZ&2>>f1z@Anh`}ogQP=XEROzgatEe~&-LlI*$cA*^h zuje(1wm(b6wVkN>k?hS)cwvo7;cQI~+d-7j_z*Ho@We^;Y|O!)ar;s2E_McoZJG zs!f^6L1S&pj{uQy4Lt0K{5**MIbg-L)0-|6*m0iw18;_CoZ zYC8e}m7SA+zh?>y-%|c|_wJ{Q*79O8VFbpF_?vT&%CUr*4OnZd)r|xzo9Vvx6 z-0+mX;@*qy#{FhAqvo^u#OeNGdVjQ%j%xw8mefZOptv*4!6w8WLRrL=@+a~M>tk#; z(NY;%cQsq7)C+ydcsEtp5ddXTQxB>`E=GG9t@6lP2^-0c^2~N=MGuwcO3`}8`9z>d zd<$xZKw*w83g%B1rhANmaedN=FB`$M8Qjow*E^r@2Og9%0#FFspsXvrO|bm~PB`=q delta 649 zcmWlV-%C?r7{||En~WEW@fui%AUk-WN0PJmyyxs3B?7xCFDmWFMRd^*y$Xs5f}mJf z+tAJVb8~KF=`^RgDVfd`4YqUUj(8h%BLsPV>@Ntqskf_#2R@&N=liwXzuk8qDbE-P zA$aaX$F4ryC&^;|{B-@?tj+^_$^IXM9*6bkc*`zze$&v^V4UG-{xfN-cqPS7#%8K@NyM9*DRd zV2NF+f%OpX&6J04G_@9YE+aRr@krL1_U604+3OGZ-rY$cY9YaQheR_`xn!+R=&NQR^G@HTU(1;0_e7)FAZTxfK%{v^ zg$1I@0V42#_%I+e3K2U2Azgq-J%Grav^nDU9%K&2kF@n)uT ziN|KXzqst|q|{2xex0|HZ!iZW+Ny+6D{6s25~)SlhVxE7|EjWJ&Ly-hJ3DW!el3Mx z7B?s?QCMaL)J9>NNmAG|M#_ja_ZmSnJ#Vj_E!dewdns=(tZ4=3{TNkL9>@X*WFO0L F%s*%S_iF$E diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml index 01127da7269..cf12c83ad25 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,85 +25,85 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: configSource: configMap: - kubeletConfigKey: "32" - name: "30" - namespace: "29" - resourceVersion: "31" - uid: 颋Dž - externalID: "33" - podCIDR: "24" + kubeletConfigKey: "26" + name: "24" + namespace: "23" + resourceVersion: "25" + uid: Ă凗蓏Ŋ蛊ĉy + externalID: "27" + podCIDR: "18" podCIDRs: - - "25" - providerID: "26" + - "19" + providerID: "20" taints: - - effect: ěĂ凗蓏Ŋ蛊ĉy緅縕 - key: "27" - value: "28" + - effect: Hr鯹)晿Ž燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț: "2" conditions: - - lastHeartbeatTime: "2363-01-13T11:22:34Z" - lastTransitionTime: "2809-10-24T21:55:41Z" - message: "35" - reason: "34" - status: "" - type: ŚʒUɦOŖ樅尷 + - lastHeartbeatTime: "2339-08-25T14:46:58Z" + lastTransitionTime: "2681-06-13T05:43:15Z" + message: "29" + reason: "28" + status: P$Iņɖ橙9ȫŚʒ + type: "" config: active: configMap: - kubeletConfigKey: "56" - name: "54" - namespace: "53" - resourceVersion: "55" - uid: -议}ȧ外ĺ稥氹Ç|¶ + kubeletConfigKey: "50" + name: "48" + namespace: "47" + resourceVersion: "49" + uid: 譋娲瘹ɭȊɚɎ( assigned: configMap: - kubeletConfigKey: "52" - name: "50" - namespace: "49" - resourceVersion: "51" - uid: 檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2 - error: "61" + kubeletConfigKey: "46" + name: "44" + namespace: "43" + resourceVersion: "45" + uid: £趕ã/鈱$-议}ȧ外ĺ + error: "55" lastKnownGood: configMap: - kubeletConfigKey: "60" - name: "58" - namespace: "57" - resourceVersion: "59" - uid: ɚɎ(dɅ囥糷磩窮秳ķ蟒 + kubeletConfigKey: "54" + name: "52" + namespace: "51" + resourceVersion: "53" + uid: ėf倐ȓ圬剴扲ȿQZ{ʁgɸ daemonEndpoints: kubeletEndpoint: - Port: 548013580 + Port: -1579157235 images: - names: - - "47" - sizeBytes: 776543445579928012 + - "41" + sizeBytes: 9177598355370950419 nodeInfo: - architecture: "46" - bootID: "39" - containerRuntimeVersion: "42" - kernelVersion: "40" - kubeProxyVersion: "44" - kubeletVersion: "43" - machineID: "37" - operatingSystem: "45" - osImage: "41" - systemUUID: "38" - phase: cP$Iņɖ橙9 + architecture: "40" + bootID: "33" + containerRuntimeVersion: "36" + kernelVersion: "34" + kubeProxyVersion: "38" + kubeletVersion: "37" + machineID: "31" + operatingSystem: "39" + osImage: "35" + systemUUID: "32" + phase: '%a鯿rŎǀ朲^苣f' volumesAttached: - - devicePath: "48" - name: 託仭 + - devicePath: "42" + name: ȭ%ƎÜ掸8½£.vǴʌ鴜Ł%ŨȈ volumesInUse: - - 錕?øēƺ魋Ď儇击3ƆìQ喞艋 + - üA謥ǣ偐圠=l畣潁谯耨V6&]鴍Ɋ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json index e61104dc8da..c9e51316d17 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,248 +35,246 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "capacity": { - "脽ěĂ凗蓏Ŋ蛊ĉy緅縕": "57" + "@Hr鯹)晿": "617" }, "gcePersistentDisk": { - "pdName": "24", - "fsType": "25", - "partition": 1035515117, + "pdName": "18", + "fsType": "19", + "partition": 757808475, "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "26", - "fsType": "27", - "partition": -321835912, - "readOnly": true + "volumeID": "20", + "fsType": "21", + "partition": -1821408417 }, "hostPath": { - "path": "28", - "type": "狱³-Ǐ忄*齧獚" + "path": "22", + "type": "rt昍řČ扷5ƗǸƢ6/" }, "glusterfs": { - "endpoints": "29", - "path": "30", - "endpointsNamespace": "31" + "endpoints": "23", + "path": "24", + "readOnly": true, + "endpointsNamespace": "25" }, "nfs": { - "server": "32", - "path": "33", - "readOnly": true + "server": "26", + "path": "27" }, "rbd": { "monitors": [ - "34" + "28" ], - "image": "35", - "fsType": "36", - "pool": "37", - "user": "38", - "keyring": "39", + "image": "29", + "fsType": "30", + "pool": "31", + "user": "32", + "keyring": "33", "secretRef": { - "name": "40", - "namespace": "41" - }, - "readOnly": true + "name": "34", + "namespace": "35" + } }, "iscsi": { - "targetPortal": "42", - "iqn": "43", - "lun": -21009133, - "iscsiInterface": "44", - "fsType": "45", + "targetPortal": "36", + "iqn": "37", + "lun": 494729996, + "iscsiInterface": "38", + "fsType": "39", "readOnly": true, "portals": [ - "46" + "40" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "47", - "namespace": "48" + "name": "41", + "namespace": "42" }, - "initiatorName": "49" + "initiatorName": "43" }, "cinder": { - "volumeID": "50", - "fsType": "51", + "volumeID": "44", + "fsType": "45", "readOnly": true, + "secretRef": { + "name": "46", + "namespace": "47" + } + }, + "cephfs": { + "monitors": [ + "48" + ], + "path": "49", + "user": "50", + "secretFile": "51", "secretRef": { "name": "52", "namespace": "53" } }, - "cephfs": { - "monitors": [ - "54" - ], - "path": "55", - "user": "56", - "secretFile": "57", - "secretRef": { - "name": "58", - "namespace": "59" - } - }, "fc": { "targetWWNs": [ - "60" + "54" ], - "lun": -655946460, - "fsType": "61", + "lun": 1820560904, + "fsType": "55", + "readOnly": true, "wwids": [ - "62" + "56" ] }, "flocker": { - "datasetName": "63", - "datasetUUID": "64" + "datasetName": "57", + "datasetUUID": "58" }, "flexVolume": { - "driver": "65", - "fsType": "66", + "driver": "59", + "fsType": "60", "secretRef": { - "name": "67", - "namespace": "68" + "name": "61", + "namespace": "62" }, "options": { - "69": "70" + "63": "64" } }, "azureFile": { - "secretName": "71", - "shareName": "72", - "readOnly": true, - "secretNamespace": "73" + "secretName": "65", + "shareName": "66", + "secretNamespace": "67" }, "vsphereVolume": { - "volumePath": "74", - "fsType": "75", - "storagePolicyName": "76", - "storagePolicyID": "77" + "volumePath": "68", + "fsType": "69", + "storagePolicyName": "70", + "storagePolicyID": "71" }, "quobyte": { - "registry": "78", - "volume": "79", - "user": "80", - "group": "81", - "tenant": "82" + "registry": "72", + "volume": "73", + "user": "74", + "group": "75", + "tenant": "76" }, "azureDisk": { - "diskName": "83", - "diskURI": "84", - "cachingMode": "rȮO励鹗塢ē ƕP喂ƈ斎AO6ĴC", - "fsType": "85", + "diskName": "77", + "diskURI": "78", + "cachingMode": "ȎțêɘIJ斬³;Ơ歿", + "fsType": "79", "readOnly": false, - "kind": "壝" + "kind": "夌碕ʂɭîcP$Iņɖ橙9ȫŚʒ" }, "photonPersistentDisk": { - "pdID": "86", - "fsType": "87" + "pdID": "80", + "fsType": "81" }, "portworxVolume": { - "volumeID": "88", - "fsType": "89" + "volumeID": "82", + "fsType": "83" }, "scaleIO": { - "gateway": "90", - "system": "91", + "gateway": "84", + "system": "85", "secretRef": { - "name": "92", - "namespace": "93" + "name": "86", + "namespace": "87" }, "sslEnabled": true, - "protectionDomain": "94", - "storagePool": "95", - "storageMode": "96", - "volumeName": "97", - "fsType": "98", + "protectionDomain": "88", + "storagePool": "89", + "storageMode": "90", + "volumeName": "91", + "fsType": "92", "readOnly": true }, "local": { - "path": "99", - "fsType": "100" + "path": "93", + "fsType": "94" }, "storageos": { - "volumeName": "101", - "volumeNamespace": "102", - "fsType": "103", + "volumeName": "95", + "volumeNamespace": "96", + "fsType": "97", "readOnly": true, "secretRef": { - "kind": "104", - "namespace": "105", - "name": "106", - "uid": "?øēƺ魋Ď儇击3ƆìQ", - "apiVersion": "107", - "resourceVersion": "108", - "fieldPath": "109" + "kind": "98", + "namespace": "99", + "name": "100", + "uid": "ȸd賑'üA謥ǣ偐圠=l", + "apiVersion": "101", + "resourceVersion": "102", + "fieldPath": "103" } }, "csi": { - "driver": "110", - "volumeHandle": "111", - "fsType": "112", + "driver": "104", + "volumeHandle": "105", + "fsType": "106", "volumeAttributes": { - "113": "114" + "107": "108" }, "controllerPublishSecretRef": { - "name": "115", - "namespace": "116" + "name": "109", + "namespace": "110" }, "nodeStageSecretRef": { - "name": "117", - "namespace": "118" + "name": "111", + "namespace": "112" }, "nodePublishSecretRef": { - "name": "119", - "namespace": "120" + "name": "113", + "namespace": "114" }, "controllerExpandSecretRef": { - "name": "121", - "namespace": "122" + "name": "115", + "namespace": "116" } }, "accessModes": [ - "£.vǴʌ鴜Ł%Ũ" + "ƺ魋Ď儇击3ƆìQ" ], "claimRef": { - "kind": "123", - "namespace": "124", - "name": "125", - "uid": "\u003eŅ£趕ã/鈱$-议}ȧ外ĺ", - "apiVersion": "126", - "resourceVersion": "127", - "fieldPath": "128" + "kind": "117", + "namespace": "118", + "name": "119", + "uid": "艋涽託仭w-檮Ǣ冖ž琔n宂¬轚", + "apiVersion": "120", + "resourceVersion": "121", + "fieldPath": "122" }, - "persistentVolumeReclaimPolicy": "ž譋娲瘹ɭȊɚɎ(dɅ囥糷", - "storageClassName": "129", + "persistentVolumeReclaimPolicy": "£趕ã/鈱$-议}ȧ外ĺ", + "storageClassName": "123", "mountOptions": [ - "130" + "124" ], - "volumeMode": "圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1ZƜ/", + "volumeMode": "譋娲瘹ɭȊɚɎ(", "nodeAffinity": { "required": { "nodeSelectorTerms": [ { "matchExpressions": [ { - "key": "131", - "operator": "廄裭4懙鏮嵒ƫS捕ɷD¡轫n(", + "key": "125", + "operator": "f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1", "values": [ - "132" + "126" ] } ], "matchFields": [ { - "key": "133", - "operator": "郀叚Fi皬择,Q捇ȸ{+ɸ殁", + "key": "127", + "operator": "l恕ɍȇ廄裭4懙鏮嵒", "values": [ - "134" + "128" ] } ] @@ -286,8 +284,8 @@ } }, "status": { - "phase": "a縳讋ɮ衺勽Ƙq/Ź u衲\u003c¿燥ǖ_è", - "message": "135", - "reason": "136" + "phase": "S捕ɷD¡轫n(鲼ƳÐƣKʘ", + "message": "129", + "reason": "130" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.pb index 009b51f7880102189c069b804b3c4c46c0223af3..45c96089835a801476e02a91b212baf108e7b411 100644 GIT binary patch literal 1172 zcmW+#T}&KR6rOuYe=-jZnHJrQroojcjv{k^=gyiYNH9^139a!DjKM9De}*zwk(a6?yeEq0;QCMWtUwZeDkRfzI2A&n3xz76MfM$%)`0gx#v6QJLk^5 zpQ>(6e?-S$5~H%Ey{r3^?wQ~v4L6->&P*XYCEDM*TBR+TdiY4O-xw$ zSW~aJF;VD0-<^x+FP*b6)YTN~!i4u?BI4*-pi1M3@>txPh?kSIxhr*Vc!^ut)%WX* z6Bqo;(OQ3fdMEZCRCA0gNA%;m-tcl)`KR?~{MjwzkX|8Sf9jB433U{RyP*gFrpmY) z8C5!_wt*=L{T91F|IdH$p=!;147RCJ)z#zAjO1o_hW)`+k)PgO%P+|K@G%H7$l)Or z##C53_!4|4q|q9{pg>&{GdqkKu`r_)GZs0jW5x~4M1vN29x!AuCp7%`U%x{Yrhw<# zD1y1&fX)Dy69aSlw$_F@YdiryV8N zC=s--;4qXEjHeXE%8g*xZp1EW#x89^3qcVVCUW^w(3cA%xzfaLkRiZ_kzCiTAhsQT zw6OMJY31_M*?TXRQrCBrUUbY$Ts_rcL6lH1Gy;Y#qt|p;xdBGN=&(q*1F$&3mZAsP z1x)NnfC&jOZ9Kp%z`XeYivUaWc>ZoVJ+w3GUF`SzH&{NFO`Q%m1&KjHqM$qChHFZL zL;ju3(v9hd8|km={H4t9f)|_0-QORZ==3su+o{s#oK-=nO~DXol~OCToh;p%%qHv0 z13%Z)l`@$Ng&(}dshzt4hXowoXq3`J-i_t`ne}425HHRZM{Aqk)!)(I((9oIDvT#T z^1dD`eCH)n-ry~NaJjH`y7l~C^yA{%solkFY=2??IRZVx8>k5q93#}>M<al1WDN0zdrb8(&(GX?9M*aHxplKJ;OYl`^`DuIo~;F z?tCFSB=RD`*Qs3D*w)^0q2p@XrK{(@{_@&aZF24)d5j2RGU9%u1(B`2zO@iQ+vKJdBUCi#js=NoVipRJ4_AB(3q~8n&86F4V7_A{P}nH@8MWHe7Rm~ zT&!MC*QnEE!YvVt`=E{Fw6Kq0^nt)@VM`)scy2hc7FbQdJVD z9aF6nQ$31K0@aYK%HKzw(P%kwJ9D@8LnpqLUT>)@jNT~z5Uwt6OxS%NLp4*WB!_@5 zr3DK#cPN3d?nW6zUHf|({` zru&|h|9VmpK=KRVF~DQ`{(Wp0|9b`x3Lw7^+(MR1vE|*>+T5_S)1#EP@0SLrf}qY| zLazFxAm&sd1ak)O+=tjPz)+s+e#{MsnhNHEVQz&E5Ui;(*61k|;(#GT7oRZFZ2_}%ld8rj^R{dcZ0Sf5Uhk_8(p@7aCjsgNf9Rzg{)J?^U z3Gi5|boM2J4YhJ^DxQ0~C*sEj4M++$SToQJE@MM$eFcyX$nbkUkTe8vJPcEs>P48> zq<|O*W0SYT3QdqSLDB?C)9i#>XM&_@c^eU`f(2z*ux?}!EI>qP{;KwT@{AK*E^kaY zGqd(cAUoFRjCW`Ii{nFYpE2yUcOX-*mRN<8xD!R7F5sgG^A>{j3Mek1_!LqIwqOYs z^?J2n1r`q=1zQ@!mL9^EQI9RN0b8OG&7y-qvE&M>sz0Om2%OY=VSX@PmhfDf=h8iw z5%j&4PT3>b&GJ&r9&&mjPGpN``_hX|3WQAtMufmvE9iYlr7EOS3M0e8;1PYJ#{8ALi4)gzYmdGwuf;Rrt58W#x&@S>A@p! zW_ouM?!&QkqORP(e5}?@CU4~LJ9FdqrUDFufia;yCX|;mzq(5?XMUwLxlvfkM+;Mh zq3X{Hz0UN#((1ZLw1CLf`YI>B=nSkC2UhYsP0d}8!k-sXCv$V@zS8V;4Ql!{H z&E!0(fp$2R1I|{Dn^@9{k=y0rr1RibcHx8K;8O`-dWB!1+GBJ1X!+*1 z&hXT`7fMr$#n?|ZO~t`TKGpSFAyrIBP3PlUM388-Z)? b%*q?PJEh3I-1sNyc~}JeQeX_f6qNo4B`=V1 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml index 295f0ad2aaf..d956a7fe8b3 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,197 +25,196 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: accessModes: - - £.vǴʌ鴜Ł%Ũ + - ƺ魋Ď儇击3ƆìQ awsElasticBlockStore: - fsType: "27" - partition: -321835912 - readOnly: true - volumeID: "26" + fsType: "21" + partition: -1821408417 + volumeID: "20" azureDisk: - cachingMode: rȮO励鹗塢ē ƕP喂ƈ斎AO6ĴC - diskName: "83" - diskURI: "84" - fsType: "85" - kind: 壝 + cachingMode: ȎțêɘIJ斬³;Ơ歿 + diskName: "77" + diskURI: "78" + fsType: "79" + kind: 夌碕ʂɭîcP$Iņɖ橙9ȫŚʒ readOnly: false azureFile: - readOnly: true - secretName: "71" - secretNamespace: "73" - shareName: "72" + secretName: "65" + secretNamespace: "67" + shareName: "66" capacity: - 脽ěĂ凗蓏Ŋ蛊ĉy緅縕: "57" + '@Hr鯹)晿': "617" cephfs: monitors: - - "54" - path: "55" - secretFile: "57" - secretRef: - name: "58" - namespace: "59" - user: "56" - cinder: - fsType: "51" - readOnly: true + - "48" + path: "49" + secretFile: "51" secretRef: name: "52" namespace: "53" - volumeID: "50" + user: "50" + cinder: + fsType: "45" + readOnly: true + secretRef: + name: "46" + namespace: "47" + volumeID: "44" claimRef: - apiVersion: "126" - fieldPath: "128" - kind: "123" - name: "125" - namespace: "124" - resourceVersion: "127" - uid: '>Ņ£趕ã/鈱$-议}ȧ外ĺ' + apiVersion: "120" + fieldPath: "122" + kind: "117" + name: "119" + namespace: "118" + resourceVersion: "121" + uid: 艋涽託仭w-檮Ǣ冖ž琔n宂¬轚 csi: controllerExpandSecretRef: - name: "121" - namespace: "122" - controllerPublishSecretRef: name: "115" namespace: "116" - driver: "110" - fsType: "112" + controllerPublishSecretRef: + name: "109" + namespace: "110" + driver: "104" + fsType: "106" nodePublishSecretRef: - name: "119" - namespace: "120" + name: "113" + namespace: "114" nodeStageSecretRef: - name: "117" - namespace: "118" + name: "111" + namespace: "112" volumeAttributes: - "113": "114" - volumeHandle: "111" + "107": "108" + volumeHandle: "105" fc: - fsType: "61" - lun: -655946460 + fsType: "55" + lun: 1820560904 + readOnly: true targetWWNs: - - "60" + - "54" wwids: - - "62" + - "56" flexVolume: - driver: "65" - fsType: "66" + driver: "59" + fsType: "60" options: - "69": "70" + "63": "64" secretRef: - name: "67" - namespace: "68" + name: "61" + namespace: "62" flocker: - datasetName: "63" - datasetUUID: "64" + datasetName: "57" + datasetUUID: "58" gcePersistentDisk: - fsType: "25" - partition: 1035515117 - pdName: "24" + fsType: "19" + partition: 757808475 + pdName: "18" readOnly: true glusterfs: - endpoints: "29" - endpointsNamespace: "31" - path: "30" + endpoints: "23" + endpointsNamespace: "25" + path: "24" + readOnly: true hostPath: - path: "28" - type: 狱³-Ǐ忄*齧獚 + path: "22" + type: rt昍řČ扷5ƗǸƢ6/ iscsi: - fsType: "45" - initiatorName: "49" - iqn: "43" - iscsiInterface: "44" - lun: -21009133 + chapAuthDiscovery: true + fsType: "39" + initiatorName: "43" + iqn: "37" + iscsiInterface: "38" + lun: 494729996 portals: - - "46" + - "40" readOnly: true secretRef: - name: "47" - namespace: "48" - targetPortal: "42" + name: "41" + namespace: "42" + targetPortal: "36" local: - fsType: "100" - path: "99" + fsType: "94" + path: "93" mountOptions: - - "130" + - "124" nfs: - path: "33" - readOnly: true - server: "32" + path: "27" + server: "26" nodeAffinity: required: nodeSelectorTerms: - matchExpressions: - - key: "131" - operator: 廄裭4懙鏮嵒ƫS捕ɷD¡轫n( + - key: "125" + operator: f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1 values: - - "132" + - "126" matchFields: - - key: "133" - operator: 郀叚Fi皬择,Q捇ȸ{+ɸ殁 + - key: "127" + operator: l恕ɍȇ廄裭4懙鏮嵒 values: - - "134" - persistentVolumeReclaimPolicy: ž譋娲瘹ɭȊɚɎ(dɅ囥糷 + - "128" + persistentVolumeReclaimPolicy: £趕ã/鈱$-议}ȧ外ĺ photonPersistentDisk: - fsType: "87" - pdID: "86" + fsType: "81" + pdID: "80" portworxVolume: - fsType: "89" - volumeID: "88" + fsType: "83" + volumeID: "82" quobyte: - group: "81" - registry: "78" - tenant: "82" - user: "80" - volume: "79" + group: "75" + registry: "72" + tenant: "76" + user: "74" + volume: "73" rbd: - fsType: "36" - image: "35" - keyring: "39" + fsType: "30" + image: "29" + keyring: "33" monitors: - - "34" - pool: "37" - readOnly: true + - "28" + pool: "31" secretRef: - name: "40" - namespace: "41" - user: "38" + name: "34" + namespace: "35" + user: "32" scaleIO: - fsType: "98" - gateway: "90" - protectionDomain: "94" + fsType: "92" + gateway: "84" + protectionDomain: "88" readOnly: true secretRef: - name: "92" - namespace: "93" + name: "86" + namespace: "87" sslEnabled: true - storageMode: "96" - storagePool: "95" - system: "91" - volumeName: "97" - storageClassName: "129" + storageMode: "90" + storagePool: "89" + system: "85" + volumeName: "91" + storageClassName: "123" storageos: - fsType: "103" + fsType: "97" readOnly: true secretRef: - apiVersion: "107" - fieldPath: "109" - kind: "104" - name: "106" - namespace: "105" - resourceVersion: "108" - uid: ?øēƺ魋Ď儇击3ƆìQ - volumeName: "101" - volumeNamespace: "102" - volumeMode: 圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1ZƜ/ + apiVersion: "101" + fieldPath: "103" + kind: "98" + name: "100" + namespace: "99" + resourceVersion: "102" + uid: ȸd賑'üA謥ǣ偐圠=l + volumeName: "95" + volumeNamespace: "96" + volumeMode: 譋娲瘹ɭȊɚɎ( vsphereVolume: - fsType: "75" - storagePolicyID: "77" - storagePolicyName: "76" - volumePath: "74" + fsType: "69" + storagePolicyID: "71" + storagePolicyName: "70" + volumePath: "68" status: - message: "135" - phase: a縳讋ɮ衺勽Ƙq/Ź u衲<¿燥ǖ_è - reason: "136" + message: "129" + phase: S捕ɷD¡轫n(鲼ƳÐƣKʘ + reason: "130" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json index 2a6e285b195..4f1d4aae804 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,62 +35,58 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "accessModes": [ - "脽ěĂ凗蓏Ŋ蛊ĉy緅縕" + "@Hr鯹)晿" ], "selector": { "matchLabels": { - "p-g8c2-k-912e5-c-e63-n-3n.c83-b-w7ld-6cs06xj-x5yv0wm-k1-87-3s-g3/9_-.-W._AAn---v_-5-_8LXP-o-9..1m": "JTrcd-2.-__E_Sv__26KX_R_.-N" + "h0-6pJ": "Hn7y-74.-0MUORQQ.N2.1L" }, "matchExpressions": [ { - "key": "g0d--o82-g50-u--25cu87--r7p-w1e67-8j/42M--n1-p5.3___47._49pIB_o61ISU4--N", - "operator": "In", - "values": [ - "t_k-_v.6" - ] + "key": "PGg8-2_kS91.e5K-_e63_-_3n", + "operator": "DoesNotExist" } ] }, "resources": { "limits": { - "p:籀帊": "219" + "Ď儇击3ƆìQ喞艋涽託仭w-檮Ǣ": "465" }, "requests": { - "骀Šĸ": "986" + "Ł%ŨȈ\u003eŅ£趕ã/鈱$-议}ȧ外ĺ稥": "713" } }, - "volumeName": "30", - "storageClassName": "31", - "volumeMode": "e0ɔȖ脵鴈Ōƾ焁yǠ/淹\\韲翁\u0026", + "volumeName": "24", + "storageClassName": "25", + "volumeMode": "娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^", "dataSource": { - "apiGroup": "32", - "kind": "33", - "name": "34" + "apiGroup": "26", + "kind": "27", + "name": "28" } }, "status": { - "phase": "s", + "phase": "燴壩卄蓨MĮ?", "accessModes": [ - "曢\\%枅:" + "ĭÐl恕ɍȇ廄裭4懙" ], "capacity": { - "ǛƓɥ踓Ǻǧ湬淊kŪ睴": "659" + "嵒ƫS捕ɷD¡轫n": "583" }, "conditions": [ { - "type": "3fƻfʣ繡楙¯ĦE", - "status": "ĪȸŹăȲϤĦʅ芝", - "lastProbeTime": "2197-07-19T07:02:22Z", - "lastTransitionTime": "2641-12-26T14:46:27Z", - "reason": "35", - "message": "36" + "type": "Ü郀", + "status": "ƣKʘńw:5塋", + "lastProbeTime": "2588-10-04T08:20:38Z", + "lastTransitionTime": "2095-10-31T02:52:44Z", + "reason": "29", + "message": "30" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.pb index 5a9c9ea2778fee542229e27dcf380eccd52b4fbc..281fca8b27528773a2ac17bb821ed7579e522b47 100644 GIT binary patch delta 448 zcmV;x0YCoX11EoF-#IE3K>vGXE-e~Uu#o2F)n2_OD$hzHZxx>Uo&nJ3`B2bb53t`MR;j* zbSeTeH8LyZsIupnxyh}_ipiSEjwocwh2@*2=d-uxqp9bruIHz-#JA|5lIV-RXkI!D z3IZ}V5&|+ee;NWZI2wBj5a)-q<)f+PjfCivs7=JKKN1$it;3LP=7E*TjmU@PyM*YY ztu*F`nHn1k66Lj$#;a52jg`r_M8cuyy{m2#1quT-I5Q$L3I)TQ>4Sh04aTEO%9zE3 qcRDrYp^F*_2-flD-bfGtA_xfl#k%DV5CAFyGC48=1~V`k03rajp|?!{ delta 594 zcmWlV&r1|x9L9I1tm!3U8|u(_8?b}%9cSKm=G_^ggMpMkl1M8L!kew@f}886xvO+g zYnN&*O6-TRXqrC?3nVezO)9WiSG{x%qNsy2v;RQds`d211J8$t&zHTw${xxMxia*X zLmU=4B5}IR8I`h~D$b7DudmfRQ|Wfoo4J44ezi5BcoR$19=*6Tmkr?~8nvj74K<*f z#H0pQF|o!PTey>BGbe^B{pb+lHB%JOzEWDEPyE57axeM8&e%71Za?+LALP?sCT-sx zbXQYu_OV!j4kIB}?Y1IGmrhv%8IDQi&(3{GCI?9BPk2*bHKb zfTiJ(0YL~+0#P7QWhiJ8xB`j5)efM+K9vr1!GJLsR}4Pw-vKT0ENntfL zQ2>ZDFo2njt>>TzEJe|}#q#==-e3n{1sJPk&2h#sZD?iZnF38>D>@TaI{aR1&VU z2(Y+9D|w<}Iizkq+I-?A-xXKxrzU+P)IbMAb@dS%JAtf)m zbOUjH;sGb~BGFdiOr@$N867KRHpaK+z3h15ec`2(d*iI8Bl$&la%ER2H7xlw5=rOA zTIcqxo11awpRF(13$@}=dvP^Dfr< diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml index 5812e61526e..3d2dabf23f8 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,42 +25,40 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: accessModes: - - 脽ěĂ凗蓏Ŋ蛊ĉy緅縕 + - '@Hr鯹)晿' dataSource: - apiGroup: "32" - kind: "33" - name: "34" + apiGroup: "26" + kind: "27" + name: "28" resources: limits: - p:籀帊: "219" + Ď儇击3ƆìQ喞艋涽託仭w-檮Ǣ: "465" requests: - 骀Šĸ: "986" + Ł%ŨȈ>Ņ£趕ã/鈱$-议}ȧ外ĺ稥: "713" selector: matchExpressions: - - key: g0d--o82-g50-u--25cu87--r7p-w1e67-8j/42M--n1-p5.3___47._49pIB_o61ISU4--N - operator: In - values: - - t_k-_v.6 + - key: PGg8-2_kS91.e5K-_e63_-_3n + operator: DoesNotExist matchLabels: - p-g8c2-k-912e5-c-e63-n-3n.c83-b-w7ld-6cs06xj-x5yv0wm-k1-87-3s-g3/9_-.-W._AAn---v_-5-_8LXP-o-9..1m: JTrcd-2.-__E_Sv__26KX_R_.-N - storageClassName: "31" - volumeMode: e0ɔȖ脵鴈Ōƾ焁yǠ/淹\韲翁& - volumeName: "30" + h0-6pJ: Hn7y-74.-0MUORQQ.N2.1L + storageClassName: "25" + volumeMode: 娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^ + volumeName: "24" status: accessModes: - - '曢\%枅:' + - ĭÐl恕ɍȇ廄裭4懙 capacity: - ǛƓɥ踓Ǻǧ湬淊kŪ睴: "659" + 嵒ƫS捕ɷD¡轫n: "583" conditions: - - lastProbeTime: "2197-07-19T07:02:22Z" - lastTransitionTime: "2641-12-26T14:46:27Z" - message: "36" - reason: "35" - status: ĪȸŹăȲϤĦʅ芝 - type: 3fƻfʣ繡楙¯ĦE - phase: s + - lastProbeTime: "2588-10-04T08:20:38Z" + lastTransitionTime: "2095-10-31T02:52:44Z" + message: "30" + reason: "29" + status: ƣKʘńw:5塋 + type: Ü郀 + phase: 燴壩卄蓨MĮ? diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json index c68fc8b4486..6c6aa89a58d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,206 +35,201 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "volumes": [ { - "name": "24", + "name": "18", "hostPath": { - "path": "25", - "type": "ěĂ凗蓏Ŋ蛊ĉy緅縕" + "path": "19", + "type": "Hr鯹)晿\u003co,c鮽ort昍řČ扷5Ɨ" }, "emptyDir": { - "medium": "Ž燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț", - "sizeLimit": "2" + "medium": "Ƣ6/ʕVŚ(ĿȊ甞", + "sizeLimit": "776" }, "gcePersistentDisk": { - "pdName": "26", - "fsType": "27", - "partition": 116584168, + "pdName": "20", + "fsType": "21", + "partition": -123438221, "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "28", - "fsType": "29", - "partition": -1161251830 + "volumeID": "22", + "fsType": "23", + "partition": 1001983654 }, "gitRepo": { - "repository": "30", - "revision": "31", - "directory": "32" + "repository": "24", + "revision": "25", + "directory": "26" }, "secret": { - "secretName": "33", + "secretName": "27", "items": [ { - "key": "34", - "path": "35", - "mode": -1261508418 + "key": "28", + "path": "29", + "mode": 641368140 } ], - "defaultMode": -1946655205, - "optional": true + "defaultMode": -105188456, + "optional": false }, "nfs": { - "server": "36", - "path": "37", - "readOnly": true + "server": "30", + "path": "31" }, "iscsi": { - "targetPortal": "38", - "iqn": "39", - "lun": -1639873916, - "iscsiInterface": "40", - "fsType": "41", - "readOnly": true, + "targetPortal": "32", + "iqn": "33", + "lun": -1284694739, + "iscsiInterface": "34", + "fsType": "35", "portals": [ - "42" + "36" ], "secretRef": { - "name": "43" + "name": "37" }, - "initiatorName": "44" + "initiatorName": "38" }, "glusterfs": { - "endpoints": "45", - "path": "46", - "readOnly": true + "endpoints": "39", + "path": "40" }, "persistentVolumeClaim": { - "claimName": "47" + "claimName": "41" }, "rbd": { "monitors": [ - "48" + "42" ], - "image": "49", - "fsType": "50", - "pool": "51", - "user": "52", - "keyring": "53", + "image": "43", + "fsType": "44", + "pool": "45", + "user": "46", + "keyring": "47", "secretRef": { - "name": "54" + "name": "48" }, "readOnly": true }, "flexVolume": { - "driver": "55", - "fsType": "56", + "driver": "49", + "fsType": "50", "secretRef": { - "name": "57" + "name": "51" }, - "readOnly": true, "options": { - "58": "59" + "52": "53" } }, "cinder": { - "volumeID": "60", - "fsType": "61", + "volumeID": "54", + "fsType": "55", + "readOnly": true, "secretRef": { - "name": "62" + "name": "56" } }, "cephfs": { "monitors": [ - "63" + "57" ], - "path": "64", - "user": "65", - "secretFile": "66", + "path": "58", + "user": "59", + "secretFile": "60", "secretRef": { - "name": "67" + "name": "61" } }, "flocker": { - "datasetName": "68", - "datasetUUID": "69" + "datasetName": "62", + "datasetUUID": "63" }, "downwardAPI": { "items": [ { - "path": "70", + "path": "64", "fieldRef": { - "apiVersion": "71", - "fieldPath": "72" + "apiVersion": "65", + "fieldPath": "66" }, "resourceFieldRef": { - "containerName": "73", - "resource": "74", - "divisor": "248" + "containerName": "67", + "resource": "68", + "divisor": "387" }, - "mode": 684408190 + "mode": -1639873916 } ], - "defaultMode": 13677460 + "defaultMode": 1246233319 }, "fc": { "targetWWNs": [ - "75" + "69" ], - "lun": -1579157235, - "fsType": "76", - "readOnly": true, + "lun": -1876826602, + "fsType": "70", "wwids": [ - "77" + "71" ] }, "azureFile": { - "secretName": "78", - "shareName": "79" + "secretName": "72", + "shareName": "73" }, "configMap": { - "name": "80", + "name": "74", "items": [ { - "key": "81", - "path": "82", - "mode": -983896210 + "key": "75", + "path": "76", + "mode": 1392988974 } ], - "defaultMode": -314157282, - "optional": false + "defaultMode": 172857432, + "optional": true }, "vsphereVolume": { - "volumePath": "83", - "fsType": "84", - "storagePolicyName": "85", - "storagePolicyID": "86" + "volumePath": "77", + "fsType": "78", + "storagePolicyName": "79", + "storagePolicyID": "80" }, "quobyte": { - "registry": "87", - "volume": "88", - "user": "89", - "group": "90", - "tenant": "91" + "registry": "81", + "volume": "82", + "user": "83", + "group": "84", + "tenant": "85" }, "azureDisk": { - "diskName": "92", - "diskURI": "93", - "cachingMode": "l畣潁谯耨V6\u0026]鴍Ɋ恧ȭ%Ǝ", - "fsType": "94", - "readOnly": true, + "diskName": "86", + "diskURI": "87", + "cachingMode": "ƕP喂ƈ", + "fsType": "88", + "readOnly": false, "kind": "" }, "photonPersistentDisk": { - "pdID": "95", - "fsType": "96" + "pdID": "89", + "fsType": "90" }, "projected": { "sources": [ { "secret": { - "name": "97", + "name": "91", "items": [ { - "key": "98", - "path": "99", - "mode": -1907421291 + "key": "92", + "path": "93", + "mode": 933484239 } ], "optional": false @@ -242,132 +237,133 @@ "downwardAPI": { "items": [ { - "path": "100", + "path": "94", "fieldRef": { - "apiVersion": "101", - "fieldPath": "102" + "apiVersion": "95", + "fieldPath": "96" }, "resourceFieldRef": { - "containerName": "103", - "resource": "104", - "divisor": "272" + "containerName": "97", + "resource": "98", + "divisor": "188" }, - "mode": -1009864962 + "mode": 548013580 } ] }, "configMap": { - "name": "105", + "name": "99", "items": [ { - "key": "106", - "path": "107", - "mode": -1870473043 + "key": "100", + "path": "101", + "mode": -2014231015 } ], "optional": false }, "serviceAccountToken": { - "audience": "108", - "expirationSeconds": 4696918449912036583, - "path": "109" + "audience": "102", + "expirationSeconds": 2889002371849040056, + "path": "103" } } ], - "defaultMode": 1794524651 + "defaultMode": -49513197 }, "portworxVolume": { - "volumeID": "110", - "fsType": "111" + "volumeID": "104", + "fsType": "105", + "readOnly": true }, "scaleIO": { - "gateway": "112", - "system": "113", + "gateway": "106", + "system": "107", "secretRef": { - "name": "114" + "name": "108" }, - "protectionDomain": "115", - "storagePool": "116", - "storageMode": "117", - "volumeName": "118", - "fsType": "119" + "protectionDomain": "109", + "storagePool": "110", + "storageMode": "111", + "volumeName": "112", + "fsType": "113", + "readOnly": true }, "storageos": { - "volumeName": "120", - "volumeNamespace": "121", - "fsType": "122", + "volumeName": "114", + "volumeNamespace": "115", + "fsType": "116", "secretRef": { - "name": "123" + "name": "117" } }, "csi": { - "driver": "124", + "driver": "118", "readOnly": true, - "fsType": "125", + "fsType": "119", "volumeAttributes": { - "126": "127" + "120": "121" }, "nodePublishSecretRef": { - "name": "128" + "name": "122" } } } ], "initContainers": [ { - "name": "129", - "image": "130", + "name": "123", + "image": "124", "command": [ - "131" + "125" ], "args": [ - "132" + "126" ], - "workingDir": "133", + "workingDir": "127", "ports": [ { - "name": "134", - "hostPort": 33624773, - "containerPort": 654894632, - "protocol": "譋娲瘹ɭȊɚɎ(", - "hostIP": "135" + "name": "128", + "hostPort": -2139825026, + "containerPort": -2040518604, + "hostIP": "129" } ], "envFrom": [ { - "prefix": "136", + "prefix": "130", "configMapRef": { - "name": "137", - "optional": true + "name": "131", + "optional": false }, "secretRef": { - "name": "138", - "optional": false + "name": "132", + "optional": true } } ], "env": [ { - "name": "139", - "value": "140", + "name": "133", + "value": "134", "valueFrom": { "fieldRef": { - "apiVersion": "141", - "fieldPath": "142" + "apiVersion": "135", + "fieldPath": "136" }, "resourceFieldRef": { - "containerName": "143", - "resource": "144", - "divisor": "85" + "containerName": "137", + "resource": "138", + "divisor": "637" }, "configMapKeyRef": { - "name": "145", - "key": "146", - "optional": true + "name": "139", + "key": "140", + "optional": false }, "secretKeyRef": { - "name": "147", - "key": "148", + "name": "141", + "key": "142", "optional": true } } @@ -375,221 +371,220 @@ ], "resources": { "limits": { - "h^樅燴壩卄": "967" + "ŨȈ\u003eŅ£趕ã/鈱$-议": "963" }, "requests": { - "Æ碛,1ZƜ/C龷ȪÆ": "750" + "鄸靇杧ž譋娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳": "781" } }, "volumeMounts": [ { - "name": "149", - "mountPath": "150", - "subPath": "151", - "mountPropagation": "鏮嵒ƫS捕ɷD¡轫n", - "subPathExpr": "152" + "name": "143", + "readOnly": true, + "mountPath": "144", + "subPath": "145", + "mountPropagation": "QZ{ʁgɸ=ǤÆ", + "subPathExpr": "146" } ], "volumeDevices": [ { - "name": "153", - "devicePath": "154" + "name": "147", + "devicePath": "148" } ], "livenessProbe": { "exec": { "command": [ - "155" + "149" ] }, "httpGet": { - "path": "156", - "port": "157", - "host": "158", - "scheme": "叚Fi皬择,Q捇ȸ{", + "path": "150", + "port": -1123620985, + "host": "151", + "scheme": "l恕ɍȇ廄裭4懙鏮嵒", "httpHeaders": [ { - "name": "159", - "value": "160" + "name": "152", + "value": "153" } ] }, "tcpSocket": { - "port": "161", - "host": "162" + "port": "154", + "host": "155" }, - "initialDelaySeconds": 753533242, - "timeoutSeconds": 1130962147, - "periodSeconds": 358822621, - "successThreshold": 1946649472, - "failureThreshold": 327574193 + "initialDelaySeconds": -1177836822, + "timeoutSeconds": 1822289444, + "periodSeconds": 1149075888, + "successThreshold": 1156607667, + "failureThreshold": 990374141 }, "readinessProbe": { "exec": { "command": [ - "163" + "156" ] }, "httpGet": { - "path": "164", - "port": 1407547486, - "host": "165", - "scheme": "ƐP_痸荎僋bŭDz鯰硰{舁吉蓨O", + "path": "157", + "port": "158", + "host": "159", + "scheme": "Ü郀", "httpHeaders": [ { - "name": "166", - "value": "167" + "name": "160", + "value": "161" } ] }, "tcpSocket": { - "port": -375094516, - "host": "168" + "port": 1184528004, + "host": "162" }, - "initialDelaySeconds": -216367368, - "timeoutSeconds": 578888856, - "periodSeconds": 2073854558, - "successThreshold": -557582532, - "failureThreshold": -773009446 + "initialDelaySeconds": -144625578, + "timeoutSeconds": -101708658, + "periodSeconds": 694611906, + "successThreshold": -1888506207, + "failureThreshold": -1904823509 }, "lifecycle": { "postStart": { "exec": { "command": [ - "169" + "163" ] }, "httpGet": { - "path": "170", - "port": "171", - "host": "172", - "scheme": "Ğİ*洣炽A@ʊʓ", + "path": "164", + "port": "165", + "host": "166", + "scheme": "ɸ殁Ka縳讋ɮ衺", "httpHeaders": [ { - "name": "173", - "value": "174" + "name": "167", + "value": "168" } ] }, "tcpSocket": { - "port": -675641027, - "host": "175" + "port": 60559686, + "host": "169" } }, "preStop": { "exec": { "command": [ - "176" + "170" ] }, "httpGet": { - "path": "177", - "port": 1781137795, - "host": "178", - "scheme": "ş\")珷", + "path": "171", + "port": "172", + "host": "173", + "scheme": "荎僋bŭDz鯰硰{舁吉蓨", "httpHeaders": [ { - "name": "179", - "value": "180" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "181", - "host": "182" + "port": -662805900, + "host": "176" } } }, - "terminationMessagePath": "183", - "terminationMessagePolicy": "ɖgȏ哙ȍȂ揲ȼDDŽLŬp:", - "imagePullPolicy": "ʖ畬x骀Šĸů湙騘\u0026啞川J缮ǚb", + "terminationMessagePath": "177", + "imagePullPolicy": "\u003c$洅ɹ7\\弌Þ帺萸", "securityContext": { "capabilities": { "add": [ - "ʬ" + "©Ǿt'" ], "drop": [ - "ʞĹ鑑6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ" + "柚ʕIã陫ʋsş\")" ] }, "privileged": false, "seLinuxOptions": { - "user": "184", - "role": "185", - "type": "186", - "level": "187" + "user": "178", + "role": "179", + "type": "180", + "level": "181" }, "windowsOptions": { - "gmsaCredentialSpecName": "188", - "gmsaCredentialSpec": "189", - "runAsUserName": "190" + "gmsaCredentialSpecName": "182", + "gmsaCredentialSpec": "183", + "runAsUserName": "184" }, - "runAsUser": -1492841452396704228, - "runAsGroup": 8400763836388347832, - "runAsNonRoot": false, + "runAsUser": -8839229724144592326, + "runAsGroup": -7175248470191167216, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "fƻfʣ繡楙¯Ħ" + "allowPrivilegeEscalation": false, + "procMount": "揲ȼDDŽL" }, - "stdin": true, "stdinOnce": true } ], "containers": [ { - "name": "191", - "image": "192", + "name": "185", + "image": "186", "command": [ - "193" + "187" ], "args": [ - "194" + "188" ], - "workingDir": "195", + "workingDir": "189", "ports": [ { - "name": "196", - "hostPort": -2068962521, - "containerPort": -155814081, - "protocol": "ɩÅ議Ǹ轺@)蓳嗘TʡȂ", - "hostIP": "197" + "name": "190", + "hostPort": -1371063077, + "containerPort": -1103608051, + "protocol": "ƅS·Õüe0ɔȖ脵鴈Ō", + "hostIP": "191" } ], "envFrom": [ { - "prefix": "198", + "prefix": "192", "configMapRef": { - "name": "199", - "optional": true + "name": "193", + "optional": false }, "secretRef": { - "name": "200", + "name": "194", "optional": true } } ], "env": [ { - "name": "201", - "value": "202", + "name": "195", + "value": "196", "valueFrom": { "fieldRef": { - "apiVersion": "203", - "fieldPath": "204" + "apiVersion": "197", + "fieldPath": "198" }, "resourceFieldRef": { - "containerName": "205", - "resource": "206", - "divisor": "912" + "containerName": "199", + "resource": "200", + "divisor": "161" }, "configMapKeyRef": { - "name": "207", - "key": "208", - "optional": false + "name": "201", + "key": "202", + "optional": true }, "secretKeyRef": { - "name": "209", - "key": "210", + "name": "203", + "key": "204", "optional": true } } @@ -597,220 +592,219 @@ ], "resources": { "limits": { - "ɹ坼É/pȿ": "804" + "ʢsɜ曢\\%枅:=ǛƓɥ踓Ǻ": "30" }, "requests": { - "妻ƅTGS5Ǎ": "526" + "塧ȱ蓿彭聡": "89" } }, "volumeMounts": [ { - "name": "211", - "mountPath": "212", - "subPath": "213", - "mountPropagation": "穠C]躢|)黰eȪ嵛4$%Qɰ", - "subPathExpr": "214" + "name": "205", + "mountPath": "206", + "subPath": "207", + "mountPropagation": "³ƞsɁ8^", + "subPathExpr": "208" } ], "volumeDevices": [ { - "name": "215", - "devicePath": "216" + "name": "209", + "devicePath": "210" } ], "livenessProbe": { "exec": { "command": [ - "217" + "211" ] }, "httpGet": { - "path": "218", - "port": 273818613, - "host": "219", - "scheme": "æNǚ錯ƶRq", + "path": "212", + "port": "213", + "host": "214", "httpHeaders": [ { - "name": "220", - "value": "221" + "name": "215", + "value": "216" } ] }, "tcpSocket": { - "port": 811476979, - "host": "222" + "port": -2068962521, + "host": "217" }, - "initialDelaySeconds": -1896921306, - "timeoutSeconds": 715087892, - "periodSeconds": 2032557749, - "successThreshold": -1893103047, - "failureThreshold": 1850174529 + "initialDelaySeconds": -155814081, + "timeoutSeconds": 744106683, + "periodSeconds": 1083816849, + "successThreshold": 1655406148, + "failureThreshold": -815194340 }, "readinessProbe": { "exec": { "command": [ - "223" + "218" ] }, "httpGet": { - "path": "224", - "port": 1035477124, - "host": "225", - "scheme": "ǚrǜnh0åȂ", + "path": "219", + "port": "220", + "host": "221", + "scheme": " 宸@Z^嫫猤痈C*ĕʄő芖{|ǘ\"", "httpHeaders": [ { - "name": "226", - "value": "227" + "name": "222", + "value": "223" } ] }, "tcpSocket": { - "port": -1024794140, - "host": "228" + "port": 1029074742, + "host": "224" }, - "initialDelaySeconds": 1669671203, - "timeoutSeconds": 636617833, - "periodSeconds": -2026931030, - "successThreshold": -1843754483, - "failureThreshold": -172061933 + "initialDelaySeconds": -1332301579, + "timeoutSeconds": -460478410, + "periodSeconds": -1318752360, + "successThreshold": -1194714697, + "failureThreshold": -2007808768 }, "lifecycle": { "postStart": { "exec": { "command": [ - "229" + "225" ] }, "httpGet": { - "path": "230", - "port": "231", - "host": "232", - "scheme": "á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ", + "path": "226", + "port": -1629040033, + "host": "227", + "scheme": "ʜǝ鿟ldg滠鼍ƭt", "httpHeaders": [ { - "name": "233", - "value": "234" + "name": "228", + "value": "229" } ] }, "tcpSocket": { - "port": -1319491110, - "host": "235" + "port": 749286488, + "host": "230" } }, "preStop": { "exec": { "command": [ - "236" + "231" ] }, "httpGet": { - "path": "237", - "port": "238", - "host": "239", - "scheme": "T捘ɍi縱ù墴", + "path": "232", + "port": "233", + "host": "234", + "scheme": "QɰVzÏ抴ŨfZhUʎ浵ɲõT", "httpHeaders": [ { - "name": "240", - "value": "241" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": -1766555420, - "host": "242" + "port": "237", + "host": "238" } } }, - "terminationMessagePath": "243", - "terminationMessagePolicy": "贫d飼$俊跾|@?鷅bȻN", - "imagePullPolicy": "H炮掊°nʮ閼咎櫸eʔŊƞ究:ho", + "terminationMessagePath": "239", + "terminationMessagePolicy": "蕭k ź贩j", + "imagePullPolicy": "瑥A", "securityContext": { "capabilities": { "add": [ - "瀐\u003cɉ湨H=å睫}堇硲" + "Ɋł/擇ɦĽ胚O醔ɍ厶耈 " ], "drop": [ - "" + "衧ȇe媹H" ] }, "privileged": false, "seLinuxOptions": { - "user": "244", - "role": "245", - "type": "246", - "level": "247" + "user": "240", + "role": "241", + "type": "242", + "level": "243" }, "windowsOptions": { - "gmsaCredentialSpecName": "248", - "gmsaCredentialSpec": "249", - "runAsUserName": "250" + "gmsaCredentialSpecName": "244", + "gmsaCredentialSpec": "245", + "runAsUserName": "246" }, - "runAsUser": 1854486716537076238, - "runAsGroup": 6028937828108618026, + "runAsUser": 7459999274215055423, + "runAsGroup": 2900848145000451690, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "閝ȝ" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ĵ" }, - "stdin": true + "tty": true } ], "ephemeralContainers": [ { - "name": "251", - "image": "252", + "name": "247", + "image": "248", "command": [ - "253" + "249" ], "args": [ - "254" + "250" ], - "workingDir": "255", + "workingDir": "251", "ports": [ { - "name": "256", - "hostPort": 1434408532, - "containerPort": -566408554, - "protocol": "劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立", - "hostIP": "257" + "name": "252", + "hostPort": -1477511050, + "containerPort": -1373541406, + "protocol": "栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼", + "hostIP": "253" } ], "envFrom": [ { - "prefix": "258", + "prefix": "254", "configMapRef": { - "name": "259", + "name": "255", "optional": false }, "secretRef": { - "name": "260", + "name": "256", "optional": false } } ], "env": [ { - "name": "261", - "value": "262", + "name": "257", + "value": "258", "valueFrom": { "fieldRef": { - "apiVersion": "263", - "fieldPath": "264" + "apiVersion": "259", + "fieldPath": "260" }, "resourceFieldRef": { - "containerName": "265", - "resource": "266", - "divisor": "948" + "containerName": "261", + "resource": "262", + "divisor": "233" }, "configMapKeyRef": { - "name": "267", - "key": "268", - "optional": true + "name": "263", + "key": "264", + "optional": false }, "secretKeyRef": { - "name": "269", - "key": "270", + "name": "265", + "key": "266", "optional": false } } @@ -818,211 +812,212 @@ ], "resources": { "limits": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "+ņ榱*Gưoɘ檲": "340" }, "requests": { - "s«öʮĀ\u003c": "176" + "ʔŊƞ究:hoĂɋ瀐\u003cɉ湨H=å睫}堇": "690" } }, "volumeMounts": [ { - "name": "271", - "readOnly": true, - "mountPath": "272", - "subPath": "273", - "mountPropagation": "4y£軶ǃ*ʙ嫙\u0026蒒5", - "subPathExpr": "274" + "name": "267", + "mountPath": "268", + "subPath": "269", + "mountPropagation": "ï瓼猀2:öY鶪5w垁", + "subPathExpr": "270" } ], "volumeDevices": [ { - "name": "275", - "devicePath": "276" + "name": "271", + "devicePath": "272" } ], "livenessProbe": { "exec": { "command": [ - "277" + "273" ] }, "httpGet": { - "path": "278", - "port": -1765469779, - "host": "279", - "scheme": "_Áȉ彂Ŵ廷s{Ⱦdz@ùƸ", + "path": "274", + "port": 1434408532, + "host": "275", + "scheme": "`劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立h", "httpHeaders": [ { - "name": "280", - "value": "281" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": 2026784878, - "host": "282" + "port": "278", + "host": "279" }, - "initialDelaySeconds": -730174220, - "timeoutSeconds": 433084615, - "periodSeconds": 208045354, - "successThreshold": -270045321, - "failureThreshold": -1366875038 + "initialDelaySeconds": -1628697284, + "timeoutSeconds": 843845736, + "periodSeconds": 354496320, + "successThreshold": -418887496, + "failureThreshold": -522126070 }, "readinessProbe": { "exec": { "command": [ - "283" + "280" ] }, "httpGet": { - "path": "284", - "port": "285", - "host": "286", + "path": "281", + "port": -1569009987, + "host": "282", + "scheme": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": 1702578303, + "host": "285" }, - "initialDelaySeconds": -1294101963, - "timeoutSeconds": -1961863213, - "periodSeconds": -103588794, - "successThreshold": -1045704964, - "failureThreshold": 1089147958 + "initialDelaySeconds": -1565157256, + "timeoutSeconds": -1113628381, + "periodSeconds": -1385586997, + "successThreshold": 460997133, + "failureThreshold": -636855511 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "286" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ", + "path": "287", + "port": "288", + "host": "289", + "scheme": "ɃHŠơŴĿǹ_Áȉ彂Ŵ廷", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "290", + "value": "291" } ] }, "tcpSocket": { - "port": 747802823, - "host": "297" + "port": "292", + "host": "293" } }, "preStop": { "exec": { "command": [ - "298" + "294" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "^拜", + "path": "295", + "port": 1923650413, + "host": "296", + "scheme": "I粛E煹ǐƲE'iþŹʣy", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "297", + "value": "298" } ] }, "tcpSocket": { - "port": "304", - "host": "305" + "port": "299", + "host": "300" } } }, - "terminationMessagePath": "306", - "terminationMessagePolicy": "ɟ踡肒Ao/樝fw[Řż丩Ž", - "imagePullPolicy": "榜VƋZ1", + "terminationMessagePath": "301", + "terminationMessagePolicy": "ɀ羭,铻OŤǢʭ嵔棂p", "securityContext": { "capabilities": { "add": [ - "眊ľǎɳ" + "邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ" ], "drop": [ - "ǿ飏騀呣" + "ɟ踡肒Ao/樝fw[Řż丩Ž" ] }, "privileged": true, "seLinuxOptions": { - "user": "307", - "role": "308", - "type": "309", - "level": "310" + "user": "302", + "role": "303", + "type": "304", + "level": "305" }, "windowsOptions": { - "gmsaCredentialSpecName": "311", - "gmsaCredentialSpec": "312", - "runAsUserName": "313" + "gmsaCredentialSpecName": "306", + "gmsaCredentialSpec": "307", + "runAsUserName": "308" }, - "runAsUser": 5074587798693200124, - "runAsGroup": -5770541110170746762, + "runAsUser": -4868342918997831990, + "runAsGroup": -7799096735007368868, "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "" + "allowPrivilegeEscalation": true, + "procMount": "Ź9ǕLLȊɞ-uƻ悖" }, - "targetContainerName": "314" + "stdin": true, + "stdinOnce": true, + "targetContainerName": "309" } ], - "restartPolicy": "\u003e5姣\u003e懔%熷谟", - "terminationGracePeriodSeconds": 5055443896475056676, - "activeDeadlineSeconds": -8249176398367452506, - "dnsPolicy": "礶惇¸t颟.鵫ǚ灄鸫rʤî萨z", + "restartPolicy": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "terminationGracePeriodSeconds": 6867982991423502362, + "activeDeadlineSeconds": -8231011499756021266, + "dnsPolicy": "ljʁ揆ɘȌ脾嚏吐ĠL", "nodeSelector": { - "315": "316" + "310": "311" }, - "serviceAccountName": "317", - "serviceAccount": "318", + "serviceAccountName": "312", + "serviceAccount": "313", "automountServiceAccountToken": false, - "nodeName": "319", - "hostPID": true, - "shareProcessNamespace": false, + "nodeName": "314", + "hostNetwork": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "320", - "role": "321", - "type": "322", - "level": "323" + "user": "315", + "role": "316", + "type": "317", + "level": "318" }, "windowsOptions": { - "gmsaCredentialSpecName": "324", - "gmsaCredentialSpec": "325", - "runAsUserName": "326" + "gmsaCredentialSpecName": "319", + "gmsaCredentialSpec": "320", + "runAsUserName": "321" }, - "runAsUser": 332054723335023688, - "runAsGroup": 6546717103134456682, + "runAsUser": 1026280325317369535, + "runAsGroup": -7224326297454280417, "runAsNonRoot": false, "supplementalGroups": [ - 4704090421576984895 + -8078748323087142398 ], - "fsGroup": -5030126702697967530, + "fsGroup": -3280013801707365244, "sysctls": [ { - "name": "327", - "value": "328" + "name": "322", + "value": "323" } ] }, "imagePullSecrets": [ { - "name": "329" + "name": "324" } ], - "hostname": "330", - "subdomain": "331", + "hostname": "325", + "subdomain": "326", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1030,19 +1025,19 @@ { "matchExpressions": [ { - "key": "332", - "operator": "瘴I\\p[ħsĨɆâĺɗ", + "key": "327", + "operator": "Ƙ枛牐ɺ皚|懥ƖN", "values": [ - "333" + "328" ] } ], "matchFields": [ { - "key": "334", - "operator": "D剂讼ɓȌʟni酛3ƁÀ*", + "key": "329", + "operator": "sĨɆâĺɗŹ倗S晒嶗U", "values": [ - "335" + "330" ] } ] @@ -1051,23 +1046,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1054858106, + "weight": -686523310, "preference": { "matchExpressions": [ { - "key": "336", - "operator": "翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź", + "key": "331", + "operator": "A", "values": [ - "337" + "332" ] } ], "matchFields": [ { - "key": "338", - "operator": "娝嘚庎D}埽uʎȺ眖R#yV'", + "key": "333", + "operator": "ƁÀ*f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ", "values": [ - "339" + "334" ] } ] @@ -1080,46 +1075,46 @@ { "labelSelector": { "matchLabels": { - "d_YH3x---.._1_.N_XvSA..e1Vx8_I-.-_56-__18Y--6-_3J--.48Y.q.v": "1-F.h-__k_K5._..O_.Js" + "nV.9.4..9..c_uo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p65": "Z4Gj._BXt.O-7___-Y_um-_r" }, "matchExpressions": [ { - "key": "n.j-6-o-h-9-15v-5925a-x12a-214-3s--gg93--p/c-o90G_A4..-L..-__0N_N.O30-_u._-2hT.-z-._7-5lL..-_--.VEa-_gn.n", + "key": "88", "operator": "NotIn", "values": [ - "E__K_g1cXfr.4_.-_-_-...1py_t" + "XK5._..O_.J_-G_--V-42E_--o90G_A4..-L..-__0N_N.O30-_u._-2T" ] } ] }, "namespaces": [ - "346" + "341" ], - "topologyKey": "347" + "topologyKey": "342" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1449289597, + "weight": 1847163341, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "43---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/32K_2qu_0S-CqW.D_8--21kF-c026n": "yP9S--858LI__.8____rO-S-P_-...07" + "xsf1gb-2-o8sdezpy--8--i--28x-8-p-lvvm-2qz7-3042t/Y7-5lL..-_--.VEa-_gn.8-c.C3F": "34_.-_-_-...1py_8-7" }, "matchExpressions": [ { - "key": "KCR.s--f.-f.-zv._._.5-H.T.-.-.T-V_S", - "operator": "NotIn", + "key": "293-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/qu_0S-CqW.D_8--21kF-c026.-iT1", + "operator": "In", "values": [ - "4.Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.wo" + "v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tv3" ] } ] }, "namespaces": [ - "354" + "349" ], - "topologyKey": "355" + "topologyKey": "350" } } ] @@ -1129,109 +1124,106 @@ { "labelSelector": { "matchLabels": { - "3--j2---2--82--cj-1-s--op34-yw/g_I-A-_3bz._M": "4_Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l" + "K_A-_9_Z_C..7o_x3..-.8-Jp-94": "Tm.__G-8...__.Q_c8.G.b_9_18" }, "matchExpressions": [ { - "key": "2-mv56c27-23---g----1/MXOnf_ZN.-_--6", + "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q", "operator": "DoesNotExist" } ] }, "namespaces": [ - "362" + "357" ], - "topologyKey": "363" + "topologyKey": "358" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1000831922, + "weight": 1008425444, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" + "x-_.--Q": "3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn" }, "matchExpressions": [ { - "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", - "operator": "NotIn", + "key": "Ue_l2.._8s--Z", + "operator": "In", "values": [ - "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a" ] } ] }, "namespaces": [ - "370" + "365" ], - "topologyKey": "371" + "topologyKey": "366" } } ] } }, - "schedulerName": "372", + "schedulerName": "367", "tolerations": [ { - "key": "373", - "operator": "!蘋`翾'ųŎ", - "value": "374", - "effect": "亦輯\u003e肸H5fŮƛƛ龢ÄƤU", - "tolerationSeconds": -1346654761106639569 + "key": "368", + "operator": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", + "value": "369", + "effect": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", + "tolerationSeconds": -5478084374918590218 } ], "hostAliases": [ { - "ip": "375", + "ip": "370", "hostnames": [ - "376" + "371" ] } ], - "priorityClassName": "377", - "priority": -418556976, + "priorityClassName": "372", + "priority": -470149352, "dnsConfig": { "nameservers": [ - "378" + "373" ], "searches": [ - "379" + "374" ], "options": [ { - "name": "380", - "value": "381" + "name": "375", + "value": "376" } ] }, "readinessGates": [ { - "conditionType": "ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ" + "conditionType": " ɲ±" } ], - "runtimeClassName": "382", + "runtimeClassName": "377", "enableServiceLinks": true, - "preemptionPolicy": "啾閥óƒ", + "preemptionPolicy": "厶s", "overhead": { - "Üɉ愂,wa纝佯fɞ": "823" + "Ö埡ÆɰŞ襵樞úʥ銀ƨ": "837" }, "topologySpreadConstraints": [ { - "maxSkew": 1831585697, - "topologyKey": "383", - "whenUnsatisfiable": "U駯Ĕ驢.'", + "maxSkew": 558113557, + "topologyKey": "378", + "whenUnsatisfiable": "ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈", "labelSelector": { "matchLabels": { - "8o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C" + "1rhm-5y--z-0/5eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" }, "matchExpressions": [ { - "key": "4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p", - "operator": "NotIn", - "values": [ - "N7_B_r" - ] + "key": "7Vz_6.Hz_V_.r_v_._X", + "operator": "Exists" } ] } @@ -1239,164 +1231,164 @@ ] }, "status": { - "phase": "Ršțb贇髪čɣ暇镘買ɱD很", + "phase": "È娒", "conditions": [ { - "type": "-墡è箁E嗆R2璻攜轴ɓ雤Ƽ]焤Ɂ", - "status": "PPöƌ镳餘ŁƁ翂|C ɩ", - "lastProbeTime": "2646-12-03T23:27:38Z", - "lastTransitionTime": "2449-11-26T19:51:46Z", - "reason": "390", - "message": "391" + "type": "滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼɏ眞a", + "status": "vĝ線", + "lastProbeTime": "2465-07-24T08:03:04Z", + "lastTransitionTime": "2131-08-12T04:27:09Z", + "reason": "385", + "message": "386" } ], - "message": "392", - "reason": "393", - "nominatedNodeName": "394", - "hostIP": "395", - "podIP": "396", + "message": "387", + "reason": "388", + "nominatedNodeName": "389", + "hostIP": "390", + "podIP": "391", "podIPs": [ { - "ip": "397" + "ip": "392" } ], "initContainerStatuses": [ { - "name": "398", + "name": "393", "state": { + "waiting": { + "reason": "394", + "message": "395" + }, + "running": { + "startedAt": "2699-03-03T11:43:14Z" + }, + "terminated": { + "exitCode": -487554832, + "signal": -1458824094, + "reason": "396", + "message": "397", + "startedAt": "2650-06-04T03:54:12Z", + "finishedAt": "2165-11-13T17:55:54Z", + "containerID": "398" + } + }, + "lastState": { "waiting": { "reason": "399", "message": "400" }, "running": { - "startedAt": "2811-10-04T08:41:37Z" + "startedAt": "2680-07-27T09:14:15Z" }, "terminated": { - "exitCode": -1088522670, - "signal": -2068003830, + "exitCode": -1323934223, + "signal": 1811345317, "reason": "401", "message": "402", - "startedAt": "2119-03-21T03:09:08Z", - "finishedAt": "2749-10-13T04:35:14Z", + "startedAt": "2009-06-10T11:07:42Z", + "finishedAt": "2653-08-15T17:19:10Z", "containerID": "403" } }, - "lastState": { - "waiting": { - "reason": "404", - "message": "405" - }, - "running": { - "startedAt": "2562-06-30T10:18:12Z" - }, - "terminated": { - "exitCode": -1438616392, - "signal": -1126236716, - "reason": "406", - "message": "407", - "startedAt": "2904-03-24T04:49:34Z", - "finishedAt": "2133-04-30T01:41:09Z", - "containerID": "408" - } - }, "ready": true, - "restartCount": 1812542907, - "image": "409", - "imageID": "410", - "containerID": "411" + "restartCount": -669668722, + "image": "404", + "imageID": "405", + "containerID": "406" } ], "containerStatuses": [ { - "name": "412", + "name": "407", "state": { + "waiting": { + "reason": "408", + "message": "409" + }, + "running": { + "startedAt": "2910-08-04T23:16:20Z" + }, + "terminated": { + "exitCode": -2042274216, + "signal": -1026421474, + "reason": "410", + "message": "411", + "startedAt": "2340-08-23T19:32:20Z", + "finishedAt": "2130-10-01T13:09:33Z", + "containerID": "412" + } + }, + "lastState": { "waiting": { "reason": "413", "message": "414" }, "running": { - "startedAt": "2241-01-03T23:16:17Z" + "startedAt": "2322-06-23T07:29:40Z" }, "terminated": { - "exitCode": 203553716, - "signal": -678317886, + "exitCode": -2077151483, + "signal": -1445105091, "reason": "415", "message": "416", - "startedAt": "2441-01-29T21:26:00Z", - "finishedAt": "2946-06-07T22:17:00Z", + "startedAt": "2339-04-15T07:12:52Z", + "finishedAt": "2110-11-12T13:53:35Z", "containerID": "417" } }, - "lastState": { - "waiting": { - "reason": "418", - "message": "419" - }, - "running": { - "startedAt": "2030-07-31T18:46:35Z" - }, - "terminated": { - "exitCode": -266595564, - "signal": 540509688, - "reason": "420", - "message": "421", - "startedAt": "2007-08-09T20:27:37Z", - "finishedAt": "2733-02-12T03:21:32Z", - "containerID": "422" - } - }, - "ready": true, - "restartCount": -481276923, - "image": "423", - "imageID": "424", - "containerID": "425" + "ready": false, + "restartCount": -1636829866, + "image": "418", + "imageID": "419", + "containerID": "420" } ], - "qosClass": "* 皗u疲fɎ嵄箲", + "qosClass": "Ƃ室逎ũ嵫蹈^ä狊ʍ誫盄灆!CU", "ephemeralContainerStatuses": [ { - "name": "426", + "name": "421", "state": { + "waiting": { + "reason": "422", + "message": "423" + }, + "running": { + "startedAt": "2607-12-09T22:58:28Z" + }, + "terminated": { + "exitCode": 2032610456, + "signal": -1362748904, + "reason": "424", + "message": "425", + "startedAt": "2529-07-24T00:07:59Z", + "finishedAt": "2821-04-28T19:08:43Z", + "containerID": "426" + } + }, + "lastState": { "waiting": { "reason": "427", "message": "428" }, "running": { - "startedAt": "2239-02-23T19:17:12Z" + "startedAt": "2592-05-16T21:14:28Z" }, "terminated": { - "exitCode": -1715308670, - "signal": 874556127, + "exitCode": -895435430, + "signal": 1367729918, "reason": "429", "message": "430", - "startedAt": "2608-10-22T14:32:49Z", - "finishedAt": "2319-12-07T05:46:54Z", + "startedAt": "2794-06-28T13:30:00Z", + "finishedAt": "2880-09-08T02:30:33Z", "containerID": "431" } }, - "lastState": { - "waiting": { - "reason": "432", - "message": "433" - }, - "running": { - "startedAt": "2914-12-01T03:17:49Z" - }, - "terminated": { - "exitCode": 319527992, - "signal": -320348856, - "reason": "434", - "message": "435", - "startedAt": "2558-06-03T13:24:16Z", - "finishedAt": "2923-10-24T10:40:15Z", - "containerID": "436" - } - }, "ready": true, - "restartCount": -2146291316, - "image": "437", - "imageID": "438", - "containerID": "439" + "restartCount": 1785084309, + "image": "432", + "imageID": "433", + "containerID": "434" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb index 8e4c9b8cb33584114ec043706929156129afc501..4de0e3d75ed8b144e2cab54ac092e1ccecd2790d 100644 GIT binary patch literal 6159 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 XXWn!(2!TGl4Epd2=)Ņ£趕ã/鈱$-议: "963" + requests: + 鄸靇杧ž譋娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳: "781" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ©Ǿt' + drop: + - 柚ʕIã陫ʋsş") + privileged: false + procMount: 揲ȼDDŽL + readOnlyRootFilesystem: true + runAsGroup: -7175248470191167216 + runAsNonRoot: true + runAsUser: -8839229724144592326 + seLinuxOptions: + level: "181" + role: "179" + type: "180" + user: "178" + windowsOptions: + gmsaCredentialSpec: "183" + gmsaCredentialSpecName: "182" + runAsUserName: "184" + stdinOnce: true + terminationMessagePath: "177" + volumeDevices: + - devicePath: "148" + name: "147" + volumeMounts: + - mountPath: "144" + mountPropagation: QZ{ʁgɸ=ǤÆ + name: "143" + readOnly: true + subPath: "145" + subPathExpr: "146" + workingDir: "127" + nodeName: "314" nodeSelector: - "315": "316" + "310": "311" overhead: - Üɉ愂,wa纝佯fɞ: "823" - preemptionPolicy: 啾閥óƒ - priority: -418556976 - priorityClassName: "377" + Ö埡ÆɰŞ襵樞úʥ銀ƨ: "837" + preemptionPolicy: 厶s + priority: -470149352 + priorityClassName: "372" readinessGates: - - conditionType: ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ - restartPolicy: '>5姣>懔%熷谟' - runtimeClassName: "382" - schedulerName: "372" + - conditionType: ' ɲ±' + restartPolicy: Ƹ[Ęİ榌U髷裎$MVȟ@7 + runtimeClassName: "377" + schedulerName: "367" securityContext: - fsGroup: -5030126702697967530 - runAsGroup: 6546717103134456682 + fsGroup: -3280013801707365244 + runAsGroup: -7224326297454280417 runAsNonRoot: false - runAsUser: 332054723335023688 + runAsUser: 1026280325317369535 seLinuxOptions: - level: "323" - role: "321" - type: "322" - user: "320" + level: "318" + role: "316" + type: "317" + user: "315" supplementalGroups: - - 4704090421576984895 + - -8078748323087142398 sysctls: - - name: "327" - value: "328" + - name: "322" + value: "323" windowsOptions: - gmsaCredentialSpec: "325" - gmsaCredentialSpecName: "324" - runAsUserName: "326" - serviceAccount: "318" - serviceAccountName: "317" - shareProcessNamespace: false - subdomain: "331" - terminationGracePeriodSeconds: 5055443896475056676 + gmsaCredentialSpec: "320" + gmsaCredentialSpecName: "319" + runAsUserName: "321" + serviceAccount: "313" + serviceAccountName: "312" + shareProcessNamespace: true + subdomain: "326" + terminationGracePeriodSeconds: 6867982991423502362 tolerations: - - effect: 亦輯>肸H5fŮƛƛ龢ÄƤU - key: "373" - operator: '!蘋`翾''ųŎ' - tolerationSeconds: -1346654761106639569 - value: "374" + - effect: 委>,趐V曡88 u怞荊ù灹8緔Tj + key: "368" + operator: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 + tolerationSeconds: -5478084374918590218 + value: "369" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p - operator: NotIn - values: - - N7_B_r + - key: 7Vz_6.Hz_V_.r_v_._X + operator: Exists matchLabels: - 8o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C - maxSkew: 1831585697 - topologyKey: "383" - whenUnsatisfiable: U駯Ĕ驢.' + 1rhm-5y--z-0/5eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX + maxSkew: 558113557 + topologyKey: "378" + whenUnsatisfiable: ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈 volumes: - awsElasticBlockStore: - fsType: "29" - partition: -1161251830 - volumeID: "28" + fsType: "23" + partition: 1001983654 + volumeID: "22" azureDisk: - cachingMode: l畣潁谯耨V6&]鴍Ɋ恧ȭ%Ǝ - diskName: "92" - diskURI: "93" - fsType: "94" + cachingMode: ƕP喂ƈ + diskName: "86" + diskURI: "87" + fsType: "88" kind: "" - readOnly: true + readOnly: false azureFile: - secretName: "78" - shareName: "79" + secretName: "72" + shareName: "73" cephfs: monitors: - - "63" - path: "64" - secretFile: "66" + - "57" + path: "58" + secretFile: "60" secretRef: - name: "67" - user: "65" + name: "61" + user: "59" cinder: - fsType: "61" + fsType: "55" + readOnly: true secretRef: - name: "62" - volumeID: "60" + name: "56" + volumeID: "54" configMap: - defaultMode: -314157282 + defaultMode: 172857432 items: - - key: "81" - mode: -983896210 - path: "82" - name: "80" - optional: false + - key: "75" + mode: 1392988974 + path: "76" + name: "74" + optional: true csi: - driver: "124" - fsType: "125" + driver: "118" + fsType: "119" nodePublishSecretRef: - name: "128" + name: "122" readOnly: true volumeAttributes: - "126": "127" + "120": "121" downwardAPI: - defaultMode: 13677460 + defaultMode: 1246233319 items: - fieldRef: - apiVersion: "71" - fieldPath: "72" - mode: 684408190 - path: "70" + apiVersion: "65" + fieldPath: "66" + mode: -1639873916 + path: "64" resourceFieldRef: - containerName: "73" - divisor: "248" - resource: "74" + containerName: "67" + divisor: "387" + resource: "68" emptyDir: - medium: Ž燹憍峕?狱³-Ǐ忄*齧獚敆Ȏț - sizeLimit: "2" + medium: Ƣ6/ʕVŚ(ĿȊ甞 + sizeLimit: "776" fc: - fsType: "76" - lun: -1579157235 - readOnly: true + fsType: "70" + lun: -1876826602 targetWWNs: - - "75" + - "69" wwids: - - "77" + - "71" flexVolume: - driver: "55" - fsType: "56" + driver: "49" + fsType: "50" options: - "58": "59" - readOnly: true + "52": "53" secretRef: - name: "57" + name: "51" flocker: - datasetName: "68" - datasetUUID: "69" + datasetName: "62" + datasetUUID: "63" gcePersistentDisk: - fsType: "27" - partition: 116584168 - pdName: "26" + fsType: "21" + partition: -123438221 + pdName: "20" readOnly: true gitRepo: - directory: "32" - repository: "30" - revision: "31" + directory: "26" + repository: "24" + revision: "25" glusterfs: - endpoints: "45" - path: "46" - readOnly: true + endpoints: "39" + path: "40" hostPath: - path: "25" - type: ěĂ凗蓏Ŋ蛊ĉy緅縕 + path: "19" + type: Hr鯹)晿F|0LSr}hku4S4O1Q(IxIs6*@c*S^WK};4iy^(Nl;`21%V0@2pxhhoi;@= z*MGa1ttgo*yE&9;mRM3ti%qVEkd%rYmO@%xHH$JqO|iFcoy#yVe7^7Z9u)2s1P{AY z1!9aBc_{OS!XuT(Zr+3kbzMUcX&8Ae%`%Bbpk{=wU*bKXHy*$IJYOtwp4=>1><*M$ znMiY)V^4M*&2$XPS45Z7csU(?RXG`|{1DC5#+@#wCS4!Sw6(quWV!-QgM7$&I}upA z*PVG5T<&d5)|DnBamDLBqY(fB*6BC&0c@1W69ebdfuZHma5~cKw7JIHFI;><&ku>r($JIv zv{6a@rbDJzG%|u(m`Sc3BDlq&SO(&MaJ*QcEA>BWHCYv_&+zbQCz%ZEg zcYP{$jaj{2TZ4tt&V2vI&i)JoQ442RY<#U385N&Q3@eNxF1|R?xf0oBKSN-c)VF-V z@Lr|&4=eKM(Q(xPU4T(;0md@GgjH+o*uxvF8hkhQ8A#24_FA_0tJqWlwrDjq8%$NO z>Z32I;5l}8-rNA9$$;pLx-(LjIKZg2ReLpen&Z;u@9Opf1rVqLVo>W-Uwr)*vzh{n bKgzNeL3BZQWGR#f0m1Z}_y92#PUZdsZMy@g delta 790 zcmXZZ+e;Kt90%~3V{L~CVi>}Qp$C~K*={rE%sDe-2(g5eN>GLmK~X_H^bplQutuq% zZfd$-R(EmDQj{%83j<}tmR&O`!6mv7VWjJ>6nP^>%g)X?FK6b!e7?WSwkx=&;Xuiz zOZdnOJd$`U^SZ(lw-T#NKdg-n+$x?A)m%0g!oEwfzBg@07TTWDSZ(=S&&XA@U!xY) z5m61@#3m(FMc8UAI>#3_b{zD&MPZ)+G*g0ti=CFlNx|L1-gs+bB;HMrPWsEGQXw}# z7M-X`HHQ`k8`9miiORA>I9^{SKWn%pi}9T0NH6sKsO~pfUv52?ZGvXlQsD5 zU1W59n?1a^()BV7WT0CLAgUX}KvOhmiX4LQ`E0uGhR78FqRFST6hRUo*rpPFQ*nV& z6s8uVLmLjYG&~jD-1cT!84#U;gn`q^56?<%@ca6R?~D!7JT8A}V0jTBKnxaOdH}JC zxwB)eaEv574Pyyl-A-H0gnNtZw8@IrxxY@@t3W2~yvhI*1z^g;hJKHFw=UXg!!wIr zh1oQ0IOSuLftC&WmXncyA7l58j?@(Ej_Ofqcg@u#m1Y_Renn5q6;l_S27 y)Q{!J;21R-V=?AO)144oAY*>5%?`4u6aYhIwTGUxXPis~42@kP4=}LIDcpbA&=iCK diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml index e0ca482c1bc..968d05d0a3a 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,127 +25,128 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" status: conditions: - - lastProbeTime: "2942-12-08T14:55:02Z" - lastTransitionTime: "2763-08-05T14:40:52Z" - message: "25" - reason: "24" - status: -Ǐ忄*齧獚敆Ȏțê - type: (ĿȊ甞谐颋DžSǡƏS + - lastProbeTime: "2508-05-13T03:16:18Z" + lastTransitionTime: "2514-12-25T07:56:30Z" + message: "19" + reason: "18" + status: ĿȊ甞谐颋DžSǡƏS$+½ + type: ċV夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉ containerStatuses: - - containerID: "59" - image: "57" - imageID: "58" + - containerID: "53" + image: "51" + imageID: "52" lastState: running: - startedAt: "2059-10-03T11:19:35Z" + startedAt: "2835-11-08T19:46:44Z" terminated: - containerID: "56" - exitCode: -1771047449 - finishedAt: "2659-11-29T13:57:54Z" - message: "55" - reason: "54" - signal: -1280107919 - startedAt: "2619-11-08T20:15:12Z" + containerID: "50" + exitCode: 705385560 + finishedAt: "2801-08-27T04:51:34Z" + message: "49" + reason: "48" + signal: -1876826602 + startedAt: "2380-12-20T20:55:16Z" waiting: - message: "53" - reason: "52" - name: "46" + message: "47" + reason: "46" + name: "40" ready: false - restartCount: 763139569 + restartCount: 607015027 state: running: - startedAt: "2838-11-28T02:42:14Z" + startedAt: "2149-06-18T16:38:18Z" terminated: - containerID: "51" - exitCode: -2020907169 - finishedAt: "2906-07-22T10:19:33Z" - message: "50" - reason: "49" - signal: 607015027 - startedAt: "2448-04-25T19:46:34Z" + containerID: "45" + exitCode: 254375933 + finishedAt: "2516-08-23T06:28:28Z" + message: "44" + reason: "43" + signal: 523306325 + startedAt: "2874-05-09T23:28:59Z" waiting: - message: "48" - reason: "47" + message: "42" + reason: "41" ephemeralContainerStatuses: - - containerID: "73" - image: "71" - imageID: "72" + - containerID: "67" + image: "65" + imageID: "66" lastState: running: - startedAt: "2617-08-06T21:50:30Z" + startedAt: "2135-11-17T10:03:44Z" terminated: - containerID: "70" - exitCode: 819364842 - finishedAt: "2772-11-03T11:41:34Z" - message: "69" - reason: "68" - signal: 933484239 - startedAt: "2907-09-12T12:00:36Z" + containerID: "64" + exitCode: -580241939 + finishedAt: "2793-11-04T09:57:32Z" + message: "63" + reason: "62" + signal: 1654683896 + startedAt: "2964-05-31T10:17:54Z" waiting: - message: "67" - reason: "66" - name: "60" + message: "61" + reason: "60" + name: "54" ready: true - restartCount: -314157282 + restartCount: 1111087895 state: running: - startedAt: "2928-05-04T19:41:29Z" + startedAt: "2899-04-10T17:42:26Z" terminated: - containerID: "65" - exitCode: 13677460 - finishedAt: "2610-09-08T03:07:19Z" - message: "64" - reason: "63" - signal: -444792810 - startedAt: "2843-03-23T07:04:39Z" + containerID: "59" + exitCode: 712024464 + finishedAt: "2617-08-06T21:50:30Z" + message: "58" + reason: "57" + signal: -1579157235 + startedAt: "2809-10-24T21:55:41Z" waiting: - message: "62" - reason: "61" - hostIP: "29" + message: "56" + reason: "55" + hostIP: "23" initContainerStatuses: - - containerID: "45" - image: "43" - imageID: "44" + - containerID: "39" + image: "37" + imageID: "38" lastState: running: - startedAt: "2567-05-09T03:50:37Z" + startedAt: "2763-08-05T14:40:52Z" terminated: - containerID: "42" - exitCode: -655946460 - finishedAt: "2680-06-15T09:55:37Z" - message: "41" - reason: "40" - signal: -819620182 - startedAt: "2516-08-23T06:28:28Z" + containerID: "36" + exitCode: 1979600290 + finishedAt: "2194-08-27T14:35:41Z" + message: "35" + reason: "34" + signal: -827642756 + startedAt: "2055-07-31T00:22:12Z" waiting: - message: "39" - reason: "38" - name: "32" + message: "33" + reason: "32" + name: "26" ready: true - restartCount: -763018796 + restartCount: -734360256 state: running: - startedAt: "2568-01-21T11:26:44Z" + startedAt: "2680-10-21T03:40:10Z" terminated: - containerID: "37" - exitCode: -593117110 - finishedAt: "2491-01-26T12:57:24Z" - message: "36" - reason: "35" - signal: -734360256 - startedAt: "2777-11-15T04:18:59Z" + containerID: "31" + exitCode: -1965738697 + finishedAt: "2570-10-14T17:33:22Z" + message: "30" + reason: "29" + signal: 1390645844 + startedAt: "2559-01-29T18:41:04Z" waiting: - message: "34" - reason: "33" - message: "26" - nominatedNodeName: "28" - phase: ƗǸƢ6/ʕV - podIP: "30" + message: "28" + reason: "27" + message: "20" + nominatedNodeName: "22" + phase: īqJ枊a8衍`Ĩɘ.蘯 + podIP: "24" podIPs: - - ip: "31" - reason: "27" + - ip: "25" + qosClass: ȮO励鹗塢ē ƕP + reason: "21" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json index 8e5f5c883ea..29cd59c2638 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,383 +35,377 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "template": { "metadata": { - "name": "24", - "generateName": "25", - "namespace": "26", - "selfLink": "27", - "uid": "^苣", - "resourceVersion": "1092536316763508004", - "generation": 1905795315403748486, + "name": "18", + "generateName": "19", + "namespace": "20", + "selfLink": "21", + "uid": "SǡƏ", + "resourceVersion": "17916580954637291219", + "generation": 5259823216098853135, "creationTimestamp": null, - "deletionGracePeriodSeconds": 7323204920313990232, + "deletionGracePeriodSeconds": 4075183944016503389, "labels": { - "29": "30" + "23": "24" }, "annotations": { - "31": "32" + "25": "26" }, "ownerReferences": [ { - "apiVersion": "33", - "kind": "34", - "name": "35", - "uid": "谐颋DžSǡƏS$+½H牗洝尿", + "apiVersion": "27", + "kind": "28", + "name": "29", + "uid": "ɑ", "controller": true, "blockOwnerDeletion": false } ], "finalizers": [ - "36" + "30" ], - "clusterName": "37", + "clusterName": "31", "managedFields": [ { - "manager": "38", - "operation": "B峅x4%a", - "apiVersion": "39", - "fields": {"40":{"41":null}} + "manager": "32", + "operation": "ěĂ凗蓏Ŋ蛊ĉy緅縕", + "apiVersion": "33" } ] }, "spec": { "volumes": [ { - "name": "45", + "name": "34", "hostPath": { - "path": "46", - "type": "DrȮ" + "path": "35", + "type": "H牗洝尿彀亞螩B" }, "emptyDir": { - "medium": "励鹗塢ē ", - "sizeLimit": "995" + "medium": "x", + "sizeLimit": "826" }, "gcePersistentDisk": { - "pdName": "47", - "fsType": "48", - "partition": -664310043, + "pdName": "36", + "fsType": "37", + "partition": -1487653240, "readOnly": true }, "awsElasticBlockStore": { - "volumeID": "49", - "fsType": "50", - "partition": 13677460, - "readOnly": true + "volumeID": "38", + "fsType": "39", + "partition": -1261508418 }, "gitRepo": { - "repository": "51", - "revision": "52", - "directory": "53" + "repository": "40", + "revision": "41", + "directory": "42" }, "secret": { - "secretName": "54", + "secretName": "43", "items": [ { - "key": "55", - "path": "56", - "mode": 1557090007 + "key": "44", + "path": "45", + "mode": -655946460 } ], - "defaultMode": 819364842, + "defaultMode": -1639873916, "optional": true }, "nfs": { - "server": "57", - "path": "58" + "server": "46", + "path": "47" }, "iscsi": { - "targetPortal": "59", - "iqn": "60", - "lun": -314157282, - "iscsiInterface": "61", - "fsType": "62", - "readOnly": true, + "targetPortal": "48", + "iqn": "49", + "lun": -400609276, + "iscsiInterface": "50", + "fsType": "51", "portals": [ - "63" + "52" ], "secretRef": { - "name": "64" + "name": "53" }, - "initiatorName": "65" + "initiatorName": "54" }, "glusterfs": { - "endpoints": "66", - "path": "67", - "readOnly": true + "endpoints": "55", + "path": "56" }, "persistentVolumeClaim": { - "claimName": "68", + "claimName": "57", "readOnly": true }, "rbd": { "monitors": [ - "69" + "58" ], - "image": "70", - "fsType": "71", - "pool": "72", - "user": "73", - "keyring": "74", + "image": "59", + "fsType": "60", + "pool": "61", + "user": "62", + "keyring": "63", "secretRef": { - "name": "75" + "name": "64" }, "readOnly": true }, "flexVolume": { - "driver": "76", - "fsType": "77", + "driver": "65", + "fsType": "66", "secretRef": { - "name": "78" + "name": "67" }, - "readOnly": true, "options": { - "79": "80" + "68": "69" } }, "cinder": { - "volumeID": "81", - "fsType": "82", - "readOnly": true, + "volumeID": "70", + "fsType": "71", "secretRef": { - "name": "83" + "name": "72" } }, "cephfs": { "monitors": [ - "84" + "73" ], - "path": "85", - "user": "86", - "secretFile": "87", + "path": "74", + "user": "75", + "secretFile": "76", "secretRef": { - "name": "88" + "name": "77" } }, "flocker": { - "datasetName": "89", - "datasetUUID": "90" + "datasetName": "78", + "datasetUUID": "79" }, "downwardAPI": { "items": [ { - "path": "91", + "path": "80", "fieldRef": { - "apiVersion": "92", - "fieldPath": "93" + "apiVersion": "81", + "fieldPath": "82" }, "resourceFieldRef": { - "containerName": "94", - "resource": "95", - "divisor": "291" + "containerName": "83", + "resource": "84", + "divisor": "687" }, - "mode": 2107119206 + "mode": -1413529736 } ], - "defaultMode": -2077638334 + "defaultMode": 1557090007 }, "fc": { "targetWWNs": [ - "96" + "85" ], - "lun": -2040518604, - "fsType": "97", + "lun": 933484239, + "fsType": "86", "wwids": [ - "98" + "87" ] }, "azureFile": { - "secretName": "99", - "shareName": "100" + "secretName": "88", + "shareName": "89" }, "configMap": { - "name": "101", + "name": "90", "items": [ { - "key": "102", - "path": "103", - "mode": -1907421291 + "key": "91", + "path": "92", + "mode": 1913946997 } ], - "defaultMode": -1570767512, - "optional": false + "defaultMode": -1648533063, + "optional": true }, "vsphereVolume": { - "volumePath": "104", - "fsType": "105", - "storagePolicyName": "106", - "storagePolicyID": "107" + "volumePath": "93", + "fsType": "94", + "storagePolicyName": "95", + "storagePolicyID": "96" }, "quobyte": { - "registry": "108", - "volume": "109", - "readOnly": true, - "user": "110", - "group": "111", - "tenant": "112" + "registry": "97", + "volume": "98", + "user": "99", + "group": "100", + "tenant": "101" }, "azureDisk": { - "diskName": "113", - "diskURI": "114", - "cachingMode": "n宂¬轚9Ȏ瀮", - "fsType": "115", - "readOnly": true, - "kind": "Ō¾\\ĒP鄸靇杧ž譋娲瘹ɭ" + "diskName": "102", + "diskURI": "103", + "cachingMode": "", + "fsType": "104", + "readOnly": false, + "kind": "ƺ魋Ď儇击3ƆìQ" }, "photonPersistentDisk": { - "pdID": "116", - "fsType": "117" + "pdID": "105", + "fsType": "106" }, "projected": { "sources": [ { "secret": { - "name": "118", + "name": "107", "items": [ { - "key": "119", - "path": "120", - "mode": 2036549700 + "key": "108", + "path": "109", + "mode": 565864299 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "121", + "path": "110", "fieldRef": { - "apiVersion": "122", - "fieldPath": "123" + "apiVersion": "111", + "fieldPath": "112" }, "resourceFieldRef": { - "containerName": "124", - "resource": "125", - "divisor": "852" + "containerName": "113", + "resource": "114", + "divisor": "546" }, - "mode": 75785535 + "mode": 1167335696 } ] }, "configMap": { - "name": "126", + "name": "115", "items": [ { - "key": "127", - "path": "128", - "mode": 813865935 + "key": "116", + "path": "117", + "mode": -1009864962 } ], "optional": true }, "serviceAccountToken": { - "audience": "129", - "expirationSeconds": 3094703520378368232, - "path": "130" + "audience": "118", + "expirationSeconds": -8033620543910768540, + "path": "119" } } ], - "defaultMode": -1253565243 + "defaultMode": -1880297089 }, "portworxVolume": { - "volumeID": "131", - "fsType": "132" + "volumeID": "120", + "fsType": "121", + "readOnly": true }, "scaleIO": { - "gateway": "133", - "system": "134", + "gateway": "122", + "system": "123", "secretRef": { - "name": "135" + "name": "124" }, "sslEnabled": true, - "protectionDomain": "136", - "storagePool": "137", - "storageMode": "138", - "volumeName": "139", - "fsType": "140" + "protectionDomain": "125", + "storagePool": "126", + "storageMode": "127", + "volumeName": "128", + "fsType": "129", + "readOnly": true }, "storageos": { - "volumeName": "141", - "volumeNamespace": "142", - "fsType": "143", + "volumeName": "130", + "volumeNamespace": "131", + "fsType": "132", "readOnly": true, "secretRef": { - "name": "144" + "name": "133" } }, "csi": { - "driver": "145", - "readOnly": true, - "fsType": "146", + "driver": "134", + "readOnly": false, + "fsType": "135", "volumeAttributes": { - "147": "148" + "136": "137" }, "nodePublishSecretRef": { - "name": "149" + "name": "138" } } } ], "initContainers": [ { - "name": "150", - "image": "151", + "name": "139", + "image": "140", "command": [ - "152" + "141" ], "args": [ - "153" + "142" ], - "workingDir": "154", + "workingDir": "143", "ports": [ { - "name": "155", - "hostPort": -737070070, - "containerPort": -1417286635, - "protocol": "/C龷ȪÆl殛瓷雼浢Ü礽绅", - "hostIP": "156" + "name": "144", + "hostPort": 1094434838, + "containerPort": -1354971977, + "protocol": "ĺ稥", + "hostIP": "145" } ], "envFrom": [ { - "prefix": "157", + "prefix": "146", "configMapRef": { - "name": "158", - "optional": true + "name": "147", + "optional": false }, "secretRef": { - "name": "159", - "optional": false + "name": "148", + "optional": true } } ], "env": [ { - "name": "160", - "value": "161", + "name": "149", + "value": "150", "valueFrom": { "fieldRef": { - "apiVersion": "162", - "fieldPath": "163" + "apiVersion": "151", + "fieldPath": "152" }, "resourceFieldRef": { - "containerName": "164", - "resource": "165", - "divisor": "526" + "containerName": "153", + "resource": "154", + "divisor": "711" }, "configMapKeyRef": { - "name": "166", - "key": "167", - "optional": false + "name": "155", + "key": "156", + "optional": true }, "secretKeyRef": { - "name": "168", - "key": "169", + "name": "157", + "key": "158", "optional": false } } @@ -419,654 +413,657 @@ ], "resources": { "limits": { - "i皬择,Q捇ȸ{+ɸ殁Ka縳": "499" + "ėf倐ȓ圬剴扲ȿQZ{ʁgɸ": "147" }, "requests": { - "笓珣筩ƐP_痸荎": "787" + "": "609" } }, "volumeMounts": [ { - "name": "170", - "mountPath": "171", - "subPath": "172", - "mountPropagation": "¿燥ǖ_è绺", - "subPathExpr": "173" + "name": "159", + "readOnly": true, + "mountPath": "160", + "subPath": "161", + "mountPropagation": ",1ZƜ/C龷ȪÆ", + "subPathExpr": "162" } ], "volumeDevices": [ { - "name": "174", - "devicePath": "175" + "name": "163", + "devicePath": "164" } ], "livenessProbe": { "exec": { "command": [ - "176" + "165" ] }, "httpGet": { - "path": "177", - "port": -662805900, - "host": "178", + "path": "166", + "port": 126800818, + "host": "167", + "scheme": "ƫS捕ɷ", "httpHeaders": [ { - "name": "179", - "value": "180" + "name": "168", + "value": "169" } ] }, "tcpSocket": { - "port": "181", - "host": "182" + "port": 990374141, + "host": "170" }, - "initialDelaySeconds": 578888856, - "timeoutSeconds": 2073854558, - "periodSeconds": -557582532, - "successThreshold": -773009446, - "failureThreshold": -1040245211 + "initialDelaySeconds": 1673568505, + "timeoutSeconds": 1665622609, + "periodSeconds": -972874331, + "successThreshold": 860842148, + "failureThreshold": -1373481716 }, "readinessProbe": { "exec": { "command": [ - "183" + "171" ] }, "httpGet": { - "path": "184", - "port": -2064088433, - "host": "185", - "scheme": "Do©Ǿt'容柚ʕIã陫ʋs", + "path": "172", + "port": -144625578, + "host": "173", + "scheme": "择,Q捇ȸ{+", "httpHeaders": [ { - "name": "186", - "value": "187" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "188", - "host": "189" + "port": 1130962147, + "host": "176" }, - "initialDelaySeconds": 229600975, - "timeoutSeconds": -35598353, - "periodSeconds": -1697933829, - "successThreshold": -1438986781, - "failureThreshold": -330720710 + "initialDelaySeconds": 358822621, + "timeoutSeconds": 1946649472, + "periodSeconds": 327574193, + "successThreshold": 1718125857, + "failureThreshold": -366263237 }, "lifecycle": { "postStart": { "exec": { "command": [ - "190" + "177" ] }, "httpGet": { - "path": "191", - "port": 1348141491, - "host": "192", - "scheme": "Ȃ揲ȼ", + "path": "178", + "port": "179", + "host": "180", + "scheme": "/Ź u衲\u003c¿燥ǖ_è绺Lɋ聻鎥", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "181", + "value": "182" } ] }, "tcpSocket": { - "port": "195", - "host": "196" + "port": 2115094729, + "host": "183" } }, "preStop": { "exec": { "command": [ - "197" + "184" ] }, "httpGet": { - "path": "198", - "port": 468716734, - "host": "199", - "scheme": "Cʖ畬x骀", + "path": "185", + "port": "186", + "host": "187", + "scheme": "\u003c檔Ň'Ğİ", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "202", - "host": "203" + "port": 1460441819, + "host": "190" } } }, - "terminationMessagePath": "204", - "terminationMessagePolicy": "ů湙騘\u0026", - "imagePullPolicy": "Ȗ脵鴈Ō", + "terminationMessagePath": "191", + "terminationMessagePolicy": "A", + "imagePullPolicy": "'容", "securityContext": { "capabilities": { "add": [ - "yǠ/淹\\韲翁\u0026ʢsɜ" + "Iã陫ʋ" ], "drop": [ - "\\%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ" + "ş\")珷" ] }, "privileged": false, "seLinuxOptions": { - "user": "205", - "role": "206", - "type": "207", - "level": "208" + "user": "192", + "role": "193", + "type": "194", + "level": "195" }, "windowsOptions": { - "gmsaCredentialSpecName": "209", - "gmsaCredentialSpec": "210", - "runAsUserName": "211" + "gmsaCredentialSpecName": "196", + "gmsaCredentialSpec": "197", + "runAsUserName": "198" }, - "runAsUser": 8685765401091182865, - "runAsGroup": -4139900758039117471, + "runAsUser": 6670396461729736072, + "runAsGroup": 411720356558623363, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^" + "procMount": "ȼDDŽLŬp:籀帊ìƅS·Õüe0" }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "212", - "image": "213", + "name": "199", + "image": "200", "command": [ - "214" + "201" ], "args": [ - "215" + "202" ], - "workingDir": "216", + "workingDir": "203", "ports": [ { - "name": "217", - "hostPort": -239302370, - "containerPort": -1215463021, - "protocol": "ăȲϤĦʅ芝", - "hostIP": "218" + "name": "204", + "hostPort": -2034643700, + "containerPort": -156457987, + "protocol": "焁yǠ/淹\\韲翁\u0026ʢ", + "hostIP": "205" } ], "envFrom": [ { - "prefix": "219", + "prefix": "206", "configMapRef": { - "name": "220", - "optional": false - }, - "secretRef": { - "name": "221", + "name": "207", "optional": true - } - } - ], - "env": [ - { - "name": "222", - "value": "223", - "valueFrom": { - "fieldRef": { - "apiVersion": "224", - "fieldPath": "225" - }, - "resourceFieldRef": { - "containerName": "226", - "resource": "227", - "divisor": "706" - }, - "configMapKeyRef": { - "name": "228", - "key": "229", - "optional": false - }, - "secretKeyRef": { - "name": "230", - "key": "231", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "*ĕʄő芖{|ǘ\"^饣": "254" - }, - "requests": { - "Ř阌Ŗ怳冘HǺƶȤ^}穠C]躢|)黰": "190" - } - }, - "volumeMounts": [ - { - "name": "232", - "readOnly": true, - "mountPath": "233", - "subPath": "234", - "mountPropagation": "ȫşŇɜa", - "subPathExpr": "235" - } - ], - "volumeDevices": [ - { - "name": "236", - "devicePath": "237" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "238" - ] - }, - "httpGet": { - "path": "239", - "port": "240", - "host": "241", - "scheme": "抴ŨfZhUʎ浵ɲõ", - "httpHeaders": [ - { - "name": "242", - "value": "243" - } - ] - }, - "tcpSocket": { - "port": -1980941277, - "host": "244" - }, - "initialDelaySeconds": -124607411, - "timeoutSeconds": -1967211777, - "periodSeconds": -2138399859, - "successThreshold": 943356038, - "failureThreshold": 1499244521 - }, - "readinessProbe": { - "exec": { - "command": [ - "245" - ] - }, - "httpGet": { - "path": "246", - "port": "247", - "host": "248", - "scheme": "A徙ɶɊł/擇ɦĽ胚", - "httpHeaders": [ - { - "name": "249", - "value": "250" - } - ] - }, - "tcpSocket": { - "port": -1502363275, - "host": "251" - }, - "initialDelaySeconds": -1950133943, - "timeoutSeconds": -65465189, - "periodSeconds": 1836896522, - "successThreshold": -2101285839, - "failureThreshold": 2064656704 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "252" - ] - }, - "httpGet": { - "path": "253", - "port": "254", - "host": "255", - "scheme": "Hǝ呮}臷Ľð»", - "httpHeaders": [ - { - "name": "256", - "value": "257" - } - ] - }, - "tcpSocket": { - "port": "258", - "host": "259" - } - }, - "preStop": { - "exec": { - "command": [ - "260" - ] - }, - "httpGet": { - "path": "261", - "port": "262", - "host": "263", - "scheme": "鄌eÞȦY籎顒", - "httpHeaders": [ - { - "name": "264", - "value": "265" - } - ] - }, - "tcpSocket": { - "port": "266", - "host": "267" - } - } - }, - "terminationMessagePath": "268", - "terminationMessagePolicy": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "imagePullPolicy": "?鷅bȻN", - "securityContext": { - "capabilities": { - "add": [ - "榱*Gưoɘ檲" - ], - "drop": [ - "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "269", - "role": "270", - "type": "271", - "level": "272" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "273", - "gmsaCredentialSpec": "274", - "runAsUserName": "275" - }, - "runAsUser": 2498881510781298156, - "runAsGroup": 1396880349510758210, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "猀2:ö" - }, - "stdinOnce": true - } - ], - "ephemeralContainers": [ - { - "name": "276", - "image": "277", - "command": [ - "278" - ], - "args": [ - "279" - ], - "workingDir": "280", - "ports": [ - { - "name": "281", - "hostPort": 66472042, - "containerPort": 2130088978, - "protocol": "辪虽U珝Żwʮ馜", - "hostIP": "282" - } - ], - "envFrom": [ - { - "prefix": "283", - "configMapRef": { - "name": "284", - "optional": false }, "secretRef": { - "name": "285", + "name": "208", "optional": false } } ], "env": [ { - "name": "286", - "value": "287", + "name": "209", + "value": "210", "valueFrom": { "fieldRef": { - "apiVersion": "288", - "fieldPath": "289" + "apiVersion": "211", + "fieldPath": "212" }, "resourceFieldRef": { - "containerName": "290", - "resource": "291", - "divisor": "232" + "containerName": "213", + "resource": "214", + "divisor": "665" }, "configMapKeyRef": { - "name": "292", - "key": "293", - "optional": true + "name": "215", + "key": "216", + "optional": false }, "secretKeyRef": { - "name": "294", - "key": "295", - "optional": true + "name": "217", + "key": "218", + "optional": false } } } ], "resources": { "limits": { - "ȃ賲鐅臬dH巧壚tC十Oɢǵ": "909" + "ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ": "206" }, "requests": { - "": "116" + "fʣ繡楙¯ĦE勗E濞偘1ɩ": "161" } }, "volumeMounts": [ { - "name": "296", - "mountPath": "297", - "subPath": "298", - "mountPropagation": "贅wE@Ȗs«öʮĀ\u003cé", - "subPathExpr": "299" + "name": "219", + "readOnly": true, + "mountPath": "220", + "subPath": "221", + "mountPropagation": "ʅ芝M 宸@Z^嫫猤痈C*ĕʄő芖{", + "subPathExpr": "222" } ], "volumeDevices": [ { - "name": "300", - "devicePath": "301" + "name": "223", + "devicePath": "224" } ], "livenessProbe": { "exec": { "command": [ - "302" + "225" ] }, "httpGet": { - "path": "303", - "port": "304", - "host": "305", - "scheme": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", + "path": "226", + "port": "227", + "host": "228", + "scheme": "/pȿŘ阌Ŗ怳冘H", "httpHeaders": [ { - "name": "306", - "value": "307" + "name": "229", + "value": "230" } ] }, "tcpSocket": { - "port": 1428858742, - "host": "308" + "port": -1057154155, + "host": "231" }, - "initialDelaySeconds": -1169420648, - "timeoutSeconds": -1762049522, - "periodSeconds": -1478830017, - "successThreshold": -1960797080, - "failureThreshold": 1923650413 + "initialDelaySeconds": -1999218345, + "timeoutSeconds": 1366561945, + "periodSeconds": 657514697, + "successThreshold": 408756018, + "failureThreshold": 437263194 }, "readinessProbe": { "exec": { "command": [ - "309" + "232" ] }, "httpGet": { - "path": "310", - "port": "311", - "host": "312", - "scheme": "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0", + "path": "233", + "port": "234", + "host": "235", + "scheme": "ƭt?QȫşŇɜ", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": "315", - "host": "316" + "port": "238", + "host": "239" }, - "initialDelaySeconds": -1892182508, - "timeoutSeconds": 424236719, - "periodSeconds": -2031266553, - "successThreshold": -840997104, - "failureThreshold": -648954478 + "initialDelaySeconds": 673378190, + "timeoutSeconds": 1701891633, + "periodSeconds": -1768075156, + "successThreshold": 273818613, + "failureThreshold": -522879476 }, "lifecycle": { "postStart": { "exec": { "command": [ - "317" + "240" ] }, "httpGet": { - "path": "318", - "port": -1710454086, - "host": "319", - "scheme": "mɩC[ó瓧", + "path": "241", + "port": "242", + "host": "243", + "scheme": "ƶRquA?瞲Ť倱\u003cįXŋ朘", "httpHeaders": [ { - "name": "320", - "value": "321" + "name": "244", + "value": "245" } ] }, "tcpSocket": { - "port": -122979840, - "host": "322" + "port": "246", + "host": "247" } }, "preStop": { "exec": { "command": [ - "323" + "248" ] }, "httpGet": { - "path": "324", - "port": "325", - "host": "326", - "scheme": "籘Àǒɿʒ刽ʼn", + "path": "249", + "port": 2147073181, + "host": "250", + "scheme": "0åȂ町恰nj揠8lj", "httpHeaders": [ { - "name": "327", - "value": "328" + "name": "251", + "value": "252" } ] }, "tcpSocket": { - "port": 1591029717, - "host": "329" + "port": -2049272966, + "host": "253" } } }, - "terminationMessagePath": "330", - "terminationMessagePolicy": "盷褎weLJèux榜VƋZ1Ů", - "imagePullPolicy": "鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ", + "terminationMessagePath": "254", + "terminationMessagePolicy": "禒Ƙá腿ħ缶.蒅", + "imagePullPolicy": "臷Ľð»ųKĵ\u00264ʑ%:;栍dʪ", "securityContext": { "capabilities": { "add": [ - "İ榌U髷裎$MVȟ@" + "捘ɍi縱ù墴" ], "drop": [ - "飣奺Ȋ礶惇¸" + "Rƥ贫d飼$俊跾|@?鷅b" ] }, "privileged": false, "seLinuxOptions": { - "user": "331", - "role": "332", - "type": "333", - "level": "334" + "user": "255", + "role": "256", + "type": "257", + "level": "258" }, "windowsOptions": { - "gmsaCredentialSpecName": "335", - "gmsaCredentialSpec": "336", - "runAsUserName": "337" + "gmsaCredentialSpecName": "259", + "gmsaCredentialSpec": "260", + "runAsUserName": "261" }, - "runAsUser": 5824892309487369487, - "runAsGroup": 6134106493278592168, - "runAsNonRoot": true, + "runAsUser": -4282906120698363891, + "runAsGroup": -5016407977423583667, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "î萨zvt莭" + "procMount": "ɘ檲ɨ銦" }, "stdin": true, - "targetContainerName": "338" + "tty": true } ], - "terminationGracePeriodSeconds": -8078748323087142398, - "activeDeadlineSeconds": -3280013801707365244, - "dnsPolicy": "腻ŬƩȿ0矀Kʝ瘴I\\p[", + "ephemeralContainers": [ + { + "name": "262", + "image": "263", + "command": [ + "264" + ], + "args": [ + "265" + ], + "workingDir": "266", + "ports": [ + { + "name": "267", + "hostPort": -1266125247, + "containerPort": -50623103, + "protocol": "獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼", + "hostIP": "268" + } + ], + "envFrom": [ + { + "prefix": "269", + "configMapRef": { + "name": "270", + "optional": false + }, + "secretRef": { + "name": "271", + "optional": false + } + } + ], + "env": [ + { + "name": "272", + "value": "273", + "valueFrom": { + "fieldRef": { + "apiVersion": "274", + "fieldPath": "275" + }, + "resourceFieldRef": { + "containerName": "276", + "resource": "277", + "divisor": "8" + }, + "configMapKeyRef": { + "name": "278", + "key": "279", + "optional": true + }, + "secretKeyRef": { + "name": "280", + "key": "281", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "辪虽U珝Żwʮ馜": "604" + }, + "requests": { + "": "264" + } + }, + "volumeMounts": [ + { + "name": "282", + "mountPath": "283", + "subPath": "284", + "mountPropagation": "4ĩĉş蝿ɖȃ賲鐅臬dH巧壚tC十Oɢ", + "subPathExpr": "285" + } + ], + "volumeDevices": [ + { + "name": "286", + "devicePath": "287" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "288" + ] + }, + "httpGet": { + "path": "289", + "port": "290", + "host": "291", + "scheme": "Ȋ+?ƭ峧Y栲茇竛吲蚛", + "httpHeaders": [ + { + "name": "292", + "value": "293" + } + ] + }, + "tcpSocket": { + "port": "294", + "host": "295" + }, + "initialDelaySeconds": -138175394, + "timeoutSeconds": -1839582103, + "periodSeconds": 1054302708, + "successThreshold": -1696471293, + "failureThreshold": 1545364977 + }, + "readinessProbe": { + "exec": { + "command": [ + "296" + ] + }, + "httpGet": { + "path": "297", + "port": "298", + "host": "299", + "scheme": "r蛏豈ɃHŠ", + "httpHeaders": [ + { + "name": "300", + "value": "301" + } + ] + }, + "tcpSocket": { + "port": 279808574, + "host": "302" + }, + "initialDelaySeconds": -1765469779, + "timeoutSeconds": 1525829664, + "periodSeconds": -1047607622, + "successThreshold": -725526817, + "failureThreshold": 804417065 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "303" + ] + }, + "httpGet": { + "path": "304", + "port": "305", + "host": "306", + "scheme": "{Ⱦdz@", + "httpHeaders": [ + { + "name": "307", + "value": "308" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "309" + } + }, + "preStop": { + "exec": { + "command": [ + "310" + ] + }, + "httpGet": { + "path": "311", + "port": "312", + "host": "313", + "scheme": "ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ", + "httpHeaders": [ + { + "name": "314", + "value": "315" + } + ] + }, + "tcpSocket": { + "port": "316", + "host": "317" + } + } + }, + "terminationMessagePath": "318", + "terminationMessagePolicy": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", + "imagePullPolicy": "^拜", + "securityContext": { + "capabilities": { + "add": [ + "ɟ踡肒Ao/樝fw[Řż丩Ž" + ], + "drop": [ + "" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "319", + "role": "320", + "type": "321", + "level": "322" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "323", + "gmsaCredentialSpec": "324", + "runAsUserName": "325" + }, + "runAsUser": 2088194590485252823, + "runAsGroup": 454011859948691164, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę" + }, + "targetContainerName": "326" + } + ], + "restartPolicy": "U髷裎$MVȟ@7飣奺Ȋ", + "terminationGracePeriodSeconds": -1448436097540110204, + "activeDeadlineSeconds": 63880647284912382, + "dnsPolicy": "ɘȌ脾嚏吐ĠLƐȤ藠3.v", "nodeSelector": { - "339": "340" + "327": "328" }, - "serviceAccountName": "341", - "serviceAccount": "342", - "automountServiceAccountToken": true, - "nodeName": "343", + "serviceAccountName": "329", + "serviceAccount": "330", + "automountServiceAccountToken": false, + "nodeName": "331", "hostNetwork": true, - "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "344", - "role": "345", - "type": "346", - "level": "347" + "user": "332", + "role": "333", + "type": "334", + "level": "335" }, "windowsOptions": { - "gmsaCredentialSpecName": "348", - "gmsaCredentialSpec": "349", - "runAsUserName": "350" + "gmsaCredentialSpecName": "336", + "gmsaCredentialSpec": "337", + "runAsUserName": "338" }, - "runAsUser": 702282827459446622, - "runAsGroup": 8039976209077577066, + "runAsUser": 6546717103134456682, + "runAsGroup": 43374460844024823, "runAsNonRoot": false, "supplementalGroups": [ - -1599222399243419571 + -5030126702697967530 ], - "fsGroup": -1014151715930571442, + "fsGroup": -609644235388870309, "sysctls": [ { - "name": "351", - "value": "352" + "name": "339", + "value": "340" } ] }, "imagePullSecrets": [ { - "name": "353" + "name": "341" } ], - "hostname": "354", - "subdomain": "355", + "hostname": "342", + "subdomain": "343", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1074,19 +1071,19 @@ { "matchExpressions": [ { - "key": "356", - "operator": "酛3ƁÀ*f\u003c鴒翁杙", + "key": "344", + "operator": "懥ƖN粕擓ƖHVe", "values": [ - "357" + "345" ] } ], "matchFields": [ { - "key": "358", - "operator": "ls3!Zɾģ毋Ó", + "key": "346", + "operator": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", "values": [ - "359" + "347" ] } ] @@ -1095,23 +1092,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -859135545, + "weight": -148216266, "preference": { "matchExpressions": [ { - "key": "360", - "operator": "嘚庎D}", + "key": "348", + "operator": "", "values": [ - "361" + "349" ] } ], "matchFields": [ { - "key": "362", - "operator": "", + "key": "350", + "operator": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?", "values": [ - "363" + "351" ] } ] @@ -1124,43 +1121,43 @@ { "labelSelector": { "matchLabels": { - "19..c_uo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p6": "O_4Gj._BXt.O-7___-Y_um-_8r--684C" + "Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8": "d-684._-_18_...E.-2o_-.N.9D-F45eK" }, "matchExpressions": [ { - "key": "o_-.N.9D-F45eJ7", - "operator": "Exists" + "key": "5-R4_7FA.M.JP_oA_4A.J2s3.XL6_EU-A", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "370" + "358" ], - "topologyKey": "371" + "topologyKey": "359" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -282193676, + "weight": 2086031503, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1J2s3.XL6_EU--AH-Q.GM72_-c-.-.6--3-U": "t-Z8SUGP.-_.uB-.--.gR" + "f3s--gg93--5-------g1c-r/a-3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY._i": "mh._.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4-9" }, "matchExpressions": [ { - "key": "h-----g1c-fr34-4j-l-c7181py-8t379s3-8x32--2qu-0-k-q-0--8hv2k.1z9x--43--3---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/pyJY.__-X_.8xN._-_-v", + "key": "3---38----r-m-a--q3980c7f0p-3-----995----5sumf7ef8jzv4-9-35od/2I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8v-J1zT", "operator": "In", "values": [ - "v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tv3" + "5-.-.T-V_D_0-K_A-_9_ZC" ] } ] }, "namespaces": [ - "378" + "366" ], - "topologyKey": "379" + "topologyKey": "367" } } ] @@ -1170,106 +1167,112 @@ { "labelSelector": { "matchLabels": { - "K_A-_9_Z_C..7o_x3..-.8-Jp-94": "Tm.__G-8...__.Q_c8.G.b_9_18" + "JrC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WTM": "3_-1y_8D_X._B__-p" }, "matchExpressions": [ { - "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q", - "operator": "DoesNotExist" + "key": "u-2.d-s--op34-yy28-38xmu5nxs/j.___._8", + "operator": "In", + "values": [ + "K4.B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_0" + ] } ] }, "namespaces": [ - "386" + "374" ], - "topologyKey": "387" + "topologyKey": "375" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1008425444, + "weight": -593572977, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "x-_.--Q": "3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn" + "v8_.O_..8n.--z_-..6W.K": "sTt.-U_--6" }, "matchExpressions": [ { - "key": "Ue_l2.._8s--Z", - "operator": "In", + "key": "7-3x-3/23_P", + "operator": "NotIn", "values": [ - "A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a" + "5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4" ] } ] }, "namespaces": [ - "394" + "382" ], - "topologyKey": "395" + "topologyKey": "383" } } ] } }, - "schedulerName": "396", + "schedulerName": "384", "tolerations": [ { - "key": "397", - "operator": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", - "value": "398", - "effect": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", - "tolerationSeconds": -5478084374918590218 + "key": "385", + "operator": "$|gɳ礬.b屏ɧe", + "value": "386", + "effect": "ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­", + "tolerationSeconds": -6703183907837349431 } ], "hostAliases": [ { - "ip": "399", + "ip": "387", "hostnames": [ - "400" + "388" ] } ], - "priorityClassName": "401", - "priority": -470149352, + "priorityClassName": "389", + "priority": 1792673033, "dnsConfig": { "nameservers": [ - "402" + "390" ], "searches": [ - "403" + "391" ], "options": [ { - "name": "404", - "value": "405" + "name": "392", + "value": "393" } ] }, "readinessGates": [ { - "conditionType": " ɲ±" + "conditionType": "q塨Ý-扚聧扈4ƫZɀȩ愉BʟƮƙ2詃" } ], - "runtimeClassName": "406", + "runtimeClassName": "394", "enableServiceLinks": true, - "preemptionPolicy": "厶s", + "preemptionPolicy": "闎Ť萃Q+駟à稨氙'[\u003e", "overhead": { - "Ö埡ÆɰŞ襵樞úʥ銀ƨ": "837" + "'o儿Ƭ銭u裡_": "986" }, "topologySpreadConstraints": [ { - "maxSkew": 558113557, - "topologyKey": "407", - "whenUnsatisfiable": "ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈", + "maxSkew": -1676200318, + "topologyKey": "395", + "whenUnsatisfiable": "唞鹚蝉茲ʛ饊ɣKIJW", "labelSelector": { "matchLabels": { - "1rhm-5y--z-0/5eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" + "l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS": "5.0" }, "matchExpressions": [ { - "key": "7Vz_6.Hz_V_.r_v_._X", - "operator": "Exists" + "key": "7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY", + "operator": "NotIn", + "values": [ + "9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k" + ] } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb index 753b9a84e335ac814c802937e91a94d6032ce7f3..9142994e49a9d678eec2f0a51de5d7e04d2c005b 100644 GIT binary patch literal 5739 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 VXCI5TdOAHK(ew`gGc8Wb{{!JTD^LIc literal 5571 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 D|F9aW diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml index fa1ac1ac40a..231b4681fc4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,847 +25,848 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" template: metadata: annotations: - "31": "32" - clusterName: "37" + "25": "26" + clusterName: "31" creationTimestamp: null - deletionGracePeriodSeconds: 7323204920313990232 + deletionGracePeriodSeconds: 4075183944016503389 finalizers: - - "36" - generateName: "25" - generation: 1905795315403748486 + - "30" + generateName: "19" + generation: 5259823216098853135 labels: - "29": "30" + "23": "24" managedFields: - - apiVersion: "39" - fields: - "40": - "41": null - manager: "38" - operation: B峅x4%a - name: "24" - namespace: "26" - ownerReferences: - apiVersion: "33" + manager: "32" + operation: ěĂ凗蓏Ŋ蛊ĉy緅縕 + name: "18" + namespace: "20" + ownerReferences: + - apiVersion: "27" blockOwnerDeletion: false controller: true - kind: "34" - name: "35" - uid: 谐颋DžSǡƏS$+½H牗洝尿 - resourceVersion: "1092536316763508004" - selfLink: "27" - uid: ^苣 + kind: "28" + name: "29" + uid: ɑ + resourceVersion: "17916580954637291219" + selfLink: "21" + uid: SǡƏ spec: - activeDeadlineSeconds: -3280013801707365244 + activeDeadlineSeconds: 63880647284912382 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "360" - operator: 嘚庎D} - values: - - "361" - matchFields: - - key: "362" + - key: "348" operator: "" values: - - "363" - weight: -859135545 + - "349" + matchFields: + - key: "350" + operator: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? + values: + - "351" + weight: -148216266 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "356" - operator: 酛3ƁÀ*f<鴒翁杙 + - key: "344" + operator: 懥ƖN粕擓ƖHVe values: - - "357" + - "345" matchFields: - - key: "358" - operator: ls3!Zɾģ毋Ó + - key: "346" + operator: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' values: - - "359" + - "347" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-----g1c-fr34-4j-l-c7181py-8t379s3-8x32--2qu-0-k-q-0--8hv2k.1z9x--43--3---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/pyJY.__-X_.8xN._-_-v + - key: 3---38----r-m-a--q3980c7f0p-3-----995----5sumf7ef8jzv4-9-35od/2I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8v-J1zT operator: In values: - - v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tv3 + - 5-.-.T-V_D_0-K_A-_9_ZC matchLabels: - 1J2s3.XL6_EU--AH-Q.GM72_-c-.-.6--3-U: t-Z8SUGP.-_.uB-.--.gR + f3s--gg93--5-------g1c-r/a-3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY._i: mh._.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4-9 namespaces: - - "378" - topologyKey: "379" - weight: -282193676 + - "366" + topologyKey: "367" + weight: 2086031503 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: o_-.N.9D-F45eJ7 - operator: Exists + - key: 5-R4_7FA.M.JP_oA_4A.J2s3.XL6_EU-A + operator: DoesNotExist matchLabels: - 19..c_uo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p6: O_4Gj._BXt.O-7___-Y_um-_8r--684C + Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8: d-684._-_18_...E.-2o_-.N.9D-F45eK namespaces: - - "370" - topologyKey: "371" + - "358" + topologyKey: "359" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: Ue_l2.._8s--Z - operator: In + - key: 7-3x-3/23_P + operator: NotIn values: - - A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a + - 5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4 matchLabels: - x-_.--Q: 3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn + v8_.O_..8n.--z_-..6W.K: sTt.-U_--6 namespaces: - - "394" - topologyKey: "395" - weight: 1008425444 + - "382" + topologyKey: "383" + weight: -593572977 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q - operator: DoesNotExist + - key: u-2.d-s--op34-yy28-38xmu5nxs/j.___._8 + operator: In + values: + - K4.B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_0 matchLabels: - K_A-_9_Z_C..7o_x3..-.8-Jp-94: Tm.__G-8...__.Q_c8.G.b_9_18 + JrC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WTM: 3_-1y_8D_X._B__-p namespaces: - - "386" - topologyKey: "387" - automountServiceAccountToken: true + - "374" + topologyKey: "375" + automountServiceAccountToken: false containers: - args: - - "215" + - "202" command: - - "214" + - "201" env: - - name: "222" - value: "223" + - name: "209" + value: "210" valueFrom: configMapKeyRef: - key: "229" - name: "228" + key: "216" + name: "215" optional: false fieldRef: - apiVersion: "224" - fieldPath: "225" + apiVersion: "211" + fieldPath: "212" resourceFieldRef: - containerName: "226" - divisor: "706" - resource: "227" + containerName: "213" + divisor: "665" + resource: "214" secretKeyRef: - key: "231" - name: "230" + key: "218" + name: "217" optional: false envFrom: - configMapRef: - name: "220" - optional: false - prefix: "219" - secretRef: - name: "221" + name: "207" optional: true - image: "213" - imagePullPolicy: ?鷅bȻN + prefix: "206" + secretRef: + name: "208" + optional: false + image: "200" + imagePullPolicy: 臷Ľð»ųKĵ&4ʑ%:;栍dʪ lifecycle: postStart: exec: command: - - "252" + - "240" httpGet: - host: "255" + host: "243" httpHeaders: - - name: "256" - value: "257" - path: "253" - port: "254" - scheme: Hǝ呮}臷Ľð» + - name: "244" + value: "245" + path: "241" + port: "242" + scheme: ƶRquA?瞲Ť倱<įXŋ朘 tcpSocket: - host: "259" - port: "258" + host: "247" + port: "246" preStop: exec: command: - - "260" + - "248" httpGet: - host: "263" + host: "250" httpHeaders: - - name: "264" - value: "265" - path: "261" - port: "262" - scheme: 鄌eÞȦY籎顒 + - name: "251" + value: "252" + path: "249" + port: 2147073181 + scheme: 0åȂ町恰nj揠8lj tcpSocket: - host: "267" - port: "266" + host: "253" + port: -2049272966 livenessProbe: exec: command: - - "238" - failureThreshold: 1499244521 + - "225" + failureThreshold: 437263194 httpGet: - host: "241" + host: "228" httpHeaders: - - name: "242" - value: "243" - path: "239" - port: "240" - scheme: 抴ŨfZhUʎ浵ɲõ - initialDelaySeconds: -124607411 - periodSeconds: -2138399859 - successThreshold: 943356038 + - name: "229" + value: "230" + path: "226" + port: "227" + scheme: /pȿŘ阌Ŗ怳冘H + initialDelaySeconds: -1999218345 + periodSeconds: 657514697 + successThreshold: 408756018 tcpSocket: - host: "244" - port: -1980941277 - timeoutSeconds: -1967211777 - name: "212" + host: "231" + port: -1057154155 + timeoutSeconds: 1366561945 + name: "199" ports: - - containerPort: -1215463021 - hostIP: "218" - hostPort: -239302370 - name: "217" - protocol: ăȲϤĦʅ芝 + - containerPort: -156457987 + hostIP: "205" + hostPort: -2034643700 + name: "204" + protocol: 焁yǠ/淹\韲翁&ʢ readinessProbe: exec: command: - - "245" - failureThreshold: 2064656704 + - "232" + failureThreshold: -522879476 httpGet: - host: "248" + host: "235" httpHeaders: - - name: "249" - value: "250" - path: "246" - port: "247" - scheme: A徙ɶɊł/擇ɦĽ胚 - initialDelaySeconds: -1950133943 - periodSeconds: 1836896522 - successThreshold: -2101285839 + - name: "236" + value: "237" + path: "233" + port: "234" + scheme: ƭt?QȫşŇɜ + initialDelaySeconds: 673378190 + periodSeconds: -1768075156 + successThreshold: 273818613 tcpSocket: - host: "251" - port: -1502363275 - timeoutSeconds: -65465189 + host: "239" + port: "238" + timeoutSeconds: 1701891633 resources: limits: - '*ĕʄő芖{|ǘ"^饣': "254" + ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ: "206" requests: - Ř阌Ŗ怳冘HǺƶȤ^}穠C]躢|)黰: "190" + fʣ繡楙¯ĦE勗E濞偘1ɩ: "161" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 榱*Gưoɘ檲 + - 捘ɍi縱ù墴 drop: - - 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ - privileged: true - procMount: 猀2:ö - readOnlyRootFilesystem: false - runAsGroup: 1396880349510758210 + - Rƥ贫d飼$俊跾|@?鷅b + privileged: false + procMount: ɘ檲ɨ銦 + readOnlyRootFilesystem: true + runAsGroup: -5016407977423583667 runAsNonRoot: false - runAsUser: 2498881510781298156 + runAsUser: -4282906120698363891 seLinuxOptions: - level: "272" - role: "270" - type: "271" - user: "269" + level: "258" + role: "256" + type: "257" + user: "255" windowsOptions: - gmsaCredentialSpec: "274" - gmsaCredentialSpecName: "273" - runAsUserName: "275" - stdinOnce: true - terminationMessagePath: "268" - terminationMessagePolicy: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ + gmsaCredentialSpec: "260" + gmsaCredentialSpecName: "259" + runAsUserName: "261" + stdin: true + terminationMessagePath: "254" + terminationMessagePolicy: 禒Ƙá腿ħ缶.蒅 + tty: true volumeDevices: - - devicePath: "237" - name: "236" + - devicePath: "224" + name: "223" volumeMounts: - - mountPath: "233" - mountPropagation: ȫşŇɜa - name: "232" + - mountPath: "220" + mountPropagation: ʅ芝M 宸@Z^嫫猤痈C*ĕʄő芖{ + name: "219" readOnly: true - subPath: "234" - subPathExpr: "235" - workingDir: "216" + subPath: "221" + subPathExpr: "222" + workingDir: "203" dnsConfig: nameservers: - - "402" + - "390" options: - - name: "404" - value: "405" + - name: "392" + value: "393" searches: - - "403" - dnsPolicy: 腻ŬƩȿ0矀Kʝ瘴I\p[ + - "391" + dnsPolicy: ɘȌ脾嚏吐ĠLƐȤ藠3.v enableServiceLinks: true ephemeralContainers: - args: - - "279" + - "265" command: - - "278" + - "264" env: - - name: "286" - value: "287" + - name: "272" + value: "273" valueFrom: configMapKeyRef: - key: "293" - name: "292" + key: "279" + name: "278" optional: true fieldRef: - apiVersion: "288" - fieldPath: "289" + apiVersion: "274" + fieldPath: "275" resourceFieldRef: - containerName: "290" - divisor: "232" - resource: "291" + containerName: "276" + divisor: "8" + resource: "277" secretKeyRef: - key: "295" - name: "294" + key: "281" + name: "280" optional: true envFrom: - configMapRef: - name: "284" + name: "270" optional: false - prefix: "283" + prefix: "269" secretRef: - name: "285" + name: "271" optional: false - image: "277" - imagePullPolicy: 鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ + image: "263" + imagePullPolicy: ^拜 lifecycle: postStart: exec: command: - - "317" + - "303" httpGet: - host: "319" + host: "306" httpHeaders: - - name: "320" - value: "321" - path: "318" - port: -1710454086 - scheme: mɩC[ó瓧 + - name: "307" + value: "308" + path: "304" + port: "305" + scheme: '{Ⱦdz@' tcpSocket: - host: "322" - port: -122979840 + host: "309" + port: 406308963 preStop: exec: command: - - "323" + - "310" httpGet: - host: "326" + host: "313" httpHeaders: - - name: "327" - value: "328" - path: "324" - port: "325" - scheme: 籘Àǒɿʒ刽ʼn + - name: "314" + value: "315" + path: "311" + port: "312" + scheme: ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ tcpSocket: - host: "329" - port: 1591029717 + host: "317" + port: "316" livenessProbe: exec: command: - - "302" - failureThreshold: 1923650413 + - "288" + failureThreshold: 1545364977 httpGet: - host: "305" + host: "291" httpHeaders: - - name: "306" - value: "307" - path: "303" - port: "304" - scheme: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 - initialDelaySeconds: -1169420648 - periodSeconds: -1478830017 - successThreshold: -1960797080 + - name: "292" + value: "293" + path: "289" + port: "290" + scheme: Ȋ+?ƭ峧Y栲茇竛吲蚛 + initialDelaySeconds: -138175394 + periodSeconds: 1054302708 + successThreshold: -1696471293 tcpSocket: - host: "308" - port: 1428858742 - timeoutSeconds: -1762049522 - name: "276" + host: "295" + port: "294" + timeoutSeconds: -1839582103 + name: "262" ports: - - containerPort: 2130088978 - hostIP: "282" - hostPort: 66472042 - name: "281" - protocol: 辪虽U珝Żwʮ馜 + - containerPort: -50623103 + hostIP: "268" + hostPort: -1266125247 + name: "267" + protocol: 獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼 readinessProbe: exec: command: - - "309" - failureThreshold: -648954478 + - "296" + failureThreshold: 804417065 httpGet: - host: "312" + host: "299" httpHeaders: - - name: "313" - value: "314" - path: "310" - port: "311" - scheme: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 - initialDelaySeconds: -1892182508 - periodSeconds: -2031266553 - successThreshold: -840997104 + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: r蛏豈ɃHŠ + initialDelaySeconds: -1765469779 + periodSeconds: -1047607622 + successThreshold: -725526817 tcpSocket: - host: "316" - port: "315" - timeoutSeconds: 424236719 + host: "302" + port: 279808574 + timeoutSeconds: 1525829664 resources: limits: - ȃ賲鐅臬dH巧壚tC十Oɢǵ: "909" + 辪虽U珝Żwʮ馜: "604" requests: - "": "116" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - İ榌U髷裎$MVȟ@ - drop: - - 飣奺Ȋ礶惇¸ - privileged: false - procMount: î萨zvt莭 - readOnlyRootFilesystem: true - runAsGroup: 6134106493278592168 - runAsNonRoot: true - runAsUser: 5824892309487369487 - seLinuxOptions: - level: "334" - role: "332" - type: "333" - user: "331" - windowsOptions: - gmsaCredentialSpec: "336" - gmsaCredentialSpecName: "335" - runAsUserName: "337" - stdin: true - targetContainerName: "338" - terminationMessagePath: "330" - terminationMessagePolicy: 盷褎weLJèux榜VƋZ1Ů - volumeDevices: - - devicePath: "301" - name: "300" - volumeMounts: - - mountPath: "297" - mountPropagation: 贅wE@Ȗs«öʮĀ<é - name: "296" - subPath: "298" - subPathExpr: "299" - workingDir: "280" - hostAliases: - - hostnames: - - "400" - ip: "399" - hostIPC: true - hostNetwork: true - hostname: "354" - imagePullSecrets: - - name: "353" - initContainers: - - args: - - "153" - command: - - "152" - env: - - name: "160" - value: "161" - valueFrom: - configMapKeyRef: - key: "167" - name: "166" - optional: false - fieldRef: - apiVersion: "162" - fieldPath: "163" - resourceFieldRef: - containerName: "164" - divisor: "526" - resource: "165" - secretKeyRef: - key: "169" - name: "168" - optional: false - envFrom: - - configMapRef: - name: "158" - optional: true - prefix: "157" - secretRef: - name: "159" - optional: false - image: "151" - imagePullPolicy: Ȗ脵鴈Ō - lifecycle: - postStart: - exec: - command: - - "190" - httpGet: - host: "192" - httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 1348141491 - scheme: Ȃ揲ȼ - tcpSocket: - host: "196" - port: "195" - preStop: - exec: - command: - - "197" - httpGet: - host: "199" - httpHeaders: - - name: "200" - value: "201" - path: "198" - port: 468716734 - scheme: Cʖ畬x骀 - tcpSocket: - host: "203" - port: "202" - livenessProbe: - exec: - command: - - "176" - failureThreshold: -1040245211 - httpGet: - host: "178" - httpHeaders: - - name: "179" - value: "180" - path: "177" - port: -662805900 - initialDelaySeconds: 578888856 - periodSeconds: -557582532 - successThreshold: -773009446 - tcpSocket: - host: "182" - port: "181" - timeoutSeconds: 2073854558 - name: "150" - ports: - - containerPort: -1417286635 - hostIP: "156" - hostPort: -737070070 - name: "155" - protocol: /C龷ȪÆl殛瓷雼浢Ü礽绅 - readinessProbe: - exec: - command: - - "183" - failureThreshold: -330720710 - httpGet: - host: "185" - httpHeaders: - - name: "186" - value: "187" - path: "184" - port: -2064088433 - scheme: Do©Ǿt'容柚ʕIã陫ʋs - initialDelaySeconds: 229600975 - periodSeconds: -1697933829 - successThreshold: -1438986781 - tcpSocket: - host: "189" - port: "188" - timeoutSeconds: -35598353 - resources: - limits: - i皬择,Q捇ȸ{+ɸ殁Ka縳: "499" - requests: - 笓珣筩ƐP_痸荎: "787" + "": "264" securityContext: allowPrivilegeEscalation: true capabilities: add: - - yǠ/淹\韲翁&ʢsɜ + - ɟ踡肒Ao/樝fw[Řż丩Ž drop: - - \%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ + - "" privileged: false - procMount: ^ + procMount: 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę readOnlyRootFilesystem: true - runAsGroup: -4139900758039117471 + runAsGroup: 454011859948691164 runAsNonRoot: true - runAsUser: 8685765401091182865 + runAsUser: 2088194590485252823 seLinuxOptions: - level: "208" - role: "206" - type: "207" - user: "205" + level: "322" + role: "320" + type: "321" + user: "319" windowsOptions: - gmsaCredentialSpec: "210" - gmsaCredentialSpecName: "209" - runAsUserName: "211" - terminationMessagePath: "204" - terminationMessagePolicy: ů湙騘& + gmsaCredentialSpec: "324" + gmsaCredentialSpecName: "323" + runAsUserName: "325" + targetContainerName: "326" + terminationMessagePath: "318" + terminationMessagePolicy: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + volumeDevices: + - devicePath: "287" + name: "286" + volumeMounts: + - mountPath: "283" + mountPropagation: 4ĩĉş蝿ɖȃ賲鐅臬dH巧壚tC十Oɢ + name: "282" + subPath: "284" + subPathExpr: "285" + workingDir: "266" + hostAliases: + - hostnames: + - "388" + ip: "387" + hostNetwork: true + hostname: "342" + imagePullSecrets: + - name: "341" + initContainers: + - args: + - "142" + command: + - "141" + env: + - name: "149" + value: "150" + valueFrom: + configMapKeyRef: + key: "156" + name: "155" + optional: true + fieldRef: + apiVersion: "151" + fieldPath: "152" + resourceFieldRef: + containerName: "153" + divisor: "711" + resource: "154" + secretKeyRef: + key: "158" + name: "157" + optional: false + envFrom: + - configMapRef: + name: "147" + optional: false + prefix: "146" + secretRef: + name: "148" + optional: true + image: "140" + imagePullPolicy: '''容' + lifecycle: + postStart: + exec: + command: + - "177" + httpGet: + host: "180" + httpHeaders: + - name: "181" + value: "182" + path: "178" + port: "179" + scheme: /Ź u衲<¿燥ǖ_è绺Lɋ聻鎥 + tcpSocket: + host: "183" + port: 2115094729 + preStop: + exec: + command: + - "184" + httpGet: + host: "187" + httpHeaders: + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: <檔Ň'Ğİ + tcpSocket: + host: "190" + port: 1460441819 + livenessProbe: + exec: + command: + - "165" + failureThreshold: -1373481716 + httpGet: + host: "167" + httpHeaders: + - name: "168" + value: "169" + path: "166" + port: 126800818 + scheme: ƫS捕ɷ + initialDelaySeconds: 1673568505 + periodSeconds: -972874331 + successThreshold: 860842148 + tcpSocket: + host: "170" + port: 990374141 + timeoutSeconds: 1665622609 + name: "139" + ports: + - containerPort: -1354971977 + hostIP: "145" + hostPort: 1094434838 + name: "144" + protocol: ĺ稥 + readinessProbe: + exec: + command: + - "171" + failureThreshold: -366263237 + httpGet: + host: "173" + httpHeaders: + - name: "174" + value: "175" + path: "172" + port: -144625578 + scheme: 择,Q捇ȸ{+ + initialDelaySeconds: 358822621 + periodSeconds: 327574193 + successThreshold: 1718125857 + tcpSocket: + host: "176" + port: 1130962147 + timeoutSeconds: 1946649472 + resources: + limits: + ėf倐ȓ圬剴扲ȿQZ{ʁgɸ: "147" + requests: + "": "609" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - Iã陫ʋ + drop: + - ş")珷 + privileged: false + procMount: ȼDDŽLŬp:籀帊ìƅS·Õüe0 + readOnlyRootFilesystem: false + runAsGroup: 411720356558623363 + runAsNonRoot: true + runAsUser: 6670396461729736072 + seLinuxOptions: + level: "195" + role: "193" + type: "194" + user: "192" + windowsOptions: + gmsaCredentialSpec: "197" + gmsaCredentialSpecName: "196" + runAsUserName: "198" + stdinOnce: true + terminationMessagePath: "191" + terminationMessagePolicy: A tty: true volumeDevices: - - devicePath: "175" - name: "174" + - devicePath: "164" + name: "163" volumeMounts: - - mountPath: "171" - mountPropagation: ¿燥ǖ_è绺 - name: "170" - subPath: "172" - subPathExpr: "173" - workingDir: "154" - nodeName: "343" + - mountPath: "160" + mountPropagation: ',1ZƜ/C龷ȪÆ' + name: "159" + readOnly: true + subPath: "161" + subPathExpr: "162" + workingDir: "143" + nodeName: "331" nodeSelector: - "339": "340" + "327": "328" overhead: - Ö埡ÆɰŞ襵樞úʥ銀ƨ: "837" - preemptionPolicy: 厶s - priority: -470149352 - priorityClassName: "401" + '''o儿Ƭ銭u裡_': "986" + preemptionPolicy: 闎Ť萃Q+駟à稨氙'[> + priority: 1792673033 + priorityClassName: "389" readinessGates: - - conditionType: ' ɲ±' - runtimeClassName: "406" - schedulerName: "396" + - conditionType: q塨Ý-扚聧扈4ƫZɀȩ愉BʟƮƙ2詃 + restartPolicy: U髷裎$MVȟ@7飣奺Ȋ + runtimeClassName: "394" + schedulerName: "384" securityContext: - fsGroup: -1014151715930571442 - runAsGroup: 8039976209077577066 + fsGroup: -609644235388870309 + runAsGroup: 43374460844024823 runAsNonRoot: false - runAsUser: 702282827459446622 + runAsUser: 6546717103134456682 seLinuxOptions: - level: "347" - role: "345" - type: "346" - user: "344" + level: "335" + role: "333" + type: "334" + user: "332" supplementalGroups: - - -1599222399243419571 + - -5030126702697967530 sysctls: - - name: "351" - value: "352" + - name: "339" + value: "340" windowsOptions: - gmsaCredentialSpec: "349" - gmsaCredentialSpecName: "348" - runAsUserName: "350" - serviceAccount: "342" - serviceAccountName: "341" - shareProcessNamespace: true - subdomain: "355" - terminationGracePeriodSeconds: -8078748323087142398 + gmsaCredentialSpec: "337" + gmsaCredentialSpecName: "336" + runAsUserName: "338" + serviceAccount: "330" + serviceAccountName: "329" + shareProcessNamespace: false + subdomain: "343" + terminationGracePeriodSeconds: -1448436097540110204 tolerations: - - effect: 委>,趐V曡88 u怞荊ù灹8緔Tj - key: "397" - operator: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 - tolerationSeconds: -5478084374918590218 - value: "398" + - effect: ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­ + key: "385" + operator: $|gɳ礬.b屏ɧe + tolerationSeconds: -6703183907837349431 + value: "386" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 7Vz_6.Hz_V_.r_v_._X - operator: Exists + - key: 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY + operator: NotIn + values: + - 9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k matchLabels: - 1rhm-5y--z-0/5eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX - maxSkew: 558113557 - topologyKey: "407" - whenUnsatisfiable: ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈 + ? l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS + : "5.0" + maxSkew: -1676200318 + topologyKey: "395" + whenUnsatisfiable: 唞鹚蝉茲ʛ饊ɣKIJW volumes: - awsElasticBlockStore: - fsType: "50" - partition: 13677460 - readOnly: true - volumeID: "49" + fsType: "39" + partition: -1261508418 + volumeID: "38" azureDisk: - cachingMode: n宂¬轚9Ȏ瀮 - diskName: "113" - diskURI: "114" - fsType: "115" - kind: Ō¾\ĒP鄸靇杧ž譋娲瘹ɭ - readOnly: true + cachingMode: "" + diskName: "102" + diskURI: "103" + fsType: "104" + kind: ƺ魋Ď儇击3ƆìQ + readOnly: false azureFile: - secretName: "99" - shareName: "100" + secretName: "88" + shareName: "89" cephfs: monitors: - - "84" - path: "85" - secretFile: "87" + - "73" + path: "74" + secretFile: "76" secretRef: - name: "88" - user: "86" + name: "77" + user: "75" cinder: - fsType: "82" - readOnly: true + fsType: "71" secretRef: - name: "83" - volumeID: "81" + name: "72" + volumeID: "70" configMap: - defaultMode: -1570767512 + defaultMode: -1648533063 items: - - key: "102" - mode: -1907421291 - path: "103" - name: "101" - optional: false + - key: "91" + mode: 1913946997 + path: "92" + name: "90" + optional: true csi: - driver: "145" - fsType: "146" + driver: "134" + fsType: "135" nodePublishSecretRef: - name: "149" - readOnly: true + name: "138" + readOnly: false volumeAttributes: - "147": "148" + "136": "137" downwardAPI: - defaultMode: -2077638334 + defaultMode: 1557090007 items: - fieldRef: - apiVersion: "92" - fieldPath: "93" - mode: 2107119206 - path: "91" + apiVersion: "81" + fieldPath: "82" + mode: -1413529736 + path: "80" resourceFieldRef: - containerName: "94" - divisor: "291" - resource: "95" + containerName: "83" + divisor: "687" + resource: "84" emptyDir: - medium: '励鹗塢ē ' - sizeLimit: "995" + medium: x + sizeLimit: "826" fc: - fsType: "97" - lun: -2040518604 + fsType: "86" + lun: 933484239 targetWWNs: - - "96" + - "85" wwids: - - "98" + - "87" flexVolume: - driver: "76" - fsType: "77" + driver: "65" + fsType: "66" options: - "79": "80" - readOnly: true + "68": "69" secretRef: - name: "78" + name: "67" flocker: - datasetName: "89" - datasetUUID: "90" + datasetName: "78" + datasetUUID: "79" gcePersistentDisk: - fsType: "48" - partition: -664310043 - pdName: "47" + fsType: "37" + partition: -1487653240 + pdName: "36" readOnly: true gitRepo: - directory: "53" - repository: "51" - revision: "52" + directory: "42" + repository: "40" + revision: "41" glusterfs: - endpoints: "66" - path: "67" - readOnly: true + endpoints: "55" + path: "56" hostPath: - path: "46" - type: DrȮ + path: "35" + type: H牗洝尿彀亞螩B iscsi: - fsType: "62" - initiatorName: "65" - iqn: "60" - iscsiInterface: "61" - lun: -314157282 + fsType: "51" + initiatorName: "54" + iqn: "49" + iscsiInterface: "50" + lun: -400609276 portals: - - "63" - readOnly: true + - "52" secretRef: - name: "64" - targetPortal: "59" - name: "45" + name: "53" + targetPortal: "48" + name: "34" nfs: - path: "58" - server: "57" + path: "47" + server: "46" persistentVolumeClaim: - claimName: "68" + claimName: "57" readOnly: true photonPersistentDisk: - fsType: "117" - pdID: "116" + fsType: "106" + pdID: "105" portworxVolume: - fsType: "132" - volumeID: "131" + fsType: "121" + readOnly: true + volumeID: "120" projected: - defaultMode: -1253565243 + defaultMode: -1880297089 sources: - configMap: items: - - key: "127" - mode: 813865935 - path: "128" - name: "126" + - key: "116" + mode: -1009864962 + path: "117" + name: "115" optional: true downwardAPI: items: - fieldRef: - apiVersion: "122" - fieldPath: "123" - mode: 75785535 - path: "121" + apiVersion: "111" + fieldPath: "112" + mode: 1167335696 + path: "110" resourceFieldRef: - containerName: "124" - divisor: "852" - resource: "125" + containerName: "113" + divisor: "546" + resource: "114" secret: items: - - key: "119" - mode: 2036549700 - path: "120" - name: "118" - optional: false + - key: "108" + mode: 565864299 + path: "109" + name: "107" + optional: true serviceAccountToken: - audience: "129" - expirationSeconds: 3094703520378368232 - path: "130" + audience: "118" + expirationSeconds: -8033620543910768540 + path: "119" quobyte: - group: "111" - readOnly: true - registry: "108" - tenant: "112" - user: "110" - volume: "109" + group: "100" + registry: "97" + tenant: "101" + user: "99" + volume: "98" rbd: - fsType: "71" - image: "70" - keyring: "74" + fsType: "60" + image: "59" + keyring: "63" monitors: - - "69" - pool: "72" + - "58" + pool: "61" readOnly: true secretRef: - name: "75" - user: "73" + name: "64" + user: "62" scaleIO: - fsType: "140" - gateway: "133" - protectionDomain: "136" - secretRef: - name: "135" - sslEnabled: true - storageMode: "138" - storagePool: "137" - system: "134" - volumeName: "139" - secret: - defaultMode: 819364842 - items: - - key: "55" - mode: 1557090007 - path: "56" - optional: true - secretName: "54" - storageos: - fsType: "143" + fsType: "129" + gateway: "122" + protectionDomain: "125" readOnly: true secretRef: - name: "144" - volumeName: "141" - volumeNamespace: "142" + name: "124" + sslEnabled: true + storageMode: "127" + storagePool: "126" + system: "123" + volumeName: "128" + secret: + defaultMode: -1639873916 + items: + - key: "44" + mode: -655946460 + path: "45" + optional: true + secretName: "43" + storageos: + fsType: "132" + readOnly: true + secretRef: + name: "133" + volumeName: "130" + volumeNamespace: "131" vsphereVolume: - fsType: "105" - storagePolicyID: "107" - storagePolicyName: "106" - volumePath: "104" + fsType: "94" + storagePolicyID: "96" + storagePolicyName: "95" + volumePath: "93" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.json index 9764848048d..061a3e2e897 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,11 +35,10 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, - "range": "24", - "data": "cQ==" + "range": "18", + "data": "OA==" } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.RangeAllocation.pb index ede0367dad6c488a18159feb67f01994da7717c3..b2e0069564b542772f29e6f608ac023e1122ba19 100644 GIT binary patch delta 69 zcmZo+y2v;|Mr%DI*HT6Dc delta 120 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 literal 5713 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,趐V曡88 u怞荊ù灹8緔Tj - key: "398" - operator: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 - tolerationSeconds: -5478084374918590218 - value: "399" + - effect: 亦輯>肸H5fŮƛƛ龢ÄƤU + key: "382" + operator: '!蘋`翾''ųŎ' + tolerationSeconds: -1346654761106639569 + value: "383" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 7Vz_6.Hz_V_.r_v_._X - operator: Exists + - key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p + operator: NotIn + values: + - N7_B_r matchLabels: - 1rhm-5y--z-0/5eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX - maxSkew: 558113557 - topologyKey: "408" - whenUnsatisfiable: ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈 + 8o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C + maxSkew: 1831585697 + topologyKey: "392" + whenUnsatisfiable: U駯Ĕ驢.' volumes: - awsElasticBlockStore: - fsType: "51" - partition: 13677460 - readOnly: true - volumeID: "50" + fsType: "41" + partition: -1095687535 + volumeID: "40" azureDisk: - cachingMode: n宂¬轚9Ȏ瀮 - diskName: "114" - diskURI: "115" - fsType: "116" - kind: Ō¾\ĒP鄸靇杧ž譋娲瘹ɭ + cachingMode: ʌ鴜 + diskName: "104" + diskURI: "105" + fsType: "106" + kind: ŨȈ>Ņ£趕ã/鈱$-议 readOnly: true azureFile: - secretName: "100" - shareName: "101" + readOnly: true + secretName: "90" + shareName: "91" cephfs: monitors: - - "85" - path: "86" - secretFile: "88" - secretRef: - name: "89" - user: "87" - cinder: - fsType: "83" - readOnly: true - secretRef: - name: "84" - volumeID: "82" - configMap: - defaultMode: -1570767512 - items: - - key: "103" - mode: -1907421291 - path: "104" - name: "102" - optional: false - csi: - driver: "146" - fsType: "147" - nodePublishSecretRef: - name: "150" - readOnly: true - volumeAttributes: - "148": "149" - downwardAPI: - defaultMode: -2077638334 - items: - - fieldRef: - apiVersion: "93" - fieldPath: "94" - mode: 2107119206 - path: "92" - resourceFieldRef: - containerName: "95" - divisor: "291" - resource: "96" - emptyDir: - medium: '励鹗塢ē ' - sizeLimit: "995" - fc: - fsType: "98" - lun: -2040518604 - targetWWNs: - - "97" - wwids: - - "99" - flexVolume: - driver: "77" - fsType: "78" - options: - "80": "81" - readOnly: true + - "75" + path: "76" + secretFile: "78" secretRef: name: "79" - flocker: - datasetName: "90" - datasetUUID: "91" - gcePersistentDisk: - fsType: "49" - partition: -664310043 - pdName: "48" + user: "77" + cinder: + fsType: "73" + secretRef: + name: "74" + volumeID: "72" + configMap: + defaultMode: 1945687018 + items: + - key: "93" + mode: -818470612 + path: "94" + name: "92" + optional: false + csi: + driver: "136" + fsType: "137" + nodePublishSecretRef: + name: "140" readOnly: true - gitRepo: - directory: "54" - repository: "52" - revision: "53" - glusterfs: - endpoints: "67" - path: "68" - readOnly: true - hostPath: - path: "47" - type: DrȮ - iscsi: - fsType: "63" - initiatorName: "66" - iqn: "61" - iscsiInterface: "62" - lun: -314157282 - portals: - - "64" + volumeAttributes: + "138": "139" + downwardAPI: + defaultMode: -1449552038 + items: + - fieldRef: + apiVersion: "83" + fieldPath: "84" + mode: -816398166 + path: "82" + resourceFieldRef: + containerName: "85" + divisor: "558" + resource: "86" + emptyDir: + medium: ɖ橙9 + sizeLimit: "481" + fc: + fsType: "88" + lun: 13573196 + targetWWNs: + - "87" + wwids: + - "89" + flexVolume: + driver: "67" + fsType: "68" + options: + "70": "71" readOnly: true secretRef: - name: "65" - targetPortal: "60" - name: "46" - nfs: - path: "59" - server: "58" - persistentVolumeClaim: - claimName: "69" + name: "69" + flocker: + datasetName: "80" + datasetUUID: "81" + gcePersistentDisk: + fsType: "39" + partition: -54954325 + pdName: "38" + gitRepo: + directory: "44" + repository: "42" + revision: "43" + glusterfs: + endpoints: "57" + path: "58" + hostPath: + path: "37" + type: Ơ歿:狞夌碕ʂɭîcP$I + iscsi: + fsType: "53" + initiatorName: "56" + iqn: "51" + iscsiInterface: "52" + lun: 819364842 + portals: + - "54" readOnly: true + secretRef: + name: "55" + targetPortal: "50" + name: "36" + nfs: + path: "49" + server: "48" + persistentVolumeClaim: + claimName: "59" photonPersistentDisk: - fsType: "118" - pdID: "117" + fsType: "108" + pdID: "107" portworxVolume: - fsType: "133" - volumeID: "132" + fsType: "123" + volumeID: "122" projected: - defaultMode: -1253565243 + defaultMode: 808527238 sources: - configMap: items: - - key: "128" - mode: 813865935 - path: "129" - name: "127" + - key: "118" + mode: -1706790766 + path: "119" + name: "117" optional: true downwardAPI: items: - fieldRef: - apiVersion: "123" - fieldPath: "124" - mode: 75785535 - path: "122" + apiVersion: "113" + fieldPath: "114" + mode: 1258015454 + path: "112" resourceFieldRef: - containerName: "125" - divisor: "852" - resource: "126" + containerName: "115" + divisor: "691" + resource: "116" secret: items: - - key: "120" - mode: 2036549700 - path: "121" - name: "119" + - key: "110" + mode: 33624773 + path: "111" + name: "109" optional: false serviceAccountToken: - audience: "130" - expirationSeconds: 3094703520378368232 - path: "131" + audience: "120" + expirationSeconds: 4844518680130446070 + path: "121" quobyte: - group: "112" + group: "102" readOnly: true - registry: "109" - tenant: "113" - user: "111" - volume: "110" + registry: "99" + tenant: "103" + user: "101" + volume: "100" rbd: - fsType: "72" - image: "71" - keyring: "75" + fsType: "62" + image: "61" + keyring: "65" monitors: - - "70" - pool: "73" + - "60" + pool: "63" readOnly: true secretRef: - name: "76" - user: "74" + name: "66" + user: "64" scaleIO: - fsType: "141" - gateway: "134" - protectionDomain: "137" + fsType: "131" + gateway: "124" + protectionDomain: "127" secretRef: - name: "136" - sslEnabled: true - storageMode: "139" - storagePool: "138" - system: "135" - volumeName: "140" + name: "126" + storageMode: "129" + storagePool: "128" + system: "125" + volumeName: "130" secret: - defaultMode: 819364842 + defaultMode: 712024464 items: - - key: "56" - mode: 1557090007 - path: "57" - optional: true - secretName: "55" + - key: "46" + mode: 13677460 + path: "47" + optional: false + secretName: "45" storageos: - fsType: "144" + fsType: "134" readOnly: true secretRef: - name: "145" - volumeName: "142" - volumeNamespace: "143" + name: "135" + volumeName: "132" + volumeNamespace: "133" vsphereVolume: - fsType: "106" - storagePolicyID: "108" - storagePolicyName: "107" - volumePath: "105" + fsType: "96" + storagePolicyID: "98" + storagePolicyName: "97" + volumePath: "95" status: - availableReplicas: 808399187 + availableReplicas: 1309129044 conditions: - - lastTransitionTime: "2076-01-14T12:00:04Z" - message: "416" - reason: "415" - status: 躭 - type: nP-m稅mŲ誚佼!­ʅ墘ȕûy< - fullyLabeledReplicas: -1440688002 - observedGeneration: 7098566543916862516 - readyReplicas: 665960858 - replicas: -1632200971 + - lastTransitionTime: "2519-06-20T10:43:36Z" + message: "400" + reason: "399" + status: 璻攜 + type: Ŭ尌eáNRNJ丧鴻ĿW癜鞤A馱z芀 + fullyLabeledReplicas: 1648811301 + observedGeneration: 1503865638277557961 + readyReplicas: -2062497734 + replicas: 1454867437 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.json index 7f7df22c2bd..39627afadee 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,25 +35,24 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "hard": { - "脽ěĂ凗蓏Ŋ蛊ĉy緅縕": "57" + "@Hr鯹)晿": "617" }, "scopes": [ - "颋Dž" + "Ĩɘ.蘯6ċV夸eɑeʤ脽ěĂ" ], "scopeSelector": { "matchExpressions": [ { - "scopeName": "?狱³-Ǐ忄*齧獚", - "operator": "彀亞", + "scopeName": "ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗", + "operator": "獚敆ȎțêɘIJ斬³;Ơ歿:狞夌碕ʂɭ", "values": [ - "24" + "18" ] } ] @@ -61,10 +60,10 @@ }, "status": { "hard": { - "ɘIJ斬³;": "753" + "": "929" }, "used": { - "rŎǀ朲^苣fƼ@hDrȮO励鹗塢ē ": "995" + "$Iņɖ橙9ȫŚʒUɦOŖ樅": "934" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.pb index 7e2104785cf278ab7f92ec47d70a03c9bf46e1af..6efc48835ca8273dc01f810182e0fbe6c5217e2d 100644 GIT binary patch delta 254 zcmVBrC$b zNau-{5-I16n&y>;$d1UH!>Y-c#Ioj=tirQ9#-Qe{zdGlOM4siOjOU`2%7V$Q8Uism z8ZQb73IGxX3IjPZIT9iY86-)?hRK%ZshK&*tHqkil2ys3PsNtzsD%;*3IjPaG#UUR E07hnKD}O2w3JwYa zF*p(k3I+-SF*yW~x3LEHzy~LZug5`&o=#!7dis+k)#EE(5w}t1pl@bIB0yQ@h z1?i%T$Auar3Ly#;Kj(|F!m};MkLACFD(Sta=Z%^Y2IakgIf#=JmiL~_WkPvwfS>A9EXp`yf- PAQA-%135W08UP{yMoDS3 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.yaml index 08ebfd4c4e0..e7e9a7eecce 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,22 +25,22 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: hard: - 脽ěĂ凗蓏Ŋ蛊ĉy緅縕: "57" + '@Hr鯹)晿': "617" scopeSelector: matchExpressions: - - operator: 彀亞 - scopeName: ?狱³-Ǐ忄*齧獚 + - operator: 獚敆ȎțêɘIJ斬³;Ơ歿:狞夌碕ʂɭ + scopeName: ʕVŚ(ĿȊ甞谐颋DžSǡƏS$+½H牗 values: - - "24" + - "18" scopes: - - 颋Dž + - Ĩɘ.蘯6ċV夸eɑeʤ脽ěĂ status: hard: - ɘIJ斬³;: "753" + "": "929" used: - 'rŎǀ朲^苣fƼ@hDrȮO励鹗塢ē ': "995" + $Iņɖ橙9ȫŚʒUɦOŖ樅: "934" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.json index 02069c270ac..472e970a50b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,16 +35,15 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "data": { - "24": "LA==" + "18": "Hg==" }, "stringData": { - "25": "26" + "19": "20" }, - "type": "Ă凗蓏Ŋ蛊ĉy" + "type": "r鯹)晿\u003co,c鮽ort昍řČ扷5ƗǸ" } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.pb index 154f3fc8cc43c1d0d2d9400404f5b642a3e8fa44..b936bb82e8d08c66e693545a5e50c0fa4e408c91 100644 GIT binary patch delta 133 zcmV;00DAwK0`~zuYdCWN3JeMYb}@Pf3IZ`W5&<3>A#&-jxhdwEzdUa& nW9hEFZ*p|zn2p7m#Ej;Nw>8F>$G9R03IZ`X5&|+X8UP{y>8mFQ delta 167 zcmV;Y09gO`0ht0`YdCWN3JeMYb}7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5RjlH8wCZ zGdYnxQ~^Dak}EqZ5DE?o0x>ue2nq%Y0x>xf01^iZ0x~ob0W2C2#De9Am*|s^#fs>g Vio}U|A_xisGBpwcGBz3jA^>r^GZFv* diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.yaml index ebea0bee673..148ebb40bbf 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Secret.yaml @@ -1,6 +1,6 @@ apiVersion: v1 data: - "24": LA== + "18": Hg== kind: Secret metadata: annotations: @@ -16,9 +16,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -30,9 +27,9 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" stringData: - "25": "26" -type: Ă凗蓏Ŋ蛊ĉy + "19": "20" +type: r鯹)晿BCL<#yZoL;X)|(ya4tu&}hZd8Ou@%$FiB3#LCSFWNra??b zW>E^KmQ4I3ZD@CNZ^Grdd%yk$8Ui-o-jM^>Di zq4#3Odb1FJz0TKx?W=D_Rbx@{sRG{5+e^HX&H<~yjŽ + healthCheckNodePort: -1095807277 + loadBalancerIP: "24" loadBalancerSourceRanges: - - "30" + - "25" ports: - - name: "24" - nodePort: 2048967527 - port: -1493017703 - protocol: 脽ěĂ凗蓏Ŋ蛊ĉy緅縕 - targetPort: -123438221 + - name: "18" + nodePort: -474380055 + port: 202283346 + protocol: '@Hr鯹)晿' + targetPort: "19" publishNotReadyAddresses: true selector: - "25": "26" - sessionAffinity: 洝尿彀 + "20": "21" + sessionAffinity: ɑ sessionAffinityConfig: clientIP: - timeoutSeconds: -1487653240 - type: ǡƏS$+½H + timeoutSeconds: -1973740160 + type: .蘯6ċV夸 status: loadBalancer: ingress: - - hostname: "33" - ip: "32" + - hostname: "28" + ip: "27" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.json index b06268b1291..d3fbb5ed385 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,26 +35,25 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "secrets": [ { - "kind": "24", - "namespace": "25", - "name": "26", - "uid": "脽ěĂ凗蓏Ŋ蛊ĉy緅縕", - "apiVersion": "27", - "resourceVersion": "28", - "fieldPath": "29" + "kind": "18", + "namespace": "19", + "name": "20", + "uid": "@Hr鯹)晿", + "apiVersion": "21", + "resourceVersion": "22", + "fieldPath": "23" } ], "imagePullSecrets": [ { - "name": "30" + "name": "24" } ], - "automountServiceAccountToken": true + "automountServiceAccountToken": false } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.pb index ea0c3459f7e20fc902bc82050acff789bb85377b..8951b6dbcdc3c9eb4e3908344ec6097bb37646a9 100644 GIT binary patch delta 108 zcmdnZ^qp~nwAM97uBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a z6VpN%wI}Y@HWE_dVluQ4VluRpVlpyN;&SjPdbxh5=ChgmwU~?yjhKv#teA|9rC7L_ Mj7$_5q!^SK03W>nLD^)5G3JwYa zF*p(k3I+-SF*yvl1DgYoB`WX&3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h zHZm|Xk#JN2E0M)3e-aD`oz2giJP?5El%E0`BM6SR{L}dV|Ns915)25WhVA?{5U`=n zqX8NS>94sd=9#}dA_6fuDgrS%G6FI%Is!5=LN*ElGBOeZGBX+iGBhF_#Hh)bF6fxA zHpGio<)pY}$&qEsr09gb#GAx|DgrV!G6FI-Is!5`N*@XWO)@wV0x~%o0y8io1?ZEH z#fmBdGchs(Gcq~?Gc!^GGc;NPGc{re3Ia1W5&|nVD}O2w3JwYa zF*p(k3I+-SF*yrE~@COnM2(F&`y8{rYs;&G18W-h< zm*|s^#fs>gio}U|=eLFDxRpM|y&?iKG%5lzH8KJ+HaY?_H$puM0x~!f0x~%o0y8io zBgchP$DziLQzR?Gy-4SYmvQE_o#n8<<-LI9x}NBssY2zmg(?CwF){)(GCBe?GfE)} z0y8uc0y8xl0y8!u2Q(#N>94R5$j1>?7atH{G^3Ž -type: "41" + count: -1971381490 + lastObservedTime: "2429-02-18T17:57:56.343118Z" + state: 鯹)晿< +type: "35" diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json index bd0f4e1b865..71127879585 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,262 +35,260 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "selector": { "matchLabels": { - "9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G": "0M.y.g" + "8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4" }, "matchExpressions": [ { - "key": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B", + "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", "operator": "In", "values": [ - "Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2" + "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" ] } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "ƐP_痸荎僋bŭDz鯰硰{舁吉蓨O", - "resourceVersion": "11397677413428459614", - "generation": 3974191383006284807, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "TʡȂŏ{sǡƟ", + "resourceVersion": "1698285396218902212", + "generation": -4139900758039117471, "creationTimestamp": null, - "deletionGracePeriodSeconds": 5087509039175129589, + "deletionGracePeriodSeconds": 7534629739119643351, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": ",Q捇ȸ{+ɸ殁", - "controller": true, + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "^", + "controller": false, "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "ĪȸŹăȲϤĦʅ芝", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "_Ĭ艥\u003c" + "path": "41", + "type": "" }, "emptyDir": { - "medium": "Ň'Ğİ*", - "sizeLimit": "695" + "medium": "ɹ坼É/pȿ", + "sizeLimit": "804" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1706940973 + "pdName": "42", + "fsType": "43", + "partition": -1318752360 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 1637061888, - "readOnly": true + "volumeID": "44", + "fsType": "45", + "partition": -2007808768 }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1092501327 + "key": "50", + "path": "51", + "mode": 228756891 } ], - "defaultMode": 62108019, - "optional": true + "defaultMode": 1233814916, + "optional": false }, "nfs": { - "server": "63", - "path": "64", + "server": "52", + "path": "53", "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -1884322607, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 408756018, + "iscsiInterface": "56", + "fsType": "57", + "readOnly": true, "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, + "chapAuthSession": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73" + "endpoints": "61", + "path": "62" }, "persistentVolumeClaim": { - "claimName": "74" + "claimName": "63", + "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" + "name": "70" }, "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "40" + "containerName": "89", + "resource": "90", + "divisor": "915" }, - "mode": -332563744 + "mode": -1768075156 } ], - "defaultMode": -861583888 + "defaultMode": -868808281 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": 324963473, - "fsType": "103", - "readOnly": true, + "lun": 570501002, + "fsType": "92", "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106", + "secretName": "94", + "shareName": "95", "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -885708332 + "key": "97", + "path": "98", + "mode": 2020789772 } ], - "defaultMode": -1853411528, - "optional": true + "defaultMode": 952979935, + "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "啞川J缮ǚb", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "k ź贩j瀉ǚrǜnh0åȂ", + "fsType": "110", "readOnly": false, - "kind": "ʬ" + "kind": "nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 1493217478 + "key": "114", + "path": "115", + "mode": 675406340 } ], "optional": false @@ -298,356 +296,133 @@ "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "763" + "containerName": "119", + "resource": "120", + "divisor": "461" }, - "mode": -1617414299 + "mode": -1618937335 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": -2137658152 + "key": "122", + "path": "123", + "mode": -1126738259 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -6753602166099171537, - "path": "136" + "audience": "124", + "expirationSeconds": -6345861634934949644, + "path": "125" } } ], - "defaultMode": -740816174 + "defaultMode": 480521693 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138" + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", - "readOnly": false, - "fsType": "152", + "driver": "140", + "readOnly": true, + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 1435152179, - "containerPort": -343150875, - "protocol": "ɥ³ƞsɁ8^ʥǔTĪȸŹă", - "hostIP": "162" + "name": "150", + "hostPort": -1510026905, + "containerPort": 437857734, + "protocol": "Rƥ贫d飼$俊跾|@?鷅b", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", - "optional": true + "name": "153", + "optional": false }, "secretRef": { - "name": "165", - "optional": true - } - } - ], - "env": [ - { - "name": "166", - "value": "167", - "valueFrom": { - "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" - }, - "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "770" - }, - "configMapKeyRef": { - "name": "172", - "key": "173", - "optional": true - }, - "secretKeyRef": { - "name": "174", - "key": "175", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "Z": "482" - }, - "requests": { - "ŏ{": "980" - } - }, - "volumeMounts": [ - { - "name": "176", - "readOnly": true, - "mountPath": "177", - "subPath": "178", - "mountPropagation": "ĕʄő芖{|", - "subPathExpr": "179" - } - ], - "volumeDevices": [ - { - "name": "180", - "devicePath": "181" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "182" - ] - }, - "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "pȿŘ阌Ŗ怳冘HǺƶ", - "httpHeaders": [ - { - "name": "186", - "value": "187" - } - ] - }, - "tcpSocket": { - "port": "188", - "host": "189" - }, - "initialDelaySeconds": 1366561945, - "timeoutSeconds": 657514697, - "periodSeconds": 408756018, - "successThreshold": 437263194, - "failureThreshold": -1116811061 - }, - "readinessProbe": { - "exec": { - "command": [ - "190" - ] - }, - "httpGet": { - "path": "191", - "port": 1873902270, - "host": "192", - "scheme": "?Qȫş", - "httpHeaders": [ - { - "name": "193", - "value": "194" - } - ] - }, - "tcpSocket": { - "port": 2091150210, - "host": "195" - }, - "initialDelaySeconds": -144591150, - "timeoutSeconds": 673378190, - "periodSeconds": 1701891633, - "successThreshold": -1768075156, - "failureThreshold": 273818613 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "196" - ] - }, - "httpGet": { - "path": "197", - "port": "198", - "host": "199", - "scheme": "錯ƶ", - "httpHeaders": [ - { - "name": "200", - "value": "201" - } - ] - }, - "tcpSocket": { - "port": "202", - "host": "203" - } - }, - "preStop": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": 2110181803, - "host": "206", - "scheme": "\u0026蕭k ź贩j瀉ǚrǜnh0å", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - } - } - }, - "terminationMessagePath": "211", - "terminationMessagePolicy": "恰nj揠8lj黳鈫ʕ", - "imagePullPolicy": "衧ȇe媹H", - "securityContext": { - "capabilities": { - "add": [ - "" - ], - "drop": [ - "臷Ľð»ųKĵ\u00264ʑ%:;栍dʪ" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "212", - "role": "213", - "type": "214", - "level": "215" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "216", - "gmsaCredentialSpec": "217", - "runAsUserName": "218" - }, - "runAsUser": 6743064379422188907, - "runAsGroup": 3541984878507294780, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Rƥ贫d飼$俊跾|@?鷅b" - }, - "stdin": true, - "tty": true - } - ], - "containers": [ - { - "name": "219", - "image": "220", - "command": [ - "221" - ], - "args": [ - "222" - ], - "workingDir": "223", - "ports": [ - { - "name": "224", - "hostPort": -1167973499, - "containerPort": 692541847, - "protocol": "Gưoɘ檲ɨ銦妰黖ȓƇ", - "hostIP": "225" - } - ], - "envFrom": [ - { - "prefix": "226", - "configMapRef": { - "name": "227", - "optional": true - }, - "secretRef": { - "name": "228", + "name": "154", "optional": false } } ], "env": [ { - "name": "229", - "value": "230", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "231", - "fieldPath": "232" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "233", - "resource": "234", - "divisor": "385" + "containerName": "159", + "resource": "160", + "divisor": "468" }, "configMapKeyRef": { - "name": "235", - "key": "236", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "237", - "key": "238", + "name": "163", + "key": "164", "optional": true } } @@ -655,432 +430,657 @@ ], "resources": { "limits": { - "鎷卩蝾H": "824" + "檲ɨ銦妰黖ȓƇ$缔獵偐ę腬": "646" }, "requests": { - "蕵ɢ": "684" + "湨": "803" } }, "volumeMounts": [ { - "name": "239", - "mountPath": "240", - "subPath": "241", - "mountPropagation": "2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN", - "subPathExpr": "242" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "卩蝾", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "243", - "devicePath": "244" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "245" + "171" ] }, "httpGet": { - "path": "246", - "port": "247", - "host": "248", - "scheme": "}", + "path": "172", + "port": "173", + "host": "174", "httpHeaders": [ { - "name": "249", - "value": "250" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "251", - "host": "252" + "port": "177", + "host": "178" }, - "initialDelaySeconds": 1030243869, - "timeoutSeconds": -1080853187, - "periodSeconds": -185042403, - "successThreshold": -374922344, - "failureThreshold": -31530684 + "initialDelaySeconds": 1805144649, + "timeoutSeconds": -606111218, + "periodSeconds": 1403721475, + "successThreshold": 519906483, + "failureThreshold": 1466047181 }, "readinessProbe": { "exec": { "command": [ - "253" + "179" ] }, "httpGet": { - "path": "254", - "port": "255", - "host": "256", + "path": "180", + "port": "181", + "host": "182", + "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", "httpHeaders": [ { - "name": "257", - "value": "258" + "name": "183", + "value": "184" } ] }, "tcpSocket": { - "port": -289900366, - "host": "259" + "port": -337353552, + "host": "185" }, - "initialDelaySeconds": 559781916, - "timeoutSeconds": -1703360754, - "periodSeconds": -1569009987, - "successThreshold": -1053603859, - "failureThreshold": 1471432155 + "initialDelaySeconds": -1724160601, + "timeoutSeconds": -1158840571, + "periodSeconds": 1435507444, + "successThreshold": -1430577593, + "failureThreshold": 524249411 }, "lifecycle": { "postStart": { "exec": { "command": [ - "260" + "186" ] }, "httpGet": { - "path": "261", - "port": "262", - "host": "263", - "scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾", + "path": "187", + "port": "188", + "host": "189", "httpHeaders": [ { - "name": "264", - "value": "265" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": "266", - "host": "267" + "port": 559781916, + "host": "192" } }, "preStop": { "exec": { "command": [ - "268" + "193" ] }, "httpGet": { - "path": "269", - "port": -1718681455, - "host": "270", - "scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.", + "path": "194", + "port": 1150375229, + "host": "195", + "scheme": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", "httpHeaders": [ { - "name": "271", - "value": "272" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": "273", - "host": "274" + "port": -1696471293, + "host": "198" } } }, - "terminationMessagePath": "275", - "terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹", - "imagePullPolicy": "ȃv渟7", + "terminationMessagePath": "199", + "terminationMessagePolicy": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", + "imagePullPolicy": "Ŵ廷s{Ⱦdz@", "securityContext": { "capabilities": { "add": [ - "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪" + "ʋŀ樺ȃv渟7¤7d" ], "drop": [ - "mɩC[ó瓧" + "ƯĖ漘Z剚敍0)鈼¬麄p呝T" ] }, "privileged": true, "seLinuxOptions": { - "user": "276", - "role": "277", - "type": "278", - "level": "279" + "user": "200", + "role": "201", + "type": "202", + "level": "203" }, "windowsOptions": { - "gmsaCredentialSpecName": "280", - "gmsaCredentialSpec": "281", - "runAsUserName": "282" + "gmsaCredentialSpecName": "204", + "gmsaCredentialSpec": "205", + "runAsUserName": "206" }, - "runAsUser": -6244232606031635964, - "runAsGroup": -2537458620093904059, - "runAsNonRoot": false, + "runAsUser": 4181787587415673530, + "runAsGroup": 825262458636305509, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ɟ踡肒Ao/樝fw[Řż丩Ž" + "procMount": "瓧嫭塓烀罁胾^拜" }, + "stdin": true, "stdinOnce": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "283", - "image": "284", + "name": "207", + "image": "208", "command": [ - "285" + "209" ], "args": [ - "286" + "210" ], - "workingDir": "287", + "workingDir": "211", "ports": [ { - "name": "288", - "hostPort": -1815868713, - "containerPort": 105707873, - "protocol": "ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[", - "hostIP": "289" + "name": "212", + "hostPort": 1385030458, + "containerPort": 427196286, + "protocol": "o/樝fw[Řż丩Ž", + "hostIP": "213" } ], "envFrom": [ { - "prefix": "290", + "prefix": "214", "configMapRef": { - "name": "291", + "name": "215", "optional": false }, "secretRef": { - "name": "292", - "optional": false + "name": "216", + "optional": true } } ], "env": [ { - "name": "293", - "value": "294", + "name": "217", + "value": "218", "valueFrom": { "fieldRef": { - "apiVersion": "295", - "fieldPath": "296" + "apiVersion": "219", + "fieldPath": "220" }, "resourceFieldRef": { - "containerName": "297", - "resource": "298", - "divisor": "18" + "containerName": "221", + "resource": "222", + "divisor": "932" }, "configMapKeyRef": { - "name": "299", - "key": "300", + "name": "223", + "key": "224", "optional": false }, "secretKeyRef": { - "name": "301", - "key": "302", - "optional": false + "name": "225", + "key": "226", + "optional": true } } } ], "resources": { "limits": { - "@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫rʤî": "366" + "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę": "638" }, "requests": { - ".v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0矀": "738" + "ǂ\u003e5姣\u003e懔%熷": "440" } }, "volumeMounts": [ { - "name": "303", + "name": "227", "readOnly": true, - "mountPath": "304", - "subPath": "305", - "mountPropagation": "|懥ƖN粕擓ƖHVe熼", - "subPathExpr": "306" + "mountPath": "228", + "subPath": "229", + "mountPropagation": "奺Ȋ礶惇¸t颟.鵫ǚ", + "subPathExpr": "230" } ], "volumeDevices": [ { - "name": "307", - "devicePath": "308" + "name": "231", + "devicePath": "232" } ], "livenessProbe": { "exec": { "command": [ - "309" + "233" ] }, "httpGet": { - "path": "310", - "port": "311", - "host": "312", - "scheme": "晒嶗UÐ_ƮA攤/ɸɎ R§耶FfBl", + "path": "234", + "port": "235", + "host": "236", + "scheme": "Ȥ藠3.", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "237", + "value": "238" } ] }, "tcpSocket": { - "port": 1074486306, - "host": "315" + "port": "239", + "host": "240" }, - "initialDelaySeconds": 630004123, - "timeoutSeconds": -984241405, - "periodSeconds": -1654678802, - "successThreshold": -625194347, - "failureThreshold": -720450949 + "initialDelaySeconds": -1389418722, + "timeoutSeconds": 851018015, + "periodSeconds": 596942561, + "successThreshold": -1880980172, + "failureThreshold": -161485752 }, "readinessProbe": { "exec": { "command": [ - "316" + "241" ] }, "httpGet": { - "path": "317", - "port": -1543701088, - "host": "318", - "scheme": "矡ȶ网棊ʢ=wǕɳɷ9Ì崟¿", + "path": "242", + "port": "243", + "host": "244", + "scheme": "«丯Ƙ枛牐ɺ皚", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "245", + "value": "246" } ] }, "tcpSocket": { - "port": -1423854443, - "host": "321" + "port": -1934111455, + "host": "247" }, - "initialDelaySeconds": -1798849477, - "timeoutSeconds": -1017263912, - "periodSeconds": 852780575, - "successThreshold": -1252938503, - "failureThreshold": 893823156 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438 }, "lifecycle": { "postStart": { "exec": { "command": [ - "322" + "248" ] }, "httpGet": { - "path": "323", - "port": "324", - "host": "325", - "scheme": "曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷", + "path": "249", + "port": "250", + "host": "251", + "scheme": "'", "httpHeaders": [ { - "name": "326", - "value": "327" + "name": "252", + "value": "253" } ] }, "tcpSocket": { - "port": "328", - "host": "329" + "port": -801430937, + "host": "254" } }, "preStop": { "exec": { "command": [ - "330" + "255" ] }, "httpGet": { - "path": "331", - "port": "332", - "host": "333", + "path": "256", + "port": 1810980158, + "host": "257", + "scheme": "_ƮA攤/ɸɎ R§耶FfBl", "httpHeaders": [ { - "name": "334", - "value": "335" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": 1943028037, - "host": "336" + "port": 1074486306, + "host": "260" } } }, - "terminationMessagePath": "337", - "imagePullPolicy": "犵殇ŕ-Ɂ圯W:ĸ輦唊#", + "terminationMessagePath": "261", + "terminationMessagePolicy": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ", + "imagePullPolicy": "Ǖɳɷ9Ì崟¿瘦ɖ緕", "securityContext": { "capabilities": { "add": [ - "ʩȂ4ē鐭#" + "勅跦Opwǩ曬逴褜1Ø" ], "drop": [ - "ơŸ8T " + "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "262", + "role": "263", + "type": "264", + "level": "265" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "266", + "gmsaCredentialSpec": "267", + "runAsUserName": "268" + }, + "runAsUser": -6470941481344047265, + "runAsGroup": 1373384864388370080, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "W:ĸ輦唊#v" + }, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "269", + "image": "270", + "command": [ + "271" + ], + "args": [ + "272" + ], + "workingDir": "273", + "ports": [ + { + "name": "274", + "hostPort": 2058122084, + "containerPort": -379385405, + "protocol": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", + "hostIP": "275" + } + ], + "envFrom": [ + { + "prefix": "276", + "configMapRef": { + "name": "277", + "optional": true + }, + "secretRef": { + "name": "278", + "optional": false + } + } + ], + "env": [ + { + "name": "279", + "value": "280", + "valueFrom": { + "fieldRef": { + "apiVersion": "281", + "fieldPath": "282" + }, + "resourceFieldRef": { + "containerName": "283", + "resource": "284", + "divisor": "355" + }, + "configMapKeyRef": { + "name": "285", + "key": "286", + "optional": false + }, + "secretKeyRef": { + "name": "287", + "key": "288", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "|E剒蔞|表徶đ寳议Ƭƶ氩": "337" + }, + "requests": { + "": "124" + } + }, + "volumeMounts": [ + { + "name": "289", + "mountPath": "290", + "subPath": "291", + "mountPropagation": "簳°Ļǟi\u0026皥贸", + "subPathExpr": "292" + } + ], + "volumeDevices": [ + { + "name": "293", + "devicePath": "294" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "295" + ] + }, + "httpGet": { + "path": "296", + "port": "297", + "host": "298", + "scheme": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", + "httpHeaders": [ + { + "name": "299", + "value": "300" + } + ] + }, + "tcpSocket": { + "port": "301", + "host": "302" + }, + "initialDelaySeconds": 2066735093, + "timeoutSeconds": -190183379, + "periodSeconds": -940334911, + "successThreshold": -341287812, + "failureThreshold": 2030115750 + }, + "readinessProbe": { + "exec": { + "command": [ + "303" + ] + }, + "httpGet": { + "path": "304", + "port": "305", + "host": "306", + "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "httpHeaders": [ + { + "name": "307", + "value": "308" + } + ] + }, + "tcpSocket": { + "port": 458427807, + "host": "309" + }, + "initialDelaySeconds": -1971421078, + "timeoutSeconds": 1905181464, + "periodSeconds": -1730959016, + "successThreshold": 1272940694, + "failureThreshold": -385597677 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "310" + ] + }, + "httpGet": { + "path": "311", + "port": "312", + "host": "313", + "scheme": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "httpHeaders": [ + { + "name": "314", + "value": "315" + } + ] + }, + "tcpSocket": { + "port": "316", + "host": "317" + } + }, + "preStop": { + "exec": { + "command": [ + "318" + ] + }, + "httpGet": { + "path": "319", + "port": "320", + "host": "321", + "scheme": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": -1187301925, + "host": "324" + } + } + }, + "terminationMessagePath": "325", + "terminationMessagePolicy": "Őnj汰8ŕ", + "imagePullPolicy": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "securityContext": { + "capabilities": { + "add": [ + "SvEȤƏ埮p" + ], + "drop": [ + "{WOŭW灬pȭCV擭銆jʒǚ鍰" ] }, "privileged": false, "seLinuxOptions": { - "user": "338", - "role": "339", - "type": "340", - "level": "341" + "user": "326", + "role": "327", + "type": "328", + "level": "329" }, "windowsOptions": { - "gmsaCredentialSpecName": "342", - "gmsaCredentialSpec": "343", - "runAsUserName": "344" + "gmsaCredentialSpecName": "330", + "gmsaCredentialSpec": "331", + "runAsUserName": "332" }, - "runAsUser": -6406791857291159870, - "runAsGroup": -6959202986715119291, - "runAsNonRoot": true, + "runAsUser": 6726836758549163621, + "runAsGroup": 741362943076737213, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "绤fʀļ腩墺Ò媁荭g" + "procMount": "DµņP)DŽ髐njʉBn(fǂǢ曣ŋ" }, + "stdin": true, "stdinOnce": true, - "targetContainerName": "345" + "tty": true, + "targetContainerName": "333" } ], - "restartPolicy": "|E剒蔞|表徶đ寳议Ƭƶ氩", - "terminationGracePeriodSeconds": 1856677271350902065, - "activeDeadlineSeconds": -540877112017102508, - "dnsPolicy": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l", + "restartPolicy": "åe躒訙", + "terminationGracePeriodSeconds": 6942343986058351509, + "activeDeadlineSeconds": 9212087462729867542, + "dnsPolicy": "娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ", "nodeSelector": { - "346": "347" + "334": "335" }, - "serviceAccountName": "348", - "serviceAccount": "349", + "serviceAccountName": "336", + "serviceAccount": "337", "automountServiceAccountToken": false, - "nodeName": "350", - "hostNetwork": true, - "hostIPC": true, + "nodeName": "338", + "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "351", - "role": "352", - "type": "353", - "level": "354" + "user": "339", + "role": "340", + "type": "341", + "level": "342" }, "windowsOptions": { - "gmsaCredentialSpecName": "355", - "gmsaCredentialSpec": "356", - "runAsUserName": "357" + "gmsaCredentialSpecName": "343", + "gmsaCredentialSpec": "344", + "runAsUserName": "345" }, - "runAsUser": -5001620332025163168, - "runAsGroup": 489084544654274973, + "runAsUser": 7747616967629081728, + "runAsGroup": 2548453080315983269, "runAsNonRoot": false, "supplementalGroups": [ - -3161746876343501601 + -1193643752264108019 ], - "fsGroup": 5307265951662522113, + "fsGroup": -7117039988160665426, "sysctls": [ { - "name": "358", - "value": "359" + "name": "346", + "value": "347" } ] }, "imagePullSecrets": [ { - "name": "360" + "name": "348" } ], - "hostname": "361", - "subdomain": "362", + "hostname": "349", + "subdomain": "350", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1088,19 @@ { "matchExpressions": [ { - "key": "363", - "operator": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", + "key": "351", + "operator": "", "values": [ - "364" + "352" ] } ], "matchFields": [ { - "key": "365", - "operator": "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi", + "key": "353", + "operator": "ƽ眝{æ盪泙", "values": [ - "366" + "354" ] } ] @@ -1109,23 +1109,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1305183607, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "367", - "operator": "ǵɐ鰥Z", + "key": "355", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "368" + "356" ] } ], "matchFields": [ { - "key": "369", - "operator": "嵐sC8?Ǻ鱎ƙ;Nŕ璻Ji", + "key": "357", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "370" + "358" ] } ] @@ -1138,46 +1138,43 @@ { "labelSelector": { "matchLabels": { - "q1py-8t379s3-8x2.l8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/z.W..4....-h._.Gg7": "9.M.134-5-.q6H_.--t" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "7U_-m.-P.yP9S--858LI__.8U", - "operator": "NotIn", - "values": [ - "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m" - ] + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "377" + "365" ], - "topologyKey": "378" + "topologyKey": "366" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -280562323, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "c-r.E__-.8_e_l2.._8s--7_3x_-J_....7" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "385" + "373" ], - "topologyKey": "386" + "topologyKey": "374" } } ] @@ -1187,108 +1184,105 @@ { "labelSelector": { "matchLabels": { - "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b", + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", "operator": "DoesNotExist" } ] }, "namespaces": [ - "393" + "381" ], - "topologyKey": "394" + "topologyKey": "382" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1934575848, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E", - "operator": "NotIn", - "values": [ - "ZI-_P..w-W_-nE...-V" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "401" + "389" ], - "topologyKey": "402" + "topologyKey": "390" } } ] } }, - "schedulerName": "403", + "schedulerName": "391", "tolerations": [ { - "key": "404", - "operator": "ƴ磳藷曥摮Z Ǐg鲅", - "value": "405", - "effect": "癯頯aɴí(Ȟ9\"忕(", - "tolerationSeconds": 3807599400818393626 + "key": "392", + "operator": "ƹ|", + "value": "393", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "406", + "ip": "394", "hostnames": [ - "407" + "395" ] } ], - "priorityClassName": "408", - "priority": 1352980996, + "priorityClassName": "396", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "409" + "397" ], "searches": [ - "410" + "398" ], "options": [ { - "name": "411", - "value": "412" + "name": "399", + "value": "400" } ] }, "readinessGates": [ { - "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "413", - "enableServiceLinks": false, - "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮", + "runtimeClassName": "401", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 547935694, - "topologyKey": "414", - "whenUnsatisfiable": "zŕƧ钖孝0蛮xAǫ\u0026tŧK剛Ʀ", + "maxSkew": -137402083, + "topologyKey": "402", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs", + "key": "qW", "operator": "In", "values": [ - "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I" + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" ] } ] @@ -1298,32 +1292,32 @@ } }, "updateStrategy": { - "type": "ũ齑誀ŭ\"ɦ?鮻ȧH僠", + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 903718123, - "templateGeneration": 5311169833460346096, - "revisionHistoryLimit": 1605659256 + "minReadySeconds": 212061711, + "templateGeneration": 8027668557984017414, + "revisionHistoryLimit": -1979737528 }, "status": { - "currentNumberScheduled": -1376495682, - "numberMisscheduled": 1266174302, - "desiredNumberScheduled": 663607130, - "numberReady": -87275477, - "observedGeneration": -8348161332040915262, - "updatedNumberScheduled": 2081997618, - "numberAvailable": -261966046, - "numberUnavailable": 444881930, - "collisionCount": 843573892, + "currentNumberScheduled": -1707056814, + "numberMisscheduled": -424698834, + "desiredNumberScheduled": 407742062, + "numberReady": 2115789304, + "observedGeneration": -455484136992029462, + "updatedNumberScheduled": 1660081568, + "numberAvailable": 904244563, + "numberUnavailable": -1245696932, + "collisionCount": 2063260600, "conditions": [ { - "type": "íÅ", - "status": "Lȋw`揄戀Ž彙pg稠氦ŅsƄƜ", - "lastTransitionTime": "2857-02-09T12:05:37Z", - "reason": "421", - "message": "422" + "type": "Ƅ抄3昞财Î嘝zʄ", + "status": "\u003ec緍k¢茤Ƣǟ½灶du汎mō6µɑ", + "lastTransitionTime": "2196-03-13T21:02:11Z", + "reason": "409", + "message": "410" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb index 271888a223c6ab8929a6eeb53c17fde2473641b8..c964542742f5ba195bd6dc72bf0f8eca1203cfc0 100644 GIT binary patch literal 6113 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 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml index 43d5bc553bd..126aa6949d2 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,881 +25,876 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: 903718123 - revisionHistoryLimit: 1605659256 + minReadySeconds: 212061711 + revisionHistoryLimit: -1979737528 selector: matchExpressions: - - key: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B + - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 operator: In values: - - Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2 + - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n matchLabels: - 9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G: 0M.y.g + 8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4 template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: 5087509039175129589 + deletionGracePeriodSeconds: 7534629739119643351 finalizers: - - "42" - generateName: "31" - generation: 3974191383006284807 + - "36" + generateName: "25" + generation: -4139900758039117471 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" + manager: "38" + operation: ĪȸŹăȲϤĦʅ芝 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" blockOwnerDeletion: true - controller: true - kind: "40" - name: "41" - uid: ',Q捇ȸ{+ɸ殁' - resourceVersion: "11397677413428459614" - selfLink: "33" - uid: ƐP_痸荎僋bŭDz鯰硰{舁吉蓨O + controller: false + kind: "34" + name: "35" + uid: ^ + resourceVersion: "1698285396218902212" + selfLink: "27" + uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -540877112017102508 + activeDeadlineSeconds: 9212087462729867542 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "367" - operator: ǵɐ鰥Z + - key: "355" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "368" + - "356" matchFields: - - key: "369" - operator: 嵐sC8?Ǻ鱎ƙ;Nŕ璻Ji + - key: "357" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "370" - weight: -1305183607 + - "358" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "363" - operator: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ + - key: "351" + operator: "" values: - - "364" + - "352" matchFields: - - key: "365" - operator: 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi + - key: "353" + operator: ƽ眝{æ盪泙 values: - - "366" + - "354" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11 - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - c-r.E__-.8_e_l2.._8s--7_3x_-J_....7 + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "385" - topologyKey: "386" - weight: -280562323 + - "373" + topologyKey: "374" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7U_-m.-P.yP9S--858LI__.8U - operator: NotIn - values: - - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - q1py-8t379s3-8x2.l8o26--26-hs5-jeds4-4tz9x--43--3---93-2-23/z.W..4....-h._.Gg7: 9.M.134-5-.q6H_.--t + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "377" - topologyKey: "378" + - "365" + topologyKey: "366" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E - operator: NotIn - values: - - ZI-_P..w-W_-nE...-V + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1 + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "401" - topologyKey: "402" - weight: -1934575848 + - "389" + topologyKey: "390" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 operator: DoesNotExist matchLabels: - mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "393" - topologyKey: "394" + - "381" + topologyKey: "382" automountServiceAccountToken: false containers: - args: - - "222" + - "210" command: - - "221" + - "209" env: - - name: "229" - value: "230" + - name: "217" + value: "218" valueFrom: configMapKeyRef: - key: "236" - name: "235" + key: "224" + name: "223" optional: false fieldRef: - apiVersion: "231" - fieldPath: "232" + apiVersion: "219" + fieldPath: "220" resourceFieldRef: - containerName: "233" - divisor: "385" - resource: "234" + containerName: "221" + divisor: "932" + resource: "222" secretKeyRef: - key: "238" - name: "237" + key: "226" + name: "225" optional: true envFrom: - configMapRef: - name: "227" - optional: true - prefix: "226" - secretRef: - name: "228" + name: "215" optional: false - image: "220" - imagePullPolicy: ȃv渟7 + prefix: "214" + secretRef: + name: "216" + optional: true + image: "208" + imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 lifecycle: postStart: exec: command: - - "260" + - "248" httpGet: - host: "263" + host: "251" httpHeaders: - - name: "264" - value: "265" - path: "261" - port: "262" - scheme: :贅wE@Ȗs«öʮĀ<é瞾 + - name: "252" + value: "253" + path: "249" + port: "250" + scheme: '''' tcpSocket: - host: "267" - port: "266" + host: "254" + port: -801430937 preStop: exec: command: - - "268" + - "255" httpGet: - host: "270" + host: "257" httpHeaders: - - name: "271" - value: "272" - path: "269" - port: -1718681455 - scheme: '*ʙ嫙&蒒5靇C''ɵK.' + - name: "258" + value: "259" + path: "256" + port: 1810980158 + scheme: _ƮA攤/ɸɎ R§耶FfBl tcpSocket: - host: "274" - port: "273" + host: "260" + port: 1074486306 livenessProbe: exec: command: - - "245" - failureThreshold: -31530684 + - "233" + failureThreshold: -161485752 httpGet: - host: "248" + host: "236" httpHeaders: - - name: "249" - value: "250" - path: "246" - port: "247" - scheme: '}' - initialDelaySeconds: 1030243869 - periodSeconds: -185042403 - successThreshold: -374922344 + - name: "237" + value: "238" + path: "234" + port: "235" + scheme: Ȥ藠3. + initialDelaySeconds: -1389418722 + periodSeconds: 596942561 + successThreshold: -1880980172 tcpSocket: - host: "252" - port: "251" - timeoutSeconds: -1080853187 - name: "219" + host: "240" + port: "239" + timeoutSeconds: 851018015 + name: "207" ports: - - containerPort: 692541847 - hostIP: "225" - hostPort: -1167973499 - name: "224" - protocol: Gưoɘ檲ɨ銦妰黖ȓƇ + - containerPort: 427196286 + hostIP: "213" + hostPort: 1385030458 + name: "212" + protocol: o/樝fw[Řż丩Ž readinessProbe: exec: command: - - "253" - failureThreshold: 1471432155 + - "241" + failureThreshold: 59664438 httpGet: - host: "256" + host: "244" httpHeaders: - - name: "257" - value: "258" - path: "254" - port: "255" - initialDelaySeconds: 559781916 - periodSeconds: -1569009987 - successThreshold: -1053603859 + - name: "245" + value: "246" + path: "242" + port: "243" + scheme: «丯Ƙ枛牐ɺ皚 + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 tcpSocket: - host: "259" - port: -289900366 - timeoutSeconds: -1703360754 + host: "247" + port: -1934111455 + timeoutSeconds: 1146016612 resources: limits: - 鎷卩蝾H: "824" + 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" requests: - 蕵ɢ: "684" + ǂ>5姣>懔%熷: "440" securityContext: allowPrivilegeEscalation: true capabilities: add: - - djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - 勅跦Opwǩ曬逴褜1Ø drop: - - mɩC[ó瓧 + - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] privileged: true - procMount: ɟ踡肒Ao/樝fw[Řż丩Ž + procMount: W:ĸ輦唊#v readOnlyRootFilesystem: true - runAsGroup: -2537458620093904059 + runAsGroup: 1373384864388370080 runAsNonRoot: false - runAsUser: -6244232606031635964 + runAsUser: -6470941481344047265 seLinuxOptions: - level: "279" - role: "277" - type: "278" - user: "276" + level: "265" + role: "263" + type: "264" + user: "262" windowsOptions: - gmsaCredentialSpec: "281" - gmsaCredentialSpecName: "280" - runAsUserName: "282" - stdinOnce: true - terminationMessagePath: "275" - terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹 - volumeDevices: - - devicePath: "244" - name: "243" - volumeMounts: - - mountPath: "240" - mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN - name: "239" - subPath: "241" - subPathExpr: "242" - workingDir: "223" - dnsConfig: - nameservers: - - "409" - options: - - name: "411" - value: "412" - searches: - - "410" - dnsPolicy: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l - enableServiceLinks: false - ephemeralContainers: - - args: - - "286" - command: - - "285" - env: - - name: "293" - value: "294" - valueFrom: - configMapKeyRef: - key: "300" - name: "299" - optional: false - fieldRef: - apiVersion: "295" - fieldPath: "296" - resourceFieldRef: - containerName: "297" - divisor: "18" - resource: "298" - secretKeyRef: - key: "302" - name: "301" - optional: false - envFrom: - - configMapRef: - name: "291" - optional: false - prefix: "290" - secretRef: - name: "292" - optional: false - image: "284" - imagePullPolicy: 犵殇ŕ-Ɂ圯W:ĸ輦唊# - lifecycle: - postStart: - exec: - command: - - "322" - httpGet: - host: "325" - httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" - scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷 - tcpSocket: - host: "329" - port: "328" - preStop: - exec: - command: - - "330" - httpGet: - host: "333" - httpHeaders: - - name: "334" - value: "335" - path: "331" - port: "332" - tcpSocket: - host: "336" - port: 1943028037 - livenessProbe: - exec: - command: - - "309" - failureThreshold: -720450949 - httpGet: - host: "312" - httpHeaders: - - name: "313" - value: "314" - path: "310" - port: "311" - scheme: 晒嶗UÐ_ƮA攤/ɸɎ R§耶FfBl - initialDelaySeconds: 630004123 - periodSeconds: -1654678802 - successThreshold: -625194347 - tcpSocket: - host: "315" - port: 1074486306 - timeoutSeconds: -984241405 - name: "283" - ports: - - containerPort: 105707873 - hostIP: "289" - hostPort: -1815868713 - name: "288" - protocol: ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[ - readinessProbe: - exec: - command: - - "316" - failureThreshold: 893823156 - httpGet: - host: "318" - httpHeaders: - - name: "319" - value: "320" - path: "317" - port: -1543701088 - scheme: 矡ȶ网棊ʢ=wǕɳɷ9Ì崟¿ - initialDelaySeconds: -1798849477 - periodSeconds: 852780575 - successThreshold: -1252938503 - tcpSocket: - host: "321" - port: -1423854443 - timeoutSeconds: -1017263912 - resources: - limits: - '@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫rʤî': "366" - requests: - .v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0矀: "738" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ʩȂ4ē鐭# - drop: - - 'ơŸ8T ' - privileged: false - procMount: 绤fʀļ腩墺Ò媁荭g - readOnlyRootFilesystem: false - runAsGroup: -6959202986715119291 - runAsNonRoot: true - runAsUser: -6406791857291159870 - seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" - windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" - stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" - volumeDevices: - - devicePath: "308" - name: "307" - volumeMounts: - - mountPath: "304" - mountPropagation: '|懥ƖN粕擓ƖHVe熼' - name: "303" - readOnly: true - subPath: "305" - subPathExpr: "306" - workingDir: "287" - hostAliases: - - hostnames: - - "407" - ip: "406" - hostIPC: true - hostNetwork: true - hostname: "361" - imagePullSecrets: - - name: "360" - initContainers: - - args: - - "159" - command: - - "158" - env: - - name: "166" - value: "167" - valueFrom: - configMapKeyRef: - key: "173" - name: "172" - optional: true - fieldRef: - apiVersion: "168" - fieldPath: "169" - resourceFieldRef: - containerName: "170" - divisor: "770" - resource: "171" - secretKeyRef: - key: "175" - name: "174" - optional: false - envFrom: - - configMapRef: - name: "164" - optional: true - prefix: "163" - secretRef: - name: "165" - optional: true - image: "157" - imagePullPolicy: 衧ȇe媹H - lifecycle: - postStart: - exec: - command: - - "196" - httpGet: - host: "199" - httpHeaders: - - name: "200" - value: "201" - path: "197" - port: "198" - scheme: 錯ƶ - tcpSocket: - host: "203" - port: "202" - preStop: - exec: - command: - - "204" - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2110181803 - scheme: '&蕭k ź贩j瀉ǚrǜnh0å' - tcpSocket: - host: "210" - port: "209" - livenessProbe: - exec: - command: - - "182" - failureThreshold: -1116811061 - httpGet: - host: "185" - httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: pȿŘ阌Ŗ怳冘HǺƶ - initialDelaySeconds: 1366561945 - periodSeconds: 408756018 - successThreshold: 437263194 - tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 657514697 - name: "156" - ports: - - containerPort: -343150875 - hostIP: "162" - hostPort: 1435152179 - name: "161" - protocol: ɥ³ƞsɁ8^ʥǔTĪȸŹă - readinessProbe: - exec: - command: - - "190" - failureThreshold: 273818613 - httpGet: - host: "192" - httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 1873902270 - scheme: ?Qȫş - initialDelaySeconds: -144591150 - periodSeconds: 1701891633 - successThreshold: -1768075156 - tcpSocket: - host: "195" - port: 2091150210 - timeoutSeconds: 673378190 - resources: - limits: - Z: "482" - requests: - ŏ{: "980" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - "" - drop: - - 臷Ľð»ųKĵ&4ʑ%:;栍dʪ - privileged: false - procMount: Rƥ贫d飼$俊跾|@?鷅b - readOnlyRootFilesystem: false - runAsGroup: 3541984878507294780 - runAsNonRoot: false - runAsUser: 6743064379422188907 - seLinuxOptions: - level: "215" - role: "213" - type: "214" - user: "212" - windowsOptions: - gmsaCredentialSpec: "217" - gmsaCredentialSpecName: "216" - runAsUserName: "218" - stdin: true - terminationMessagePath: "211" - terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ + gmsaCredentialSpec: "267" + gmsaCredentialSpecName: "266" + runAsUserName: "268" + terminationMessagePath: "261" + terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ tty: true volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "177" - mountPropagation: ĕʄő芖{| - name: "176" + - mountPath: "228" + mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ + name: "227" readOnly: true - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + subPath: "229" + subPathExpr: "230" + workingDir: "211" + dnsConfig: + nameservers: + - "397" + options: + - name: "399" + value: "400" + searches: + - "398" + dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ + enableServiceLinks: true + ephemeralContainers: + - args: + - "272" + command: + - "271" + env: + - name: "279" + value: "280" + valueFrom: + configMapKeyRef: + key: "286" + name: "285" + optional: false + fieldRef: + apiVersion: "281" + fieldPath: "282" + resourceFieldRef: + containerName: "283" + divisor: "355" + resource: "284" + secretKeyRef: + key: "288" + name: "287" + optional: true + envFrom: + - configMapRef: + name: "277" + optional: true + prefix: "276" + secretRef: + name: "278" + optional: false + image: "270" + imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + lifecycle: + postStart: + exec: + command: + - "310" + httpGet: + host: "313" + httpHeaders: + - name: "314" + value: "315" + path: "311" + port: "312" + scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + tcpSocket: + host: "317" + port: "316" + preStop: + exec: + command: + - "318" + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "319" + port: "320" + scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + tcpSocket: + host: "324" + port: -1187301925 + livenessProbe: + exec: + command: + - "295" + failureThreshold: 2030115750 + httpGet: + host: "298" + httpHeaders: + - name: "299" + value: "300" + path: "296" + port: "297" + scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 + initialDelaySeconds: 2066735093 + periodSeconds: -940334911 + successThreshold: -341287812 + tcpSocket: + host: "302" + port: "301" + timeoutSeconds: -190183379 + name: "269" + ports: + - containerPort: -379385405 + hostIP: "275" + hostPort: 2058122084 + name: "274" + protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + readinessProbe: + exec: + command: + - "303" + failureThreshold: -385597677 + httpGet: + host: "306" + httpHeaders: + - name: "307" + value: "308" + path: "304" + port: "305" + scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + initialDelaySeconds: -1971421078 + periodSeconds: -1730959016 + successThreshold: 1272940694 + tcpSocket: + host: "309" + port: 458427807 + timeoutSeconds: 1905181464 + resources: + limits: + '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + requests: + "": "124" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - SvEȤƏ埮p + drop: + - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + privileged: false + procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ + readOnlyRootFilesystem: false + runAsGroup: 741362943076737213 + runAsNonRoot: false + runAsUser: 6726836758549163621 + seLinuxOptions: + level: "329" + role: "327" + type: "328" + user: "326" + windowsOptions: + gmsaCredentialSpec: "331" + gmsaCredentialSpecName: "330" + runAsUserName: "332" + stdin: true + stdinOnce: true + targetContainerName: "333" + terminationMessagePath: "325" + terminationMessagePolicy: Őnj汰8ŕ + tty: true + volumeDevices: + - devicePath: "294" + name: "293" + volumeMounts: + - mountPath: "290" + mountPropagation: 簳°Ļǟi&皥贸 + name: "289" + subPath: "291" + subPathExpr: "292" + workingDir: "273" + hostAliases: + - hostnames: + - "395" + ip: "394" + hostPID: true + hostname: "349" + imagePullSecrets: + - name: "348" + initContainers: + - args: + - "148" + command: + - "147" + env: + - name: "155" + value: "156" + valueFrom: + configMapKeyRef: + key: "162" + name: "161" + optional: false + fieldRef: + apiVersion: "157" + fieldPath: "158" + resourceFieldRef: + containerName: "159" + divisor: "468" + resource: "160" + secretKeyRef: + key: "164" + name: "163" + optional: true + envFrom: + - configMapRef: + name: "153" + optional: false + prefix: "152" + secretRef: + name: "154" + optional: false + image: "146" + imagePullPolicy: Ŵ廷s{Ⱦdz@ + lifecycle: + postStart: + exec: + command: + - "186" + httpGet: + host: "189" + httpHeaders: + - name: "190" + value: "191" + path: "187" + port: "188" + tcpSocket: + host: "192" + port: 559781916 + preStop: + exec: + command: + - "193" + httpGet: + host: "195" + httpHeaders: + - name: "196" + value: "197" + path: "194" + port: 1150375229 + scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + tcpSocket: + host: "198" + port: -1696471293 + livenessProbe: + exec: + command: + - "171" + failureThreshold: 1466047181 + httpGet: + host: "174" + httpHeaders: + - name: "175" + value: "176" + path: "172" + port: "173" + initialDelaySeconds: 1805144649 + periodSeconds: 1403721475 + successThreshold: 519906483 + tcpSocket: + host: "178" + port: "177" + timeoutSeconds: -606111218 + name: "145" + ports: + - containerPort: 437857734 + hostIP: "151" + hostPort: -1510026905 + name: "150" + protocol: Rƥ贫d飼$俊跾|@?鷅b + readinessProbe: + exec: + command: + - "179" + failureThreshold: 524249411 + httpGet: + host: "182" + httpHeaders: + - name: "183" + value: "184" + path: "180" + port: "181" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + initialDelaySeconds: -1724160601 + periodSeconds: 1435507444 + successThreshold: -1430577593 + tcpSocket: + host: "185" + port: -337353552 + timeoutSeconds: -1158840571 + resources: + limits: + 檲ɨ銦妰黖ȓƇ$缔獵偐ę腬: "646" + requests: + 湨: "803" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - ʋŀ樺ȃv渟7¤7d + drop: + - ƯĖ漘Z剚敍0)鈼¬麄p呝T + privileged: true + procMount: 瓧嫭塓烀罁胾^拜 + readOnlyRootFilesystem: true + runAsGroup: 825262458636305509 + runAsNonRoot: true + runAsUser: 4181787587415673530 + seLinuxOptions: + level: "203" + role: "201" + type: "202" + user: "200" + windowsOptions: + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" + stdin: true + stdinOnce: true + terminationMessagePath: "199" + terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + volumeDevices: + - devicePath: "170" + name: "169" + volumeMounts: + - mountPath: "166" + mountPropagation: 卩蝾 + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "338" nodeSelector: - "346": "347" + "334": "335" overhead: - Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185" - preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮 - priority: 1352980996 - priorityClassName: "408" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "396" readinessGates: - - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ - restartPolicy: '|E剒蔞|表徶đ寳议Ƭƶ氩' - runtimeClassName: "413" - schedulerName: "403" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: åe躒訙 + runtimeClassName: "401" + schedulerName: "391" securityContext: - fsGroup: 5307265951662522113 - runAsGroup: 489084544654274973 + fsGroup: -7117039988160665426 + runAsGroup: 2548453080315983269 runAsNonRoot: false - runAsUser: -5001620332025163168 + runAsUser: 7747616967629081728 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "342" + role: "340" + type: "341" + user: "339" supplementalGroups: - - -3161746876343501601 + - -1193643752264108019 sysctls: - - name: "358" - value: "359" + - name: "346" + value: "347" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "344" + gmsaCredentialSpecName: "343" + runAsUserName: "345" + serviceAccount: "337" + serviceAccountName: "336" shareProcessNamespace: false - subdomain: "362" - terminationGracePeriodSeconds: 1856677271350902065 + subdomain: "350" + terminationGracePeriodSeconds: 6942343986058351509 tolerations: - - effect: 癯頯aɴí(Ȟ9"忕( - key: "404" - operator: ƴ磳藷曥摮Z Ǐg鲅 - tolerationSeconds: 3807599400818393626 - value: "405" + - effect: 料ȭzV镜籬ƽ + key: "392" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "393" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs + - key: qW operator: In values: - - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE - maxSkew: 547935694 - topologyKey: "414" - whenUnsatisfiable: zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "402" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 1637061888 - readOnly: true - volumeID: "55" + fsType: "45" + partition: -2007808768 + volumeID: "44" azureDisk: - cachingMode: 啞川J缮ǚb - diskName: "119" - diskURI: "120" - fsType: "121" - kind: ʬ + cachingMode: k ź贩j瀉ǚrǜnh0åȂ + diskName: "108" + diskURI: "109" + fsType: "110" + kind: nj揠8lj黳鈫ʕ禒Ƙá腿ħ缶 readOnly: false azureFile: readOnly: true - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: -1853411528 + defaultMode: 952979935 items: - - key: "108" - mode: -885708332 - path: "109" - name: "107" - optional: true + - key: "97" + mode: 2020789772 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" - readOnly: false + name: "144" + readOnly: true volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -861583888 + defaultMode: -868808281 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -332563744 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: -1768075156 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "40" - resource: "101" + containerName: "89" + divisor: "915" + resource: "90" emptyDir: - medium: Ň'Ğİ* - sizeLimit: "695" + medium: ɹ坼É/pȿ + sizeLimit: "804" fc: - fsType: "103" - lun: 324963473 - readOnly: true + fsType: "92" + lun: 570501002 targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1706940973 - pdName: "53" + fsType: "43" + partition: -1318752360 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" hostPath: - path: "52" - type: _Ĭ艥< + path: "41" + type: "" iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1884322607 + chapAuthDiscovery: true + chapAuthSession: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 408756018 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" + - "58" readOnly: true - server: "63" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" + readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" - volumeID: "137" + fsType: "127" + volumeID: "126" projected: - defaultMode: -740816174 + defaultMode: 480521693 sources: - configMap: items: - - key: "133" - mode: -2137658152 - path: "134" - name: "132" + - key: "122" + mode: -1126738259 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1617414299 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: -1618937335 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "763" - resource: "131" + containerName: "119" + divisor: "461" + resource: "120" secret: items: - - key: "125" - mode: 1493217478 - path: "126" - name: "124" + - key: "114" + mode: 675406340 + path: "115" + name: "113" optional: false serviceAccountToken: - audience: "135" - expirationSeconds: -6753602166099171537 - path: "136" + audience: "124" + expirationSeconds: -6345861634934949644 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" + name: "130" sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 62108019 + defaultMode: 1233814916 items: - - key: "61" - mode: -1092501327 - path: "62" - optional: true - secretName: "60" + - key: "50" + mode: 228756891 + path: "51" + optional: false + secretName: "49" storageos: - fsType: "149" + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" - templateGeneration: 5311169833460346096 + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" + templateGeneration: 8027668557984017414 updateStrategy: rollingUpdate: {} - type: ũ齑誀ŭ"ɦ?鮻ȧH僠 + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 status: - collisionCount: 843573892 + collisionCount: 2063260600 conditions: - - lastTransitionTime: "2857-02-09T12:05:37Z" - message: "422" - reason: "421" - status: Lȋw`揄戀Ž彙pg稠氦ŅsƄƜ - type: íÅ - currentNumberScheduled: -1376495682 - desiredNumberScheduled: 663607130 - numberAvailable: -261966046 - numberMisscheduled: 1266174302 - numberReady: -87275477 - numberUnavailable: 444881930 - observedGeneration: -8348161332040915262 - updatedNumberScheduled: 2081997618 + - lastTransitionTime: "2196-03-13T21:02:11Z" + message: "410" + reason: "409" + status: '>c緍k¢茤Ƣǟ½灶du汎mō6µɑ' + type: Ƅ抄3昞财Î嘝zʄ + currentNumberScheduled: -1707056814 + desiredNumberScheduled: 407742062 + numberAvailable: 904244563 + numberMisscheduled: -424698834 + numberReady: 2115789304 + numberUnavailable: -1245696932 + observedGeneration: -455484136992029462 + updatedNumberScheduled: 1660081568 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json index 4e7f87d01a0..0770f743be3 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,400 +35,392 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, + "replicas": 896585016, "selector": { "matchLabels": { - "w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g": "F-_3-n-_-__3u-.__P__.7U-Uo_F" + "74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj": "6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1" }, "matchExpressions": [ { - "key": "5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F", - "operator": "NotIn", - "values": [ - "y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16" - ] + "key": "50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99", + "operator": "Exists" } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "]躢|)黰eȪ嵛4$%QɰVzÏ抴", - "resourceVersion": "373742866186182450", - "generation": 3557306139556084909, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "?Qȫş", + "resourceVersion": "1736621709629422270", + "generation": -8542870036622468681, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2848337479447330428, + "deletionGracePeriodSeconds": -2575298329142810753, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "@Z^嫫猤痈C*ĕʄő芖{|ǘ\"^饣", - "controller": false, - "blockOwnerDeletion": false + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ƶȤ^}", + "controller": true, + "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "妻ƅTGS5Ǎ", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "躢", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "Uʎ浵ɲõ" + "path": "41", + "type": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c" }, "emptyDir": { - "medium": "o\u0026蕭k ź贩j瀉", - "sizeLimit": "621" + "medium": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", + "sizeLimit": "473" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": -1321131665, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1188153605 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": -1996616480 + "volumeID": "44", + "fsType": "45", + "partition": 912004803, + "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": -1365115016 + "key": "50", + "path": "51", + "mode": -547518679 } ], - "defaultMode": -288563359, - "optional": false + "defaultMode": 332383000, + "optional": true }, "nfs": { - "server": "63", - "path": "64" + "server": "52", + "path": "53", + "readOnly": true }, "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": 636617833, - "iscsiInterface": "67", - "fsType": "68", + "targetPortal": "54", + "iqn": "55", + "lun": 994527057, + "iscsiInterface": "56", + "fsType": "57", "portals": [ - "69" + "58" ], + "chapAuthDiscovery": true, "secretRef": { - "name": "70" + "name": "59" }, - "initiatorName": "71" + "initiatorName": "60" }, "glusterfs": { - "endpoints": "72", - "path": "73", + "endpoints": "61", + "path": "62", "readOnly": true }, "persistentVolumeClaim": { - "claimName": "74", + "claimName": "63", "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - }, - "readOnly": true + "name": "70" + } }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "readOnly": true, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "772" + "containerName": "89", + "resource": "90", + "divisor": "660" }, - "mode": -1482763519 + "mode": 1569992019 } ], - "defaultMode": -1376537100 + "defaultMode": 824682619 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -1902521464, - "fsType": "103", + "lun": -1740986684, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95", + "readOnly": true }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1296140 + "key": "97", + "path": "98", + "mode": 195263908 } ], - "defaultMode": 480521693, + "defaultMode": 1593906314, "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "readOnly": true, - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "fsType": "121", + "diskName": "108", + "diskURI": "109", + "cachingMode": "|@?鷅bȻN", + "fsType": "110", "readOnly": true, - "kind": "參遼ūP" + "kind": "榱*Gưoɘ檲" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 996680040 + "key": "114", + "path": "115", + "mode": -323584340 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "838" + "containerName": "119", + "resource": "120", + "divisor": "106" }, - "mode": -1319998825 + "mode": 173030157 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 1569606284 + "key": "122", + "path": "123", + "mode": 2063799569 } ], "optional": false }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": -4636499237765408684, - "path": "136" + "audience": "124", + "expirationSeconds": 8357931971650847566, + "path": "125" } } ], - "defaultMode": -50623103 + "defaultMode": -1334904807 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", + "volumeID": "126", + "fsType": "127", "readOnly": true }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "sslEnabled": true, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146", - "readOnly": true + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", - "readOnly": true, + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 963442342, - "containerPort": 1180382332, - "protocol": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "hostIP": "162" + "name": "150", + "hostPort": -606111218, + "containerPort": 1403721475, + "protocol": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": true }, "secretRef": { - "name": "165", + "name": "154", "optional": true } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "813" + "containerName": "159", + "resource": "160", + "divisor": "650" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": false }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": true } } @@ -436,220 +428,221 @@ ], "resources": { "limits": { - "Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t": "770" + "": "84" }, "requests": { - "sn芞QÄȻȊ+?ƭ峧": "970" + "ɖȃ賲鐅臬dH巧壚tC十Oɢ": "517" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "«öʮĀ\u003cé瞾ʀNŬɨǙÄr蛏豈ɃHŠ", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": -1167888910, - "host": "184", - "scheme": ".Q貇£ȹ嫰ƹǔw÷nI", + "path": "172", + "port": -152585895, + "host": "173", + "scheme": "E@Ȗs«ö", "httpHeaders": [ { - "name": "185", - "value": "186" + "name": "174", + "value": "175" } ] }, "tcpSocket": { - "port": "187", - "host": "188" + "port": 1135182169, + "host": "176" }, - "initialDelaySeconds": -162264011, - "timeoutSeconds": 800220849, - "periodSeconds": -1429994426, - "successThreshold": 135036402, - "failureThreshold": -1650568978 + "initialDelaySeconds": 1843758068, + "timeoutSeconds": -1967469005, + "periodSeconds": 1702578303, + "successThreshold": -1565157256, + "failureThreshold": -1113628381 }, "readinessProbe": { "exec": { "command": [ - "189" + "177" ] }, "httpGet": { - "path": "190", - "port": -2015604435, - "host": "191", - "scheme": "jƯĖ漘Z剚敍0)", + "path": "178", + "port": 386652373, + "host": "179", + "scheme": "ʙ嫙\u0026", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "180", + "value": "181" } ] }, "tcpSocket": { - "port": 424236719, - "host": "194" + "port": "182", + "host": "183" }, - "initialDelaySeconds": -2031266553, - "timeoutSeconds": -840997104, - "periodSeconds": -648954478, - "successThreshold": 1170649416, - "failureThreshold": 893619181 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910 }, "lifecycle": { "postStart": { "exec": { "command": [ - "195" + "184" ] }, "httpGet": { - "path": "196", - "port": "197", - "host": "198", - "scheme": "ɩC", + "path": "185", + "port": "186", + "host": "187", + "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", "httpHeaders": [ { - "name": "199", - "value": "200" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": "201", - "host": "202" + "port": 135036402, + "host": "190" } }, "preStop": { "exec": { "command": [ - "203" + "191" ] }, "httpGet": { - "path": "204", - "port": 747802823, - "host": "205", - "scheme": "ĨFħ籘Àǒɿʒ", + "path": "192", + "port": -1188430996, + "host": "193", + "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": 1912934380, - "host": "208" + "port": "196", + "host": "197" } } }, - "terminationMessagePath": "209", - "terminationMessagePolicy": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "imagePullPolicy": "Ź9ǕLLȊɞ-uƻ悖", + "terminationMessagePath": "198", + "terminationMessagePolicy": "ɩC", "securityContext": { "capabilities": { "add": [ - "Ƹ[Ęİ榌U髷裎$MVȟ@7" + "ȫ焗捏ĨFħ籘Àǒɿʒ刽" ], "drop": [ - "奺Ȋ礶惇¸t颟.鵫ǚ" + "掏1ſ" ] }, "privileged": true, "seLinuxOptions": { - "user": "210", - "role": "211", - "type": "212", - "level": "213" + "user": "199", + "role": "200", + "type": "201", + "level": "202" }, "windowsOptions": { - "gmsaCredentialSpecName": "214", - "gmsaCredentialSpec": "215", - "runAsUserName": "216" + "gmsaCredentialSpecName": "203", + "gmsaCredentialSpec": "204", + "runAsUserName": "205" }, - "runAsUser": -834696834428133864, - "runAsGroup": -7821473471908167720, + "runAsUser": 7739117973959656085, + "runAsGroup": 3747003978559617838, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ" + "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" }, - "tty": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "217", - "image": "218", + "name": "206", + "image": "207", "command": [ - "219" + "208" ], "args": [ - "220" + "209" ], - "workingDir": "221", + "workingDir": "210", "ports": [ { - "name": "222", - "hostPort": 766864314, - "containerPort": 1146016612, - "protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", - "hostIP": "223" + "name": "211", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", + "hostIP": "212" } ], "envFrom": [ { - "prefix": "224", + "prefix": "213", "configMapRef": { - "name": "225", - "optional": true + "name": "214", + "optional": false }, "secretRef": { - "name": "226", + "name": "215", "optional": true } } ], "env": [ { - "name": "227", - "value": "228", + "name": "216", + "value": "217", "valueFrom": { "fieldRef": { - "apiVersion": "229", - "fieldPath": "230" + "apiVersion": "218", + "fieldPath": "219" }, "resourceFieldRef": { - "containerName": "231", - "resource": "232", - "divisor": "770" + "containerName": "220", + "resource": "221", + "divisor": "771" }, "configMapKeyRef": { - "name": "233", - "key": "234", - "optional": true + "name": "222", + "key": "223", + "optional": false }, "secretKeyRef": { - "name": "235", - "key": "236", + "name": "224", + "key": "225", "optional": true } } @@ -657,221 +650,221 @@ ], "resources": { "limits": { - "癃8鸖": "881" + "吐": "777" }, "requests": { - "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ": "63" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { - "name": "237", + "name": "226", "readOnly": true, - "mountPath": "238", - "subPath": "239", - "mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", - "subPathExpr": "240" + "mountPath": "227", + "subPath": "228", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", + "subPathExpr": "229" } ], "volumeDevices": [ { - "name": "241", - "devicePath": "242" + "name": "230", + "devicePath": "231" } ], "livenessProbe": { "exec": { "command": [ - "243" + "232" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "path": "233", + "port": -1285424066, + "host": "234", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "235", + "value": "236" } ] }, "tcpSocket": { - "port": 622267234, - "host": "249" + "port": "237", + "host": "238" }, - "initialDelaySeconds": 410611837, - "timeoutSeconds": 809006670, - "periodSeconds": 972978563, - "successThreshold": 17771103, - "failureThreshold": -1008070934 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681 }, "readinessProbe": { "exec": { "command": [ - "250" + "239" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "240", + "port": "241", + "host": "242", + "scheme": "3!Zɾģ毋Ó6", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -832805508, + "host": "245" }, - "initialDelaySeconds": -1191528701, - "timeoutSeconds": -978176982, - "periodSeconds": 415947324, - "successThreshold": 18113448, - "failureThreshold": 1474943201 + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240 }, "lifecycle": { "postStart": { "exec": { "command": [ - "258" + "246" ] }, "httpGet": { - "path": "259", - "port": "260", - "host": "261", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "247", + "port": -2013568185, + "host": "248", + "scheme": "#yV'WKw(ğ儴Ůĺ}", "httpHeaders": [ { - "name": "262", - "value": "263" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "264", - "host": "265" + "port": -20130017, + "host": "251" } }, "preStop": { "exec": { "command": [ - "266" + "252" ] }, "httpGet": { - "path": "267", - "port": 591440053, - "host": "268", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "253", + "port": -661937776, + "host": "254", + "scheme": "ØœȠƬQg鄠[颐o", "httpHeaders": [ { - "name": "269", - "value": "270" + "name": "255", + "value": "256" } ] }, "tcpSocket": { - "port": "271", - "host": "272" + "port": 461585849, + "host": "257" } } }, - "terminationMessagePath": "273", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "258", + "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", "securityContext": { "capabilities": { "add": [ - "碔" + "昕Ĭ" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ó藢xɮĵȑ6L*" ] }, "privileged": false, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "259", + "role": "260", + "type": "261", + "level": "262" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "263", + "gmsaCredentialSpec": "264", + "runAsUserName": "265" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -5835415947553716289, + "runAsGroup": 2540215688947167763, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "allowPrivilegeEscalation": false, + "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" }, - "stdinOnce": true + "tty": true } ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "266", + "image": "267", "command": [ - "283" + "268" ], "args": [ - "284" + "269" ], - "workingDir": "285", + "workingDir": "270", "ports": [ { - "name": "286", - "hostPort": 887319241, - "containerPort": 1559618829, - "protocol": "/»頸+SÄ蚃ɣľ)酊龨Î", - "hostIP": "287" + "name": "271", + "hostPort": -552281772, + "containerPort": -677617960, + "protocol": "ŕ翑0展}", + "hostIP": "272" } ], "envFrom": [ { - "prefix": "288", + "prefix": "273", "configMapRef": { - "name": "289", + "name": "274", "optional": false }, "secretRef": { - "name": "290", + "name": "275", "optional": false } } ], "env": [ { - "name": "291", - "value": "292", + "name": "276", + "value": "277", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "278", + "fieldPath": "279" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", - "divisor": "568" + "containerName": "280", + "resource": "281", + "divisor": "185" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "282", + "key": "283", "optional": true }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "284", + "key": "285", "optional": false } } @@ -879,213 +872,213 @@ ], "resources": { "limits": { - "'琕鶫:顇ə娯Ȱ囌{屿": "115" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "龏´DÒȗÔÂɘɢ鬍": "101" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", - "mountPropagation": "璻Jih亏yƕ丆録²Ŏ", - "subPathExpr": "304" + "name": "286", + "mountPath": "287", + "subPath": "288", + "mountPropagation": "", + "subPathExpr": "289" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "290", + "devicePath": "291" } ], "livenessProbe": { "exec": { "command": [ - "307" + "292" ] }, "httpGet": { - "path": "308", - "port": -402384013, - "host": "309", - "scheme": "nj汰8ŕİi騎C\"6x$1sȣ±p", + "path": "293", + "port": "294", + "host": "295", + "scheme": "頸", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": 1900201288, - "host": "312" + "port": 1315054653, + "host": "298" }, - "initialDelaySeconds": -766915393, - "timeoutSeconds": 828305357, - "periodSeconds": -1170565984, - "successThreshold": -444561761, - "failureThreshold": -536848804 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896 }, "readinessProbe": { "exec": { "command": [ - "313" + "299" ] }, "httpGet": { - "path": "314", - "port": -2113700533, - "host": "315", - "scheme": "埮pɵ{WOŭW灬p", + "path": "300", + "port": "301", + "host": "302", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": -1607821167, - "host": "318" + "port": "305", + "host": "306" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": 1058960779, + "timeoutSeconds": -2133441986, + "periodSeconds": 472742933, + "successThreshold": 50696420, + "failureThreshold": -1250314365 }, "lifecycle": { "postStart": { "exec": { "command": [ - "319" + "307" ] }, "httpGet": { - "path": "320", - "port": "321", - "host": "322", + "path": "308", + "port": -934378634, + "host": "309", + "scheme": "ɐ鰥", "httpHeaders": [ { - "name": "323", - "value": "324" + "name": "310", + "value": "311" } ] }, "tcpSocket": { - "port": "325", - "host": "326" + "port": 630140708, + "host": "312" } }, "preStop": { "exec": { "command": [ - "327" + "313" ] }, "httpGet": { - "path": "328", - "port": "329", - "host": "330", - "scheme": "W賁Ěɭɪǹ0", + "path": "314", + "port": "315", + "host": "316", + "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", "httpHeaders": [ { - "name": "331", - "value": "332" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "333", - "host": "334" + "port": 2080874371, + "host": "319" } } }, - "terminationMessagePath": "335", - "terminationMessagePolicy": "ƷƣMț", - "imagePullPolicy": "(fǂǢ曣ŋayå", + "terminationMessagePath": "320", + "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", + "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", "securityContext": { "capabilities": { "add": [ - "訙Ǫʓ)ǂť嗆u8晲T[ir" + "ȹ均i绝5哇芆斩ìh4Ɋ" ], "drop": [ - "3Ĕ\\ɢX鰨松/Ȁĵ鴁" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "321", + "role": "322", + "type": "323", + "level": "324" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "325", + "gmsaCredentialSpec": "326", + "runAsUserName": "327" }, - "runAsUser": 5333033627167868167, - "runAsGroup": 6580335751302408293, - "runAsNonRoot": true, + "runAsUser": 4288903380102217677, + "runAsGroup": 6618112330449141397, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ĒzŔ瘍Nʊ" + "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" }, - "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "343" + "targetContainerName": "328" } ], - "restartPolicy": "璾ėȜv", - "terminationGracePeriodSeconds": 8557551499766807948, - "activeDeadlineSeconds": 2775124165238399450, - "dnsPolicy": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "restartPolicy": "w妕眵笭/9崍h趭(娕", + "terminationGracePeriodSeconds": 6245571390016329382, + "activeDeadlineSeconds": -3214891994203952546, + "dnsPolicy": "晲T[irȎ3Ĕ\\", "nodeSelector": { - "344": "345" + "329": "330" }, - "serviceAccountName": "346", - "serviceAccount": "347", + "serviceAccountName": "331", + "serviceAccount": "332", "automountServiceAccountToken": true, - "nodeName": "348", + "nodeName": "333", "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "349", - "role": "350", - "type": "351", - "level": "352" + "user": "334", + "role": "335", + "type": "336", + "level": "337" }, "windowsOptions": { - "gmsaCredentialSpecName": "353", - "gmsaCredentialSpec": "354", - "runAsUserName": "355" + "gmsaCredentialSpecName": "338", + "gmsaCredentialSpec": "339", + "runAsUserName": "340" }, - "runAsUser": -458943834575608638, - "runAsGroup": 9087288446299226205, - "runAsNonRoot": true, + "runAsUser": 4430285638700927057, + "runAsGroup": 7461098988156705429, + "runAsNonRoot": false, "supplementalGroups": [ - 3823478936947545930 + 7866826580662861268 ], - "fsGroup": -1590873142860533099, + "fsGroup": 7747616967629081728, "sysctls": [ { - "name": "356", - "value": "357" + "name": "341", + "value": "342" } ] }, "imagePullSecrets": [ { - "name": "358" + "name": "343" } ], - "hostname": "359", - "subdomain": "360", + "hostname": "344", + "subdomain": "345", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1086,19 @@ { "matchExpressions": [ { - "key": "361", - "operator": "鷞焬C", + "key": "346", + "operator": "Ǚ(", "values": [ - "362" + "347" ] } ], "matchFields": [ { - "key": "363", - "operator": "怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ", + "key": "348", + "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", "values": [ - "364" + "349" ] } ] @@ -1114,23 +1107,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1410049445, + "weight": 702968201, "preference": { "matchExpressions": [ { - "key": "365", - "operator": "蜢暳ǽżLj", + "key": "350", + "operator": "n覦灲閈誹ʅ蕉", "values": [ - "366" + "351" ] } ], "matchFields": [ { - "key": "367", + "key": "352", "operator": "", "values": [ - "368" + "353" ] } ] @@ -1143,46 +1136,43 @@ { "labelSelector": { "matchLabels": { - "14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M": "W__._D8.TS-jJ.Ys_Mop34y" + "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" }, "matchExpressions": [ { - "key": "7__65m8_1-1.9_.-.Ms7_t.P_3..H..9", - "operator": "NotIn", - "values": [ - "8.3_t_-l..-.DG7r-3.----._4__Xn" - ] + "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "360" ], - "topologyKey": "376" + "topologyKey": "361" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1468940509, + "weight": 1195176401, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" + "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", - "operator": "In", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", "values": [ - "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] }, "namespaces": [ - "383" + "368" ], - "topologyKey": "384" + "topologyKey": "369" } } ] @@ -1192,109 +1182,109 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", + "values": [ + "VT3sn-0_.i__a.O2G_J" + ] } ] }, "namespaces": [ - "391" + "376" ], - "topologyKey": "392" + "topologyKey": "377" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1598840753, + "weight": -1508769491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "a-2408m-0--5--25/o_6Z..11_7pX_.-mLx": "7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v" + "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" }, "matchExpressions": [ { - "key": "n_5023Xl-3Pw_-r75--_-A-o-__y_4", - "operator": "NotIn", + "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", + "operator": "In", "values": [ - "7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX" + "" ] } ] }, "namespaces": [ - "399" + "384" ], - "topologyKey": "400" + "topologyKey": "385" } } ] } }, - "schedulerName": "401", + "schedulerName": "386", "tolerations": [ { - "key": "402", - "operator": "ŝ", - "value": "403", - "effect": "ď", - "tolerationSeconds": 5830364175709520120 + "key": "387", + "operator": "抄3昞财Î嘝zʄ!ć", + "value": "388", + "effect": "緍k¢茤", + "tolerationSeconds": 4096844323391966153 } ], "hostAliases": [ { - "ip": "404", + "ip": "389", "hostnames": [ - "405" + "390" ] } ], - "priorityClassName": "406", - "priority": 1409661280, + "priorityClassName": "391", + "priority": -1331113536, "dnsConfig": { "nameservers": [ - "407" + "392" ], "searches": [ - "408" + "393" ], "options": [ { - "name": "409", - "value": "410" + "name": "394", + "value": "395" } ] }, "readinessGates": [ { - "conditionType": "iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇" + "conditionType": "mō6µɑ`ȗ\u003c8^翜" } ], - "runtimeClassName": "411", - "enableServiceLinks": true, - "preemptionPolicy": "ɱD很唟-墡è箁E嗆R2", + "runtimeClassName": "396", + "enableServiceLinks": false, + "preemptionPolicy": "ý筞X", "overhead": { - "攜轴": "82" + "tHǽ÷閂抰^窄CǙķȈ": "97" }, "topologySpreadConstraints": [ { - "maxSkew": -404772114, - "topologyKey": "412", - "whenUnsatisfiable": "礳Ȭ痍脉PPöƌ镳餘ŁƁ翂|", + "maxSkew": 1956797678, + "topologyKey": "397", + "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", "labelSelector": { "matchLabels": { - "ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H": "T8-7_-YD-Q9_-__..YNu" + "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" }, "matchExpressions": [ { - "key": "g-.814e-_07-ht-E6___-X_H", - "operator": "In", - "values": [ - "FP" - ] + "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", + "operator": "DoesNotExist" } ] } @@ -1303,36 +1293,34 @@ } }, "strategy": { - "type": "龞瞯å檳ė\u003e", "rollingUpdate": { } }, - "minReadySeconds": -416969112, - "revisionHistoryLimit": -2111453451, - "paused": true, + "minReadySeconds": 997447044, + "revisionHistoryLimit": 989524452, "rollbackTo": { - "revision": -851580968322748562 + "revision": -7811637368862163847 }, - "progressDeadlineSeconds": -1009087543 + "progressDeadlineSeconds": 1774123594 }, "status": { - "observedGeneration": 4222921737865567580, - "replicas": 1393016848, - "updatedReplicas": 952328575, - "readyReplicas": 340269252, - "availableReplicas": -2071091268, - "unavailableReplicas": -2111356809, + "observedGeneration": -4950488263500864484, + "replicas": 67329694, + "updatedReplicas": 1689648303, + "readyReplicas": -1121580186, + "availableReplicas": -1521312599, + "unavailableReplicas": 129237050, "conditions": [ { - "type": "Rġ磸蛕ʟ?Ȋ", - "status": "^翜", - "lastUpdateTime": "2753-11-07T08:05:13Z", - "lastTransitionTime": "2188-09-01T04:13:44Z", - "reason": "419", - "message": "420" + "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö", + "status": "2ț", + "lastUpdateTime": "2733-02-09T15:36:31Z", + "lastTransitionTime": "2615-10-02T05:14:27Z", + "reason": "404", + "message": "405" } ], - "collisionCount": 91748144 + "collisionCount": -612321491 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb index bef17b6e2a55da769abe5fbe3303b45381d141ba..bb2493e03e462844ece5c5bdf04c7fc353258ade 100644 GIT binary patch literal 6383 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 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml index 1be9aa6f280..63b36291f6a 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,888 +25,878 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: -416969112 - paused: true - progressDeadlineSeconds: -1009087543 - replicas: -1978186127 - revisionHistoryLimit: -2111453451 + minReadySeconds: 997447044 + progressDeadlineSeconds: 1774123594 + replicas: 896585016 + revisionHistoryLimit: 989524452 rollbackTo: - revision: -851580968322748562 + revision: -7811637368862163847 selector: matchExpressions: - - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F - operator: NotIn - values: - - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 + - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 + operator: Exists matchLabels: - w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F + 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} - type: 龞瞯å檳ė> template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -2848337479447330428 + deletionGracePeriodSeconds: -2575298329142810753 finalizers: - - "42" - generateName: "31" - generation: 3557306139556084909 + - "36" + generateName: "25" + generation: -8542870036622468681 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: 妻ƅTGS5Ǎ - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" - blockOwnerDeletion: false - controller: false - kind: "40" - name: "41" - uid: '@Z^嫫猤痈C*ĕʄő芖{|ǘ"^饣' - resourceVersion: "373742866186182450" - selfLink: "33" - uid: ']躢|)黰eȪ嵛4$%QɰVzÏ抴' + manager: "38" + operation: 躢 + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" + blockOwnerDeletion: true + controller: true + kind: "34" + name: "35" + uid: ƶȤ^} + resourceVersion: "1736621709629422270" + selfLink: "27" + uid: ?Qȫş spec: - activeDeadlineSeconds: 2775124165238399450 + activeDeadlineSeconds: -3214891994203952546 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "365" - operator: 蜢暳ǽżLj + - key: "350" + operator: n覦灲閈誹ʅ蕉 values: - - "366" + - "351" matchFields: - - key: "367" + - key: "352" operator: "" values: - - "368" - weight: -1410049445 + - "353" + weight: 702968201 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "361" - operator: 鷞焬C + - key: "346" + operator: Ǚ( values: - - "362" + - "347" matchFields: - - key: "363" - operator: 怖ý萜Ǖc8ǣƘƵŧ1ƟƓ宆!鍲ɋȑ + - key: "348" + operator: 瘍Nʊ輔3璾ėȜv1b繐汚 values: - - "364" + - "349" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o - operator: In + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn values: - - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 + Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaces: - - "383" - topologyKey: "384" - weight: 1468940509 + - "368" + topologyKey: "369" + weight: 1195176401 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 7__65m8_1-1.9_.-.Ms7_t.P_3..H..9 - operator: NotIn - values: - - 8.3_t_-l..-.DG7r-3.----._4__Xn + - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + operator: DoesNotExist matchLabels: - 14i-m7---k8235--8--c83-4b-9-1o8w-a-6-31g--z-o-3bz6-8-0-1-x/63OHgt._U.-x_rC9..M: W__._D8.TS-jJ.Ys_Mop34y + lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I namespaces: - - "375" - topologyKey: "376" + - "360" + topologyKey: "361" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: n_5023Xl-3Pw_-r75--_-A-o-__y_4 - operator: NotIn + - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e + operator: In values: - - 7O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_OX + - "" matchLabels: - a-2408m-0--5--25/o_6Z..11_7pX_.-mLx: 7_.-x6db-L7.-__-G_2kCpS__.39g_.--_-v + 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F namespaces: - - "399" - topologyKey: "400" - weight: 1598840753 + - "384" + topologyKey: "385" + weight: -1508769491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn + values: + - VT3sn-0_.i__a.O2G_J matchLabels: - 4eq5: "" + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaces: - - "391" - topologyKey: "392" + - "376" + topologyKey: "377" automountServiceAccountToken: true containers: - args: - - "220" + - "209" command: - - "219" + - "208" env: - - name: "227" - value: "228" + - name: "216" + value: "217" valueFrom: configMapKeyRef: - key: "234" - name: "233" - optional: true + key: "223" + name: "222" + optional: false fieldRef: - apiVersion: "229" - fieldPath: "230" + apiVersion: "218" + fieldPath: "219" resourceFieldRef: - containerName: "231" - divisor: "770" - resource: "232" + containerName: "220" + divisor: "771" + resource: "221" secretKeyRef: - key: "236" - name: "235" + key: "225" + name: "224" optional: true envFrom: - configMapRef: - name: "225" - optional: true - prefix: "224" + name: "214" + optional: false + prefix: "213" secretRef: - name: "226" + name: "215" optional: true - image: "218" - imagePullPolicy: Ļǟi& + image: "207" + imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 lifecycle: postStart: exec: command: - - "258" + - "246" httpGet: - host: "261" + host: "248" httpHeaders: - - name: "262" - value: "263" - path: "259" - port: "260" - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "249" + value: "250" + path: "247" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' tcpSocket: - host: "265" - port: "264" + host: "251" + port: -20130017 preStop: exec: command: - - "266" + - "252" httpGet: - host: "268" + host: "254" httpHeaders: - - name: "269" - value: "270" - path: "267" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "255" + value: "256" + path: "253" + port: -661937776 + scheme: ØœȠƬQg鄠[颐o tcpSocket: - host: "272" - port: "271" + host: "257" + port: 461585849 livenessProbe: exec: command: - - "243" - failureThreshold: -1008070934 + - "232" + failureThreshold: -93157681 httpGet: - host: "246" + host: "234" httpHeaders: - - name: "247" - value: "248" - path: "244" - port: "245" - scheme: ȓ蹣ɐǛv+8Ƥ熪军 - initialDelaySeconds: 410611837 - periodSeconds: 972978563 - successThreshold: 17771103 + - name: "235" + value: "236" + path: "233" + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "249" - port: 622267234 - timeoutSeconds: 809006670 - name: "217" + host: "238" + port: "237" + timeoutSeconds: -148216266 + name: "206" ports: - - containerPort: 1146016612 - hostIP: "223" - hostPort: 766864314 - name: "222" - protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 + - containerPort: 1923334396 + hostIP: "212" + hostPort: 474119379 + name: "211" + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "250" - failureThreshold: 1474943201 + - "239" + failureThreshold: 267768240 httpGet: - host: "253" + host: "242" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - initialDelaySeconds: -1191528701 - periodSeconds: 415947324 - successThreshold: 18113448 + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: 3!Zɾģ毋Ó6 + initialDelaySeconds: -228822833 + periodSeconds: -1213051101 + successThreshold: 1451056156 tcpSocket: - host: "257" - port: "256" - timeoutSeconds: -978176982 + host: "245" + port: -832805508 + timeoutSeconds: -970312425 resources: limits: - 癃8鸖: "881" + 吐: "777" requests: - Zɾģ毋Ó6dz娝嘚庎D}埽uʎ: "63" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 碔 + - 昕Ĭ drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ó藢xɮĵȑ6L* privileged: false - procMount: ',ŕ' + procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: 2540215688947167763 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -5835415947553716289 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "262" + role: "260" + type: "261" + user: "259" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" - stdinOnce: true - terminationMessagePath: "273" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + gmsaCredentialSpec: "264" + gmsaCredentialSpecName: "263" + runAsUserName: "265" + terminationMessagePath: "258" + terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + tty: true volumeDevices: - - devicePath: "242" - name: "241" + - devicePath: "231" + name: "230" volumeMounts: - - mountPath: "238" - mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - name: "237" + - mountPath: "227" + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S + name: "226" readOnly: true - subPath: "239" - subPathExpr: "240" - workingDir: "221" + subPath: "228" + subPathExpr: "229" + workingDir: "210" dnsConfig: nameservers: - - "407" + - "392" options: - - name: "409" - value: "410" + - name: "394" + value: "395" searches: - - "408" - dnsPolicy: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' - enableServiceLinks: true + - "393" + dnsPolicy: 晲T[irȎ3Ĕ\ + enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "269" command: - - "283" + - "268" env: - - name: "291" - value: "292" + - name: "276" + value: "277" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "283" + name: "282" optional: true fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "278" + fieldPath: "279" resourceFieldRef: - containerName: "295" - divisor: "568" - resource: "296" + containerName: "280" + divisor: "185" + resource: "281" secretKeyRef: - key: "300" - name: "299" + key: "285" + name: "284" optional: false envFrom: - configMapRef: - name: "289" + name: "274" optional: false - prefix: "288" + prefix: "273" secretRef: - name: "290" + name: "275" optional: false - image: "282" - imagePullPolicy: (fǂǢ曣ŋayå + image: "267" + imagePullPolicy: 騎C"6x$1sȣ±p鋄 lifecycle: postStart: exec: command: - - "319" + - "307" httpGet: - host: "322" + host: "309" httpHeaders: - - name: "323" - value: "324" - path: "320" - port: "321" + - name: "310" + value: "311" + path: "308" + port: -934378634 + scheme: ɐ鰥 tcpSocket: - host: "326" - port: "325" + host: "312" + port: 630140708 preStop: exec: command: - - "327" + - "313" httpGet: - host: "330" + host: "316" httpHeaders: - - name: "331" - value: "332" - path: "328" - port: "329" - scheme: W賁Ěɭɪǹ0 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² tcpSocket: - host: "334" - port: "333" + host: "319" + port: 2080874371 livenessProbe: exec: command: - - "307" - failureThreshold: -536848804 + - "292" + failureThreshold: 1993268896 httpGet: - host: "309" + host: "295" httpHeaders: - - name: "310" - value: "311" - path: "308" - port: -402384013 - scheme: nj汰8ŕİi騎C"6x$1sȣ±p - initialDelaySeconds: -766915393 - periodSeconds: -1170565984 - successThreshold: -444561761 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "312" - port: 1900201288 - timeoutSeconds: 828305357 - name: "281" + host: "298" + port: 1315054653 + timeoutSeconds: 1103049140 + name: "266" ports: - - containerPort: 1559618829 - hostIP: "287" - hostPort: 887319241 - name: "286" - protocol: /»頸+SÄ蚃ɣľ)酊龨Î + - containerPort: -677617960 + hostIP: "272" + hostPort: -552281772 + name: "271" + protocol: ŕ翑0展} readinessProbe: exec: command: - - "313" - failureThreshold: 467105019 + - "299" + failureThreshold: -1250314365 httpGet: - host: "315" + host: "302" httpHeaders: - - name: "316" - value: "317" - path: "314" - port: -2113700533 - scheme: 埮pɵ{WOŭW灬p - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + - name: "303" + value: "304" + path: "300" + port: "301" + scheme: 'ƿ頀"冓鍓贯澔 ' + initialDelaySeconds: 1058960779 + periodSeconds: 472742933 + successThreshold: 50696420 tcpSocket: - host: "318" - port: -1607821167 - timeoutSeconds: -1411971593 + host: "306" + port: "305" + timeoutSeconds: -2133441986 resources: limits: - '''琕鶫:顇ə娯Ȱ囌{屿': "115" + 鬶l獕;跣Hǝcw: "242" requests: - 龏´DÒȗÔÂɘɢ鬍: "101" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 訙Ǫʓ)ǂť嗆u8晲T[ir + - ȹ均i绝5哇芆斩ìh4Ɋ drop: - - 3Ĕ\ɢX鰨松/Ȁĵ鴁 - privileged: true - procMount: ĒzŔ瘍Nʊ + - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + privileged: false + procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW readOnlyRootFilesystem: false - runAsGroup: 6580335751302408293 - runAsNonRoot: true - runAsUser: 5333033627167868167 + runAsGroup: 6618112330449141397 + runAsNonRoot: false + runAsUser: 4288903380102217677 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "324" + role: "322" + type: "323" + user: "321" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - stdin: true + gmsaCredentialSpec: "326" + gmsaCredentialSpecName: "325" + runAsUserName: "327" stdinOnce: true - targetContainerName: "343" - terminationMessagePath: "335" - terminationMessagePolicy: ƷƣMț + targetContainerName: "328" + terminationMessagePath: "320" + terminationMessagePolicy: 灩聋3趐囨鏻砅邻 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "291" + name: "290" volumeMounts: - - mountPath: "302" - mountPropagation: 璻Jih亏yƕ丆録²Ŏ - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + - mountPath: "287" + mountPropagation: "" + name: "286" + subPath: "288" + subPathExpr: "289" + workingDir: "270" hostAliases: - hostnames: - - "405" - ip: "404" + - "390" + ip: "389" hostIPC: true - hostname: "359" + hostname: "344" imagePullSecrets: - - name: "358" + - name: "343" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: false fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "813" - resource: "171" + containerName: "159" + divisor: "650" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: true envFrom: - configMapRef: - name: "164" + name: "153" optional: true - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: true - image: "157" - imagePullPolicy: Ź9ǕLLȊɞ-uƻ悖 + image: "146" lifecycle: postStart: exec: command: - - "195" + - "184" httpGet: - host: "198" + host: "187" httpHeaders: - - name: "199" - value: "200" - path: "196" - port: "197" - scheme: ɩC + - name: "188" + value: "189" + path: "185" + port: "186" + scheme: £ȹ嫰ƹǔw÷nI粛E煹 tcpSocket: - host: "202" - port: "201" + host: "190" + port: 135036402 preStop: exec: command: - - "203" + - "191" httpGet: - host: "205" + host: "193" httpHeaders: - - name: "206" - value: "207" - path: "204" - port: 747802823 - scheme: ĨFħ籘Àǒɿʒ + - name: "194" + value: "195" + path: "192" + port: -1188430996 + scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 tcpSocket: - host: "208" - port: 1912934380 + host: "197" + port: "196" livenessProbe: exec: command: - - "182" - failureThreshold: -1650568978 + - "171" + failureThreshold: -1113628381 httpGet: - host: "184" + host: "173" httpHeaders: - - name: "185" - value: "186" - path: "183" - port: -1167888910 - scheme: .Q貇£ȹ嫰ƹǔw÷nI - initialDelaySeconds: -162264011 - periodSeconds: -1429994426 - successThreshold: 135036402 + - name: "174" + value: "175" + path: "172" + port: -152585895 + scheme: E@Ȗs«ö + initialDelaySeconds: 1843758068 + periodSeconds: 1702578303 + successThreshold: -1565157256 tcpSocket: - host: "188" - port: "187" - timeoutSeconds: 800220849 - name: "156" + host: "176" + port: 1135182169 + timeoutSeconds: -1967469005 + name: "145" ports: - - containerPort: 1180382332 - hostIP: "162" - hostPort: 963442342 - name: "161" - protocol: H韹寬娬ï瓼猀2:öY鶪5w垁 + - containerPort: 1403721475 + hostIP: "151" + hostPort: -606111218 + name: "150" + protocol: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 readinessProbe: exec: command: - - "189" - failureThreshold: 893619181 + - "177" + failureThreshold: -1167888910 httpGet: - host: "191" + host: "179" httpHeaders: - - name: "192" - value: "193" - path: "190" - port: -2015604435 - scheme: jƯĖ漘Z剚敍0) - initialDelaySeconds: -2031266553 - periodSeconds: -648954478 - successThreshold: 1170649416 + - name: "180" + value: "181" + path: "178" + port: 386652373 + scheme: ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 tcpSocket: - host: "194" - port: 424236719 - timeoutSeconds: -840997104 + host: "183" + port: "182" + timeoutSeconds: 1901330124 resources: limits: - Nșƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧壚t: "770" + "": "84" requests: - sn芞QÄȻȊ+?ƭ峧: "970" + ɖȃ賲鐅臬dH巧壚tC十Oɢ: "517" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ƹ[Ęİ榌U髷裎$MVȟ@7 + - ȫ焗捏ĨFħ籘Àǒɿʒ刽 drop: - - 奺Ȋ礶惇¸t颟.鵫ǚ + - 掏1ſ privileged: true - procMount: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ - readOnlyRootFilesystem: false - runAsGroup: -7821473471908167720 + procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + readOnlyRootFilesystem: true + runAsGroup: 3747003978559617838 runAsNonRoot: false - runAsUser: -834696834428133864 + runAsUser: 7739117973959656085 seLinuxOptions: - level: "213" - role: "211" - type: "212" - user: "210" + level: "202" + role: "200" + type: "201" + user: "199" windowsOptions: - gmsaCredentialSpec: "215" - gmsaCredentialSpecName: "214" - runAsUserName: "216" - terminationMessagePath: "209" - terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - tty: true + gmsaCredentialSpec: "204" + gmsaCredentialSpecName: "203" + runAsUserName: "205" + stdin: true + stdinOnce: true + terminationMessagePath: "198" + terminationMessagePolicy: ɩC volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: «öʮĀ<é瞾ʀNŬɨǙÄr蛏豈ɃHŠ - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "348" + - mountPath: "166" + mountPropagation: "" + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "333" nodeSelector: - "344": "345" + "329": "330" overhead: - 攜轴: "82" - preemptionPolicy: ɱD很唟-墡è箁E嗆R2 - priority: 1409661280 - priorityClassName: "406" + tHǽ÷閂抰^窄CǙķȈ: "97" + preemptionPolicy: ý筞X + priority: -1331113536 + priorityClassName: "391" readinessGates: - - conditionType: iǙĞǠŌ锒鿦Ršțb贇髪čɣ暇 - restartPolicy: 璾ėȜv - runtimeClassName: "411" - schedulerName: "401" + - conditionType: mō6µɑ`ȗ<8^翜 + restartPolicy: w妕眵笭/9崍h趭(娕 + runtimeClassName: "396" + schedulerName: "386" securityContext: - fsGroup: -1590873142860533099 - runAsGroup: 9087288446299226205 - runAsNonRoot: true - runAsUser: -458943834575608638 + fsGroup: 7747616967629081728 + runAsGroup: 7461098988156705429 + runAsNonRoot: false + runAsUser: 4430285638700927057 seLinuxOptions: - level: "352" - role: "350" - type: "351" - user: "349" + level: "337" + role: "335" + type: "336" + user: "334" supplementalGroups: - - 3823478936947545930 + - 7866826580662861268 sysctls: - - name: "356" - value: "357" + - name: "341" + value: "342" windowsOptions: - gmsaCredentialSpec: "354" - gmsaCredentialSpecName: "353" - runAsUserName: "355" - serviceAccount: "347" - serviceAccountName: "346" + gmsaCredentialSpec: "339" + gmsaCredentialSpecName: "338" + runAsUserName: "340" + serviceAccount: "332" + serviceAccountName: "331" shareProcessNamespace: true - subdomain: "360" - terminationGracePeriodSeconds: 8557551499766807948 + subdomain: "345" + terminationGracePeriodSeconds: 6245571390016329382 tolerations: - - effect: ď - key: "402" - operator: ŝ - tolerationSeconds: 5830364175709520120 - value: "403" + - effect: 緍k¢茤 + key: "387" + operator: 抄3昞财Î嘝zʄ!ć + tolerationSeconds: 4096844323391966153 + value: "388" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: g-.814e-_07-ht-E6___-X_H - operator: In - values: - - FP + - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz + operator: DoesNotExist matchLabels: - ux4-br5r---r8oh782-u---76g---h-4-lx-0-2qw.72n4s-6-k5-e/dDy__3wc.q.8_00.0_._.-_L-H: T8-7_-YD-Q9_-__..YNu - maxSkew: -404772114 - topologyKey: "412" - whenUnsatisfiable: 礳Ȭ痍脉PPöƌ镳餘ŁƁ翂| + ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 + : x_.4dwFbuvEf55Y2k.F-4 + maxSkew: 1956797678 + topologyKey: "397" + whenUnsatisfiable: ƀ+瑏eCmAȥ睙 volumes: - awsElasticBlockStore: - fsType: "56" - partition: -1996616480 - volumeID: "55" + fsType: "45" + partition: 912004803 + readOnly: true + volumeID: "44" azureDisk: - cachingMode: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 參遼ūP + cachingMode: '|@?鷅bȻN' + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 榱*Gưoɘ檲 readOnly: true azureFile: - secretName: "105" - shareName: "106" + readOnly: true + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 480521693 + defaultMode: 1593906314 items: - - key: "108" - mode: -1296140 - path: "109" - name: "107" + - key: "97" + mode: 195263908 + path: "98" + name: "96" optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -1376537100 + defaultMode: 824682619 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1482763519 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1569992019 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "772" - resource: "101" + containerName: "89" + divisor: "660" + resource: "90" emptyDir: - medium: o&蕭k ź贩j瀉 - sizeLimit: "621" + medium: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + sizeLimit: "473" fc: - fsType: "103" - lun: -1902521464 + fsType: "92" + lun: -1740986684 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" readOnly: true secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: -1321131665 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1188153605 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" + endpoints: "61" + path: "62" readOnly: true hostPath: - path: "52" - type: Uʎ浵ɲõ + path: "41" + type: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: 636617833 + chapAuthDiscovery: true + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 994527057 portals: - - "69" + - "58" secretRef: - name: "70" - targetPortal: "65" - name: "51" + name: "59" + targetPortal: "54" + name: "40" nfs: - path: "64" - server: "63" + path: "53" + readOnly: true + server: "52" persistentVolumeClaim: - claimName: "74" + claimName: "63" readOnly: true photonPersistentDisk: - fsType: "123" - pdID: "122" + fsType: "112" + pdID: "111" portworxVolume: - fsType: "138" + fsType: "127" readOnly: true - volumeID: "137" + volumeID: "126" projected: - defaultMode: -50623103 + defaultMode: -1334904807 sources: - configMap: items: - - key: "133" - mode: 1569606284 - path: "134" - name: "132" + - key: "122" + mode: 2063799569 + path: "123" + name: "121" optional: false downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -1319998825 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 173030157 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "838" - resource: "131" + containerName: "119" + divisor: "106" + resource: "120" secret: items: - - key: "125" - mode: 996680040 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -323584340 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: -4636499237765408684 - path: "136" + audience: "124" + expirationSeconds: 8357931971650847566 + path: "125" quobyte: - group: "117" - readOnly: true - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" - readOnly: true + - "64" + pool: "67" secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" - readOnly: true + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - sslEnabled: true - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: -288563359 + defaultMode: 332383000 items: - - key: "61" - mode: -1365115016 - path: "62" - optional: false - secretName: "60" + - key: "50" + mode: -547518679 + path: "51" + optional: true + secretName: "49" storageos: - fsType: "149" - readOnly: true + fsType: "138" secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: - availableReplicas: -2071091268 - collisionCount: 91748144 + availableReplicas: -1521312599 + collisionCount: -612321491 conditions: - - lastTransitionTime: "2188-09-01T04:13:44Z" - lastUpdateTime: "2753-11-07T08:05:13Z" - message: "420" - reason: "419" - status: ^翜 - type: Rġ磸蛕ʟ?Ȋ - observedGeneration: 4222921737865567580 - readyReplicas: 340269252 - replicas: 1393016848 - unavailableReplicas: -2111356809 - updatedReplicas: 952328575 + - lastTransitionTime: "2615-10-02T05:14:27Z" + lastUpdateTime: "2733-02-09T15:36:31Z" + message: "405" + reason: "404" + status: 2ț + type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' + observedGeneration: -4950488263500864484 + readyReplicas: -1121580186 + replicas: 67329694 + unavailableReplicas: 129237050 + updatedReplicas: 1689648303 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json index 02973d0b45e..c4fe4e80083 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,34 +35,33 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "backend": { - "serviceName": "24", - "servicePort": "25" + "serviceName": "18", + "servicePort": "19" }, "tls": [ { "hosts": [ - "26" + "20" ], - "secretName": "27" + "secretName": "21" } ], "rules": [ { - "host": "28", + "host": "22", "http": { "paths": [ { - "path": "29", + "path": "23", "backend": { - "serviceName": "30", - "servicePort": -213805612 + "serviceName": "24", + "servicePort": "25" } } ] @@ -74,8 +73,8 @@ "loadBalancer": { "ingress": [ { - "ip": "31", - "hostname": "32" + "ip": "26", + "hostname": "27" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.pb index 5c10982b38f9f744b1e106be0e37e89ce782a294..3664a0fdd5234a0b23a1ea80f95be16e696f0e14 100644 GIT binary patch delta 136 zcmXxayA8rX3;@uxtCNKgvLb|BP()NoF77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|g8-uxgA@-J7Z*^Iv7r!?v5^#m5(5ANYB3)G diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml index 8549ec30165..9e7617412d7 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,27 +25,27 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: backend: - serviceName: "24" - servicePort: "25" + serviceName: "18" + servicePort: "19" rules: - - host: "28" + - host: "22" http: paths: - backend: - serviceName: "30" - servicePort: -213805612 - path: "29" + serviceName: "24" + servicePort: "25" + path: "23" tls: - hosts: - - "26" - secretName: "27" + - "20" + secretName: "21" status: loadBalancer: ingress: - - hostname: "32" - ip: "31" + - hostname: "27" + ip: "26" diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.json index 0d723e1674a..8643d30bfd5 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,22 +35,21 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "podSelector": { "matchLabels": { - "9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G": "0M.y.g" + "8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4" }, "matchExpressions": [ { - "key": "68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B", + "key": "p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0", "operator": "In", "values": [ - "Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2" + "D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n" ] } ] @@ -59,43 +58,37 @@ { "ports": [ { - "protocol": "ÐƣKʘńw:5塋訩塶\"=y钡n" + "protocol": "Ǐ2啗塧ȱ蓿彭聡A3fƻfʣ" } ], "from": [ { "podSelector": { "matchLabels": { - "y-y-o0-5q-2-zdv--6--0-a629b-jd-8c45-0-8--6n--w0--w---196g8d--i1.0t9/2fNc5-_.-RX-82_g50_u__..cu87__-7p_w.e6._.pj5tk": "h-JM" + "yg--79-e-a74bc-v--0jjy45-17-053.zyyms7-tk1po6c-m61733-x-2v4r--5-xgc3-yz-7-x--c0-w5-6r/78A6.6O": "17_.8CnT" }, "matchExpressions": [ { - "key": "44-j8553sog-4v.w5-3z-4831i48x-e4203f-vx010-90q-6-i2d020hj--a-8g--z-nt-b6/7", - "operator": "In", - "values": [ - "17_.8CnT" - ] + "key": "3--2---u--80k1-57----1-x1z-4/r.i1_7z.WH-.._Td2-N_Y.t--_0..--_6V", + "operator": "Exists" } ] }, "namespaceSelector": { "matchLabels": { - "rSf5_Or.i1_7z.WH-..T": "2-N_Y.t--_0..--_6yV07-_.___gO-d.iUaC_wYSJfB._.zS-._0" + "g--5.-Z3P__D__6t-2.-_-8wE._._3.-.83_iq_-y.-25C.A-7": "9dfn3Y8d_0_.---M_4FpF_W-1._-vL_i.-_-a--G-I.-_Y33--.8U.-.5-R" }, "matchExpressions": [ { - "key": "83.SD..P.---5.-3", - "operator": "NotIn", - "values": [ - "hyz-0-_p4mz--.I_f6kjsz-7lwY-Y93-x6bigm_-._q" - ] + "key": "2_28.-.7_8B.HF-U-_ik_--DSXr.n-A9..9__Y-H-Mqpt._.-_..051", + "operator": "DoesNotExist" } ] }, "ipBlock": { - "cidr": "42", + "cidr": "36", "except": [ - "43" + "37" ] } } @@ -106,43 +99,43 @@ { "ports": [ { - "protocol": "ƯĖ漘Z剚敍0)鈼¬麄p呝T" + "protocol": "ɗ" } ], "to": [ { "podSelector": { "matchLabels": { - "9-295at-o7qff7-x--r7v66bm71u-n4f9wk-3--652x01--p--n4-4-t--2g6/hm": "2.9__Y-H-Mqpt._.-_..05c.---qy-_5_S.d5a3J.--.6g_4....1..jtFe8b_P" + "hg1-o-p665--4-j8---t6-r7---d--uml-8rdh6844-i-18-850-4s2o8.x4--s--xu-d42--clo90---461v-07r--0---8-30iu/s6.0_OHz_.B-.-_w_--.8_r_N-.3n-x.-_-_-Nm-_X3.1d_YH3x---.._1_.NX": "f-AH-Q.GM72_-c-.-.6--3-___t-8" }, "matchExpressions": [ { - "key": "Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8", + "key": "b_2_-8-----yY", "operator": "NotIn", "values": [ - "q.0-_1-F.h-__k_K5._3" + "M24" ] } ] }, "namespaceSelector": { "matchLabels": { - "G_--V-42E_--o90G_A4..-L..-__0N_N.O30-u": "O-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oXF" + "P____K_1": "Xfr.4_.-_-_-...1py_8-3..s._.x.2K_2qu_0S-CqW.D_8--21kv" }, "matchExpressions": [ { - "key": "5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M", + "key": "4a--0o8m3-d0w7p8vl-1z---883d-v3j4-7y-5.9-q390/niTl.1-.VT--5mj_9.M.134-5-.q6H5", "operator": "NotIn", "values": [ - "D.GgT7_7P" + "7-.p_3_J_SA995IKCR.sm" ] } ] }, "ipBlock": { - "cidr": "56", + "cidr": "50", "except": [ - "57" + "51" ] } } @@ -150,7 +143,7 @@ } ], "policyTypes": [ - "h4ɊHȖ|ʐ" + "ĨǔvÄ" ] } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.pb index 88d70aa0b35e739df2b0a07475cd1310b4edd52c..4f1ff9d2327250a2edd23493112509f4c0801a0d 100644 GIT binary patch literal 1377 zcmXw2NpBoQ6n2jx2_?dz1sAgj%moGBo2sr}s>K0~?bzdlnb`3-u_K}<&*seDGd-RS zac}|wnL|K0ijbn9C`9CvLlBElKpe7j;KqrwqvXPG;0+S$L)Yu-di8CuX5tC)rm#zc zZmAhpTFp4wQ~6SNL)izjrEb5~sV%kYmBP@zCB$`0SdMM!Da)O_wW!}#9L{R`2d1oxdVRwtp{Q9^k;*4zB6Z@=;Mi=DmQou}8nzIO#y z_b&f%=jV;&quq}lf4TkE<6kb_J%5_J1@`&p#Fd0NXNeU90M%9$`mU;PVg#F};6M#R z<&-=qK*`t81l>#?4$1Hs5z(tUm)nmt(moe+0w%_p$QhvFQ zP+af}fIa{X5J2`Dr)r9LQ^y1})5Zq5_C-s45P4EF5H|?G4I^H)d^N7iLx7MM!T7~j zOW5-2RR=)HsLfTtpB<3N@{&;q7@jB&FgHUPNRvm{Ma(ZqJF(cDQgbrE4ZdlxV5UH$IittVgozW3YBC)-z3 zx_tk3`HyS%*-7z}B`V_daFa2HP=bxX%@?4@T&vZg>wyYDdKyQ=VIvNpTT@Ys6>0b? z&>9Bd^xO`B2ZPOmhT(|$3;+re`X2b5WMEQ0`p4`8Dj+no&78d`-eaAZKWqUQSySM# zG%N=U)Ck;U2P=w#5uQu~BISw>WN96{OjIHpK>i7P-{C3Refxz?+Bg>*$4x_2kCKw_(-Yljdu-^@f<)&UYMUuolAw%wbG*2f%Awlnbs*F2q z04%^Fuhy9-cUc`P3&-sR5jf-+t^zVMn4X7Kph}Ism|I!vU=vayVo06bjiLkDIQzmz9qi3&TJ}ZLFD@$hX|_U zkavCPjI}DVc8xliPVtOyTo)>!3>Z&>8#^t70~a6$7;Hh&Wt|K4Rw((D>#H8ffXy0L z2DGefC1W2Y9ZQc0XMkb$nFSi^P!>=(ffLUmhin6AO`|H(dRnu)V`CIycFlgZ45>6M z<3fft;aOu*cv3VFQ5TH;vN)J0-WY=i7_QsTGI@^jWX5sr?=6uM2iP^Dqoizat=vI( ztQ9|qsG=b;NW_>09H4WQoc0#U6_{Zkxu;z=$**p_Nn^dW%PA ck7L{zd*<;tdTM(A-5U>fdv`vbnwXyW7a010WdHyG literal 1296 zcmXw1%WqXh81K0#mPsUJ!m9CE6C&vM-8pk+&O?JrDJ>LwTWBe56Y_cAuip3jstaBU zZHQnHszFGD3ycyrzF{SW01I~}CT@($ZRo~7!8njG$z*cA`OY`LSKhDnvDX++w(H4a zEn6zq!c9AttVeDBd?Z9TNzus zvKaLrt(<*-_4_ zP2M>D!--Q@f4_Xon%~GQk6V81Ic5bsWQ*J@EM&`pknId^9`5#TUAX_r2erG4_dYG} z2-&vi^Q~&gR^5=T7pz_p^=W40s>Z|pqSr}yN>>CtSrVkO9Z(Am@WHJrB~(J2 zo3tO7kPpI2DBKMwBftbevr5}`fZQU-(8&M7cF*xZLLnFG)+`7Ym?W-BYOdHnkxwrn!~!$Tc8n~+|G>f z40s|+Pe1~*hoifxH8(Yu8ZwBxQ-CD+2;1U2I5mtoY5oC?;P7W7rMhwFjZCL&6r!>! zbOCT5rQCe3)&*~&H3xHn18p~!O&7?_sSNb9kdi#4oPiq~*vst2dpB1vuH9aq@16N_ z?enu@`}*nIzkRp<>&bHO{8!Wb%m((4#ZFl4y#QpOqje~Gl~l@uHbB*Dx^ArC*$pVF zRM5(UV?5H*s0C04Qv?NurA)iwOo6{EF(8_Qy)a%W*9|el7=?~MW>e_^X_~@>jyhwe zfNq);nq?#A>LW=%Mw7;_w?`W#XEI7ugy95WU`EWNAR8%@Mk-O+b@c?P(HzpyY#k@S zcuz1#jRN>j#oAgyBb5y!m@#S2(|&D&&M#SPhHV=)L7o96_n5O3h*8>QK)?aBiA01V zIN=Cr@HZzwW~R}2kK}<~c+y}%&+Lf;rHkl89Ctf3Vj#_q@SSYC25Hjd8&MXT%>u|u z*8@kGaM@la+>B_HI(npya{MXCO~W{vp7zL_eC(HYc}RPMETbMQ?!ABU!-wYv`Ud;{ E2k%FL8UO$Q diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml index dae47ddc71b..694ed20b4fd 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,65 +25,62 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: egress: - ports: - - protocol: ƯĖ漘Z剚敍0)鈼¬麄p呝T + - protocol: ɗ to: - ipBlock: - cidr: "56" + cidr: "50" except: - - "57" + - "51" namespaceSelector: matchExpressions: - - key: 5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M + - key: 4a--0o8m3-d0w7p8vl-1z---883d-v3j4-7y-5.9-q390/niTl.1-.VT--5mj_9.M.134-5-.q6H5 operator: NotIn values: - - D.GgT7_7P + - 7-.p_3_J_SA995IKCR.sm matchLabels: - G_--V-42E_--o90G_A4..-L..-__0N_N.O30-u: O-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oXF + P____K_1: Xfr.4_.-_-_-...1py_8-3..s._.x.2K_2qu_0S-CqW.D_8--21kv podSelector: matchExpressions: - - key: Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8 + - key: b_2_-8-----yY operator: NotIn values: - - q.0-_1-F.h-__k_K5._3 + - M24 matchLabels: - 9-295at-o7qff7-x--r7v66bm71u-n4f9wk-3--652x01--p--n4-4-t--2g6/hm: 2.9__Y-H-Mqpt._.-_..05c.---qy-_5_S.d5a3J.--.6g_4....1..jtFe8b_P + ? hg1-o-p665--4-j8---t6-r7---d--uml-8rdh6844-i-18-850-4s2o8.x4--s--xu-d42--clo90---461v-07r--0---8-30iu/s6.0_OHz_.B-.-_w_--.8_r_N-.3n-x.-_-_-Nm-_X3.1d_YH3x---.._1_.NX + : f-AH-Q.GM72_-c-.-.6--3-___t-8 ingress: - from: - ipBlock: - cidr: "42" + cidr: "36" except: - - "43" + - "37" namespaceSelector: matchExpressions: - - key: 83.SD..P.---5.-3 - operator: NotIn - values: - - hyz-0-_p4mz--.I_f6kjsz-7lwY-Y93-x6bigm_-._q + - key: 2_28.-.7_8B.HF-U-_ik_--DSXr.n-A9..9__Y-H-Mqpt._.-_..051 + operator: DoesNotExist matchLabels: - rSf5_Or.i1_7z.WH-..T: 2-N_Y.t--_0..--_6yV07-_.___gO-d.iUaC_wYSJfB._.zS-._0 + g--5.-Z3P__D__6t-2.-_-8wE._._3.-.83_iq_-y.-25C.A-7: 9dfn3Y8d_0_.---M_4FpF_W-1._-vL_i.-_-a--G-I.-_Y33--.8U.-.5-R podSelector: matchExpressions: - - key: 44-j8553sog-4v.w5-3z-4831i48x-e4203f-vx010-90q-6-i2d020hj--a-8g--z-nt-b6/7 - operator: In - values: - - 17_.8CnT + - key: 3--2---u--80k1-57----1-x1z-4/r.i1_7z.WH-.._Td2-N_Y.t--_0..--_6V + operator: Exists matchLabels: - y-y-o0-5q-2-zdv--6--0-a629b-jd-8c45-0-8--6n--w0--w---196g8d--i1.0t9/2fNc5-_.-RX-82_g50_u__..cu87__-7p_w.e6._.pj5tk: h-JM + yg--79-e-a74bc-v--0jjy45-17-053.zyyms7-tk1po6c-m61733-x-2v4r--5-xgc3-yz-7-x--c0-w5-6r/78A6.6O: 17_.8CnT ports: - - protocol: ÐƣKʘńw:5塋訩塶"=y钡n + - protocol: Ǐ2啗塧ȱ蓿彭聡A3fƻfʣ podSelector: matchExpressions: - - key: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B + - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 operator: In values: - - Trcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ2 + - D07.a_.y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__n matchLabels: - 9n7yd745q0------2-2413-4lu-8-6r4404d5---g8c2-k9/Nx.G: 0M.y.g + 8---jop9641lg.p-g8c2-k-912e5-c-e63-n-3n/E9.8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N2.3: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_4 policyTypes: - - h4ɊHȖ|ʐ + - ĨǔvÄ diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.json index aefb8a14572..fbfe18551cf 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,76 +35,74 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "privileged": true, "defaultAddCapabilities": [ - "ǸƢ6/" + "qJ枊a8衍`Ĩ" ], "requiredDropCapabilities": [ - "VŚ(ĿȊ甞谐颋" + ".蘯6ċV夸" ], "allowedCapabilities": [ - "SǡƏ" + "ɑ" ], "volumes": [ - "$+½H牗洝尿彀亞螩B峅" + "ʤ脽ěĂ凗蓏Ŋ蛊ĉy緅縕\u003eŽ" ], "hostNetwork": true, "hostPorts": [ { - "min": -827642756, - "max": -1487653240 + "min": -321835912, + "max": 1575426699 } ], - "hostPID": true, "hostIPC": true, "seLinux": { - "rule": "", + "rule": "S", "seLinuxOptions": { - "user": "24", - "role": "25", - "type": "26", - "level": "27" + "user": "18", + "role": "19", + "type": "20", + "level": "21" } }, "runAsUser": { - "rule": ":狞夌碕ʂɭîcP$Iņɖ", + "rule": "+½H牗洝尿彀亞螩", "ranges": [ { - "min": 6715860513467504728, - "max": -7606590868934742876 + "min": 8901768137137123048, + "max": -90233536926144532 } ] }, "runAsGroup": { - "rule": "ē ƕP喂ƈ斎AO6ĴC浔Ű壝ž(-", + "rule": "³;Ơ歿:狞夌碕ʂɭîcP", "ranges": [ { - "min": 4788190398976706073, - "max": 7506785378065797295 + "min": -8679730194918865907, + "max": 2607109693095207331 } ] }, "supplementalGroups": { - "rule": "?øēƺ魋Ď儇击3ƆìQ", + "rule": "ɖ橙9", "ranges": [ { - "min": -9190478501544852634, - "max": -8763960668058519584 + "min": -5498021643263379468, + "max": -236027028483226507 } ] }, "fsGroup": { - "rule": "託仭", + "rule": "UɦOŖ", "ranges": [ { - "min": -7003704988542234731, - "max": -2225037131652530471 + "min": 8572633303645749270, + "max": 3058121789713366904 } ] }, @@ -112,33 +110,34 @@ "allowPrivilegeEscalation": false, "allowedHostPaths": [ { - "pathPrefix": "28" + "pathPrefix": "22", + "readOnly": true } ], "allowedFlexVolumes": [ { - "driver": "29" + "driver": "23" } ], "allowedCSIDrivers": [ { - "name": "30" + "name": "24" } ], "allowedUnsafeSysctls": [ - "31" + "25" ], "forbiddenSysctls": [ - "32" + "26" ], "allowedProcMountTypes": [ - "¬轚9Ȏ瀮昃" + "ǣ偐圠=l畣潁" ], "runtimeClass": { "allowedRuntimeClassNames": [ - "33" + "27" ], - "defaultRuntimeClassName": "34" + "defaultRuntimeClassName": "28" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.pb index 28cb2e485b7e710f952f626d72847b20f13c73b1..c18467d688e50462a40b22af0c7b6f8e8badc39b 100644 GIT binary patch delta 422 zcmV;X0a^Z!1;PZ7E-H=$3Z(%G0WuN+Ga3OjA^|lj0XH%fF)=VSGBhwXG&wjhI5##h zHZm|Xk$F@BE0NACe-h&Y2muleaZ2W%ieWhDp^ad~s2U3{=$NlI#EVwtq_`pi$&o4` z%B1Loy~LZug5`&o=#!7dis+k)#EE(5w}t1pl|IG2FabId2>95<=KlZx|Nj9Hi?y8Z z1wa5u0a6tT0aFqX3IZ`W5&|(f8UivfA_6ioS}zI~E5f}J zGBOYWk^uw?YyvVfngIebHKG9mGB&CK5XYnCfso~#pgnBom80gpfwBQJ3L3(*JI0{q zt-m_wi=O4AjOU`2%7V$Q!>(gc5)}xIh=k4m>)FMJ0T83ZtJ}Vgl$RvB0R##HGBm;g Q2nqr+HxdFeI2r&V0Mx&?RR910 delta 500 zcmVneD}O2w3JwYa zF*p(k3I+-SF*yiyy@2Gpp6H&bLgllCFabIi2>jTr_5A<;|Nj9Hi0#n2`v3p` z{{cV&NC8q53IGxi3IZ}T5`O|RH5vjkHX;HtH(D_Y7&_;Rp5>&B=c1L$g2}DJu47On zNyUcAmJ$^R*s!+J;PK&^T@a+%sLTJn{kN6@VloOCKf}1hlg7H~t&7Bt<%Eajhr2Vz zhQq8;5*7&NhPeFikGHyj0TAHtftSmMim-+OY9I;*=%|+qn*XRC@m5c2$_t< qzsR}7xk3=Hq1DCpuo>N!Xu1Ie3Ia1Q!T|^h0y8rb0y8uk03rYxBHc~^ diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.yaml index 408ba6f394d..ff72fe4a16b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.PodSecurityPolicy.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,67 +25,67 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: allowPrivilegeEscalation: false allowedCSIDrivers: - - name: "30" + - name: "24" allowedCapabilities: - - SǡƏ + - ɑ allowedFlexVolumes: - - driver: "29" + - driver: "23" allowedHostPaths: - - pathPrefix: "28" + - pathPrefix: "22" + readOnly: true allowedProcMountTypes: - - ¬轚9Ȏ瀮昃 + - ǣ偐圠=l畣潁 allowedUnsafeSysctls: - - "31" + - "25" defaultAddCapabilities: - - ǸƢ6/ + - qJ枊a8衍`Ĩ defaultAllowPrivilegeEscalation: false forbiddenSysctls: - - "32" + - "26" fsGroup: ranges: - - max: -2225037131652530471 - min: -7003704988542234731 - rule: 託仭 + - max: 3058121789713366904 + min: 8572633303645749270 + rule: UɦOŖ hostIPC: true hostNetwork: true - hostPID: true hostPorts: - - max: -1487653240 - min: -827642756 + - max: 1575426699 + min: -321835912 privileged: true requiredDropCapabilities: - - VŚ(ĿȊ甞谐颋 + - .蘯6ċV夸 runAsGroup: ranges: - - max: 7506785378065797295 - min: 4788190398976706073 - rule: ē ƕP喂ƈ斎AO6ĴC浔Ű壝ž(- + - max: 2607109693095207331 + min: -8679730194918865907 + rule: ³;Ơ歿:狞夌碕ʂɭîcP runAsUser: ranges: - - max: -7606590868934742876 - min: 6715860513467504728 - rule: :狞夌碕ʂɭîcP$Iņɖ + - max: -90233536926144532 + min: 8901768137137123048 + rule: +½H牗洝尿彀亞螩 runtimeClass: allowedRuntimeClassNames: - - "33" - defaultRuntimeClassName: "34" + - "27" + defaultRuntimeClassName: "28" seLinux: - rule: "" + rule: S seLinuxOptions: - level: "27" - role: "25" - type: "26" - user: "24" + level: "21" + role: "19" + type: "20" + user: "18" supplementalGroups: ranges: - - max: -8763960668058519584 - min: -9190478501544852634 - rule: ?øēƺ魋Ď儇击3ƆìQ + - max: -236027028483226507 + min: -5498021643263379468 + rule: ɖ橙9 volumes: - - $+½H牗洝尿彀亞螩B峅 + - ʤ脽ěĂ凗蓏Ŋ蛊ĉy緅縕>Ž diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json index 2f15c7008b2..732b1262cb8 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,395 +35,395 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -1978186127, - "minReadySeconds": 2114329341, + "replicas": 896585016, + "minReadySeconds": -1971381490, "selector": { "matchLabels": { - "0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7": "s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8" + "g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5": "" }, "matchExpressions": [ { - "key": "M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G", - "operator": "NotIn", + "key": "U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t", + "operator": "In", "values": [ - "7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU" + "M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5" ] } ] }, "template": { "metadata": { - "name": "30", - "generateName": "31", - "namespace": "32", - "selfLink": "33", - "uid": "诫z徃鷢6ȥ啕禗", - "resourceVersion": "11500002557443244703", - "generation": 1395707490843892091, + "name": "24", + "generateName": "25", + "namespace": "26", + "selfLink": "27", + "uid": "ʬ", + "resourceVersion": "7336814125345800857", + "generation": -6617020301190572172, "creationTimestamp": null, - "deletionGracePeriodSeconds": -4739960484747932992, + "deletionGracePeriodSeconds": -152893758082474859, "labels": { - "35": "36" + "29": "30" }, "annotations": { - "37": "38" + "31": "32" }, "ownerReferences": [ { - "apiVersion": "39", - "kind": "40", - "name": "41", - "uid": "·Õ", - "controller": false, + "apiVersion": "33", + "kind": "34", + "name": "35", + "uid": "ɖgȏ哙ȍȂ揲ȼDDŽLŬp:", + "controller": true, "blockOwnerDeletion": true } ], "finalizers": [ - "42" + "36" ], - "clusterName": "43", + "clusterName": "37", "managedFields": [ { - "manager": "44", - "operation": "ɔȖ脵鴈Ōƾ焁yǠ/淹\\韲翁\u0026", - "apiVersion": "45", - "fields": {"46":{"47":null}} + "manager": "38", + "operation": "ƅS·Õüe0ɔȖ脵鴈Ō", + "apiVersion": "39" } ] }, "spec": { "volumes": [ { - "name": "51", + "name": "40", "hostPath": { - "path": "52", - "type": "ȱ蓿彭聡A3fƻf" + "path": "41", + "type": "6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ" }, "emptyDir": { - "medium": "繡楙¯ĦE勗E濞偘", - "sizeLimit": "349" + "medium": "彭聡A3fƻfʣ", + "sizeLimit": "115" }, "gcePersistentDisk": { - "pdName": "53", - "fsType": "54", - "partition": 1648350164, - "readOnly": true + "pdName": "42", + "fsType": "43", + "partition": -1499132872 }, "awsElasticBlockStore": { - "volumeID": "55", - "fsType": "56", - "partition": 200492355, + "volumeID": "44", + "fsType": "45", + "partition": -762366823, "readOnly": true }, "gitRepo": { - "repository": "57", - "revision": "58", - "directory": "59" + "repository": "46", + "revision": "47", + "directory": "48" }, "secret": { - "secretName": "60", + "secretName": "49", "items": [ { - "key": "61", - "path": "62", - "mode": 1360806276 + "key": "50", + "path": "51", + "mode": -104666658 } ], - "defaultMode": 395412881, + "defaultMode": 372704313, "optional": true }, "nfs": { - "server": "63", - "path": "64" - }, - "iscsi": { - "targetPortal": "65", - "iqn": "66", - "lun": -1746427184, - "iscsiInterface": "67", - "fsType": "68", - "portals": [ - "69" - ], - "secretRef": { - "name": "70" - }, - "initiatorName": "71" - }, - "glusterfs": { - "endpoints": "72", - "path": "73", + "server": "52", + "path": "53", "readOnly": true }, + "iscsi": { + "targetPortal": "54", + "iqn": "55", + "lun": 1655406148, + "iscsiInterface": "56", + "fsType": "57", + "readOnly": true, + "portals": [ + "58" + ], + "secretRef": { + "name": "59" + }, + "initiatorName": "60" + }, + "glusterfs": { + "endpoints": "61", + "path": "62" + }, "persistentVolumeClaim": { - "claimName": "74" + "claimName": "63", + "readOnly": true }, "rbd": { "monitors": [ - "75" + "64" ], - "image": "76", - "fsType": "77", - "pool": "78", - "user": "79", - "keyring": "80", + "image": "65", + "fsType": "66", + "pool": "67", + "user": "68", + "keyring": "69", "secretRef": { - "name": "81" - } + "name": "70" + }, + "readOnly": true }, "flexVolume": { - "driver": "82", - "fsType": "83", + "driver": "71", + "fsType": "72", "secretRef": { - "name": "84" + "name": "73" }, "options": { - "85": "86" + "74": "75" } }, "cinder": { - "volumeID": "87", - "fsType": "88", - "readOnly": true, + "volumeID": "76", + "fsType": "77", "secretRef": { - "name": "89" + "name": "78" } }, "cephfs": { "monitors": [ - "90" + "79" ], - "path": "91", - "user": "92", - "secretFile": "93", + "path": "80", + "user": "81", + "secretFile": "82", "secretRef": { - "name": "94" - }, - "readOnly": true + "name": "83" + } }, "flocker": { - "datasetName": "95", - "datasetUUID": "96" + "datasetName": "84", + "datasetUUID": "85" }, "downwardAPI": { "items": [ { - "path": "97", + "path": "86", "fieldRef": { - "apiVersion": "98", - "fieldPath": "99" + "apiVersion": "87", + "fieldPath": "88" }, "resourceFieldRef": { - "containerName": "100", - "resource": "101", - "divisor": "51" + "containerName": "89", + "resource": "90", + "divisor": "457" }, - "mode": -1332301579 + "mode": 1235524154 } ], - "defaultMode": -395029362 + "defaultMode": -106644772 }, "fc": { "targetWWNs": [ - "102" + "91" ], - "lun": -2007808768, - "fsType": "103", + "lun": 441887498, + "fsType": "92", + "readOnly": true, "wwids": [ - "104" + "93" ] }, "azureFile": { - "secretName": "105", - "shareName": "106" + "secretName": "94", + "shareName": "95" }, "configMap": { - "name": "107", + "name": "96", "items": [ { - "key": "108", - "path": "109", - "mode": -1057154155 + "key": "97", + "path": "98", + "mode": -2039036935 } ], - "defaultMode": 1632959949, - "optional": true + "defaultMode": -460478410, + "optional": false }, "vsphereVolume": { - "volumePath": "110", - "fsType": "111", - "storagePolicyName": "112", - "storagePolicyID": "113" + "volumePath": "99", + "fsType": "100", + "storagePolicyName": "101", + "storagePolicyID": "102" }, "quobyte": { - "registry": "114", - "volume": "115", - "user": "116", - "group": "117", - "tenant": "118" + "registry": "103", + "volume": "104", + "readOnly": true, + "user": "105", + "group": "106", + "tenant": "107" }, "azureDisk": { - "diskName": "119", - "diskURI": "120", - "cachingMode": "躢", - "fsType": "121", - "readOnly": false, - "kind": "黰eȪ嵛4$%Qɰ" + "diskName": "108", + "diskURI": "109", + "cachingMode": "HǺƶȤ^}穠", + "fsType": "110", + "readOnly": true, + "kind": "躢" }, "photonPersistentDisk": { - "pdID": "122", - "fsType": "123" + "pdID": "111", + "fsType": "112" }, "projected": { "sources": [ { "secret": { - "name": "124", + "name": "113", "items": [ { - "key": "125", - "path": "126", - "mode": 273818613 + "key": "114", + "path": "115", + "mode": -1399063270 } ], - "optional": false + "optional": true }, "downwardAPI": { "items": [ { - "path": "127", + "path": "116", "fieldRef": { - "apiVersion": "128", - "fieldPath": "129" + "apiVersion": "117", + "fieldPath": "118" }, "resourceFieldRef": { - "containerName": "130", - "resource": "131", - "divisor": "934" + "containerName": "119", + "resource": "120", + "divisor": "746" }, - "mode": -687313111 + "mode": 926891073 } ] }, "configMap": { - "name": "132", + "name": "121", "items": [ { - "key": "133", - "path": "134", - "mode": 2020789772 + "key": "122", + "path": "123", + "mode": -1694464659 } ], "optional": true }, "serviceAccountToken": { - "audience": "135", - "expirationSeconds": 3485267088372060587, - "path": "136" + "audience": "124", + "expirationSeconds": -7593824971107985079, + "path": "125" } } ], - "defaultMode": 715087892 + "defaultMode": -522879476 }, "portworxVolume": { - "volumeID": "137", - "fsType": "138", - "readOnly": true + "volumeID": "126", + "fsType": "127" }, "scaleIO": { - "gateway": "139", - "system": "140", + "gateway": "128", + "system": "129", "secretRef": { - "name": "141" + "name": "130" }, - "protectionDomain": "142", - "storagePool": "143", - "storageMode": "144", - "volumeName": "145", - "fsType": "146" + "protectionDomain": "131", + "storagePool": "132", + "storageMode": "133", + "volumeName": "134", + "fsType": "135" }, "storageos": { - "volumeName": "147", - "volumeNamespace": "148", - "fsType": "149", + "volumeName": "136", + "volumeNamespace": "137", + "fsType": "138", + "readOnly": true, "secretRef": { - "name": "150" + "name": "139" } }, "csi": { - "driver": "151", + "driver": "140", "readOnly": false, - "fsType": "152", + "fsType": "141", "volumeAttributes": { - "153": "154" + "142": "143" }, "nodePublishSecretRef": { - "name": "155" + "name": "144" } } } ], "initContainers": [ { - "name": "156", - "image": "157", + "name": "145", + "image": "146", "command": [ - "158" + "147" ], "args": [ - "159" + "148" ], - "workingDir": "160", + "workingDir": "149", "ports": [ { - "name": "161", - "hostPort": 1473141590, - "containerPort": -1996616480, - "protocol": "ł/擇ɦĽ胚O醔ɍ厶", - "hostIP": "162" + "name": "150", + "hostPort": -1896921306, + "containerPort": 715087892, + "protocol": "倱\u003c", + "hostIP": "151" } ], "envFrom": [ { - "prefix": "163", + "prefix": "152", "configMapRef": { - "name": "164", + "name": "153", "optional": false }, "secretRef": { - "name": "165", + "name": "154", "optional": false } } ], "env": [ { - "name": "166", - "value": "167", + "name": "155", + "value": "156", "valueFrom": { "fieldRef": { - "apiVersion": "168", - "fieldPath": "169" + "apiVersion": "157", + "fieldPath": "158" }, "resourceFieldRef": { - "containerName": "170", - "resource": "171", - "divisor": "375" + "containerName": "159", + "resource": "160", + "divisor": "455" }, "configMapKeyRef": { - "name": "172", - "key": "173", + "name": "161", + "key": "162", "optional": true }, "secretKeyRef": { - "name": "174", - "key": "175", + "name": "163", + "key": "164", "optional": false } } @@ -431,220 +431,221 @@ ], "resources": { "limits": { - "": "596" + "/擇ɦĽ胚O醔ɍ厶耈 T": "618" }, "requests": { - "a坩O`涁İ而踪鄌eÞȦY籎顒": "45" + "á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ": "372" } }, "volumeMounts": [ { - "name": "176", - "mountPath": "177", - "subPath": "178", - "mountPropagation": "捘ɍi縱ù墴", - "subPathExpr": "179" + "name": "165", + "readOnly": true, + "mountPath": "166", + "subPath": "167", + "mountPropagation": "dʪīT捘ɍi縱ù墴1Rƥ", + "subPathExpr": "168" } ], "volumeDevices": [ { - "name": "180", - "devicePath": "181" + "name": "169", + "devicePath": "170" } ], "livenessProbe": { "exec": { "command": [ - "182" + "171" ] }, "httpGet": { - "path": "183", - "port": "184", - "host": "185", - "scheme": "痗ȡmƴy綸_Ú8參遼ūPH", + "path": "172", + "port": "173", + "host": "174", + "scheme": "ƴy綸_Ú8參遼ūPH炮", "httpHeaders": [ { - "name": "186", - "value": "187" + "name": "175", + "value": "176" } ] }, "tcpSocket": { - "port": "188", - "host": "189" + "port": "177", + "host": "178" }, - "initialDelaySeconds": 655980302, - "timeoutSeconds": 741871873, - "periodSeconds": 446829537, - "successThreshold": -1987044888, - "failureThreshold": -1638339389 + "initialDelaySeconds": 741871873, + "timeoutSeconds": 446829537, + "periodSeconds": -1987044888, + "successThreshold": -1638339389, + "failureThreshold": 2053960192 }, "readinessProbe": { "exec": { "command": [ - "190" + "179" ] }, "httpGet": { - "path": "191", - "port": 961508537, - "host": "192", - "scheme": "黖ȓ", + "path": "180", + "port": -1903685915, + "host": "181", + "scheme": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "182", + "value": "183" } ] }, "tcpSocket": { - "port": "195", - "host": "196" + "port": "184", + "host": "185" }, - "initialDelaySeconds": -50623103, - "timeoutSeconds": 1795738696, - "periodSeconds": -1350331007, - "successThreshold": -1145306833, - "failureThreshold": 2063799569 + "initialDelaySeconds": 128019484, + "timeoutSeconds": 431781335, + "periodSeconds": -2130554644, + "successThreshold": 290736426, + "failureThreshold": -57352147 }, "lifecycle": { "postStart": { "exec": { "command": [ - "197" + "186" ] }, "httpGet": { - "path": "198", - "port": -2007811220, - "host": "199", - "scheme": "鎷卩蝾H", + "path": "187", + "port": "188", + "host": "189", + "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "190", + "value": "191" } ] }, "tcpSocket": { - "port": -2035009296, - "host": "202" + "port": -337353552, + "host": "192" } }, "preStop": { "exec": { "command": [ - "203" + "193" ] }, "httpGet": { - "path": "204", - "port": "205", - "host": "206", - "scheme": "ńMǰ溟ɴ扵閝", + "path": "194", + "port": -374922344, + "host": "195", + "scheme": "緄Ú|dk_瀹鞎sn芞", "httpHeaders": [ { - "name": "207", - "value": "208" + "name": "196", + "value": "197" } ] }, "tcpSocket": { - "port": -1474440600, - "host": "209" + "port": 912103005, + "host": "198" } } }, - "terminationMessagePath": "210", - "terminationMessagePolicy": "廡ɑ龫`劳\u0026¼傭Ȟ1酃=6}ɡŇ", - "imagePullPolicy": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", + "terminationMessagePath": "199", + "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", + "imagePullPolicy": "\u003cé瞾", "securityContext": { "capabilities": { "add": [ - "d鲡" + "Ŭ" ], "drop": [ - "贅wE@Ȗs«öʮĀ\u003cé" + "ǙÄr蛏豈" ] }, "privileged": true, "seLinuxOptions": { - "user": "211", - "role": "212", - "type": "213", - "level": "214" + "user": "200", + "role": "201", + "type": "202", + "level": "203" }, "windowsOptions": { - "gmsaCredentialSpecName": "215", - "gmsaCredentialSpec": "216", - "runAsUserName": "217" + "gmsaCredentialSpecName": "204", + "gmsaCredentialSpec": "205", + "runAsUserName": "206" }, - "runAsUser": -7286288718856494813, - "runAsGroup": -5951050835676650382, + "runAsUser": -3447077152667955293, + "runAsGroup": -6457174729896610090, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ȉ彂" }, "stdinOnce": true } ], "containers": [ { - "name": "218", - "image": "219", + "name": "207", + "image": "208", "command": [ - "220" + "209" ], "args": [ - "221" + "210" ], - "workingDir": "222", + "workingDir": "211", "ports": [ { - "name": "223", - "hostPort": -1470854631, - "containerPort": -1815391069, - "protocol": "Ƹʋŀ樺ȃv", - "hostIP": "224" + "name": "212", + "hostPort": 1065976533, + "containerPort": -820119398, + "protocol": "@ùƸʋŀ樺ȃv", + "hostIP": "213" } ], "envFrom": [ { - "prefix": "225", + "prefix": "214", "configMapRef": { - "name": "226", + "name": "215", "optional": true }, "secretRef": { - "name": "227", + "name": "216", "optional": true } } ], "env": [ { - "name": "228", - "value": "229", + "name": "217", + "value": "218", "valueFrom": { "fieldRef": { - "apiVersion": "230", - "fieldPath": "231" + "apiVersion": "219", + "fieldPath": "220" }, "resourceFieldRef": { - "containerName": "232", - "resource": "233", + "containerName": "221", + "resource": "222", "divisor": "508" }, "configMapKeyRef": { - "name": "234", - "key": "235", + "name": "223", + "key": "224", "optional": false }, "secretKeyRef": { - "name": "236", - "key": "237", + "name": "225", + "key": "226", "optional": true } } @@ -660,41 +661,41 @@ }, "volumeMounts": [ { - "name": "238", + "name": "227", "readOnly": true, - "mountPath": "239", - "subPath": "240", + "mountPath": "228", + "subPath": "229", "mountPropagation": "", - "subPathExpr": "241" + "subPathExpr": "230" } ], "volumeDevices": [ { - "name": "242", - "devicePath": "243" + "name": "231", + "devicePath": "232" } ], "livenessProbe": { "exec": { "command": [ - "244" + "233" ] }, "httpGet": { - "path": "245", - "port": "246", - "host": "247", + "path": "234", + "port": "235", + "host": "236", "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "237", + "value": "238" } ] }, "tcpSocket": { "port": 1096174794, - "host": "250" + "host": "239" }, "initialDelaySeconds": 1591029717, "timeoutSeconds": 1255169591, @@ -705,24 +706,24 @@ "readinessProbe": { "exec": { "command": [ - "251" + "240" ] }, "httpGet": { - "path": "252", - "port": "253", - "host": "254", + "path": "241", + "port": "242", + "host": "243", "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", "httpHeaders": [ { - "name": "255", - "value": "256" + "name": "244", + "value": "245" } ] }, "tcpSocket": { - "port": "257", - "host": "258" + "port": "246", + "host": "247" }, "initialDelaySeconds": -394397948, "timeoutSeconds": 2040455355, @@ -734,51 +735,51 @@ "postStart": { "exec": { "command": [ - "259" + "248" ] }, "httpGet": { - "path": "260", - "port": "261", - "host": "262", + "path": "249", + "port": "250", + "host": "251", "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", "httpHeaders": [ { - "name": "263", - "value": "264" + "name": "252", + "value": "253" } ] }, "tcpSocket": { - "port": "265", - "host": "266" + "port": "254", + "host": "255" } }, "preStop": { "exec": { "command": [ - "267" + "256" ] }, "httpGet": { - "path": "268", + "path": "257", "port": -1675041613, - "host": "269", + "host": "258", "scheme": "揆ɘȌ脾嚏吐", "httpHeaders": [ { - "name": "270", - "value": "271" + "name": "259", + "value": "260" } ] }, "tcpSocket": { "port": -194343002, - "host": "272" + "host": "261" } } }, - "terminationMessagePath": "273", + "terminationMessagePath": "262", "terminationMessagePolicy": "Ȥ藠3.", "imagePullPolicy": "t莭琽§ć\\ ïì", "securityContext": { @@ -792,15 +793,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "274", - "role": "275", - "type": "276", - "level": "277" + "user": "263", + "role": "264", + "type": "265", + "level": "266" }, "windowsOptions": { - "gmsaCredentialSpecName": "278", - "gmsaCredentialSpec": "279", - "runAsUserName": "280" + "gmsaCredentialSpecName": "267", + "gmsaCredentialSpec": "268", + "runAsUserName": "269" }, "runAsUser": -2142888785755371163, "runAsGroup": -2879304435996142911, @@ -814,58 +815,58 @@ ], "ephemeralContainers": [ { - "name": "281", - "image": "282", + "name": "270", + "image": "271", "command": [ - "283" + "272" ], "args": [ - "284" + "273" ], - "workingDir": "285", + "workingDir": "274", "ports": [ { - "name": "286", + "name": "275", "hostPort": -1740959124, "containerPort": 158280212, - "hostIP": "287" + "hostIP": "276" } ], "envFrom": [ { - "prefix": "288", + "prefix": "277", "configMapRef": { - "name": "289", + "name": "278", "optional": true }, "secretRef": { - "name": "290", + "name": "279", "optional": true } } ], "env": [ { - "name": "291", - "value": "292", + "name": "280", + "value": "281", "valueFrom": { "fieldRef": { - "apiVersion": "293", - "fieldPath": "294" + "apiVersion": "282", + "fieldPath": "283" }, "resourceFieldRef": { - "containerName": "295", - "resource": "296", + "containerName": "284", + "resource": "285", "divisor": "985" }, "configMapKeyRef": { - "name": "297", - "key": "298", + "name": "286", + "key": "287", "optional": false }, "secretKeyRef": { - "name": "299", - "key": "300", + "name": "288", + "key": "289", "optional": false } } @@ -881,40 +882,40 @@ }, "volumeMounts": [ { - "name": "301", - "mountPath": "302", - "subPath": "303", + "name": "290", + "mountPath": "291", + "subPath": "292", "mountPropagation": "啛更", - "subPathExpr": "304" + "subPathExpr": "293" } ], "volumeDevices": [ { - "name": "305", - "devicePath": "306" + "name": "294", + "devicePath": "295" } ], "livenessProbe": { "exec": { "command": [ - "307" + "296" ] }, "httpGet": { - "path": "308", - "port": "309", - "host": "310", + "path": "297", + "port": "298", + "host": "299", "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "311", - "value": "312" + "name": "300", + "value": "301" } ] }, "tcpSocket": { "port": -979584143, - "host": "313" + "host": "302" }, "initialDelaySeconds": -1748648882, "timeoutSeconds": -239843014, @@ -925,24 +926,24 @@ "readinessProbe": { "exec": { "command": [ - "314" + "303" ] }, "httpGet": { - "path": "315", - "port": "316", - "host": "317", + "path": "304", + "port": "305", + "host": "306", "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", "httpHeaders": [ { - "name": "318", - "value": "319" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": "320", - "host": "321" + "port": "309", + "host": "310" }, "initialDelaySeconds": 37514563, "timeoutSeconds": -1871050070, @@ -954,51 +955,51 @@ "postStart": { "exec": { "command": [ - "322" + "311" ] }, "httpGet": { - "path": "323", - "port": "324", - "host": "325", + "path": "312", + "port": "313", + "host": "314", "scheme": "绤fʀļ腩墺Ò媁荭g", "httpHeaders": [ { - "name": "326", - "value": "327" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "328", - "host": "329" + "port": "317", + "host": "318" } }, "preStop": { "exec": { "command": [ - "330" + "319" ] }, "httpGet": { - "path": "331", + "path": "320", "port": -2133054549, - "host": "332", + "host": "321", "scheme": "遰=E", "httpHeaders": [ { - "name": "333", - "value": "334" + "name": "322", + "value": "323" } ] }, "tcpSocket": { - "port": "335", - "host": "336" + "port": "324", + "host": "325" } } }, - "terminationMessagePath": "337", + "terminationMessagePath": "326", "terminationMessagePolicy": "朦 wƯ貾坢'跩", "imagePullPolicy": "簳°Ļǟi\u0026皥贸", "securityContext": { @@ -1012,15 +1013,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "338", - "role": "339", - "type": "340", - "level": "341" + "user": "327", + "role": "328", + "type": "329", + "level": "330" }, "windowsOptions": { - "gmsaCredentialSpecName": "342", - "gmsaCredentialSpec": "343", - "runAsUserName": "344" + "gmsaCredentialSpecName": "331", + "gmsaCredentialSpec": "332", + "runAsUserName": "333" }, "runAsUser": 7933506142593743951, "runAsGroup": -8521633679555431923, @@ -1032,7 +1033,7 @@ "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "345" + "targetContainerName": "334" } ], "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", @@ -1040,26 +1041,26 @@ "activeDeadlineSeconds": -499179336506637450, "dnsPolicy": "ɐ鰥", "nodeSelector": { - "346": "347" + "335": "336" }, - "serviceAccountName": "348", - "serviceAccount": "349", + "serviceAccountName": "337", + "serviceAccount": "338", "automountServiceAccountToken": true, - "nodeName": "350", + "nodeName": "339", "hostNetwork": true, "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "351", - "role": "352", - "type": "353", - "level": "354" + "user": "340", + "role": "341", + "type": "342", + "level": "343" }, "windowsOptions": { - "gmsaCredentialSpecName": "355", - "gmsaCredentialSpec": "356", - "runAsUserName": "357" + "gmsaCredentialSpecName": "344", + "gmsaCredentialSpec": "345", + "runAsUserName": "346" }, "runAsUser": 3634773701753283428, "runAsGroup": -3042614092601658792, @@ -1070,18 +1071,18 @@ "fsGroup": -1778638259613624198, "sysctls": [ { - "name": "358", - "value": "359" + "name": "347", + "value": "348" } ] }, "imagePullSecrets": [ { - "name": "360" + "name": "349" } ], - "hostname": "361", - "subdomain": "362", + "hostname": "350", + "subdomain": "351", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1089,19 +1090,19 @@ { "matchExpressions": [ { - "key": "363", + "key": "352", "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "values": [ - "364" + "353" ] } ], "matchFields": [ { - "key": "365", + "key": "354", "operator": "C\"6x$1s", "values": [ - "366" + "355" ] } ] @@ -1114,19 +1115,19 @@ "preference": { "matchExpressions": [ { - "key": "367", + "key": "356", "operator": "鋄5弢ȹ均", "values": [ - "368" + "357" ] } ], "matchFields": [ { - "key": "369", + "key": "358", "operator": "SvEȤƏ埮p", "values": [ - "370" + "359" ] } ] @@ -1149,9 +1150,9 @@ ] }, "namespaces": [ - "377" + "366" ], - "topologyKey": "378" + "topologyKey": "367" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1173,9 +1174,9 @@ ] }, "namespaces": [ - "385" + "374" ], - "topologyKey": "386" + "topologyKey": "375" } } ] @@ -1198,9 +1199,9 @@ ] }, "namespaces": [ - "393" + "382" ], - "topologyKey": "394" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ @@ -1219,45 +1220,45 @@ ] }, "namespaces": [ - "401" + "390" ], - "topologyKey": "402" + "topologyKey": "391" } } ] } }, - "schedulerName": "403", + "schedulerName": "392", "tolerations": [ { - "key": "404", + "key": "393", "operator": "[L", - "value": "405", + "value": "394", "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", "tolerationSeconds": 4456040724914385859 } ], "hostAliases": [ { - "ip": "406", + "ip": "395", "hostnames": [ - "407" + "396" ] } ], - "priorityClassName": "408", + "priorityClassName": "397", "priority": -1576968453, "dnsConfig": { "nameservers": [ - "409" + "398" ], "searches": [ - "410" + "399" ], "options": [ { - "name": "411", - "value": "412" + "name": "400", + "value": "401" } ] }, @@ -1266,7 +1267,7 @@ "conditionType": "v" } ], - "runtimeClassName": "413", + "runtimeClassName": "402", "enableServiceLinks": false, "preemptionPolicy": "忖p様", "overhead": { @@ -1275,7 +1276,7 @@ "topologySpreadConstraints": [ { "maxSkew": -782776982, - "topologyKey": "414", + "topologyKey": "403", "whenUnsatisfiable": "鈀", "labelSelector": { "matchLabels": { @@ -1304,8 +1305,8 @@ "type": "", "status": "'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "421", - "message": "422" + "reason": "410", + "message": "411" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb index d72914add86ccbe47e6acfa2a5f949f2e4f656f1..489132e66939e8b78acbd210c9e4ae2a9de706ea 100644 GIT binary patch delta 3833 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 G^!y)NVlqGg delta 3846 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 NAUiK~p5Z_w@IRP(Az%Oi diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml index 8196c09d056..c6bffb0ba54 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,52 +25,49 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - minReadySeconds: 2114329341 - replicas: -1978186127 + minReadySeconds: -1971381490 + replicas: 896585016 selector: matchExpressions: - - key: M-H_5_.t..bGE.9__.3_u1.m_.5AW-_S-.3g.7_2fNc5G - operator: NotIn + - key: U-_Bq.m_-.q8_v2LiTF_a981d3-7-fP81.-.9Vdx.TB_M-H_5_t + operator: In values: - - 7_M9T9sH.Wu5--.K_.0--_0P7_.C.Ze--D07.a_.y_y_oU + - M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.W5 matchLabels: - 0-8---nqxcv-q5r-8---jop96410.r--g8c2-k-912e5-c-e63-n-3snh-z--3uy5--g/7y7: s.6--_x.--0wmZk1_8._3s_-_Bq.m_-.q8_v2LiTF_a981d3-7-f8 + g8c2-k-912e5-c-e63-n-3snh-z--3uy5-----578/s.X8u4_.l.wV--__-Nx.N_6-___._-.-W._AAn---v_-5-_8LXP-o-9..1l-5: "" template: metadata: annotations: - "37": "38" - clusterName: "43" + "31": "32" + clusterName: "37" creationTimestamp: null - deletionGracePeriodSeconds: -4739960484747932992 + deletionGracePeriodSeconds: -152893758082474859 finalizers: - - "42" - generateName: "31" - generation: 1395707490843892091 + - "36" + generateName: "25" + generation: -6617020301190572172 labels: - "35": "36" + "29": "30" managedFields: - - apiVersion: "45" - fields: - "46": - "47": null - manager: "44" - operation: ɔȖ脵鴈Ōƾ焁yǠ/淹\韲翁& - name: "30" - namespace: "32" - ownerReferences: - apiVersion: "39" + manager: "38" + operation: ƅS·Õüe0ɔȖ脵鴈Ō + name: "24" + namespace: "26" + ownerReferences: + - apiVersion: "33" blockOwnerDeletion: true - controller: false - kind: "40" - name: "41" - uid: ·Õ - resourceVersion: "11500002557443244703" - selfLink: "33" - uid: 诫z徃鷢6ȥ啕禗 + controller: true + kind: "34" + name: "35" + uid: 'ɖgȏ哙ȍȂ揲ȼDDŽLŬp:' + resourceVersion: "7336814125345800857" + selfLink: "27" + uid: ʬ spec: activeDeadlineSeconds: -499179336506637450 affinity: @@ -81,28 +75,28 @@ spec: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "367" + - key: "356" operator: 鋄5弢ȹ均 values: - - "368" + - "357" matchFields: - - key: "369" + - key: "358" operator: SvEȤƏ埮p values: - - "370" + - "359" weight: -1292310438 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "363" + - key: "352" operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 values: - - "364" + - "353" matchFields: - - key: "365" + - key: "354" operator: C"6x$1s values: - - "366" + - "355" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -115,8 +109,8 @@ spec: matchLabels: 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F namespaces: - - "385" - topologyKey: "386" + - "374" + topologyKey: "375" weight: -531787516 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -126,8 +120,8 @@ spec: matchLabels: o.6GA2C: s.Nj-s namespaces: - - "377" - topologyKey: "378" + - "366" + topologyKey: "367" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -138,8 +132,8 @@ spec: matchLabels: t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 namespaces: - - "401" - topologyKey: "402" + - "390" + topologyKey: "391" weight: -1139477828 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: @@ -151,120 +145,120 @@ spec: matchLabels: 4.B.__6m: J1-1.9_.-.Ms7_tP namespaces: - - "393" - topologyKey: "394" + - "382" + topologyKey: "383" automountServiceAccountToken: true containers: - args: - - "221" + - "210" command: - - "220" + - "209" env: - - name: "228" - value: "229" + - name: "217" + value: "218" valueFrom: configMapKeyRef: - key: "235" - name: "234" + key: "224" + name: "223" optional: false fieldRef: - apiVersion: "230" - fieldPath: "231" + apiVersion: "219" + fieldPath: "220" resourceFieldRef: - containerName: "232" + containerName: "221" divisor: "508" - resource: "233" + resource: "222" secretKeyRef: - key: "237" - name: "236" + key: "226" + name: "225" optional: true envFrom: - configMapRef: - name: "226" + name: "215" optional: true - prefix: "225" + prefix: "214" secretRef: - name: "227" + name: "216" optional: true - image: "219" + image: "208" imagePullPolicy: t莭琽§ć\ ïì lifecycle: postStart: exec: command: - - "259" + - "248" httpGet: - host: "262" + host: "251" httpHeaders: - - name: "263" - value: "264" - path: "260" - port: "261" + - name: "252" + value: "253" + path: "249" + port: "250" scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 tcpSocket: - host: "266" - port: "265" + host: "255" + port: "254" preStop: exec: command: - - "267" + - "256" httpGet: - host: "269" + host: "258" httpHeaders: - - name: "270" - value: "271" - path: "268" + - name: "259" + value: "260" + path: "257" port: -1675041613 scheme: 揆ɘȌ脾嚏吐 tcpSocket: - host: "272" + host: "261" port: -194343002 livenessProbe: exec: command: - - "244" + - "233" failureThreshold: 817152661 httpGet: - host: "247" + host: "236" httpHeaders: - - name: "248" - value: "249" - path: "245" - port: "246" + - name: "237" + value: "238" + path: "234" + port: "235" scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 initialDelaySeconds: 1591029717 periodSeconds: 622473257 successThreshold: -966649167 tcpSocket: - host: "250" + host: "239" port: 1096174794 timeoutSeconds: 1255169591 - name: "218" + name: "207" ports: - - containerPort: -1815391069 - hostIP: "224" - hostPort: -1470854631 - name: "223" - protocol: Ƹʋŀ樺ȃv + - containerPort: -820119398 + hostIP: "213" + hostPort: 1065976533 + name: "212" + protocol: '@ùƸʋŀ樺ȃv' readinessProbe: exec: command: - - "251" + - "240" failureThreshold: 1214895765 httpGet: - host: "254" + host: "243" httpHeaders: - - name: "255" - value: "256" - path: "252" - port: "253" + - name: "244" + value: "245" + path: "241" + port: "242" scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ initialDelaySeconds: -394397948 periodSeconds: 1505972335 successThreshold: -26910286 tcpSocket: - host: "258" - port: "257" + host: "247" + port: "246" timeoutSeconds: 2040455355 resources: limits: @@ -285,148 +279,148 @@ spec: runAsNonRoot: false runAsUser: -2142888785755371163 seLinuxOptions: - level: "277" - role: "275" - type: "276" - user: "274" + level: "266" + role: "264" + type: "265" + user: "263" windowsOptions: - gmsaCredentialSpec: "279" - gmsaCredentialSpecName: "278" - runAsUserName: "280" + gmsaCredentialSpec: "268" + gmsaCredentialSpecName: "267" + runAsUserName: "269" stdin: true - terminationMessagePath: "273" + terminationMessagePath: "262" terminationMessagePolicy: Ȥ藠3. volumeDevices: - - devicePath: "243" - name: "242" + - devicePath: "232" + name: "231" volumeMounts: - - mountPath: "239" + - mountPath: "228" mountPropagation: "" - name: "238" + name: "227" readOnly: true - subPath: "240" - subPathExpr: "241" - workingDir: "222" + subPath: "229" + subPathExpr: "230" + workingDir: "211" dnsConfig: nameservers: - - "409" + - "398" options: - - name: "411" - value: "412" + - name: "400" + value: "401" searches: - - "410" + - "399" dnsPolicy: ɐ鰥 enableServiceLinks: false ephemeralContainers: - args: - - "284" + - "273" command: - - "283" + - "272" env: - - name: "291" - value: "292" + - name: "280" + value: "281" valueFrom: configMapKeyRef: - key: "298" - name: "297" + key: "287" + name: "286" optional: false fieldRef: - apiVersion: "293" - fieldPath: "294" + apiVersion: "282" + fieldPath: "283" resourceFieldRef: - containerName: "295" + containerName: "284" divisor: "985" - resource: "296" + resource: "285" secretKeyRef: - key: "300" - name: "299" + key: "289" + name: "288" optional: false envFrom: - configMapRef: - name: "289" + name: "278" optional: true - prefix: "288" + prefix: "277" secretRef: - name: "290" + name: "279" optional: true - image: "282" + image: "271" imagePullPolicy: 簳°Ļǟi&皥贸 lifecycle: postStart: exec: command: - - "322" + - "311" httpGet: - host: "325" + host: "314" httpHeaders: - - name: "326" - value: "327" - path: "323" - port: "324" + - name: "315" + value: "316" + path: "312" + port: "313" scheme: 绤fʀļ腩墺Ò媁荭g tcpSocket: - host: "329" - port: "328" + host: "318" + port: "317" preStop: exec: command: - - "330" + - "319" httpGet: - host: "332" + host: "321" httpHeaders: - - name: "333" - value: "334" - path: "331" + - name: "322" + value: "323" + path: "320" port: -2133054549 scheme: 遰=E tcpSocket: - host: "336" - port: "335" + host: "325" + port: "324" livenessProbe: exec: command: - - "307" + - "296" failureThreshold: -1538905728 httpGet: - host: "310" + host: "299" httpHeaders: - - name: "311" - value: "312" - path: "308" - port: "309" + - name: "300" + value: "301" + path: "297" + port: "298" scheme: Ů+朷Ǝ膯ljVX1虊 initialDelaySeconds: -1748648882 periodSeconds: 1381579966 successThreshold: -1418092595 tcpSocket: - host: "313" + host: "302" port: -979584143 timeoutSeconds: -239843014 - name: "281" + name: "270" ports: - containerPort: 158280212 - hostIP: "287" + hostIP: "276" hostPort: -1740959124 - name: "286" + name: "275" readinessProbe: exec: command: - - "314" + - "303" failureThreshold: 522560228 httpGet: - host: "317" + host: "306" httpHeaders: - - name: "318" - value: "319" - path: "315" - port: "316" + - name: "307" + value: "308" + path: "304" + port: "305" scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T initialDelaySeconds: 37514563 periodSeconds: 474715842 successThreshold: -1620315711 tcpSocket: - host: "321" - port: "320" + host: "310" + port: "309" timeoutSeconds: -1871050070 resources: limits: @@ -447,234 +441,235 @@ spec: runAsNonRoot: true runAsUser: 7933506142593743951 seLinuxOptions: - level: "341" - role: "339" - type: "340" - user: "338" + level: "330" + role: "328" + type: "329" + user: "327" windowsOptions: - gmsaCredentialSpec: "343" - gmsaCredentialSpecName: "342" - runAsUserName: "344" + gmsaCredentialSpec: "332" + gmsaCredentialSpecName: "331" + runAsUserName: "333" stdin: true stdinOnce: true - targetContainerName: "345" - terminationMessagePath: "337" + targetContainerName: "334" + terminationMessagePath: "326" terminationMessagePolicy: 朦 wƯ貾坢'跩 tty: true volumeDevices: - - devicePath: "306" - name: "305" + - devicePath: "295" + name: "294" volumeMounts: - - mountPath: "302" + - mountPath: "291" mountPropagation: 啛更 - name: "301" - subPath: "303" - subPathExpr: "304" - workingDir: "285" + name: "290" + subPath: "292" + subPathExpr: "293" + workingDir: "274" hostAliases: - hostnames: - - "407" - ip: "406" + - "396" + ip: "395" hostNetwork: true hostPID: true - hostname: "361" + hostname: "350" imagePullSecrets: - - name: "360" + - name: "349" initContainers: - args: - - "159" + - "148" command: - - "158" + - "147" env: - - name: "166" - value: "167" + - name: "155" + value: "156" valueFrom: configMapKeyRef: - key: "173" - name: "172" + key: "162" + name: "161" optional: true fieldRef: - apiVersion: "168" - fieldPath: "169" + apiVersion: "157" + fieldPath: "158" resourceFieldRef: - containerName: "170" - divisor: "375" - resource: "171" + containerName: "159" + divisor: "455" + resource: "160" secretKeyRef: - key: "175" - name: "174" + key: "164" + name: "163" optional: false envFrom: - configMapRef: - name: "164" + name: "153" optional: false - prefix: "163" + prefix: "152" secretRef: - name: "165" + name: "154" optional: false - image: "157" - imagePullPolicy: ɖȃ賲鐅臬dH巧壚tC十Oɢ + image: "146" + imagePullPolicy: <é瞾 lifecycle: postStart: exec: command: - - "197" + - "186" httpGet: - host: "199" + host: "189" httpHeaders: - - name: "200" - value: "201" - path: "198" - port: -2007811220 - scheme: 鎷卩蝾H + - name: "190" + value: "191" + path: "187" + port: "188" + scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ tcpSocket: - host: "202" - port: -2035009296 + host: "192" + port: -337353552 preStop: exec: command: - - "203" + - "193" httpGet: - host: "206" + host: "195" httpHeaders: - - name: "207" - value: "208" - path: "204" - port: "205" - scheme: ńMǰ溟ɴ扵閝 + - name: "196" + value: "197" + path: "194" + port: -374922344 + scheme: 緄Ú|dk_瀹鞎sn芞 tcpSocket: - host: "209" - port: -1474440600 + host: "198" + port: 912103005 livenessProbe: exec: command: - - "182" - failureThreshold: -1638339389 + - "171" + failureThreshold: 2053960192 httpGet: - host: "185" + host: "174" httpHeaders: - - name: "186" - value: "187" - path: "183" - port: "184" - scheme: 痗ȡmƴy綸_Ú8參遼ūPH - initialDelaySeconds: 655980302 - periodSeconds: 446829537 - successThreshold: -1987044888 + - name: "175" + value: "176" + path: "172" + port: "173" + scheme: ƴy綸_Ú8參遼ūPH炮 + initialDelaySeconds: 741871873 + periodSeconds: -1987044888 + successThreshold: -1638339389 tcpSocket: - host: "189" - port: "188" - timeoutSeconds: 741871873 - name: "156" + host: "178" + port: "177" + timeoutSeconds: 446829537 + name: "145" ports: - - containerPort: -1996616480 - hostIP: "162" - hostPort: 1473141590 - name: "161" - protocol: ł/擇ɦĽ胚O醔ɍ厶 + - containerPort: 715087892 + hostIP: "151" + hostPort: -1896921306 + name: "150" + protocol: 倱< readinessProbe: exec: command: - - "190" - failureThreshold: 2063799569 + - "179" + failureThreshold: -57352147 httpGet: - host: "192" + host: "181" httpHeaders: - - name: "193" - value: "194" - path: "191" - port: 961508537 - scheme: 黖ȓ - initialDelaySeconds: -50623103 - periodSeconds: -1350331007 - successThreshold: -1145306833 + - name: "182" + value: "183" + path: "180" + port: -1903685915 + scheme: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 + initialDelaySeconds: 128019484 + periodSeconds: -2130554644 + successThreshold: 290736426 tcpSocket: - host: "196" - port: "195" - timeoutSeconds: 1795738696 + host: "185" + port: "184" + timeoutSeconds: 431781335 resources: limits: - "": "596" + /擇ɦĽ胚O醔ɍ厶耈 T: "618" requests: - a坩O`涁İ而踪鄌eÞȦY籎顒: "45" + á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - d鲡 + - Ŭ drop: - - 贅wE@Ȗs«öʮĀ<é + - ǙÄr蛏豈 privileged: true - procMount: 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 - readOnlyRootFilesystem: false - runAsGroup: -5951050835676650382 + procMount: ȉ彂 + readOnlyRootFilesystem: true + runAsGroup: -6457174729896610090 runAsNonRoot: true - runAsUser: -7286288718856494813 + runAsUser: -3447077152667955293 seLinuxOptions: - level: "214" - role: "212" - type: "213" - user: "211" + level: "203" + role: "201" + type: "202" + user: "200" windowsOptions: - gmsaCredentialSpec: "216" - gmsaCredentialSpecName: "215" - runAsUserName: "217" + gmsaCredentialSpec: "205" + gmsaCredentialSpecName: "204" + runAsUserName: "206" stdinOnce: true - terminationMessagePath: "210" - terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ + terminationMessagePath: "199" + terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 volumeDevices: - - devicePath: "181" - name: "180" + - devicePath: "170" + name: "169" volumeMounts: - - mountPath: "177" - mountPropagation: 捘ɍi縱ù墴 - name: "176" - subPath: "178" - subPathExpr: "179" - workingDir: "160" - nodeName: "350" + - mountPath: "166" + mountPropagation: dʪīT捘ɍi縱ù墴1Rƥ + name: "165" + readOnly: true + subPath: "167" + subPathExpr: "168" + workingDir: "149" + nodeName: "339" nodeSelector: - "346": "347" + "335": "336" overhead: U凮: "684" preemptionPolicy: 忖p様 priority: -1576968453 - priorityClassName: "408" + priorityClassName: "397" readinessGates: - conditionType: v restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "413" - schedulerName: "403" + runtimeClassName: "402" + schedulerName: "392" securityContext: fsGroup: -1778638259613624198 runAsGroup: -3042614092601658792 runAsNonRoot: false runAsUser: 3634773701753283428 seLinuxOptions: - level: "354" - role: "352" - type: "353" - user: "351" + level: "343" + role: "341" + type: "342" + user: "340" supplementalGroups: - -2125560879532395341 sysctls: - - name: "358" - value: "359" + - name: "347" + value: "348" windowsOptions: - gmsaCredentialSpec: "356" - gmsaCredentialSpecName: "355" - runAsUserName: "357" - serviceAccount: "349" - serviceAccountName: "348" + gmsaCredentialSpec: "345" + gmsaCredentialSpecName: "344" + runAsUserName: "346" + serviceAccount: "338" + serviceAccountName: "337" shareProcessNamespace: false - subdomain: "362" + subdomain: "351" terminationGracePeriodSeconds: 5620818514944490121 tolerations: - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "404" + key: "393" operator: '[L' tolerationSeconds: 4456040724914385859 - value: "405" + value: "394" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -684,210 +679,212 @@ spec: ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A : BM.6-.Y_72-_--p7 maxSkew: -782776982 - topologyKey: "414" + topologyKey: "403" whenUnsatisfiable: 鈀 volumes: - awsElasticBlockStore: - fsType: "56" - partition: 200492355 + fsType: "45" + partition: -762366823 readOnly: true - volumeID: "55" + volumeID: "44" azureDisk: - cachingMode: 躢 - diskName: "119" - diskURI: "120" - fsType: "121" - kind: 黰eȪ嵛4$%Qɰ - readOnly: false + cachingMode: HǺƶȤ^}穠 + diskName: "108" + diskURI: "109" + fsType: "110" + kind: 躢 + readOnly: true azureFile: - secretName: "105" - shareName: "106" + secretName: "94" + shareName: "95" cephfs: monitors: - - "90" - path: "91" - readOnly: true - secretFile: "93" + - "79" + path: "80" + secretFile: "82" secretRef: - name: "94" - user: "92" + name: "83" + user: "81" cinder: - fsType: "88" - readOnly: true + fsType: "77" secretRef: - name: "89" - volumeID: "87" + name: "78" + volumeID: "76" configMap: - defaultMode: 1632959949 + defaultMode: -460478410 items: - - key: "108" - mode: -1057154155 - path: "109" - name: "107" - optional: true + - key: "97" + mode: -2039036935 + path: "98" + name: "96" + optional: false csi: - driver: "151" - fsType: "152" + driver: "140" + fsType: "141" nodePublishSecretRef: - name: "155" + name: "144" readOnly: false volumeAttributes: - "153": "154" + "142": "143" downwardAPI: - defaultMode: -395029362 + defaultMode: -106644772 items: - fieldRef: - apiVersion: "98" - fieldPath: "99" - mode: -1332301579 - path: "97" + apiVersion: "87" + fieldPath: "88" + mode: 1235524154 + path: "86" resourceFieldRef: - containerName: "100" - divisor: "51" - resource: "101" + containerName: "89" + divisor: "457" + resource: "90" emptyDir: - medium: 繡楙¯ĦE勗E濞偘 - sizeLimit: "349" + medium: 彭聡A3fƻfʣ + sizeLimit: "115" fc: - fsType: "103" - lun: -2007808768 + fsType: "92" + lun: 441887498 + readOnly: true targetWWNs: - - "102" + - "91" wwids: - - "104" + - "93" flexVolume: - driver: "82" - fsType: "83" + driver: "71" + fsType: "72" options: - "85": "86" + "74": "75" secretRef: - name: "84" + name: "73" flocker: - datasetName: "95" - datasetUUID: "96" + datasetName: "84" + datasetUUID: "85" gcePersistentDisk: - fsType: "54" - partition: 1648350164 - pdName: "53" - readOnly: true + fsType: "43" + partition: -1499132872 + pdName: "42" gitRepo: - directory: "59" - repository: "57" - revision: "58" + directory: "48" + repository: "46" + revision: "47" glusterfs: - endpoints: "72" - path: "73" - readOnly: true + endpoints: "61" + path: "62" hostPath: - path: "52" - type: ȱ蓿彭聡A3fƻf + path: "41" + type: 6NJPM饣`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ iscsi: - fsType: "68" - initiatorName: "71" - iqn: "66" - iscsiInterface: "67" - lun: -1746427184 + fsType: "57" + initiatorName: "60" + iqn: "55" + iscsiInterface: "56" + lun: 1655406148 portals: - - "69" - secretRef: - name: "70" - targetPortal: "65" - name: "51" - nfs: - path: "64" - server: "63" - persistentVolumeClaim: - claimName: "74" - photonPersistentDisk: - fsType: "123" - pdID: "122" - portworxVolume: - fsType: "138" + - "58" readOnly: true - volumeID: "137" + secretRef: + name: "59" + targetPortal: "54" + name: "40" + nfs: + path: "53" + readOnly: true + server: "52" + persistentVolumeClaim: + claimName: "63" + readOnly: true + photonPersistentDisk: + fsType: "112" + pdID: "111" + portworxVolume: + fsType: "127" + volumeID: "126" projected: - defaultMode: 715087892 + defaultMode: -522879476 sources: - configMap: items: - - key: "133" - mode: 2020789772 - path: "134" - name: "132" + - key: "122" + mode: -1694464659 + path: "123" + name: "121" optional: true downwardAPI: items: - fieldRef: - apiVersion: "128" - fieldPath: "129" - mode: -687313111 - path: "127" + apiVersion: "117" + fieldPath: "118" + mode: 926891073 + path: "116" resourceFieldRef: - containerName: "130" - divisor: "934" - resource: "131" + containerName: "119" + divisor: "746" + resource: "120" secret: items: - - key: "125" - mode: 273818613 - path: "126" - name: "124" - optional: false + - key: "114" + mode: -1399063270 + path: "115" + name: "113" + optional: true serviceAccountToken: - audience: "135" - expirationSeconds: 3485267088372060587 - path: "136" + audience: "124" + expirationSeconds: -7593824971107985079 + path: "125" quobyte: - group: "117" - registry: "114" - tenant: "118" - user: "116" - volume: "115" + group: "106" + readOnly: true + registry: "103" + tenant: "107" + user: "105" + volume: "104" rbd: - fsType: "77" - image: "76" - keyring: "80" + fsType: "66" + image: "65" + keyring: "69" monitors: - - "75" - pool: "78" + - "64" + pool: "67" + readOnly: true secretRef: - name: "81" - user: "79" + name: "70" + user: "68" scaleIO: - fsType: "146" - gateway: "139" - protectionDomain: "142" + fsType: "135" + gateway: "128" + protectionDomain: "131" secretRef: - name: "141" - storageMode: "144" - storagePool: "143" - system: "140" - volumeName: "145" + name: "130" + storageMode: "133" + storagePool: "132" + system: "129" + volumeName: "134" secret: - defaultMode: 395412881 + defaultMode: 372704313 items: - - key: "61" - mode: 1360806276 - path: "62" + - key: "50" + mode: -104666658 + path: "51" optional: true - secretName: "60" + secretName: "49" storageos: - fsType: "149" + fsType: "138" + readOnly: true secretRef: - name: "150" - volumeName: "147" - volumeNamespace: "148" + name: "139" + volumeName: "136" + volumeNamespace: "137" vsphereVolume: - fsType: "111" - storagePolicyID: "113" - storagePolicyName: "112" - volumePath: "110" + fsType: "100" + storagePolicyID: "102" + storagePolicyName: "101" + volumePath: "99" status: availableReplicas: 740158871 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "422" - reason: "421" + message: "411" + reason: "410" status: '''ƈoIǢ龞瞯å' type: "" fullyLabeledReplicas: -929473748 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.json index f60076a7e64..85127efee5c 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,19 +35,18 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "replicas": -2052872833 + "replicas": -595102844 }, "status": { - "replicas": -125651156, + "replicas": 70007838, "selector": { - "24": "25" + "18": "19" }, - "targetSelector": "26" + "targetSelector": "20" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Scale.pb index 3ff07b6350b53260b2f913e6a6a15039e698ec12..3466a6e4931e6f521e31553cc1eca480482a810d 100644 GIT binary patch delta 96 zcmZ3@^oenTlGZ6kuBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a z6LUitwI?3ZRukgpXn8*O$>0A#z$himG4IC)MIjC@CPND$CPPapCL;qW1|Ui-o-jM^>Di zq4#3Odb19~YCM zg%Af98<4gXVi4ly_VU3`Svo>k5<#MN}>+;R@SvLfC_G=xJeyTY@R>Ho7!VpWZ_!T{?deJ_xXg z#PA7u#%iOgxVdECs?@beF-iBaW4V9JJC5NMNNem{w@4;Trabg$Hg4BalXEw9fAww< A@&Et; delta 153 zcmZo?+Ql@%(7Tz5>joniqmdA!u@s|;5~Hb>(vjAei@T4kF7$dfuPf2w#lqf%BP&kM z(0egsz1flOu%}CQq#B7Bnpv8e7?~QFn^+iIn3|XZVJ3DwPV9*2$)54pv-eDo zXG0vEKtSdY5RM|GC@2aMx#VEPA`}pZ>>Rjp;_N87@EdpoLVf6ZRb8*Y?Nv-XBHj>( z>+9`qqg5%@H?U%2EH#oHWgp7^w>#gcmhydjPly|qupHac%rk-hKGV2l2g~`xm1l3GO>$tX4v~gM{*Sthe}6-+uk+=R5nmJ5R5Fb?+)H z?O*x+&QGh!N4p-hm2) z%31dy59_{$I_P@xXox1aS;r_n2!=2I zwS+CNT6O@GjG9~pyzPKY7UzvZ!0=R|hq+10K$<+lHsac>v=ejnaWyRiTqW#NpBj?9 zX4WC@OBu`((yEW)TDn|Fa}T~ZXNcDkK%`v3fh?_Hn~6$f1IRyRA2`}8#qHSs#S%^7Fm4awjGiZ& zCi2_hAP|`DQDj*(%V9K?ngo3W$D6_w1ok^&p;*@|ra+RoCuGQ-iDu|DC?x2-N2Oth zRe)KTINNCdi+_AfB(!fQbTGa*DxMLEN0;rJqvEk8?pxv;YjZ@VYp7L$wX0RZvS|uCF>E12$_| z8PKw{m5hCqbRs<y2TnYP9I`c_WsRypD{0N{4vkTS*=75cBBau= zfU_CaglCOK;YrazL~StkOXAQP@xc&0K!3%4mdSIJM>CFVe`kr57-QFnj+3&zqNO~~h7x@RxlYxk}` za8qbQ1cOivLK=L)DB;CBJV_yx2j5Igd@&~5v@iY%#sR}5lgat!JKy|nd2haly~g^A zv$bZan$H#k%zN{gErlDF`F!;M>Ue1`n{1nZZDD^H%n+tw_ZxD+P&)@!PH)^;T=}Ll zvUY7D?yWDMdw=ET>JqLm-F8+MC%a$$G%NZn$9JSq+?Af~Im+R}_Psy~ zTHYD5EZ*Z8)sQ7SAxkY7yL78#zPfRKp?h&*UZ~kjE7e*ezbPs`0Hyw zUtan6n4aeD+{U)*cF*i(oAv3NJ?4pCcHLm_FzFZFcFL8i!r{phAf#o3oU4NePE|@S zQ%c_iUQ$5b4@X-VF*oy3Y-3;^W7{1MDRHQYkcv1-KnH+Y2*8_#nY=~%(w-+6G(-D~ z{o#pfG6e#GXfMSYM8Y{RMTZFiqqPhYK#b(jZURO6{X@cB-o##FFWfu-;KqSROZQJT z-%{P>#r2zCcb9({*wxf!zV^zm=6<3udL@b{ZNjZgKE=MI+0K6c;>`1Binc z0Cb>OgM<@ypXk(UxrE-H;)Hq0UiDEZU>L<1H=ha3W(A)*0kOnwczBm zC%LP^6Hzb*Da;;;@1f>&Y$QFX5qDyM#LZ#0&9gB!ggCDM0fk_j&qhl%?amvSc1J5j zWm)I|;C@Ow`P_U5+_~m7O#3#poJ2M#ke*ZN?`0t=%#gJEZ*5{Pvlk!SUb(b(cWI`3 z_KUU8&+#1_XYT&`?Zz*s%H0cJPMBvmvA+#=(qQlTAbb_CLCLM8(=N0Cs&2z^5(U?) zLs6#vW*%(qkrG-hfHLSJNYE@r;Dj>;^Id^H(KPIX(Mq|diD|~jRq`>LN*hQ~3{xs@ zkLUtA0ZG)$Ld?~MXT1cCYrEc#)JyhwoTvyxDL`M3m_be!QYJtuQQ2|S7|BQuX>h8B zW1zh!n5KFGyr*LIRZvT1!7yfYn)7r(>7bjJ4K~TPM|6-UL5jWlEcrY_yEOcYNzTeQNqo&F(-%zg_yS&P?VDlF77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|g8-uxgA@-J7Z*^Iv7r!?v5^#m5(5Aj5-~ym diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml index 57ec04a89be..ea59d3f3d30 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,27 +25,27 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: backend: - serviceName: "24" - servicePort: "25" + serviceName: "18" + servicePort: "19" rules: - - host: "28" + - host: "22" http: paths: - backend: - serviceName: "30" - servicePort: -213805612 - path: "29" + serviceName: "24" + servicePort: "25" + path: "23" tls: - hosts: - - "26" - secretName: "27" + - "20" + secretName: "21" status: loadBalancer: ingress: - - hostname: "32" - ip: "31" + - hostname: "27" + ip: "26" diff --git a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.json b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.json index e1fe21991d7..948de505388 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.json +++ b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,16 +35,15 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "runtimeHandler": "24", + "runtimeHandler": "18", "overhead": { "podFixed": { - "ǸƢ6/": "569" + "qJ枊a8衍`Ĩ": "652" } } } diff --git a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.pb b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.pb index 9b6eb4d79da3acd29f4c88addd9c427613617325..323f4e871ac0b2be304d881579e00155d82d8a4e 100644 GIT binary patch delta 94 zcmZ3=^pkOdw$=$ouBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a y6U#yvwI`m|RuPipVluQ4lHd~K;w|)gHm@tu;>E(=gd;12Sh<+ZOpT-%lo$Z>z!p&e delta 138 zcmV;50CoTQ0i^nbD=#V#3JwYa sF*p(k3I+-SF*yrGBgqq3J(ef$GFC#HZKwd3IjDZIT`>W0PPegX#fBK diff --git a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.yaml b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.yaml index 11f5571c0e5..0314aa8e2cf 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,11 +25,11 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: overhead: podFixed: - ǸƢ6/: "569" - runtimeHandler: "24" + qJ枊a8衍`Ĩ: "652" + runtimeHandler: "18" diff --git a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.json b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.json index cc0ce4c55d6..34470b7fcc3 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.json +++ b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,15 +35,14 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, - "handler": "24", + "handler": "18", "overhead": { "podFixed": { - "ǸƢ6/": "569" + "qJ枊a8衍`Ĩ": "652" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.pb b/staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1beta1.RuntimeClass.pb index 83fde0a737561c72d704c471272bb73d023da0cd..0773433618e301e53a6f6c13d19d14ae3d0a235d 100644 GIT binary patch delta 92 zcmZ3)^o?naD=jJz3JwYa qF*p(k3I+-SF*yuk0U`zH PlaIxUDgrS%8UP{yDaIe= delta 184 zcmV;p07w6m0^S0UAsn{?3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aY~Wf85S}WF*Z3i zG%__XH#9giI5sslFfubakxNtoJ&~X*aw-rC4hjM>I1&g71_}Z(IT8R8S_rJ}io~DJ z(Tj=!5+w>BHZRJRR>hhq#J|Xj=aio4u#oAZi^qji$DziLQzR=A0x~oh03smgiI?WI mo#n8<<-LI9x}NBssY2zmg?Kb2Vd<~Ga>b4+0x~rk03rZD`2NLM*~<;-rXZB5s;UUe6d6 zTu@gipZe0H9;eRMa*?!dUA2zdhjIHLZmkh(&3Q{1@+)&>@p@4agj@`CBNSar5M+N7#uy=_y z61mhdkA##URAi{^vEMvh1yBa$Z!>BNOKvIP0E|WzlcX7QpzYKBK0`n?Jh_6!4xNLn zb~P>{j%TPH?+H_^lS&-ZSk+ZsrrNFK=eagwox{9FJ?5br&jyoOBQb|PzSdzXlYDyK z*;s$RxjrU#trh3OP9{%3A3hrEVhykRACK?frby%23-~J=ryEwf2`ddiF Gnqoik5q;eN delta 309 zcmX@k@{xIhj`x0Mt{aS8j7CC?#!`$XN{psjN=I5>F77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|8I( zm;ziLyq=*8>m2FIJYIL7Om#skd{G?KFASoQyW>)kEK8;>yx0bOWp zAjH8jY4h!aS^^9bjaTOEWL9|hdf)e-|ABx}qvh?(Ei4At9<=NR@&7YQF(@$r0I95<=KlZx|Nj9Hi?y8Z z1wa5u0a6tT0aFqX3IZ`W5&|(f8UivfA_6ioS}zI~E5f}`2=woP&!5i5*|Px<^@#V*u+`n%`~hkn3Im z$*se#V^9(m2#tt@&HwA!#fJe9qrnaD?BO?3JwYa zF*p(k3I+-SF*ySgHmCAz2t;4QkP$WskhRK!^6$sd{w$kA7;h9|! zq}iy;|GfRTmH}ci3K&1bxWtpjy6LTp#E#{Jhvk2VyEDdy!>myf76|5sxcu*rx4M7< z5a92Dm&=BVu!aF@APNTPsF&ostr8Xpm7l!wxb5}ko&gZq{jc7~kj0PT0dN3#0Du7i ziU9@+0x~!d0FnU&3IZ}YngIecF`@wiGcu|H4#KSHy_z}5j^}``=9q)B0XPaE#FHS# zl~6|ImV(BJ=9Z2@Pd3D~L*})V#jxe0oyEQ=EfN$6nT*B1$hpM1LJ+T^)y4I&-Ii#& Y0R##HGcdvd2nqr-GZF$bG#UUR01m*<3;+NC diff --git a/staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.PodSecurityPolicy.yaml b/staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.PodSecurityPolicy.yaml index e58da176f81..b1f6983a13c 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.PodSecurityPolicy.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.PodSecurityPolicy.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,67 +25,67 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: allowPrivilegeEscalation: false allowedCSIDrivers: - - name: "30" + - name: "24" allowedCapabilities: - - SǡƏ + - ɑ allowedFlexVolumes: - - driver: "29" + - driver: "23" allowedHostPaths: - - pathPrefix: "28" + - pathPrefix: "22" + readOnly: true allowedProcMountTypes: - - ¬轚9Ȏ瀮昃 + - ǣ偐圠=l畣潁 allowedUnsafeSysctls: - - "31" + - "25" defaultAddCapabilities: - - ǸƢ6/ + - qJ枊a8衍`Ĩ defaultAllowPrivilegeEscalation: false forbiddenSysctls: - - "32" + - "26" fsGroup: ranges: - - max: -2225037131652530471 - min: -7003704988542234731 - rule: 託仭 + - max: 3058121789713366904 + min: 8572633303645749270 + rule: UɦOŖ hostIPC: true hostNetwork: true - hostPID: true hostPorts: - - max: -1487653240 - min: -827642756 + - max: 1575426699 + min: -321835912 privileged: true requiredDropCapabilities: - - VŚ(ĿȊ甞谐颋 + - .蘯6ċV夸 runAsGroup: ranges: - - max: 7506785378065797295 - min: 4788190398976706073 - rule: ē ƕP喂ƈ斎AO6ĴC浔Ű壝ž(- + - max: 2607109693095207331 + min: -8679730194918865907 + rule: ³;Ơ歿:狞夌碕ʂɭîcP runAsUser: ranges: - - max: -7606590868934742876 - min: 6715860513467504728 - rule: :狞夌碕ʂɭîcP$Iņɖ + - max: -90233536926144532 + min: 8901768137137123048 + rule: +½H牗洝尿彀亞螩 runtimeClass: allowedRuntimeClassNames: - - "33" - defaultRuntimeClassName: "34" + - "27" + defaultRuntimeClassName: "28" seLinux: - rule: "" + rule: S seLinuxOptions: - level: "27" - role: "25" - type: "26" - user: "24" + level: "21" + role: "19" + type: "20" + user: "18" supplementalGroups: ranges: - - max: -8763960668058519584 - min: -9190478501544852634 - rule: ?øēƺ魋Ď儇击3ƆìQ + - max: -236027028483226507 + min: -5498021643263379468 + rule: ɖ橙9 volumes: - - $+½H牗洝尿彀亞螩B峅 + - ʤ脽ěĂ凗蓏Ŋ蛊ĉy緅縕>Ž diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.json b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.json index 2f02c3ed951..72a4ec1a1de 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.json +++ b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,27 +35,26 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "rules": [ { "verbs": [ - "24" + "18" ], "apiGroups": [ - "25" + "19" ], "resources": [ - "26" + "20" ], "resourceNames": [ - "27" + "21" ], "nonResourceURLs": [ - "28" + "22" ] } ], @@ -63,14 +62,14 @@ "clusterRoleSelectors": [ { "matchLabels": { - "An---v_-5-_8LXP-o-9..1l-_5---5w9vL_-.M.y._-_R58_HLU..8._Q": "7-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_-q" + "8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4": "3L.u" }, "matchExpressions": [ { - "key": "1d3-7-fP81.-.9Vdx.TB_M-H5", - "operator": "NotIn", + "key": "S91.e5K-_e63_-_3-h", + "operator": "In", "values": [ - "Q42M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.Wu5--.H" + "3_bQw.-dG6c-.x" ] } ] diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.pb b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.pb index 13669a15a56b58fc25fc420f714943f8be510dbc..e805cf862f7ffa8747f64a1a049ba56a8766784a 100644 GIT binary patch delta 178 zcmV~$I|{-u7y#fVI%RMOoicV1Y57C)Cr#T6_`dTZCR>d|;Rhl^EP?_hwAkp&^UAfPwPC3&B0E84H7IaL78^T+_OwBY?I4`$^E3smHlq8&|r0@(=7n#69^!cuN9#U8qqlc5)l^z z-Om$X0nd?uHie=fUqMtzC2QG-#+s}HN&p%nKx!~(?i@Q5S+^JEnJzX7y4D_BavCo9 za8y(d0_tjGh~*3wAQ0BfM*B3|vUSPh1%Q?V9f2+pc|MY-JJ}4irIX#NcmQd_T8@wk Rx~zKvZl6ULF|cEa*gp@?T+sjk diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.yaml b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.yaml index 5757c496ea1..28a134c0e18 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRole.yaml @@ -1,12 +1,12 @@ aggregationRule: clusterRoleSelectors: - matchExpressions: - - key: 1d3-7-fP81.-.9Vdx.TB_M-H5 - operator: NotIn + - key: S91.e5K-_e63_-_3-h + operator: In values: - - Q42M--n1-p5.3___47._49pIB_o61ISU4--A_.XK_._M9T9sH.Wu5--.H + - 3_bQw.-dG6c-.x matchLabels: - An---v_-5-_8LXP-o-9..1l-_5---5w9vL_-.M.y._-_R58_HLU..8._Q: 7-dG6c-.6--_x.--0wmZk1_8._3s_-_Bq.m_-q + 8ThjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4: 3L.u apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: @@ -23,9 +23,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -37,17 +34,17 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" rules: - apiGroups: - - "25" + - "19" nonResourceURLs: - - "28" + - "22" resourceNames: - - "27" + - "21" resources: - - "26" + - "20" verbs: - - "24" + - "18" diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json index b92b60f1803..f6ac580ac72 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json +++ b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,22 +35,21 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "subjects": [ { - "kind": "24", - "apiGroup": "25", - "name": "26", - "namespace": "27" + "kind": "18", + "apiGroup": "19", + "name": "20", + "namespace": "21" } ], "roleRef": { - "apiGroup": "28", - "kind": "29", - "name": "30" + "apiGroup": "22", + "kind": "23", + "name": "24" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1.ClusterRoleBinding.pb index 92d59c41685b48b1af64f272e23ab7e41735931a..622fcf92d51bd785f691dfb47e9520e7b2bd3a94 100644 GIT binary patch delta 94 zcmWN_u?>JQ391XjS#;8 delta 145 zcmZo?+Ql@%()%|f*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1j}rJ8_4$nU(+-9~YCM vg%Af98<4gXVh|GGVlpxjVlpz7VlpyQVlpz9;sJ_S07WdNn2Zgi7?cbwQ0%}B8 lC&EPw*D?o>-nc2}b?iv%P2M^~GAzmTq#Q^klB(ar_5nbD=aDy3JwYa pF*p(k3I+-SF*yJQ3+&+M)}7=6Ppio!w{SR delta 145 zcmZo*+RQY;$on@V*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1g*5b?&?2@f8ypj zzxtOxeDtF1O&CE=j3727aYPafv{n|aif!tZPn>e7%=4a;&hyi`@_Pq4Qd6u2V{yZu9QgTzWuljUrlWpZkH!;Iybw;5lgT9)w$iqe?^ Z3Ii3VgM( delta 338 zcmWNLy-EW?6h^Zf6q!O~v2n{37Lj|&&hE_46c$P2#w3zx5`!RDO|;Sc5lv!cWn&Ob zmr4*V1PeTL91}5I`zlD?%GIqH_WyA}$8H zpC`Zqo+ANm3PnM_f~b&6*0K+cHCYFg05n8^)L_uuId&+rZZFC+U2GC`tzEX{G+glE zsHhwS)YZli%NZ&_Agq~<_Gz|d>ypO{04)bP0$n2Vd?ZhIvKeYiC%aYg0MdlD93d5S QS@#0mK8r45V8;@%e@0Ls=fIH2&`>)DJR|*Mp^DW9hVc;H delta 145 zcmeBWI>0o+-upKr*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1I%oJ8_@3nU(+-9~YCM vg%Af98<4gXVh|GGVlpxjVlpz7VlpyQVlpz9;sJ_S07WdNn2Zgi7?cFoOy_AcmgZTRt3?9=Hn*oRI@cL`~@Q kW?ERZmUZapO&c|z`-bIwmoR%LHiFn1g_?v$A;T1>AM(}^5dZ)H delta 135 zcmV;20C@lP0jL6yF-!3Q3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgwjb0X>nhD=aDy3JwYa pF*p(k3I+-SF*y4kCQ|?a diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.Role.yaml b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.Role.yaml index 5799c9346d7..06386c41bf5 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.Role.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.Role.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,17 +25,17 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" rules: - apiGroups: - - "25" + - "19" nonResourceURLs: - - "28" + - "22" resourceNames: - - "27" + - "21" resources: - - "26" + - "20" verbs: - - "24" + - "18" diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json index 5c047d71623..c3cbfb3ca7b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json +++ b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,22 +35,21 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "subjects": [ { - "kind": "24", - "apiVersion": "25", - "name": "26", - "namespace": "27" + "kind": "18", + "apiVersion": "19", + "name": "20", + "namespace": "21" } ], "roleRef": { - "apiGroup": "28", - "kind": "29", - "name": "30" + "apiGroup": "22", + "kind": "23", + "name": "24" } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.pb b/staging/src/k8s.io/api/testdata/HEAD/rbac.authorization.k8s.io.v1alpha1.RoleBinding.pb index 0ddd87f29daffe690fcdfd128dfc1061110fdb39..d26ab09036f1658c484c3c62e5d8bc1cf4d596e7 100644 GIT binary patch delta 94 zcmWN_u?>JQ39 uq%qNqUR4Yxqb*hHJjnzp=eANl-#qxvu~yHz1cpS0hSo9Q8RZ`fO>91WClI;- delta 145 zcmZo;+Q~G*!uvNP*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb15n&}` ztQ1?572%}qi+W#VC)gVa0_+in-TuMdz!?r=vYgHHoKFpH>M=jl4xx)o@+uucSy^2| YsiCHLa9}N6Zt@F@~ delta 338 zcmWNLKTASU7>B)Aia0~W#ictsG#KxT_uPBVJ!fdprE6+vsYwuTqP0~1!BU%=T9P0) zryyzw8rmXgy%2qa`T&J}gU0UkgXejM-2Z@DXWSYBr(x@0~lb6+t)Dl}{ zrlYI{HXp6FVpf8g+_OwBY?I5R$^DecmHlq8&|pobGi?AE5C|YusF$Dv8qqlh5)l_e zJtz=h5zmo;wuGXfP(@ToWoyNU*1Bv0N&p%mKzcYl**$V7vTi@hvpqZ^=vjMg*=f1p z!(mA|2&ikV5mvHPgg{txo1N2K+ty`|7XjK1bOpLZH%a3>v=*d R>Wc0MxN{a=#K4XvWB)BzT0Ls&igkb*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb1;M1& delta 135 zcmV;20C@lO0jC0xFiY_P3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgwga0X>ngD=aDy3JwYa pF*p(k3I+-SF*yJQ3I&kIPyz^1UhulSu;3);N uNO`1!UR4Yx*_JA`%rZmLxveyv?=<+%u~yHz1cpS0hSo9Q8R;JjO>91U!4S0o delta 145 zcmZo=+QBrz-1|2p*9}H4Mk66cV<|=xB}P*%r6a8`7k3|7UFh{}URR>Ui-o-jM^>Di zq4#3Odb19xnJ8_$~nU(+-9~YCM vg%Af98<4gXVh|GGVlpxjVlpz7VlpyQVlpz9;sJ_S07WdNn2Zgi7?cncD>^C=3JwYa zF*p(k3I+-SF*yGE4sf3fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgwmc0X>niD>^C=3JwYa zF*p(k3I+-SF*ynhD>^C=3JwYa zF*p(k3I+-SF*y_E5+6Yr@c<ugv(7>K+@4sEV(sgxLA@4(8&!F`_6PtY|yU+^|s)CuLA9oGy=^8z}@5%wP zY^e9l<+BYH*Y~_T{K=L%!{_!6zPB8*>EH{D5BPW+!mk=aNNY#ID#6yQj0If)Pqofh>Btx?Oh?En-3!FMDNaZEd`S$4T&_ zGI82iyD=tB3)Bh{D?-vuF(Gv0+WIz@f-@Ba@rF2VTtEYV zVSB{pQ5`p=acA0@cF(?(cGN>EK>D zb}=Rhl9sCjEjJF|J$G>U$i7P_2fv;lOvYX?5tnI7qiGNX2O((q>9+n05C4M?Wl=7J zeZj!Y!w*Z{edSq{p8}QyEF$uSDTdk|;P`mE?RS^1hPXSE>?_O3y`&5pY1Mu{CO%_42S{4H(T^VJr&Vw8=WCk>yP*_q29yDm;ad@bcj}u2_U#+^Z$?H>fdnw4BiN%=GJET{kv^0; z_|NYrCUl|c;5C{4AN%{pr;L1Kp%35E-3W%Vkk;}L?MHLm544F}q=m#*hClZl>mCP% z-{1V`?BhkELkL>8P|-r878JU=>cs`=XSq0;B#xmmT>PdS*L9s_Y?XI z;T;HPu?uE2nC2J*JmcZT(yr6)F5m{efMS=LC4sBXgo}_-#>vXb+C38^v$yv>_~F4A zCVHIHjOVlv#c6nQ=>F*AyY_Of7-yMNNAK+1`^VYgdnf{(XLj`5?wgCu0_D+P)LTI6L+ zc!-kQV0pB(m|CnY&r(pMNCp1LEtZ=20|PPe!-VAa_F`f%#u!whXIkAK=bZV@W6t@` zPJ?c?$Q)uf*KOIduCcz^Z_v&Dx{aks{!qutpmJ=SyJjoj%Qo&H$o1(j=gE#G&kj?Z8!R)WhQ5<1jMs(^>F zzWd9bTf1Ajc5f=TDhBp{xp&|3@4GIe)g=T)6zS?G2#P6Y!TL18j60Zx?zF`_^OxI( z-+#M#D0{tiQwB2@SQ<59CU#;bvuHkqDmuG(Fq?177JH8kb$hSoyS}*gRaNPYws%Gk z?VdY2*pYj04OELVDKZVhHJwaKK*!XgeN)JBL>3ScH%2>ZBOx~j-uTBoE?DS^4R3kc zQ%ynyqE>>ZUe|E1Aue6M-CsgWf@S^=zn-ok&nxXG)ho97UhNW94?S z-M|uXhRumrPVq~PPU$O6HMJi1y(D=tS-CYyxO#b2QknRkzkJJDKk>YkiCDZS@niz` zui$hM!C^pg$ef5w2AhK&(x<@^U`gk3GARy(GnG6BkOC;OkvnnHaEfi@*aV9J=7tEt zQkFAe@s#EM0aS>PJ}4ox!4P!T*y%I*o{R4M9mT^vjq`G!7S0_hwDuMT&Rjo8pCL~r zg^o*O2R_K}ZK)m_pm4PgBWEV0N{WTDZ{GU(`lEl~Lut!R0UQCW?Gr!r-$iMZnF$XD9IDt2)cWN^edj(8blM&UwK z?SO`?NIC{l&@k{FK~ALC!!QxFt^?b0!K+ylkg8!9I&`oWF4i(*a1~fPAxlG+)_YJy zpluxk_c(?n#>|1m#gG<D}) zLtq<};2>lf2vrUuS_(o}SU1rjMD`;xi~ z&YbDSHly=#!b2(2M+P2t|2fW$lOC_f1)XWaqzO~@*`Mwoo$$j?Y^dW=>ST8Kw_@kH zU9SUwT&K=o>dK)z$OdO季Cʖ畬x骀Š - diskName: "111" - diskURI: "112" - fsType: "113" - kind: 湙騘 - readOnly: true + cachingMode: 穠C]躢|)黰eȪ嵛4$%Qɰ + diskName: "105" + diskURI: "106" + fsType: "107" + kind: Ï抴ŨfZhUʎ浵ɲõTo&蕭k + readOnly: false azureFile: - secretName: "97" - shareName: "98" + readOnly: true + secretName: "91" + shareName: "92" cephfs: monitors: - - "82" - path: "83" - secretFile: "85" + - "76" + path: "77" + readOnly: true + secretFile: "79" secretRef: - name: "86" - user: "84" + name: "80" + user: "78" cinder: - fsType: "80" + fsType: "74" secretRef: - name: "81" - volumeID: "79" + name: "75" + volumeID: "73" configMap: - defaultMode: -1697933829 + defaultMode: -958191807 items: - - key: "100" - mode: 587975894 - path: "101" - name: "99" - optional: false + - key: "94" + mode: -513127725 + path: "95" + name: "93" + optional: true csi: - driver: "143" - fsType: "144" + driver: "137" + fsType: "138" nodePublishSecretRef: - name: "147" - readOnly: false + name: "141" + readOnly: true volumeAttributes: - "145": "146" + "139": "140" downwardAPI: - defaultMode: -675641027 + defaultMode: 1169718433 items: - fieldRef: - apiVersion: "90" - fieldPath: "91" - mode: -836939996 - path: "89" + apiVersion: "84" + fieldPath: "85" + mode: 345648859 + path: "83" resourceFieldRef: - containerName: "92" - divisor: "458" - resource: "93" + containerName: "86" + divisor: "965" + resource: "87" emptyDir: - medium: _痸荎僋bŭ - sizeLimit: "837" + sizeLimit: "700" fc: - fsType: "95" - lun: 599310027 + fsType: "89" + lun: -460478410 targetWWNs: - - "94" + - "88" wwids: - - "96" + - "90" flexVolume: - driver: "74" - fsType: "75" + driver: "68" + fsType: "69" options: - "77": "78" - readOnly: true + "71": "72" secretRef: - name: "76" + name: "70" flocker: - datasetName: "87" - datasetUUID: "88" + datasetName: "81" + datasetUUID: "82" gcePersistentDisk: - fsType: "46" - partition: -656741678 - pdName: "45" + fsType: "40" + partition: -1215463021 + pdName: "39" + readOnly: true gitRepo: - directory: "51" - repository: "49" - revision: "50" + directory: "45" + repository: "43" + revision: "44" glusterfs: - endpoints: "64" - path: "65" + endpoints: "58" + path: "59" hostPath: - path: "44" - type: 訩塶"=y钡n)İ笓珣筩Ɛ + path: "38" + type: 3fƻfʣ繡楙¯ĦE iscsi: - fsType: "60" - initiatorName: "63" - iqn: "58" - iscsiInterface: "59" - lun: 578888856 + fsType: "54" + initiatorName: "57" + iqn: "52" + iscsiInterface: "53" + lun: -388204860 portals: - - "61" + - "55" readOnly: true secretRef: - name: "62" - targetPortal: "57" - name: "43" + name: "56" + targetPortal: "51" + name: "37" nfs: - path: "56" + path: "50" readOnly: true - server: "55" + server: "49" persistentVolumeClaim: - claimName: "66" + claimName: "60" photonPersistentDisk: - fsType: "115" - pdID: "114" + fsType: "109" + pdID: "108" portworxVolume: - fsType: "130" - volumeID: "129" + fsType: "124" + readOnly: true + volumeID: "123" projected: - defaultMode: 411507758 + defaultMode: 1366821517 sources: - configMap: items: - - key: "125" - mode: -1562726486 - path: "126" - name: "124" + - key: "119" + mode: -1120128337 + path: "120" + name: "118" optional: false downwardAPI: items: - fieldRef: - apiVersion: "120" - fieldPath: "121" - mode: -1545709933 - path: "119" + apiVersion: "114" + fieldPath: "115" + mode: -1996616480 + path: "113" resourceFieldRef: - containerName: "122" - divisor: "354" - resource: "123" + containerName: "116" + divisor: "85" + resource: "117" secret: items: - - key: "117" - mode: 663386308 - path: "118" - name: "116" - optional: true + - key: "111" + mode: -163325250 + path: "112" + name: "110" + optional: false serviceAccountToken: - audience: "127" - expirationSeconds: 6413320236483872038 - path: "128" + audience: "121" + expirationSeconds: -1239370187818888272 + path: "122" quobyte: - group: "109" - readOnly: true - registry: "106" - tenant: "110" - user: "108" - volume: "107" + group: "103" + registry: "100" + tenant: "104" + user: "102" + volume: "101" rbd: - fsType: "69" - image: "68" - keyring: "72" + fsType: "63" + image: "62" + keyring: "66" monitors: - - "67" - pool: "70" + - "61" + pool: "64" readOnly: true secretRef: - name: "73" - user: "71" + name: "67" + user: "65" scaleIO: - fsType: "138" - gateway: "131" - protectionDomain: "134" + fsType: "132" + gateway: "125" + protectionDomain: "128" secretRef: - name: "133" + name: "127" sslEnabled: true - storageMode: "136" - storagePool: "135" - system: "132" - volumeName: "137" + storageMode: "130" + storagePool: "129" + system: "126" + volumeName: "131" secret: - defaultMode: -649405296 + defaultMode: -999327618 items: - - key: "53" - mode: 614353626 - path: "54" + - key: "47" + mode: -815194340 + path: "48" optional: false - secretName: "52" + secretName: "46" storageos: - fsType: "141" + fsType: "135" secretRef: - name: "142" - volumeName: "139" - volumeNamespace: "140" + name: "136" + volumeName: "133" + volumeNamespace: "134" vsphereVolume: - fsType: "103" - storagePolicyID: "105" - storagePolicyName: "104" - volumePath: "102" + fsType: "97" + storagePolicyID: "99" + storagePolicyName: "98" + volumePath: "96" diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.json b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.json index ecc6d4afea1..69932a96092 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.json +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,28 +35,27 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, - "provisioner": "24", + "provisioner": "18", "parameters": { - "25": "26" + "19": "20" }, - "reclaimPolicy": "ǸƢ6/", + "reclaimPolicy": "qJ枊a8衍`Ĩ", "mountOptions": [ - "27" + "21" ], "allowVolumeExpansion": true, - "volumeBindingMode": "ĉy緅縕\u003eŽ燹憍峕?狱³-Ǐ", + "volumeBindingMode": "", "allowedTopologies": [ { "matchLabelExpressions": [ { - "key": "28", + "key": "22", "values": [ - "29" + "23" ] } ] diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.pb b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.StorageClass.pb index fd0c46dd649951aa0972d9745be8f6a74c9d9cdc..25e05aea56a3f2fa9c61f87370e35eb19c46c860 100644 GIT binary patch delta 111 zcmcb})Xp?PL+d6Z*HT6Ui-o-jM^>Di zq4#3Odb1Ž燹憍峕?狱³-Ǐ + "19": "20" +provisioner: "18" +reclaimPolicy: qJ枊a8衍`Ĩ +volumeBindingMode: "" diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json index 9c18eb3d616..4850882f9e8 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,251 +35,247 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "attacher": "24", + "attacher": "18", "source": { - "persistentVolumeName": "25", + "persistentVolumeName": "19", "inlineVolumeSpec": { "capacity": { - "ǸƢ6/": "569" + "qJ枊a8衍`Ĩ": "652" }, "gcePersistentDisk": { - "pdName": "26", - "fsType": "27", - "partition": -799278564, - "readOnly": true + "pdName": "20", + "fsType": "21", + "partition": 1847377175 }, "awsElasticBlockStore": { - "volumeID": "28", - "fsType": "29", - "partition": 1749009427, - "readOnly": true + "volumeID": "22", + "fsType": "23", + "partition": -387137265 }, "hostPath": { - "path": "30", - "type": "甞谐颋DžS" + "path": "24", + "type": "夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉy" }, "glusterfs": { - "endpoints": "31", - "path": "32", - "endpointsNamespace": "33" + "endpoints": "25", + "path": "26", + "readOnly": true, + "endpointsNamespace": "27" }, "nfs": { - "server": "34", - "path": "35", - "readOnly": true + "server": "28", + "path": "29" }, "rbd": { "monitors": [ - "36" + "30" ], - "image": "37", - "fsType": "38", - "pool": "39", - "user": "40", - "keyring": "41", + "image": "31", + "fsType": "32", + "pool": "33", + "user": "34", + "keyring": "35", "secretRef": { - "name": "42", - "namespace": "43" + "name": "36", + "namespace": "37" } }, "iscsi": { - "targetPortal": "44", - "iqn": "45", - "lun": -443114323, - "iscsiInterface": "46", - "fsType": "47", + "targetPortal": "38", + "iqn": "39", + "lun": 2048967527, + "iscsiInterface": "40", + "fsType": "41", + "readOnly": true, "portals": [ - "48" + "42" ], "secretRef": { - "name": "49", - "namespace": "50" + "name": "43", + "namespace": "44" }, - "initiatorName": "51" + "initiatorName": "45" }, "cinder": { - "volumeID": "52", - "fsType": "53", + "volumeID": "46", + "fsType": "47", + "readOnly": true, "secretRef": { - "name": "54", - "namespace": "55" + "name": "48", + "namespace": "49" } }, "cephfs": { "monitors": [ - "56" + "50" ], - "path": "57", - "user": "58", - "secretFile": "59", + "path": "51", + "user": "52", + "secretFile": "53", "secretRef": { - "name": "60", - "namespace": "61" + "name": "54", + "namespace": "55" }, "readOnly": true }, "fc": { "targetWWNs": [ - "62" + "56" ], - "lun": 2072604405, - "fsType": "63", + "lun": -616291512, + "fsType": "57", "wwids": [ - "64" + "58" ] }, "flocker": { - "datasetName": "65", - "datasetUUID": "66" + "datasetName": "59", + "datasetUUID": "60" }, "flexVolume": { - "driver": "67", - "fsType": "68", + "driver": "61", + "fsType": "62", "secretRef": { - "name": "69", - "namespace": "70" + "name": "63", + "namespace": "64" }, "options": { - "71": "72" + "65": "66" } }, "azureFile": { - "secretName": "73", - "shareName": "74", - "readOnly": true, - "secretNamespace": "75" + "secretName": "67", + "shareName": "68", + "secretNamespace": "69" }, "vsphereVolume": { - "volumePath": "76", - "fsType": "77", - "storagePolicyName": "78", - "storagePolicyID": "79" + "volumePath": "70", + "fsType": "71", + "storagePolicyName": "72", + "storagePolicyID": "73" }, "quobyte": { - "registry": "80", - "volume": "81", + "registry": "74", + "volume": "75", "readOnly": true, - "user": "82", - "group": "83", - "tenant": "84" + "user": "76", + "group": "77", + "tenant": "78" }, "azureDisk": { - "diskName": "85", - "diskURI": "86", - "cachingMode": "狞夌碕ʂɭ", - "fsType": "87", - "readOnly": true, - "kind": "P$Iņɖ橙9ȫŚʒ" + "diskName": "79", + "diskURI": "80", + "cachingMode": "x", + "fsType": "81", + "readOnly": false, + "kind": "a鯿rŎǀ朲^苣" }, "photonPersistentDisk": { - "pdID": "88", - "fsType": "89" + "pdID": "82", + "fsType": "83" }, "portworxVolume": { - "volumeID": "90", - "fsType": "91" - }, - "scaleIO": { - "gateway": "92", - "system": "93", - "secretRef": { - "name": "94", - "namespace": "95" - }, - "sslEnabled": true, - "protectionDomain": "96", - "storagePool": "97", - "storageMode": "98", - "volumeName": "99", - "fsType": "100", + "volumeID": "84", + "fsType": "85", "readOnly": true }, + "scaleIO": { + "gateway": "86", + "system": "87", + "secretRef": { + "name": "88", + "namespace": "89" + }, + "protectionDomain": "90", + "storagePool": "91", + "storageMode": "92", + "volumeName": "93", + "fsType": "94" + }, "local": { - "path": "101", - "fsType": "102" + "path": "95", + "fsType": "96" }, "storageos": { - "volumeName": "103", - "volumeNamespace": "104", - "fsType": "105", - "readOnly": true, + "volumeName": "97", + "volumeNamespace": "98", + "fsType": "99", "secretRef": { - "kind": "106", - "namespace": "107", - "name": "108", - "uid": "ȸd賑'üA謥ǣ偐圠=l", - "apiVersion": "109", - "resourceVersion": "110", - "fieldPath": "111" + "kind": "100", + "namespace": "101", + "name": "102", + "uid": "ȮO励鹗塢ē ƕP", + "apiVersion": "103", + "resourceVersion": "104", + "fieldPath": "105" } }, "csi": { - "driver": "112", - "volumeHandle": "113", - "fsType": "114", + "driver": "106", + "volumeHandle": "107", + "readOnly": true, + "fsType": "108", "volumeAttributes": { - "115": "116" + "109": "110" }, "controllerPublishSecretRef": { - "name": "117", - "namespace": "118" + "name": "111", + "namespace": "112" }, "nodeStageSecretRef": { - "name": "119", - "namespace": "120" + "name": "113", + "namespace": "114" }, "nodePublishSecretRef": { - "name": "121", - "namespace": "122" + "name": "115", + "namespace": "116" }, "controllerExpandSecretRef": { - "name": "123", - "namespace": "124" + "name": "117", + "namespace": "118" } }, "accessModes": [ - "ƺ魋Ď儇击3ƆìQ" + "d賑'üA謥ǣ偐圠=" ], "claimRef": { - "kind": "125", - "namespace": "126", - "name": "127", - "uid": "艋涽託仭w-檮Ǣ冖ž琔n宂¬轚", - "apiVersion": "128", - "resourceVersion": "129", - "fieldPath": "130" + "kind": "119", + "namespace": "120", + "name": "121", + "apiVersion": "122", + "resourceVersion": "123", + "fieldPath": "124" }, - "persistentVolumeReclaimPolicy": "£趕ã/鈱$-议}ȧ外ĺ", - "storageClassName": "131", + "persistentVolumeReclaimPolicy": "錕?øēƺ魋Ď儇击3ƆìQ喞艋", + "storageClassName": "125", "mountOptions": [ - "132" + "126" ], - "volumeMode": "譋娲瘹ɭȊɚɎ(", + "volumeMode": "½", "nodeAffinity": { "required": { "nodeSelectorTerms": [ { "matchExpressions": [ { - "key": "133", - "operator": "f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1", + "key": "127", + "operator": "檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2", "values": [ - "134" + "128" ] } ], "matchFields": [ { - "key": "135", - "operator": "l恕ɍȇ廄裭4懙鏮嵒", + "key": "129", + "operator": "-议}ȧ外ĺ稥氹Ç|¶", "values": [ - "136" + "130" ] } ] @@ -289,20 +285,20 @@ } } }, - "nodeName": "137" + "nodeName": "131" }, "status": { - "attached": false, + "attached": true, "attachmentMetadata": { - "138": "139" + "132": "133" }, "attachError": { - "time": "2498-07-05T18:17:05Z", - "message": "140" + "time": "2327-07-20T07:31:37Z", + "message": "134" }, "detachError": { - "time": "2336-02-05T15:38:29Z", - "message": "141" + "time": "2046-08-01T16:33:49Z", + "message": "135" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.pb b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.pb index 7aa28c086ae633f3d8d6266507ff0f4dd878b951..7de821c73dd23866d49ea3f2356420555aba1630 100644 GIT binary patch literal 1150 zcmX9+TWlLe6y2FZYDS`%Q7C4GDt8N_T4=gEGrKcu3DH`7MM8vD1yl)y0~XNIrX&GD zpi<(5m^zR+Bu!{*1)7Jbs?^O9)sLVZtv;s>P|hMZab=a+FtD1`>IQ$k9WQF%CYqR-rm%+FC0rB@1@^G$O0mW zQN&FoEacfpvR2o11QU)Y0_7;_J3e!``sI(zj{_rxffGrixo55D!m_k|U7xP>4| zk?Pz^P(ZQk9ElU`G84Pp+V*f?xH4JGzR^?3RmV=)80s1dbz@ibVb{x{`$6i{oy~kM zoXj=n&Qxah9107cmA*{vy*7EWK0dI!zC2wXehR8d`ezHM75zeCl;;8>l=;_G8GxOxgs_3eG{yU{HaB z6?aX{nT0vGF&7MTFA;%=4-vV~NVEZl3?9Tbh6jJxYGL8nShx;KV8Qko2S6)0#X>x3 zbYkHpTj313LV}}?L9Phe?3|Y%OS8*@DPf>hu|6& zR8mmsEVAJM6Dz43Q!uXzbn}73aNs6zz>+xN?Klt}#;h(9K)->15hVda!+|n!pfecR z;yMn6#Wi7J7OfQ@4RfD1m#4$?v*n3+^>l{~0nT6%30S-(^oUOKb&|et*c7}mYynVE zLu1#~m?btb*H|Psv8S=$zKNyA%4~hEae4f{(pUQ%iwo;>;XpnteE6Uh*Hv^y=0Io6 zwG10J#$e&l2NU+r<~ye!DqSg0RIfHKjg&{jp=_94;nm^N;$z{|Oyksu7JFLkC-K^9 z`xE34IY=IW!c5Y5{bF%_HXNR+e7%vMJRTM^Ym1H5vq5ciqrX^xe~@WcMR#d+K=0hs zC>BrFJ__fj%2zioEYv?)E@j_b`vOE<_Xj_;6G2pu#Thisxp^CjM1IPj8M32>CWNJl Q->)zA-||1khPeI#?A`V&$S zC5UOr){$fAxuJ48p1b;Xq&ORE=fS1Zujb|p(~ZIO=WZ^3$e&y4q`NFvxHff6&*qG~ zj%!jT_%DAB{1}ZVqbFLF*6ir@4~9PeA-RIuDplkW#5<}~BnY<5Beg2FsD>@3Z{OGN zuT11ePWGZIuYrH=!GmfMsR1_!w+Njdz4v`(Ez*dJnMv+1P0R*gB+9Ay#?V0> z6q!XZqaj7dj2SA}HrP%G(K^6Tn0Xpz9HPR&wn?#Vg{xI;Q-W=_M+q~)kYPKa?DEf< zf4AgyY`Z}AOeKtMzDGGA6JU9c`J&Q+9jj%RiXAB6Fp!0q0|gu>@+cq>bU@GnK}Q%6 zb4`L>%R~nt$E7uQf4lr^m4;nbs~Fg|+a$vQhTHKNAP*4Nqz}|Q6F7i97|^3fU{sF* zvO`G6p3?&h@<7c4H4oH0(f_cDIjC_1O zk%5IvvGBrJ@D?mYq{1@IR+NHNKo)_6UO^FQFlpEt95T<7E?2rd>Eik$`K8x`ug*QS z`pw=Tb9p1}M-zVXljbf1qJmby_Zf!6T13x5rbQvslJ5X68{R!!j&!+n3wsjt@D>(; zso5eil?_oE*}}3PYHJU!-z;b2xikLYh(EHz)`wR!`}KX2EDKT>x}%<67mUS=H*N*< z7w)WN-)ksdS=dPV!&7VDmJ$=k{e^+snc&up0aQ-m5YQ?!jnM6MaAR^c-Bcd^vaTUm zSU8pc)SsKm-2@J^B!{+;ARG7R7faL2g={`nm?@m8kG!nDq`sgwK@W_PC*JViPvp=0 z$&5dCtvI%r|89TV$<65D!cz0b-0E;C_0iK7^a$U6olI~@sH+&AES%1d_$z}!I%^k4 zE|$+O_}9lJOO6A-g;}i-xdg^xMkcf!YIXIc-|r-zsZqdTo4Rz|-TY&4_x}z{Q*`A& DS~_ZY diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml index 29c060da32d..a67569f3477 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,207 +25,204 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - attacher: "24" - nodeName: "137" + attacher: "18" + nodeName: "131" source: inlineVolumeSpec: accessModes: - - ƺ魋Ď儇击3ƆìQ + - d賑'üA謥ǣ偐圠= awsElasticBlockStore: - fsType: "29" - partition: 1749009427 - readOnly: true - volumeID: "28" + fsType: "23" + partition: -387137265 + volumeID: "22" azureDisk: - cachingMode: 狞夌碕ʂɭ - diskName: "85" - diskURI: "86" - fsType: "87" - kind: P$Iņɖ橙9ȫŚʒ - readOnly: true + cachingMode: x + diskName: "79" + diskURI: "80" + fsType: "81" + kind: a鯿rŎǀ朲^苣 + readOnly: false azureFile: - readOnly: true - secretName: "73" - secretNamespace: "75" - shareName: "74" + secretName: "67" + secretNamespace: "69" + shareName: "68" capacity: - ǸƢ6/: "569" + qJ枊a8衍`Ĩ: "652" cephfs: monitors: - - "56" - path: "57" + - "50" + path: "51" readOnly: true - secretFile: "59" - secretRef: - name: "60" - namespace: "61" - user: "58" - cinder: - fsType: "53" + secretFile: "53" secretRef: name: "54" namespace: "55" - volumeID: "52" + user: "52" + cinder: + fsType: "47" + readOnly: true + secretRef: + name: "48" + namespace: "49" + volumeID: "46" claimRef: - apiVersion: "128" - fieldPath: "130" - kind: "125" - name: "127" - namespace: "126" - resourceVersion: "129" - uid: 艋涽託仭w-檮Ǣ冖ž琔n宂¬轚 + apiVersion: "122" + fieldPath: "124" + kind: "119" + name: "121" + namespace: "120" + resourceVersion: "123" csi: controllerExpandSecretRef: - name: "123" - namespace: "124" - controllerPublishSecretRef: name: "117" namespace: "118" - driver: "112" - fsType: "114" + controllerPublishSecretRef: + name: "111" + namespace: "112" + driver: "106" + fsType: "108" nodePublishSecretRef: - name: "121" - namespace: "122" + name: "115" + namespace: "116" nodeStageSecretRef: - name: "119" - namespace: "120" + name: "113" + namespace: "114" + readOnly: true volumeAttributes: - "115": "116" - volumeHandle: "113" + "109": "110" + volumeHandle: "107" fc: - fsType: "63" - lun: 2072604405 + fsType: "57" + lun: -616291512 targetWWNs: - - "62" + - "56" wwids: - - "64" + - "58" flexVolume: - driver: "67" - fsType: "68" + driver: "61" + fsType: "62" options: - "71": "72" + "65": "66" secretRef: - name: "69" - namespace: "70" + name: "63" + namespace: "64" flocker: - datasetName: "65" - datasetUUID: "66" + datasetName: "59" + datasetUUID: "60" gcePersistentDisk: - fsType: "27" - partition: -799278564 - pdName: "26" - readOnly: true + fsType: "21" + partition: 1847377175 + pdName: "20" glusterfs: - endpoints: "31" - endpointsNamespace: "33" - path: "32" - hostPath: - path: "30" - type: 甞谐颋DžS - iscsi: - fsType: "47" - initiatorName: "51" - iqn: "45" - iscsiInterface: "46" - lun: -443114323 - portals: - - "48" - secretRef: - name: "49" - namespace: "50" - targetPortal: "44" - local: - fsType: "102" - path: "101" - mountOptions: - - "132" - nfs: - path: "35" + endpoints: "25" + endpointsNamespace: "27" + path: "26" readOnly: true - server: "34" + hostPath: + path: "24" + type: 夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉy + iscsi: + fsType: "41" + initiatorName: "45" + iqn: "39" + iscsiInterface: "40" + lun: 2048967527 + portals: + - "42" + readOnly: true + secretRef: + name: "43" + namespace: "44" + targetPortal: "38" + local: + fsType: "96" + path: "95" + mountOptions: + - "126" + nfs: + path: "29" + server: "28" nodeAffinity: required: nodeSelectorTerms: - matchExpressions: - - key: "133" - operator: f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1 + - key: "127" + operator: 檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2 values: - - "134" + - "128" matchFields: - - key: "135" - operator: l恕ɍȇ廄裭4懙鏮嵒 + - key: "129" + operator: -议}ȧ外ĺ稥氹Ç|¶ values: - - "136" - persistentVolumeReclaimPolicy: £趕ã/鈱$-议}ȧ外ĺ + - "130" + persistentVolumeReclaimPolicy: 錕?øēƺ魋Ď儇击3ƆìQ喞艋 photonPersistentDisk: - fsType: "89" - pdID: "88" + fsType: "83" + pdID: "82" portworxVolume: - fsType: "91" - volumeID: "90" + fsType: "85" + readOnly: true + volumeID: "84" quobyte: - group: "83" + group: "77" readOnly: true - registry: "80" - tenant: "84" - user: "82" - volume: "81" + registry: "74" + tenant: "78" + user: "76" + volume: "75" rbd: - fsType: "38" - image: "37" - keyring: "41" + fsType: "32" + image: "31" + keyring: "35" monitors: - - "36" - pool: "39" + - "30" + pool: "33" secretRef: - name: "42" - namespace: "43" - user: "40" + name: "36" + namespace: "37" + user: "34" scaleIO: - fsType: "100" - gateway: "92" - protectionDomain: "96" - readOnly: true + fsType: "94" + gateway: "86" + protectionDomain: "90" secretRef: - name: "94" - namespace: "95" - sslEnabled: true - storageMode: "98" - storagePool: "97" - system: "93" - volumeName: "99" - storageClassName: "131" + name: "88" + namespace: "89" + storageMode: "92" + storagePool: "91" + system: "87" + volumeName: "93" + storageClassName: "125" storageos: - fsType: "105" - readOnly: true + fsType: "99" secretRef: - apiVersion: "109" - fieldPath: "111" - kind: "106" - name: "108" - namespace: "107" - resourceVersion: "110" - uid: ȸd賑'üA謥ǣ偐圠=l - volumeName: "103" - volumeNamespace: "104" - volumeMode: 譋娲瘹ɭȊɚɎ( + apiVersion: "103" + fieldPath: "105" + kind: "100" + name: "102" + namespace: "101" + resourceVersion: "104" + uid: ȮO励鹗塢ē ƕP + volumeName: "97" + volumeNamespace: "98" + volumeMode: ½ vsphereVolume: - fsType: "77" - storagePolicyID: "79" - storagePolicyName: "78" - volumePath: "76" - persistentVolumeName: "25" + fsType: "71" + storagePolicyID: "73" + storagePolicyName: "72" + volumePath: "70" + persistentVolumeName: "19" status: attachError: - message: "140" - time: "2498-07-05T18:17:05Z" - attached: false + message: "134" + time: "2327-07-20T07:31:37Z" + attached: true attachmentMetadata: - "138": "139" + "132": "133" detachError: - message: "141" - time: "2336-02-05T15:38:29Z" + message: "135" + time: "2046-08-01T16:33:49Z" diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.json b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.json index 56084c38446..d428922065b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,251 +35,247 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "attacher": "24", + "attacher": "18", "source": { - "persistentVolumeName": "25", + "persistentVolumeName": "19", "inlineVolumeSpec": { "capacity": { - "ǸƢ6/": "569" + "qJ枊a8衍`Ĩ": "652" }, "gcePersistentDisk": { - "pdName": "26", - "fsType": "27", - "partition": -799278564, - "readOnly": true + "pdName": "20", + "fsType": "21", + "partition": 1847377175 }, "awsElasticBlockStore": { - "volumeID": "28", - "fsType": "29", - "partition": 1749009427, - "readOnly": true + "volumeID": "22", + "fsType": "23", + "partition": -387137265 }, "hostPath": { - "path": "30", - "type": "甞谐颋DžS" + "path": "24", + "type": "夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉy" }, "glusterfs": { - "endpoints": "31", - "path": "32", - "endpointsNamespace": "33" + "endpoints": "25", + "path": "26", + "readOnly": true, + "endpointsNamespace": "27" }, "nfs": { - "server": "34", - "path": "35", - "readOnly": true + "server": "28", + "path": "29" }, "rbd": { "monitors": [ - "36" + "30" ], - "image": "37", - "fsType": "38", - "pool": "39", - "user": "40", - "keyring": "41", + "image": "31", + "fsType": "32", + "pool": "33", + "user": "34", + "keyring": "35", "secretRef": { - "name": "42", - "namespace": "43" + "name": "36", + "namespace": "37" } }, "iscsi": { - "targetPortal": "44", - "iqn": "45", - "lun": -443114323, - "iscsiInterface": "46", - "fsType": "47", + "targetPortal": "38", + "iqn": "39", + "lun": 2048967527, + "iscsiInterface": "40", + "fsType": "41", + "readOnly": true, "portals": [ - "48" + "42" ], "secretRef": { - "name": "49", - "namespace": "50" + "name": "43", + "namespace": "44" }, - "initiatorName": "51" + "initiatorName": "45" }, "cinder": { - "volumeID": "52", - "fsType": "53", + "volumeID": "46", + "fsType": "47", + "readOnly": true, "secretRef": { - "name": "54", - "namespace": "55" + "name": "48", + "namespace": "49" } }, "cephfs": { "monitors": [ - "56" + "50" ], - "path": "57", - "user": "58", - "secretFile": "59", + "path": "51", + "user": "52", + "secretFile": "53", "secretRef": { - "name": "60", - "namespace": "61" + "name": "54", + "namespace": "55" }, "readOnly": true }, "fc": { "targetWWNs": [ - "62" + "56" ], - "lun": 2072604405, - "fsType": "63", + "lun": -616291512, + "fsType": "57", "wwids": [ - "64" + "58" ] }, "flocker": { - "datasetName": "65", - "datasetUUID": "66" + "datasetName": "59", + "datasetUUID": "60" }, "flexVolume": { - "driver": "67", - "fsType": "68", + "driver": "61", + "fsType": "62", "secretRef": { - "name": "69", - "namespace": "70" + "name": "63", + "namespace": "64" }, "options": { - "71": "72" + "65": "66" } }, "azureFile": { - "secretName": "73", - "shareName": "74", - "readOnly": true, - "secretNamespace": "75" + "secretName": "67", + "shareName": "68", + "secretNamespace": "69" }, "vsphereVolume": { - "volumePath": "76", - "fsType": "77", - "storagePolicyName": "78", - "storagePolicyID": "79" + "volumePath": "70", + "fsType": "71", + "storagePolicyName": "72", + "storagePolicyID": "73" }, "quobyte": { - "registry": "80", - "volume": "81", + "registry": "74", + "volume": "75", "readOnly": true, - "user": "82", - "group": "83", - "tenant": "84" + "user": "76", + "group": "77", + "tenant": "78" }, "azureDisk": { - "diskName": "85", - "diskURI": "86", - "cachingMode": "狞夌碕ʂɭ", - "fsType": "87", - "readOnly": true, - "kind": "P$Iņɖ橙9ȫŚʒ" + "diskName": "79", + "diskURI": "80", + "cachingMode": "x", + "fsType": "81", + "readOnly": false, + "kind": "a鯿rŎǀ朲^苣" }, "photonPersistentDisk": { - "pdID": "88", - "fsType": "89" + "pdID": "82", + "fsType": "83" }, "portworxVolume": { - "volumeID": "90", - "fsType": "91" - }, - "scaleIO": { - "gateway": "92", - "system": "93", - "secretRef": { - "name": "94", - "namespace": "95" - }, - "sslEnabled": true, - "protectionDomain": "96", - "storagePool": "97", - "storageMode": "98", - "volumeName": "99", - "fsType": "100", + "volumeID": "84", + "fsType": "85", "readOnly": true }, + "scaleIO": { + "gateway": "86", + "system": "87", + "secretRef": { + "name": "88", + "namespace": "89" + }, + "protectionDomain": "90", + "storagePool": "91", + "storageMode": "92", + "volumeName": "93", + "fsType": "94" + }, "local": { - "path": "101", - "fsType": "102" + "path": "95", + "fsType": "96" }, "storageos": { - "volumeName": "103", - "volumeNamespace": "104", - "fsType": "105", - "readOnly": true, + "volumeName": "97", + "volumeNamespace": "98", + "fsType": "99", "secretRef": { - "kind": "106", - "namespace": "107", - "name": "108", - "uid": "ȸd賑'üA謥ǣ偐圠=l", - "apiVersion": "109", - "resourceVersion": "110", - "fieldPath": "111" + "kind": "100", + "namespace": "101", + "name": "102", + "uid": "ȮO励鹗塢ē ƕP", + "apiVersion": "103", + "resourceVersion": "104", + "fieldPath": "105" } }, "csi": { - "driver": "112", - "volumeHandle": "113", - "fsType": "114", + "driver": "106", + "volumeHandle": "107", + "readOnly": true, + "fsType": "108", "volumeAttributes": { - "115": "116" + "109": "110" }, "controllerPublishSecretRef": { - "name": "117", - "namespace": "118" + "name": "111", + "namespace": "112" }, "nodeStageSecretRef": { - "name": "119", - "namespace": "120" + "name": "113", + "namespace": "114" }, "nodePublishSecretRef": { - "name": "121", - "namespace": "122" + "name": "115", + "namespace": "116" }, "controllerExpandSecretRef": { - "name": "123", - "namespace": "124" + "name": "117", + "namespace": "118" } }, "accessModes": [ - "ƺ魋Ď儇击3ƆìQ" + "d賑'üA謥ǣ偐圠=" ], "claimRef": { - "kind": "125", - "namespace": "126", - "name": "127", - "uid": "艋涽託仭w-檮Ǣ冖ž琔n宂¬轚", - "apiVersion": "128", - "resourceVersion": "129", - "fieldPath": "130" + "kind": "119", + "namespace": "120", + "name": "121", + "apiVersion": "122", + "resourceVersion": "123", + "fieldPath": "124" }, - "persistentVolumeReclaimPolicy": "£趕ã/鈱$-议}ȧ外ĺ", - "storageClassName": "131", + "persistentVolumeReclaimPolicy": "錕?øēƺ魋Ď儇击3ƆìQ喞艋", + "storageClassName": "125", "mountOptions": [ - "132" + "126" ], - "volumeMode": "譋娲瘹ɭȊɚɎ(", + "volumeMode": "½", "nodeAffinity": { "required": { "nodeSelectorTerms": [ { "matchExpressions": [ { - "key": "133", - "operator": "f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1", + "key": "127", + "operator": "檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2", "values": [ - "134" + "128" ] } ], "matchFields": [ { - "key": "135", - "operator": "l恕ɍȇ廄裭4懙鏮嵒", + "key": "129", + "operator": "-议}ȧ外ĺ稥氹Ç|¶", "values": [ - "136" + "130" ] } ] @@ -289,20 +285,20 @@ } } }, - "nodeName": "137" + "nodeName": "131" }, "status": { - "attached": false, + "attached": true, "attachmentMetadata": { - "138": "139" + "132": "133" }, "attachError": { - "time": "2498-07-05T18:17:05Z", - "message": "140" + "time": "2327-07-20T07:31:37Z", + "message": "134" }, "detachError": { - "time": "2336-02-05T15:38:29Z", - "message": "141" + "time": "2046-08-01T16:33:49Z", + "message": "135" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.pb b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.pb index 08a0beba476e3f74f1867213c0872e80da1df69b..a07f01d6eb66d8149a5a678928c8c3af86a7ba2d 100644 GIT binary patch literal 1156 zcmX9+TWlLe6y2FZYF46HqtKcas@yFS)t08aGqXFhmJqGQmnB3fDxgXr9Iz;TB_shs zpi<(5m^zR+Bu!{*r8EywRjGlLN7E3H;zwMBkoe$(#~)f}{lPGpBmV zcM*L7>4*}<48%?3T1e1V$FVu(w#$8KOX1lbwVC|okL-^FBgKKPq}G1*ozDl~zW9A{ z1s!S8kswHRY}JuZuwx&K>)4?Nc9^;C(Y|11vYvahr<$*gby*ndY7%v0hxcK}&7-{_ z^~kPfAs$>4Q7yJM%0JqHjqfb+o8v1^LA}k74e~8-@Ag60HI-D z8rWAERNvy*Hi5-4V4)_dmmUxDpEj4LgG;lOiFoa7y9EJ8Vc`i_+$HpwO7c{ax^UPe zyfJJ(P*6i*$5EIjHZfC}CpWRHu$S7zLSbpNz8GE`f3W=3!EkY5eJ&U%1jP>@Hsh*_ zsz`0?7stm5JJo=GBqPXfTuuax1JhTwZ)4n3@UCj3}|I z#9k7wt)`yV59?3r4?$rnNW5{Sv_2aQPgTF(C`_ITO4+r=aP_=jAKmCLH9i=m%2krx zO6`*!`@&M`bp4}XeyVa~yqz WR8s^u74iG6rT)AACtO1_wf_Lm{5)j< literal 1252 zcmX9-T}&KR6rOuY0Vmqxwc5?b7#v9?gTTza^KSdM?hxz27G6;p1%I>-pJw3renOX>Fw_3_smFF&yk2pY7TXGy?eZKUw?n(jU&f9PxO<_ z1L{vmMU)^GM3#nZUCRxZ)A8K3cf!TFScLnRPrsg9D9kkZGoL%T_#tn8xs&cT9pPBi zHe8D{?%0k&nc%IR3r#Cjia?HHfa!> zOxwACz+0WnkDlyXk8Pao(XnY73P-)zv<9$g$50DU9r9#35%VTv<@Ck%xyBd0vB6%4sG$ z)C$`XWO#@AC_u)ach}3|agIfg7kKO;ivK9r2ikU$kEKSb&UnI(@ z_~!5n8YnW8U`7Lqh8fdUur09d0HSq(p)hlUm~n^-9a{#)mKmy6u|)~C*j^>X07Hgl z2eKMMXX?YRs;{Uosm;&>W8|r~ zybluj^IkIJjbAU0FXg{G(0+0&dbqIMvN^vtQc8XNj0ru$w_hg{Y!c`yMyCp=^P}GC zke|+4#nFr9vy0x13CWVb;4Zbg`tt906VKKt;IIr$I__=#G1TzC J!wf2#@*i5OY`Xve diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.yaml b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.yaml index 5959d655408..9036a113710 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.yaml @@ -14,9 +14,6 @@ metadata: "7": "8" managedFields: - apiVersion: "17" - fields: - "18": - "19": null manager: "16" operation: 鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć] name: "2" @@ -28,207 +25,204 @@ metadata: kind: "12" name: "13" uid: Dz廔ȇ{sŊƏp - resourceVersion: "16964250748386560239" + resourceVersion: "11042405498087606203" selfLink: "5" - uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e + uid: "7" spec: - attacher: "24" - nodeName: "137" + attacher: "18" + nodeName: "131" source: inlineVolumeSpec: accessModes: - - ƺ魋Ď儇击3ƆìQ + - d賑'üA謥ǣ偐圠= awsElasticBlockStore: - fsType: "29" - partition: 1749009427 - readOnly: true - volumeID: "28" + fsType: "23" + partition: -387137265 + volumeID: "22" azureDisk: - cachingMode: 狞夌碕ʂɭ - diskName: "85" - diskURI: "86" - fsType: "87" - kind: P$Iņɖ橙9ȫŚʒ - readOnly: true + cachingMode: x + diskName: "79" + diskURI: "80" + fsType: "81" + kind: a鯿rŎǀ朲^苣 + readOnly: false azureFile: - readOnly: true - secretName: "73" - secretNamespace: "75" - shareName: "74" + secretName: "67" + secretNamespace: "69" + shareName: "68" capacity: - ǸƢ6/: "569" + qJ枊a8衍`Ĩ: "652" cephfs: monitors: - - "56" - path: "57" + - "50" + path: "51" readOnly: true - secretFile: "59" - secretRef: - name: "60" - namespace: "61" - user: "58" - cinder: - fsType: "53" + secretFile: "53" secretRef: name: "54" namespace: "55" - volumeID: "52" + user: "52" + cinder: + fsType: "47" + readOnly: true + secretRef: + name: "48" + namespace: "49" + volumeID: "46" claimRef: - apiVersion: "128" - fieldPath: "130" - kind: "125" - name: "127" - namespace: "126" - resourceVersion: "129" - uid: 艋涽託仭w-檮Ǣ冖ž琔n宂¬轚 + apiVersion: "122" + fieldPath: "124" + kind: "119" + name: "121" + namespace: "120" + resourceVersion: "123" csi: controllerExpandSecretRef: - name: "123" - namespace: "124" - controllerPublishSecretRef: name: "117" namespace: "118" - driver: "112" - fsType: "114" + controllerPublishSecretRef: + name: "111" + namespace: "112" + driver: "106" + fsType: "108" nodePublishSecretRef: - name: "121" - namespace: "122" + name: "115" + namespace: "116" nodeStageSecretRef: - name: "119" - namespace: "120" + name: "113" + namespace: "114" + readOnly: true volumeAttributes: - "115": "116" - volumeHandle: "113" + "109": "110" + volumeHandle: "107" fc: - fsType: "63" - lun: 2072604405 + fsType: "57" + lun: -616291512 targetWWNs: - - "62" + - "56" wwids: - - "64" + - "58" flexVolume: - driver: "67" - fsType: "68" + driver: "61" + fsType: "62" options: - "71": "72" + "65": "66" secretRef: - name: "69" - namespace: "70" + name: "63" + namespace: "64" flocker: - datasetName: "65" - datasetUUID: "66" + datasetName: "59" + datasetUUID: "60" gcePersistentDisk: - fsType: "27" - partition: -799278564 - pdName: "26" - readOnly: true + fsType: "21" + partition: 1847377175 + pdName: "20" glusterfs: - endpoints: "31" - endpointsNamespace: "33" - path: "32" - hostPath: - path: "30" - type: 甞谐颋DžS - iscsi: - fsType: "47" - initiatorName: "51" - iqn: "45" - iscsiInterface: "46" - lun: -443114323 - portals: - - "48" - secretRef: - name: "49" - namespace: "50" - targetPortal: "44" - local: - fsType: "102" - path: "101" - mountOptions: - - "132" - nfs: - path: "35" + endpoints: "25" + endpointsNamespace: "27" + path: "26" readOnly: true - server: "34" + hostPath: + path: "24" + type: 夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉy + iscsi: + fsType: "41" + initiatorName: "45" + iqn: "39" + iscsiInterface: "40" + lun: 2048967527 + portals: + - "42" + readOnly: true + secretRef: + name: "43" + namespace: "44" + targetPortal: "38" + local: + fsType: "96" + path: "95" + mountOptions: + - "126" + nfs: + path: "29" + server: "28" nodeAffinity: required: nodeSelectorTerms: - matchExpressions: - - key: "133" - operator: f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1 + - key: "127" + operator: 檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2 values: - - "134" + - "128" matchFields: - - key: "135" - operator: l恕ɍȇ廄裭4懙鏮嵒 + - key: "129" + operator: -议}ȧ外ĺ稥氹Ç|¶ values: - - "136" - persistentVolumeReclaimPolicy: £趕ã/鈱$-议}ȧ外ĺ + - "130" + persistentVolumeReclaimPolicy: 錕?øēƺ魋Ď儇击3ƆìQ喞艋 photonPersistentDisk: - fsType: "89" - pdID: "88" + fsType: "83" + pdID: "82" portworxVolume: - fsType: "91" - volumeID: "90" + fsType: "85" + readOnly: true + volumeID: "84" quobyte: - group: "83" + group: "77" readOnly: true - registry: "80" - tenant: "84" - user: "82" - volume: "81" + registry: "74" + tenant: "78" + user: "76" + volume: "75" rbd: - fsType: "38" - image: "37" - keyring: "41" + fsType: "32" + image: "31" + keyring: "35" monitors: - - "36" - pool: "39" + - "30" + pool: "33" secretRef: - name: "42" - namespace: "43" - user: "40" + name: "36" + namespace: "37" + user: "34" scaleIO: - fsType: "100" - gateway: "92" - protectionDomain: "96" - readOnly: true + fsType: "94" + gateway: "86" + protectionDomain: "90" secretRef: - name: "94" - namespace: "95" - sslEnabled: true - storageMode: "98" - storagePool: "97" - system: "93" - volumeName: "99" - storageClassName: "131" + name: "88" + namespace: "89" + storageMode: "92" + storagePool: "91" + system: "87" + volumeName: "93" + storageClassName: "125" storageos: - fsType: "105" - readOnly: true + fsType: "99" secretRef: - apiVersion: "109" - fieldPath: "111" - kind: "106" - name: "108" - namespace: "107" - resourceVersion: "110" - uid: ȸd賑'üA謥ǣ偐圠=l - volumeName: "103" - volumeNamespace: "104" - volumeMode: 譋娲瘹ɭȊɚɎ( + apiVersion: "103" + fieldPath: "105" + kind: "100" + name: "102" + namespace: "101" + resourceVersion: "104" + uid: ȮO励鹗塢ē ƕP + volumeName: "97" + volumeNamespace: "98" + volumeMode: ½ vsphereVolume: - fsType: "77" - storagePolicyID: "79" - storagePolicyName: "78" - volumePath: "76" - persistentVolumeName: "25" + fsType: "71" + storagePolicyID: "73" + storagePolicyName: "72" + volumePath: "70" + persistentVolumeName: "19" status: attachError: - message: "140" - time: "2498-07-05T18:17:05Z" - attached: false + message: "134" + time: "2327-07-20T07:31:37Z" + attached: true attachmentMetadata: - "138": "139" + "132": "133" detachError: - message: "141" - time: "2336-02-05T15:38:29Z" + message: "135" + time: "2046-08-01T16:33:49Z" diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.json b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.json index d9727cf6221..018ca5aa33f 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.json +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,13 +35,12 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { "attachRequired": false, - "podInfoOnMount": true + "podInfoOnMount": false } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.pb b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.pb index 92798dc3dd4f2a1a2dbdca85fa1fc23b131bf7b9..c8376073855f09f5255dbf23e34724bb80088e00 100644 GIT binary patch delta 68 zcmbQpbdPa@mex8(uBD7zj7CC?#!`$XN{psjjOIonhK2?vMkWTPCYBZk7UpIKW=00a Y6H7xFwI`m^<`QDzU=U!CVo+iL0O+j^4gdfE delta 119 zcmV--0EqwI0g(cbDof!33fKV(0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~ zsL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIgwOU0X>naD;z2i3JwYa ZF*p(k3I+-SF*yF77_Ey3p&{yskux7Yln6j;uI2 zL+{0m^=3!9!=5hLk!mDjXl7|Ui-o-jM^>Di zq4#3Odb1Ž燹憍峕?狱³-Ǐ + "19": "20" +provisioner: "18" +reclaimPolicy: qJ枊a8衍`Ĩ +volumeBindingMode: "" diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.json b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.json index 417b4b18b9b..91ab580f6db 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.json @@ -6,8 +6,8 @@ "generateName": "3", "namespace": "4", "selfLink": "5", - "uid": "ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e", - "resourceVersion": "16964250748386560239", + "uid": "7", + "resourceVersion": "11042405498087606203", "generation": 8071137005907523419, "creationTimestamp": null, "deletionGracePeriodSeconds": -4955867275792137171, @@ -35,251 +35,247 @@ { "manager": "16", "operation": "鐊唊飙Ş-U圴÷a/ɔ}摁(湗Ć]", - "apiVersion": "17", - "fields": {"18":{"19":null}} + "apiVersion": "17" } ] }, "spec": { - "attacher": "24", + "attacher": "18", "source": { - "persistentVolumeName": "25", + "persistentVolumeName": "19", "inlineVolumeSpec": { "capacity": { - "ǸƢ6/": "569" + "qJ枊a8衍`Ĩ": "652" }, "gcePersistentDisk": { - "pdName": "26", - "fsType": "27", - "partition": -799278564, - "readOnly": true + "pdName": "20", + "fsType": "21", + "partition": 1847377175 }, "awsElasticBlockStore": { - "volumeID": "28", - "fsType": "29", - "partition": 1749009427, - "readOnly": true + "volumeID": "22", + "fsType": "23", + "partition": -387137265 }, "hostPath": { - "path": "30", - "type": "甞谐颋DžS" + "path": "24", + "type": "夸eɑeʤ脽ěĂ凗蓏Ŋ蛊ĉy" }, "glusterfs": { - "endpoints": "31", - "path": "32", - "endpointsNamespace": "33" + "endpoints": "25", + "path": "26", + "readOnly": true, + "endpointsNamespace": "27" }, "nfs": { - "server": "34", - "path": "35", - "readOnly": true + "server": "28", + "path": "29" }, "rbd": { "monitors": [ - "36" + "30" ], - "image": "37", - "fsType": "38", - "pool": "39", - "user": "40", - "keyring": "41", + "image": "31", + "fsType": "32", + "pool": "33", + "user": "34", + "keyring": "35", "secretRef": { - "name": "42", - "namespace": "43" + "name": "36", + "namespace": "37" } }, "iscsi": { - "targetPortal": "44", - "iqn": "45", - "lun": -443114323, - "iscsiInterface": "46", - "fsType": "47", + "targetPortal": "38", + "iqn": "39", + "lun": 2048967527, + "iscsiInterface": "40", + "fsType": "41", + "readOnly": true, "portals": [ - "48" + "42" ], "secretRef": { - "name": "49", - "namespace": "50" + "name": "43", + "namespace": "44" }, - "initiatorName": "51" + "initiatorName": "45" }, "cinder": { - "volumeID": "52", - "fsType": "53", + "volumeID": "46", + "fsType": "47", + "readOnly": true, "secretRef": { - "name": "54", - "namespace": "55" + "name": "48", + "namespace": "49" } }, "cephfs": { "monitors": [ - "56" + "50" ], - "path": "57", - "user": "58", - "secretFile": "59", + "path": "51", + "user": "52", + "secretFile": "53", "secretRef": { - "name": "60", - "namespace": "61" + "name": "54", + "namespace": "55" }, "readOnly": true }, "fc": { "targetWWNs": [ - "62" + "56" ], - "lun": 2072604405, - "fsType": "63", + "lun": -616291512, + "fsType": "57", "wwids": [ - "64" + "58" ] }, "flocker": { - "datasetName": "65", - "datasetUUID": "66" + "datasetName": "59", + "datasetUUID": "60" }, "flexVolume": { - "driver": "67", - "fsType": "68", + "driver": "61", + "fsType": "62", "secretRef": { - "name": "69", - "namespace": "70" + "name": "63", + "namespace": "64" }, "options": { - "71": "72" + "65": "66" } }, "azureFile": { - "secretName": "73", - "shareName": "74", - "readOnly": true, - "secretNamespace": "75" + "secretName": "67", + "shareName": "68", + "secretNamespace": "69" }, "vsphereVolume": { - "volumePath": "76", - "fsType": "77", - "storagePolicyName": "78", - "storagePolicyID": "79" + "volumePath": "70", + "fsType": "71", + "storagePolicyName": "72", + "storagePolicyID": "73" }, "quobyte": { - "registry": "80", - "volume": "81", + "registry": "74", + "volume": "75", "readOnly": true, - "user": "82", - "group": "83", - "tenant": "84" + "user": "76", + "group": "77", + "tenant": "78" }, "azureDisk": { - "diskName": "85", - "diskURI": "86", - "cachingMode": "狞夌碕ʂɭ", - "fsType": "87", - "readOnly": true, - "kind": "P$Iņɖ橙9ȫŚʒ" + "diskName": "79", + "diskURI": "80", + "cachingMode": "x", + "fsType": "81", + "readOnly": false, + "kind": "a鯿rŎǀ朲^苣" }, "photonPersistentDisk": { - "pdID": "88", - "fsType": "89" + "pdID": "82", + "fsType": "83" }, "portworxVolume": { - "volumeID": "90", - "fsType": "91" - }, - "scaleIO": { - "gateway": "92", - "system": "93", - "secretRef": { - "name": "94", - "namespace": "95" - }, - "sslEnabled": true, - "protectionDomain": "96", - "storagePool": "97", - "storageMode": "98", - "volumeName": "99", - "fsType": "100", + "volumeID": "84", + "fsType": "85", "readOnly": true }, + "scaleIO": { + "gateway": "86", + "system": "87", + "secretRef": { + "name": "88", + "namespace": "89" + }, + "protectionDomain": "90", + "storagePool": "91", + "storageMode": "92", + "volumeName": "93", + "fsType": "94" + }, "local": { - "path": "101", - "fsType": "102" + "path": "95", + "fsType": "96" }, "storageos": { - "volumeName": "103", - "volumeNamespace": "104", - "fsType": "105", - "readOnly": true, + "volumeName": "97", + "volumeNamespace": "98", + "fsType": "99", "secretRef": { - "kind": "106", - "namespace": "107", - "name": "108", - "uid": "ȸd賑'üA謥ǣ偐圠=l", - "apiVersion": "109", - "resourceVersion": "110", - "fieldPath": "111" + "kind": "100", + "namespace": "101", + "name": "102", + "uid": "ȮO励鹗塢ē ƕP", + "apiVersion": "103", + "resourceVersion": "104", + "fieldPath": "105" } }, "csi": { - "driver": "112", - "volumeHandle": "113", - "fsType": "114", + "driver": "106", + "volumeHandle": "107", + "readOnly": true, + "fsType": "108", "volumeAttributes": { - "115": "116" + "109": "110" }, "controllerPublishSecretRef": { - "name": "117", - "namespace": "118" + "name": "111", + "namespace": "112" }, "nodeStageSecretRef": { - "name": "119", - "namespace": "120" + "name": "113", + "namespace": "114" }, "nodePublishSecretRef": { - "name": "121", - "namespace": "122" + "name": "115", + "namespace": "116" }, "controllerExpandSecretRef": { - "name": "123", - "namespace": "124" + "name": "117", + "namespace": "118" } }, "accessModes": [ - "ƺ魋Ď儇击3ƆìQ" + "d賑'üA謥ǣ偐圠=" ], "claimRef": { - "kind": "125", - "namespace": "126", - "name": "127", - "uid": "艋涽託仭w-檮Ǣ冖ž琔n宂¬轚", - "apiVersion": "128", - "resourceVersion": "129", - "fieldPath": "130" + "kind": "119", + "namespace": "120", + "name": "121", + "apiVersion": "122", + "resourceVersion": "123", + "fieldPath": "124" }, - "persistentVolumeReclaimPolicy": "£趕ã/鈱$-议}ȧ外ĺ", - "storageClassName": "131", + "persistentVolumeReclaimPolicy": "錕?øēƺ魋Ď儇击3ƆìQ喞艋", + "storageClassName": "125", "mountOptions": [ - "132" + "126" ], - "volumeMode": "譋娲瘹ɭȊɚɎ(", + "volumeMode": "½", "nodeAffinity": { "required": { "nodeSelectorTerms": [ { "matchExpressions": [ { - "key": "133", - "operator": "f倐ȓ圬剴扲ȿQZ{ʁgɸ=ǤÆ碛,1", + "key": "127", + "operator": "檮Ǣ冖ž琔n宂¬轚9Ȏ瀮昃2", "values": [ - "134" + "128" ] } ], "matchFields": [ { - "key": "135", - "operator": "l恕ɍȇ廄裭4懙鏮嵒", + "key": "129", + "operator": "-议}ȧ外ĺ稥氹Ç|¶", "values": [ - "136" + "130" ] } ] @@ -289,20 +285,20 @@ } } }, - "nodeName": "137" + "nodeName": "131" }, "status": { - "attached": false, + "attached": true, "attachmentMetadata": { - "138": "139" + "132": "133" }, "attachError": { - "time": "2498-07-05T18:17:05Z", - "message": "140" + "time": "2327-07-20T07:31:37Z", + "message": "134" }, "detachError": { - "time": "2336-02-05T15:38:29Z", - "message": "141" + "time": "2046-08-01T16:33:49Z", + "message": "135" } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.pb b/staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.pb index cd5ff6b0e8318a34c0719629f08601ee23b27557..56c11d85e10c5bb3e87028541bc7a20c5fd28ae6 100644 GIT binary patch literal 1155 zcmX9+TWlLe6y2FZYF46HqY%srRqhsvYN6@w%+(CF550Z<`_d{p z+@>QzknG;BBcEW$J`&flLk;XObH~H|!Rk~a|7KsUP#-^GVW_J~)QcV7j~%yw?gyzy zcD0IyV5-oXKU16CdnhPFm*HG~N36o8H>k#z3>Q{7g7HUqE0b;UOe@ zAHg+Bs3f7%S!BThCYC}qCShLbtLA;1V&6$%pC+--QrPER+MFulL%+Uv2_*qS!@e}I zuQI5<&9Q9)i(|k-P0}bo8WcWlt;_@$=BktN`spqU0*u1K6R^0;=n<9VsU&sbut|7h z*nFU%hQf}cFimV>rZ7)#VOL=rW^HOr3Ib1>_i_K3~D*3n8zW@CkQZu_5b4b9a41M3hw`2YX_ literal 1251 zcmX9-T})g>6uvX0fH&IWSnFnE46Y=STY)<>_h)7kOiTLWCMLATsu&YNvD(s70X3m% z;v&Dhw%t;ofE%>CG-A7pifx5rHI@Z-dGO7|_>=h1yL;CMeX);P&)|KS`OZ1tIo~Fw+8X+P50cue#*zSZ6IF74>-Yp0~BZvo)6+*TV$_hvX`1tJIN8km#t=ktCR!M{9LVSrAhm z+IgVgTb;;{oa$YVZJax4U`kC*pdL)EeoXBcY6hx99xo?i-bAdNo>`x3c-~81Tl>1b zsW5T6cs^QRT)CJVeg&$zMvcA`=z>)1m2gX-$ zVN{m`vH~cCUAqSs?C*Ocg(yk@>6Zvs>da1iAv&FXT9aok}PxX+WDrd%=LoC0AWa zm|NPl$iUKJSh`^>MGKZPQbA3#6{R2*5G8Q1D=4B2t_&*(hstx6%TX>@xkTuZ{POGm zSLdHx`)0qNxxAV7q6shgNpqJ0QOPRc`wYWDm(a72Nf~5P^$y^&;N8PzE0@Ezv8%8M zZ(|9VnJo%4)evKmZLIoXR`8*Xo8@dgch(ym@kUnp#_(F^VCaA%tAfmd?wA{@^T*=F z8@K$0i+5JD?==*!EN-T};i>g+ONogS-r~URjDKs^0IFbcNNAOtM&NeZzcIO%ZYqy{ zS=Zn%E}qVR>djB(ZUTo>#bGVP&&IulrPB0DA)AjCW(#NQBQNVO=`ZL_&;#e>i8s9W z6Zs2XGUJV1D~>JYzdP7=YAbrAu-v>kzcyS-ee@KC9^u=sQwcT+bQPnMg){jPZ*|a5 zXRYGMO!?fRcYR#3)Hv{4nAI9lOW*=#<|(IiuM_PxVwU1!pcV{ez$lE%?^A*7toZR)i#6LZeXa^+iL8 zM97ZC{lQQo8TTgHj3Oj~LUv6*w){yi21nacNoK@?-G1wuZATjHSRfQk{SSl9UBXXJ z;AFrlZcY_B%_HVBmBq3AtLrVr`K*_e7w%upFYQdD^7OKvAG_eZ$ob_eted(jYm%W7 zh3J|t$%;vS{JHggWNdb%uin-1=I;C3nP*>T*SSl31kL~)vGxj_33x1pj|n`M-8@#r zgN*~u`o!na!9*duHQwjpF_v6}i}P3=;IWqF>R40<$14xA&P2AdI8&I1UC!*v=Bl@5 zXJV-MaO6~RZ7P4~GP`DYssI=iF%fH7H^tgms<(G&2>jv&URJ>&;Q(VD@Ur3NWdgXr zj5N0*9Ck*h%8$ki+49qD{$9GYnknTb&lEPm5te5UE0UX6uqbRVY>jtTpZ>JbEbcF^ z%sKBqIvc~DZ=4Vot`G<{1_&jcDA0m8OcZ9DX23MGp$enWh%?h0)h(6jy$talUszU| z%BmmAHK~h;BB-he`4FW|K>}qO=`=C&w}O4xr$7S+2nYzU4K`Daq9j6A(^+IviWHi{ zC`yr5*9~bWL`o1DR1UQFXiZ>uyPZ52b2FjMJZ~nNQFls%5VcYyK}e+zgQ5m>$q!+p zWFRj^X_}^Xmwe*O87sAnrNt4 z!Mdi4vSQ*Ne{Ovr8JivHt8=x#x%>Wh=GoWTb*5(z#~6UYp1mAn0#*`3$2eA!c~(+{ zgAD`D`o!na!9*duHQwiDB}sH)CeBLg04r%(rj|x^aJ=#$>r7-Ti!+6J*y+r!Y_3{0 zI}=02ha;zoYg73vK-DW2*#CR&SnitJP6Y5TB5TX`>LkeGE4rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sdN`@9nRzT8H z$ttfjC#SYnD1|GjS}Cz0Gc2_TiUy4DA0RT5ohcf^G literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.DaemonSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.DaemonSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..59b340f4ef25149bb2b3ffcfb3b7775afd720d8c GIT binary patch literal 4672 zcmZWs3sh9sxt={lB&UgYdScS)xNAh_JIrg`cP^thcq7PX`?x0@K!9XaB@~m99As5#!M{?^ws*x zH{^P&25VL)STU9?I?AzPT4=>e6`BH~D*t47YgM4OD%`Z&+aN3o>^n7ZdP$y`oR(eTXFD~O>=O(DSXr|3uCkp8^)TM%` z3W8Z63WBsQGj%04VNuRCg(TiOE6b6%FlTAHKt#bbrycCdy!l(|y(V3WE-z zu^@z*eT+dXCN3ay8yd&hl(7|v5FTm*5RCxQJJC~Y)qqtZIUWwwH3UxYPab*q*wCId z5G6R?Laf6bXAuWtgfKDL9q|$lXbhHhyJZ-OuqHDVa8#MU6i4ErguuHz5eQ8Jq9g-R z=UOhIU5Kkh+_*?^gz_wJgau7h``~9KzEMsKkGVv~)%b{E7CA8-KLr-tLLitK(p1?Q zxN-gaXa*e4h(4J_k|oPbjM}e${84H2R5_80Wl>ga$1enL4PUNrI>eGMtF}vZ*BkCc zN^=d_L4>lrNQ(41dV)Q%%>sOdxR_sXJ%G@tgu?q{xflW+5s2mhqPu_? z2{D97WHKxfZ0qT``dQQ+`<3e@z0rH&`uA}0yWaM>Ge=5}1-DeWPh<@r3-5e4uzgFg z{Y=JiEz>|I&Sn~za-umVabTVhNDCnb+}#+$(n6wXQ9)n~%LRd40Fj~U_kP1EATpeS zq{p}iISae!M3?w`uexL;Kg)KhEJh-0;J&OUj2&nm+26h~aIk!&u`^WH?LQRSR7POQ zm=8rvjToYYp9DLp%>P@Q#dh?)%YS9*yo(%65v8ujUJduODeD3a#o^P{q5ihe?sJPq zYW63vC@55(P!(>^gK;QgndP5Q-PTpn)G-hb?JIGRK0uU}N} zy%n*Pn#)a!x?=Efq+$B;|EErY+d!aVXk)}4D;iPgkL*D^1CDCjU)}ik82h8aqIm0)A*JoDNNMe(`OK z|8{HhUv8mz3!nqbI5Fs+0HFoF-1%>xs6&tiJ ztGA<#^%z3gIi}e0l=RDR#k=l~@Y&MUfo=O2&Uh|d(iW)h&-5R8;kALTksU38_M^_C zZ;pEJ)*tpi8~<(l)!>Eq-tnvCVNc7*$@+n!q3!H5Xhsq{?a4s!d>|yn z@@ur*k~0Uu7yM+&*C|A%D-fBk+KyZgwSM03-Jfqq&YRyItoTRZ(-KGgC%6A_tMgxF zO&=oZ{d0T&wDXT;CkNR?gDvdT>Uv@1QW+&Eh8R*6qj)>oHJWQc+*B@!dm1DS!jDVE z-eaC^Bm1g6{X<*)UC$1k4>#3>TZ;nQn!pD`=3zzPkktSR%? z`>I2w{ee9-fvsCT2VWfA%7hI5WDIu`aUsO5<(^llx=f&wuFF_cSL6v9dKzFaRTFS- zmLM6>)v+NjO`JtcK}?yxP6T`+jJaS^T$==z1##JY zK1P;Q2M~?#L2*5$bq&!=&9@?MFXCkGfkmP|hks^{U< !aTC3P<%xcDFiAC029R- z%NA;;mSj$a00nU+U0cYfa|^Y#Lf&sOBHk~{lto$3UnSr|a2k@CF67HAU}?RuS`gMI zrVG@h;EQ0UQt`zp^326E4A}(Dvt-eP%t}I`St#XZ>HI@evomt%WamvQ_)TseIF8|< z%2;unw{ne$t3})*E?L*8mR%qg2swg5Aa`n_W&oI72{0Cv&08aiOLLbCvLK}5h574b zW4if*kdwFIRdJbUlIa?F0kwNM#}s6KG!+(RislUdIqsM9%%!?GLrgOb6K9L-%q6n` zOJe~FI7Kk!v_jF;Uy>GKGld@o4g$O$odO|D)fa-Bgn*lH>FZJ4Klh&c&dS#yt^{%a z$xVW=(pmv$W~^HArl1hj&<$D06ILb4)D+f>x+&`gnSz*AAm&b+ zO~oWJiU0XxG1W9*%-2mQwJ7RYP}4$4nfMCt;`qh0=PrYwXHOACGad4|=>KO>mcTU` z??FJxA=D0|8!Iqfu>xHdD=@mT0;3zl#}l++tYTZ&r)?dh?14WY|0FsGTy}r6yKAr^ z*I%r^G2A>I&pN`V%GF9G`&Yx`_6mo!}ZnPox!56Kw16Fp|gWMY_edT zg`sOdOct!OP;|q#`^d#jqwN0Q4fI-_o&DdqQT(-@_bx(jZ0!4cbcm*|=B7t11ENj< zT?XbkzzF>}y?0_6JivgkV<*k?wR;alY(eV-9tEtaKe78vcYFqUGw^krFJ^p4uM z{AJVctj?4B2HIoezc_gFRJ0vRH-~&BC=I?SUx=Di`FLhhyC1BxrqJ6k7GMq7BMW{M%MW_=cb8vHH-saus?VJ!i)wVuRTDK~5pp#uI z>UwgLyT{i#*ftHj&xX#mrH9_Be9luFKGf#j@p|x7MX%642W}l~X}^XdUl%fb z`@&Y$&2FUTL(RU6_kjB)^cb@RCr*|PxCk*a0|_$4R}uOgJaGwJ}i%(GU;F2%Dbbd*inn(zHR&}f;I0VTkVy@{ZZU$Z@L-$_yOnX zq1*nbWc-f1MPIiR-S~aB)bjgJPg?b_OWOB7F!|2a_x~0;`2DD$82HiVkHgRKn%XNQ}^RYilX{Fv9C_jEs<9Vk6N*b%Ne>WGW$`{twG RRGY;GG06!)sKes2{4W*5-%0=g literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7efe1d4033e132d6037b8b8a94cd1c80e410203c GIT binary patch literal 5171 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 S$NmxCa?ZYM{V_I^!}R~Wt=IYh literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.ReplicaSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1.ReplicaSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6ccdf6b124c094ce486e3fdaac325f355ab4cbbf GIT binary patch literal 4765 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 D2ScZ+ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.ControllerRevision.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.ControllerRevision.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6adeec376526f6e65fcf040ee95d81d418529e4f GIT binary patch literal 382 zcmd0{C}!YN;^IjxC@9u1GfYY?Ni-A^a?Z~yDay~uNi7OWEz2y<%+C`#&%||yk&Dqt zh|ySz(L{;SR7>ed>&wO6M^+blJ)75+Xz^lUZ^DrkCuiurn6cjMNO#!NB|B1$L=4R= z%}k6;4a`j}j4jMe%?yl;EiG=pYr5LlJ*Tn2i6LNZ$JXZ7`RC^BW{hIvVl)?Gv`Av- zVzd-uGBn6i;9@c~l43G6R^oH1db)eciT3K^qg}`P3$&OF4GkD97>k$;O{$m-O}iK! zflAGU6kks0dOD@+<>Hw~=jnz%owMce_C)=YQ)-`0Y}9zRbNZ3CSfFX)J9QpqZ>G$*IFRw#ulsah$qATunr2;^fWE2Y$m#N2|MRK4WL@^eEf3sQk%#RaL!Ad`wx3vx1(6N{Cs3~Pa+C5a`aKsM0Cvc$}s#H5^5kVLJ- S|5JTyU;LUffnSP2i2(rX35f~- literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6e76f42930bd9bdde355f69397a6d5f5385280a6 GIT binary patch literal 5210 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 J*h~)7{{z*i?O^}_ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Scale.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.Scale.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3771f7f4a35b3f45f6eabce67ce62927713d7131 GIT binary patch literal 297 zcmd0{C}!Xi<>E;!C@9u1GfYY?Ni-B<4NgwXNfl~m;=04g#b_kNXe`BOqQq#brF5kA z<>Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPtw@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(D4= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.StatefulSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta1.StatefulSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fa65ebf2499c2ba643c4f601620ca658411d1d3b GIT binary patch literal 5803 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..cba1cab987bb2a003161bc19c7ec176b2d8404c2 GIT binary patch literal 382 zcmd0{C}!YN;^IjxC@9u1GfYY?Ni-4?a?Z~yDay~uNi7OWEz2y<%+C`#&%||yk&Dqt zh|ySz(L{;SR7>ed>&wO6M^+blJ)75+Xz^lUZ^DrkCuiurn6cjMNO#!NB|B1$L=4R= z%}k6;4a`j}j4jMe%?yl;EiG=pYr5LlJ*Tn2i6LNZ$JXZ7`RC^BW{hIvVl)?Gv`Av- zVzd-uGBn6i;9@c~l43G6R^oH1db)eciT3K^qg}`P3$&OF4GkD97>k$;O{$m-O}iK! zflAGU6kks0dOD@+<>Hw~=jnz%owMce_C)=YQ)-`0Y}9zRbNZ3CSfFX)J9QpqZ>G$*IFRw#ulsah$qATunr2;^fWE2Y$m#N2|MRK4WL@^eEf3sQk%#RaL!Ad`wx3vx1(6N{Cs3~Pa+C5a`aKsM0Cvc$}s#H5^5kVLJ- S|5JTyU;LUffnSP2i2(rYbcqW9 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.DaemonSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.DaemonSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..9db500904ad5682faf4eb2c3b1a9dc4a34baed01 GIT binary patch literal 4677 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 UANQu(EH1D~P5?k17MJCJ0lReJA^-pY literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..5afe43d70c6a5f69a89689a5385231249b69e985 GIT binary patch literal 5176 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ee0424c2c7fe7b74c6096b3fd2ea60b4a92216e5 GIT binary patch literal 4770 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Scale.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.Scale.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d30055f1eb48ef4dc0e374486859bd0b07b12973 GIT binary patch literal 297 zcmd0{C}!Xi<>E;!C@9u1GfYY?Ni-5-4NgwXNfl~m;=04g#b_kNXe`BOqQq#brF5kA z<>Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPtw@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(D literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.StatefulSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/apps.v1beta2.StatefulSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..e7c6259f938b195cacd2898fa72bbe414dec25c0 GIT binary patch literal 5760 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 Haa#TldOoRv literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..31245ae86e760061fbb145b500e8507dd1c9e197 GIT binary patch literal 341 zcmV-b0jmCMICB6BC<+*1b#!QDZggp5VRUJ4ZZ2y$b1rFbFLp5!3{-DxWo}Ysadl;L zbP}Kf3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwt zq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRM zHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt z0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho z5_=*sI3hZGA~884I&O7rY<+zaFA4%OG#VZX0x~rc0x~ul0x~xu5X6GzhnMJ+kHw1U nn~KDVc_6Irio~DJ(Tj=!8V(8qGB^?l2-(Q;;tmi18UP{y0;PHi literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7d1f1adae54cff42f7d16f3949783d0363b6ea07 GIT binary patch literal 323 zcmd0{C}!YN=aNV)Ey+mDE6GewEXmBz)62Ff*2~P-FEbS44$03>%?nB`%SSyA* z!^p*GB*bVe#b~0$XsV@jr1j5?6( zMk0o0mS!eKrUvFF7RDB4re+34#+DYh-!)xr?4HwD;KUHHwqt8^>-=+bb~8q?aWR?; zFXpdqw{n_pU&BGczdG$$tktZCN^q3+d2J6TP)Btb1e}e zp=u>V3neQcX{ltDSDKSkTPwuD#bjh6#AIYDrNY4=Bmv}^0eR+9Ohy(;TtJ?s5DOQR Sv4Iqmv5^v!v7r=$5(5BPbY|)R literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..91156009a75f1a46553bd227f8edf43158d2ade3 GIT binary patch literal 328 zcmd0{C}!Z&;gU@(Ey+mDE6GewEXmBz)62Ff*2~P-FEdO^ElD&K;tt8rPR$ESEz3+T z7wTu?y2HrDXe7jFEX8P|#AvFebfop=;_f4>3%#Dr>q@kEv9LGc$cmFQ^j^$ZZ+4_R z?CFvnsYW7(W|n3qMy3YlCKkpPW~OEaM#h#Fx8F5gZS0=YSm4AEu(o4sbL;$bb9OUE zv2ih)3o%+Gv2!t63NaZPWGQel85&7385%3`xl}#fJ>^7ub@9=zWBmnMOooOA3>J(< zOok>^OopaijE+F1Wdq|&n7l%Jli?_NLwt> zG;=KxA)#s|LklGFHULzJdkrbhDX-^jb3KW|HaU*pl>P$@IWF zBVA+Zgqxbo&M$h2%upiX`Tm5rp7b`zE#M!75hqBf$e_s7Xjp7ql)~%P(fVoN%HQ+- zx$x?v68o*(T48CrcKPV>4rV!)!A;#Zq>z?r>0CJS`)}*3P^uPIhL!P~z5DIr*=O|` z%`{_V6C~$bFmebmeX$1v<0>#g+edP>=kojRrvDne9js`;n65~)2F%C-GXpdfRV~un zI1Fm#pmA~XdfGo#tKPjlxC0;MeEq18@ z7`Q=zn<{XN0=G5bk^^_*Aav4-K`;U$dL#q|VQ4r?Owtt5;vj6btyPJRD~-4 Di%f7q literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3593afed83d6637ff9ff6f97edff962bad1638ef GIT binary patch literal 342 zcmWNJu}cC`9DwirhKfftJcQtAs5i+$cJIBr^POAK)D%e#L6FKtrf79)U^rM z7Dy2_1Q9JoMPpag($-Y#NiO{jxqRR9@nxi|V2%e9#lmuaJzY)|()nB@Bi%?kKUQL7 zFz#fR;>F~OlPZj-QjY7+IHk0+L7ISn5JsFJp(2AKQ=@*Zb5ZxN*QVO1UPAt!?=SjS zAIFj3<6FzG&jpu{4i7QQwhV6SQ9}x8nU>ClEx-S^zN+^mi7zx2P5(WRo&UV_n)bmMdnnl?n;tAq?Cg mz)cmnMS({(;F1HkV<2?Whe0p`f~);~O4mXKVGJWxp~^pYENsRA literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..befb55f58602c3b374703911d89509dbbcae5581 GIT binary patch literal 327 zcmd0{C}!X?6)%B)H($;{8w%eE-i%gom=GZYdFPR&URE=|fxO)d#4%}Ff| zN-fJwEf?x!;=04g#b_kNXe`BOqQq#brF5kA<>Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1} zSZ{WuJM8I_9jQhlhGv##CPtw@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH z{YYCZ&@^)`5h0;!B|{4(D<#Ng_w-Yq?nA%m6(hy XggAgAKo=PsNH8cd85>G5C@}y42_b5B literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..026bdc299d9571948b91d4ab9d7e203ba028875a GIT binary patch literal 362 zcmWNL&npCB9LDGUCiEtUmr|3%dQY0N=6&D!@y?!*laq*pQr0$Q?Pf8%)M^h)i)IsQ z3$?AZ4oY$%UCFT1S4P z;M)mIHAwK+3DKw9ZgUzRtV0S)Tv$bAAwkVS{7Sf@ym0UVqD3B4{kAWKm zxTylSC~#W?E;(=~20|yD7z86A!bd_-5Qc`s#3XGYEe^s~yE>K7%g{R!q$*VT2hEah AOaK4? literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..8a8daabd7e3734e9a7a8184ddbfb9e1d960589ea GIT binary patch literal 372 zcmWNL&npCB9LDGUCiEtUHwR4)yeCar^Sax}!n&57%7_Tq0am(St(JUu;2(pRv=J#H?$kXcLR-E1ne99xopER`8t zX9+LsGSWSsNxJE&Tw>8nW`~nW&-W+2^^~_kZUO%wj5t9;MFvHtM#EC`q8whYjx|mL zSN@*w&xcnZ)!1+K)(Xor^~*<(cQMPc3~uVSA%(O|OXtFo-+xpd z&OU3;Xtot2n;@BJ!^k1P^u=BbjH|!|?HtY5pDXXXoBnI?cCexWW4a>I8ZaXd%nZ*>IBy>|EV;0}IN3XP*;f8*&m+?k8kY^{rsP0A#VM|5a>IhRfs z3S#TGV)F@ IQWdKF121557ytkO literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..49f78713eec3b42a0387e657839e8eb40beee20b GIT binary patch literal 347 zcmWNJze@s99Ki2=hmuD$Jc8h8u$x54?!9+E-nkV`O_9_P1f6n`KhW~jKyk3>2PaX1 zP=ORtLlDtYR5W%)E^SScCoOQ%O}frA(_iY(!z}-bCV?+ zcM3KoqcJD58Y{+APNFcCNI0%L@060xCOHB8i!fpYaT#d}(!+|s)4Qtsw;QvabI%st z%YzmFrga+Wp57aNeX)K0?647PScb-Q)zkzRhHj{gTjJ+$>$_HO*4C$`xx4+x?VXFS z<||qnz{n&>#0N352v9W@#6X!0lqsZ%_7Qt5NM7*Fv3_6MuKPe>1})gj5tNlxUxp63rGfnQE1U r@E8WB5n#Fu%us-tVPJv*v!cLN62QPI0nX&1fYdjafonk|ON#Ul>@9Ac literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6cbdf45bc3f2cac53a338606b4117a9f3cfd2823 GIT binary patch literal 332 zcmd0{C}!X?6)%B)H($;{8w%eE-i%gom=GfYY?Ni-A^3r@{R3ocE{N=+^a zD$PkP4oWS{Of47cWa7HR$i-+R#AqzVXrjbus-<+K_2uI3BdZI&p3Un@w0N5O!M0<7d(XM0t z1zJpoh6W54j73a_CRI#^rd^DVK&56viZ3U0J)P3^a`DWg^K?U>&e?K!d!qiyDYefg zHflWEIsHgmEYLJ_EfFE1Y9&JpB`Y9lsbrN`nv+voE5yRZWMm?x#3cZvO@)|@%%qr% c%$1moEQC0KB0v`z8%QuHF&P_5F(@$r0Aqw~O#lD@ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ddcceb0bb2c2bad0f8cbc261362896ea5ad4c8b0 GIT binary patch literal 367 zcmWNL&npCB9LDGUCiEtUm(%3Hd(xCO@B7Y=clKoEQS_b0uLw6{ra0skP3I6*>121TYu!*c7Q5?-&3H%|js{+{p8 zhgTo9*l+FD3M(^>%SVs*GRv_HZtAung|tjd=faWSe_LOrO1-o?s!ZJM-EWuAKI_kD zwjCpzAerpI$RWV=#eNKotH1>99?LhLtM9u7|223!Sk-_rU6E)Vn2`r&1}G6#Ei%wL z3>wv-b#d}~IyBv=-@QDz!ynaR^Qbh~d^!$y=At!Q>m{T>nWXWE4vnwmmY0h~GJ^Xs zaDxChRp1r{Zfn3L2kyi{=%f>aU<5?;NC*nT&~TKPq%ESwLD*_nrxJM?d8Z$#3RV6A DXj*V1 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..5de2ed82b62194b8056897054fe666b8d01e6e19 GIT binary patch literal 356 zcmd0{C}!Z&3%#Dr>q@kEv9LGc$cmFQ^j^$ZZ+4_R?CFvnsYW7( zW|n3qMy3YlCKkpPW~OEaM#h#Fx8F5gZS0=YSm4AEu(o4sbL;$bb9OUEv2ih)3o%+G zv2!t63NaZPWGQel85&7385%3`xl}#fJ>^7ub@9=zWBmnMOooOA3>J(^Oopai zjE+F1Wdq|&n7l%Jli?_NLwt>G;=KxA)#s| zLklG|ZkbH2Q9`U{rS__1o`9X2TjB?bWa&*pU{TD(};n{Z^s$r*YtW~?_m(jE46$&OSb5koUeGZQ0I19KA#V+%7= zGXo=ION-m@nyxl>&uJ`hVhC8{) k72@Xjf2wcokN-fxD86?-9uDxrI-d%gW zyK+4w5ljUO1Td}EQY%msK~#JJg_MY)*A|E|hQ!3E#7}*TiIEQ){9tri<%7G)%+6-^ zzyIeyzo(POvk*oP`jUyRc&jfQinizX>i$5&N7M~vT|J?6S2W=Z*L1ZN{p_@T_Xn0sz)z{eL(9eFWx=Eg8y7(Q=i4mHfadnur=Bc^Q{ zI@2tJQ*JU-)2YpW{B{3#`worn>n_Tw`S9SySNh-iW^_VnS&bA+Rk(i*Qf$>hv|YK# zL3F2sP}hAW>Dh_F>j(D4rv|2vcIP<=(XzPG;~+-bLD+y&D7TvGrp03evx5VR<8Muk z!H(I{3zJ{?@^1|8ojbm7%iQHRGq1iN)vUaAs=CKTxT`>pwyPkT42SpbRp(ctwaB3x zszYZ^hi>NFIeh!uyMN0|+4$GR;osJ{rdFcI%>0`}4O1gqGFPt;%nyz&e0*&2^r4x4 z@64&`quwW;R=-x3RV=B(rHU+sYR*+?1t*&8tb!`g{p~Dd=ZB#g3k-%~sJvAdonD*Z z0IL8IFsT4RAqsL5GznOU8X>T?19o%?LqLhuBbUC2X{aqo*RkAHD!jcy=w?NesFR}D zljy(#z$=WBLIF&G5w11#Du5^fraH=_&fMxG!4ZL3VIv4HVA_r?p$9#!45UC^6VH>D znN6Gr7383nDpy3aoqNz$l*<5cg}@qs&}uA!i*ZW;phUB z5m@+4Z2QZ0m8k`2({^cC5ZeUY)+9o`q)ZlwJHQQ9*cSCT*0pT#0fqtM^-T9;?2#o^ zaMya2?PW7ZZjR2popWa7>QhUp>XwmrURsnfjwmRG%39l)&cKX@3}~ki2b=E(19U52 zqd{p%!?+S_v0AfH{vPXE2UN?Y|X7sQ-SR{`!EmIU2({KQ44X6W+Q(U61E=`5viTJWrjku&^*#XY4 zR%K7$`sL1N6UTpO+?aX&^q`V^`-49|U6FTZCE8f9aG`&9>2ufLh+jK5`T5O{GA}yCfMj zxjL?($I*&pk)=Ko#O;0|dw|O>0O)heb{Ehj(Mowd>Px7HLaRkM>Fxubpq3q{z*AJ_ zp~sS-$-H861kSJlMj~ye01PSvlv47Hb$L?@AfRccYwWlcUd1pV+x@rQg1B dVs3oMnVtRp?9W5>Iaw};#qu1M>CAFv{R21H;}HM= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d5f52a263045cbfc2d9d3ccefa40fd7b7dbf142f GIT binary patch literal 2090 zcmX|?Z)_Y#8OFU^Vn?eAs!2rLL#XaiL1py5w>!JDI~yS?JF$Is?ZkiL+KGgQ^WFL4 zvwe5=o$q{CMIuezGN3*l@{NCqzZ&+rl3^cYyCUWU)G%_-jN`&%!AfAhGwj-P#A1b9&xyVRo zI@a*N74dQQ(HD$AYKF#{W(PDUsEPXE($vQJnWYP3ZEK6u5m`R_-ES|wd1oHW^KZFJ zGtaDk@0~c`Zn?heaAA6mw52OtliR-h!{45}cX(#uaHg@U^G7dUIWqP7uNJOr2dWLt zW11YOF*Kj)mYJ+Gbc+Xc%MN~icWL$d?Cqn^W^YX|znrPpEz7Ku+PH2xCEXI!S_3V0 z+2b3>r&njEH_o5BwFted3zu)c9SPl;J+yY>@RMuT=9XUg7VYNMZ)fb;pe2Jl>DLeL zOihf896H2q)EEyNI(L}PML_57Bma2mPw)Tx6S}n8`&Z`wUK2c1V?5@D?!NNOtyDH}AZ>54nRT3^^em(Ha3IXkHZje7gedz#=M8-9oBxdoQ9y zHPBT+h_$#`wnOe~R2>jjLSYVZprr|YrEo8!bL=)VV_<>@K5&Q+C&2Wq2=F4%@k|gt zPKfl-knM#M=qWz9Cn`W8boYbgDj`fYK^sMx-kJ*d?X3X4n8$YPRdNs^%u%^sF#+u< zpj9+DKnZi)EC50-M#oRZMin*$Ueb+UY6Qn)%bHO%vN0Pbf#)j>1WYEPHWW*A#7Tgt z=^!5f7c38igj5AVY|sKIMCl<@7>7Z^GHwl7;FU}})C@>iRldCslSx3)h^SB~8if~AC~R9iRh0jtzbbptmI(3qxG z3bDVN;8>7>K33f{Ih4(1*-qn$^6A$$PQUt%m8(lXbc*ktFJHg9a-{z5snrXozFIzc zQf!<#y6bDKViQYL++urP-H9`={;MYVO=HXLW2^5z$Al5MeQou^#pP=&vxS>)r&`x9 zz1Flob#3MN@};KAtG;JeUUf~oZsi9b->dlS6RrN&n(-FlbR71kX7n0gDRwBQIn%8A zz#@~7Uxug{5CLd`R=V47+rtcHFA^VORT`!0sP48L&-5#asQ4?a~C_(k>BmF2(Qn7{Y_^KWRi&o6(tcz;uB-OPg@|E#+H z#cE^A>gCtpyTR^j#&1Zvu-IMAh?BcxIX7OZ=$LdQ_+!G%gOvvJV7?gYj3||Y-7!F) z4txMjMR*P-P^DGIb;Vxgv?NhA=Gd3bCIp_QnC(G-H#9pU-uATDC7|0;UIU95-hiJV zp+qk-4vCbIsVKKYZJjFJpqvJ5<5?T~+g;Vv3(ydTE^O)WI8}gc*^|yubRKJ_kM={e zPu|S$5y(ZPZxVT=gIf;4+{GR>h>7LO3L#;dwIBU?YVPAr0s-o5LNZlpz z@^+PlwCDNc!eJ0fDd-wQjAjp3zIwpgmoM0Uv)TpYxt{${?AW)Z#{9jO}-$4 zKi7-}%_zhR(KMH&br1w~8>CdvVX$Sh(-3*N6wIBTU&WX*aXgp{< pTt0nnGRCR`TemJ8x&OkpN2-FlC+c<24O9iI{tLtCkxc*q literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1.Job.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1.Job.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..459fbd97ffe224bdc3681bcaae01568771cbdef8 GIT binary patch literal 4833 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 BPDB6z literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.CronJob.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.CronJob.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7dc14d9325ce719c4e28370856c0f25d32645e3e GIT binary patch literal 5278 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 SJOM@m0YWAM5git%<^KT*QRD;w literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.JobTemplate.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/batch.v1beta1.JobTemplate.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fffa7cd5840518dfafc613883c992bf024b21e03 GIT binary patch literal 4760 zcmZWt33wD`n(n_)h_wv%7S3!>i%!!BhGwg%`s-#9BbN~5kV6h#l<=&ZsEv_g9CR*=O@SeD(MD z|MlJf_kP8jT8@n#ME`7I#=1qzMs5%mX0FQ+n14vmUN}2*oS=?JxAX{G{OuL zok(&c+2i&XCTffP4QtY4N4y!Dd9>sWe_h1KnZ9$1zv#8-@%Bvol%VK}gk@fpG*MGz zg~y_UoM`-f|0?dlXRJJ!;kZ6)U!EVM>P3?TDtZ#86mvQdn_Q zSoJ*iTeGMZ4-|ME%c3F*imHe*ukpO3ZBKkx|LGsjbvVI|4}CXJG#9+{PUeCX5CP_k z{6biX0<3Tr2P?@*iL!f;d45mgSW&2OR_JK3bk=htu3w!L-&GN7IUGIT<)K88N1AOd zB`Ud;sCrQy~i_%g!>S@h`1p z2GV`ju3F3VAD^9>Gc9}FgiXtH)}4+`rOH-CS-`3{04 z)cf}z{;A}@-@k`Q7GwpKs3Z%r1}i;Fr71;lQVMnt&4{-*n~g=0M)T;UXwlW6Z_UU+ zhikogv}yG9uK11rcRbWc{(a*pFGymj26~Az@yDeH# z+Ou~|^la_8o&)jyXErgvr0szke|z9utfMkf=NlH?e}s9Q?jx(J(++Qn45dmA|JU_b zD3{IsbKuCpQ5-*pnp%^2cOg%IV5`8^oRq5LVKk-jkQYjW;A`07{p`e#y(Ln(?Nl^b zI4(4bh7%xOlN@O5NLYhlO>vy`hX3a~tDxMJrg|t%<87lTO;5AUe2k`aejZv#=|VcZ ztYe1KMF*PM7uJ&9w!jTf5TYwiN>|;Ku6Zb3$9)8z9|ax>ypU#F_$#u&3=q+2F(t5{ zCQO+yl`NGCwB|q73Vf&kAl{O}^`Rult(6uL~VRPr<%O3=oM2BJn^J zPot*^TOw>3yoHD20it3cS`!k0+G{! zC^OKzXfL97BKm2|O-W+xL^g3>QXCJe_xmXqVgxJTQZnEYiGh?1xJ>+&t$+)fM6IU@C?3U-n;6}w3&;0ghek|$*5R6n{87QqE9Do!A(8;IrsqT^K9 zl6bo>RQ2{lt1=w^>ksZG?~c1~_rc#Se$#-Hk}zrtIZ1>_it|Mp)L`%*h{iyrVF@A( zP)H)I^SW~Y@fJfX1cD*Wy}!XO3~r;bsUQHoNN&BLi;RKNo^I)dJ_!dzXnc>XQ{ir4Rkl~1Dm?YLqt4rLhjKlr zxnJ2Q^@pbKV#z+mSC*Z+^T5j2!UzK7BhgkBW+Hj0%#+|k>$PhiC)4O8u~RkoGePf& ztZ0`va3I_e-&PSTDfQP)Bt6>Kofj%gT0^p^@y=h+M8y8so$_Q+SfPO4`ddqphM94o z2s-H_n>7hkXtLWiGFEqZ$;Q_MzQC0`?e&4H*`b=i777EK{qNV9(e zwEXdHpC>6_%L2B(c3AXO?U>k(eM95hFPi78yF1N8=OX9LlD5#Up8Qzp_J}WBY;Nn! z&821fS%1wd!9C&QW<`z2ZD12!r(y+-(Zh}5W6_Rk{}pCn;7qVS+{MSM^QQD1j{90B z|9Umt6u4?whpUQpXiZp$)`WG@^@k7J%YO)!mby}HFsY!l_gfkpZ*M;s>XZKD#PQKx z1!m)wNO`!pr+QT$vh74@4}x|G?F>WfdBTc}B!ckXrDTU5=nCzB<(05Ea)ezUyc{by z5U%Hg?XUZN{`0Yu#d8u37f+Mkg-L(H(4SJoV19R=XUS;S-CG~ss5#d7)z4DBH^2G3 z;8I)2L^x&aiX3t9f=DL-8CXmTMVH3{QPP2^Gl6LH&>Oa8wzbn~%SVta@=${!5A9Rr zvHgdhukRJNbUmy^4x6j0{hQ{%+y28ol=|Srd++UTyZ`-@yf;$UaIdne@g9Locn9vR z$V<6UVInUVAfSquP_+#G=i~HtL}Qw#pC!8*!wlK{+VgX#Y)ti6N4K>E8vU2H5ZyX6 z0QLdRs8Bup76fKS%ExE_YiqKCp_rUx8#4ohZeO50ToXL=>e9rv8gf)*hLSyr`Q_3v ziLI@#kBIGR3D*T0N5rZw26vm=&xLl8V=}XcqO<8m^icX~oi$_yhB!f+&$6%((^;02 zwE5f`p6NSXU?*}Lm{GJxoNjRG2KzG1b+54!o&e8moqySQN#Z#675HZu{4`@4H=X~# zlOBWvW6+63rV6FxKm6XCypzmsMCT)V68$`8b79z2S$Tye2DHC6A%iuRuHrOy5jRdW zCUQphyot;+vpIRgG?~M4#@tOD&X|e?38u|y#!{B!CNVNSVl2$A9LEW(Hyau&a$F8) zaBy;pf!C}z_*v|@HFLS~u*KpxnZDK>ngiyEB;f$M*C_fuL>>=BaOS!t%Oqh@282sqiZ?FG)<%lcmoksTOg(v(^U1lh*{K}N@B%nL-XLWt z0``e89V}1T-SzFgK1>EZhxC9|#w0S_8=Ns-<7Urdv(mZwImXoN)gny!m>D=p)HbbT zxmBCEoC#ATZY*ag%pkhIPA2=QIjXUaoAdut3?SD>l+=Sz>5_H~echM9D)cP@hEyOL z3?r)U=_6=7mSIa1?ALA-UrbI^j!%yt`b+OXIk2ZHbU4vfy<+jw*yWnUm6G7ub>uZn z@Khk3P=HQo;i;gJK|<3Bo(iNp3DBM3+CiR@cq+j7N$~O!o(iM`2)Yb-s?$Sg=kV^z z?vv9(2NT8Tf^9R`tbggn_>rc-@o3%!0<_Rt8HRo$aLH_`&x+^mB0L2P>2UW1U9rXo z7-3-zGi;;{!$O~V7|}UaV}tp1CWwG$K!D-fhdaLc-a;P>TX@MmJihNzEdP9{I96Jt zg?1$_Hz#&B^z4tHEDQR&kD7&DfHPOxIJ2zKLI5)PVqWRRnJ=mmcayEa!U0~jZ~tKH znSPFF)PM3Z*ZnVV{3)p{_4}ePiXY=!?-vv#VQIl;dPdSb4Q>la{2TBJ1b79(%?us& zFR_}E#XYC}4YOk&u>beC3q1xnvORw6!MUV9NAQz7?;uy${BxjR>Ye;| zTYJIx_=A$)EUZQJJWDrxn!f+=>tp`!upg6w31jAEOEPqr5g-{p+8^O8e7nPM#hnssXwU4~7f9kM%;Lb+ zdS{pS&p*6HS%JiQ7R-43+CFCCncN&`jW%X*WLIMM#b`;rdAM^@qPin`?o71qO!v8X z`IUHa9v;=*){BntaS!i8pTnXE=qO6Ak8j@!e)Q+cg98B_;lC%+zS#3o_1zz@x7Z5C=q;*l?TiQngcuP**yD_4!fFC!0|J@HIa!J6 zu#-SYAUh$D03kqD7EOA^85d@Bz;&EQ_2S4pcykRmNAw=I%^g9%s9p>5QkL|op;YDG>5AF6~D{(xV$@a z60Cy2TQrns6{JF|AiK~s*s8FPM|Qc)YFDK7fTsa3G!LE`=}Vs&sNNFXT^t`A*zex@ zTi~W9+{d!Na|)Vs5>VYaY2Ai3Yqo4*Z%kmUM6%u7_UU`yo{YR-jvRJ(y}QJ$*dN}z z)8h))yWEwVLw)6;{+c*T!l?<&Ac6xjYbA=qN>rznXbDW<_{fQ6DNnxW*$TExI#Fbv z2)ZtdBCo0fk+k+h*FG)X`F8j#1jg^}xN>ZJx9_+MrHx~(BF|byA%l(xjKs`%7|9N+ zs5tL`X83$ksB(Ys%ptS;qItgP+F(Pt;b?+Ylwy7m)k3SNxzJN^L}$lJwFc&LHDe>0{rZBLM!K#E z%SEi>l_{FQVVzyXJTdD9PB#orG&TsZo0F$4#>RZiiK{r(AS>rAlQGYZnUlT##dVJO zr7!CX^!y}l@dg=V?j?icK`@`98r*a)Z3V_Nc$G^xxLNTQvi%9h2QiVsd$Q=T%97J6 z%LzXlKJ9JD4-{*!l6y5plT}5Qc!AdiK_ifo+Ky{iYkjp1o~IxnX7LvnKDyQM;Xk7R zkyT)%(SXR1kP4saWULA#q#`(qvz~cW>ZuxPPy2(03#_&=u@+WqFPPuiNRUMAK3EcRIfLI8!y2v8seE z8_V1W1ChPk-|rc4m->6$L&I(EcJ>kGzOd`i%W>w3{;6rNnw_1YZEd0bZ?I#SQG%*F zeg%gl)~d?(KkXT){5BftIE&K;(+W(h_OCuZ^r01U`R6dB!Hn*(YCM6jP7~N)00lp4 zqW$akgEQ@K7S(rsf1AT32G)SFCfhBE2`~n3nriR;?CO`JoK{UsuxdJQnPk=Zsg~5y zj8zwwSTd|SNrrQ}$Xa#DZb`ih#+Y3MD5_oRFv@; z9f&Lt$q}8D<4^)aClxxWX5LH38XfC)i<52<_`FBxLx4#rB0xkZ5Gf(LDD$Y0o`;$N zL@hxIGm*Y(Y;;zKS;9N+fhj^65JJU5>coBj<>Hmvf5n`OTF`y4E>fu? zRa>NLi_$Ul5S^Ckv;ro=Lrnmp5g>XGdJa}49#$p6arel9k@h*hy2!SZ-rm$)*ej8E zL>`049V|)1QN?BIOc|Vc330HdP}YhN zb-qF%W#CODK%_}P_$kqu%`p*x^2+gS3So5he|@B-k&B$|^wkkqRa4h9FGMwhe1O;y zMPPq64%sYl9_k_x(K*)N7T(_^a`f{g3bj*_9X95tZPZppwKcqRE)q+5dt*tkW>nl4 z=Pw_$#-DMyZpGrs`>)*Up;5bq(h8YHF{v6WQ?B|?QdJ(Ls)Cap?!4B2(pwvBs1H@{ z3Jiwo>Y@rj^@MfNaX<6RaTZ&1-REYEyTd}~CEMViKe%qSUuz#~86CH~{cvDR{GYG% z@BJYvmhXLU;NgrWblYTAW}gJ%P&)6}qN-H5=0s1$WI+ZKjlV4`Go|Dt@NvY?_a zj@kf4_1C~g6Ili{x-jVZ{4NLepC&mUFuW(G1*_X82Koa#;!=l?go}D-u1s7L<*vb} z57!mcBzmr;|9H{p7-KaP=C!>0eKmp8fj)g?n|Y>j_+qHGJ+Lp-S5sJnm?_KyW>tB( zuYGP#f$wOrzAI96Cfs&V7^!8S^f!6C=B96m z+3tbgLViF^A{w<%rw-Qz$Q7N$757{^<@(3@nno0FfxFK#^{pSy)$Ts{>9(6F`BCqI z_2$l^P|K0X{?q=Wd1l>_ORc$PV_CSj-aOS@gwPuZ?Lw%I7B(V5B1PRJ5y+<7L(vA+ z@X@ru1$S%kWYx%C#dq55IAqq=nS(oKY%v?pZ@9GM7%g3dRx2XIR}-wQad*X)f8*WS z;{N>)FU5EG-@Nhd2itmPl83@oM>da~dMP=uD_D7UmbWf6)VA_ck^5Y@{3u*#U=Nf( zqDzTDEUkokgxIe2~>&b=OFSr`}Fuw-H}CR z!-dd}?(psw&)MM7j!0MUn$Y%|Ux)izlYEDk6`040LVL^Ln835?<39iHFDGJ!m|Z~2 zum~6Bqrs|5&z`{HNK3ETeq>}{WWOse(p??Aa42_CxMM3lO4tc>ugE$k4i80|`k$FU zQWmZ&4Yay1JRK=_MJ{xV?4bK3c5oC^ZDlH~%x=WIlAn!NV;u|fMl9<@PRE-Bl8%WW zVKE=$RjYJyHNZNOTc~1i3*iNI?P?y&coo1#6~hiqDU=1f=ZqWja<+YiH&b`dRB?=t5TqQ|na~TCVVNDa4 zO$aQw8-_aNOKHfWvbk>_h<15W+U0aX+38eSO>edk|BO zm=s1-@FpW~y3TQiffXZ*n}bQBv53R#SFV=0W$6nF4PaY zOE@DD&ZL0;MiPeO24`rjz>HpuH*0qkcFyAz?nUqs_+lfVb_4#UdGk1&&n0n58*moh zL{+4@E%J`{M=_TX<3Y?^=6MLoCM-_W(+$k08eE!T%-*OO+*|`1f_1>95X|G0#oVHo zxcmj{ISkIivVu8v2B?_A{$e?2a0|hG2G}ICdCcSHo()+BXDvKa9WDFf>j32 z(9#VB5dJ*L;4}%qJ|KNq-N4P{a=_adi_=*vGzHJ*7<2G^@GVYE1L0WU=Ho=s;4%bt zSvody@Mdnsyfi(>P`K#@V3!D$T7;YMJ2bBEY~&AP*c*uXZ^Ses=GDzPS}x9CDL|4H z;LJj-$U5{iYcMpb8Edh!hOB_L182z_#dLV;6W34U7Rv^f4Q`Qu^A=Kf^9r{jH%orO zz!K(`KnSupm0M%r#ZdI8WE%>oCmdX(C-JET(yAE{bPjJ) zmS^DEG;0hz%OF|PbLK;cCo_*N$4k=iCXmD}1*feuprsU-tifVRfr0bXRd+&s@1g}_ z{yGc}d)+Y7xw&MPkqov2%mAX)L6woz7IYC%jG(F%*=Q8%=l~BjJ^=_|S6I@BZR>}n zU1RO0>24qGd^p%!?CuU1Z437wi(HdhvAs<=ANO@{{8;uwcazEL%sdR zNS$WxER7VO^K_;pg-T8YcesYTqZme!*@u~XvjerkV?BY6h^yUf?~V-Z^Y5jrsxBt$ zR0WkH6am@`AbP^%+3u1+Rj6p!bAig>Ku6N#k;9=wom9aR2UTJ86XU*F$FC9YQDaC2SmWVD-h>H zrt9>C;d5rmaesplDKDL@YzZ`bD!i4U&Z?*?P@7?+bQ^`Zhrho;<=z67>AY+^SJ(Yb zOci^$se8|;xHms5JBs4_cQ^OPKr-+8S7}9TnBhjuYcaJHb_!KX{R#XCkUj9rhV$Wd zVOPVvkuv{~-}THC?{V|=k)^?=p76GcP-lHqBSO(D6u%e-d-uaW^NvY$p0F_qM2t!x zF)!cRb-go&i-_!eXpW~V(BV5UQkEC4-x)sjMxZpw)8uXToN-@_Nucg0>TL;w+lRKr z+#0o+Xqm96=Q;cXW@oo|z*k)`(zou#P*42}q4ELWE^p5Zh1rb6+%s~)GjOSObNJMb zsez)h5&cnMs=xP(%kK}}yd)=&el=Ki@DBQcwve`U&`d`mkD$qS z(2t-gHcJZ{k4js_cx;=j7~M)w~>AM8GWqD`JiTM1DXhM^kB#E%B|xju;b>N2_?ctU#xL~>B9 zBEv^1%E}dF`73&cdD>m&9r&+c`MF?cak#Q4T(vcPvL?9mWTbf43h62L&R~5_ux(ec zrheU*l(%{VA+2)viFae%r*1E9Ucn!J_xJmdcCq7=k7F6=7|%RG1;Mu>0(u)IDgdjl TT_{h0kwAcuNkBx0#cBC}&h6xJ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..a48fcada00c01722d786a933e52d9755fd2a59dc GIT binary patch literal 4761 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 arI?HjlsGtAUY_60DZn7a7%9b|!~g&s%7<(K literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6a3f729eb22647f6bd71e6c90973e82e80cedeee GIT binary patch literal 295 zcmd0{C}!Z2=MqcK&o4^J%u6iE%+J%ywkX!i%-1h76k_#BO)O3o`pw97hmniXNQlu` ziqS-g(Ns(6NbAeR-A7gzdOe%hm1yx|VQ<2b6(?uty_m7y>_~Um(}HH&<6<-yVzfwN=VG)J zVlp(yQs81TG?HR6G*;qssd~D5%8B;s;-g*1`U|v}3=It!EEtQJ3{9$-3{ATj9f3;C zgcM&+=z2P(>*eB^N9XB=KAp4W@b*OglT&J+O>ES7wsZQCwpgHP=2{{`Le)x!7D`q? q(o)GPuQVs8wpK`ri^<4D;A79-3qSq?0i(vXAMNlh$H75dG{b%&9Q z(MX8VSc=g^iP2O`=}7C##ob3%7kWLL*Oh4TVqtH>krgLr=)IV+-t0(s*wZCDQjJ6m z%`DAKj7$y8O)QKp%uLM;jEpTUZog}~+Som(vA~HTU~R|N=GOV==ImySV&h^o7h<$X zV&`JC6k;+o$Wq{9GBlE6GBj4=bE$f|d&-IS>f)na$NCGjm<$aK7%Uizm<&y-m<&z3 z7#)F1&4d(RPUw0%rR(M5nMdd8hCZFM>ICB6B4GIEwF%kztX>Md`Zf6pP0t(y#3IQ?_0W%r_G$H{tDk8*%>7$Fp zt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch z?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1) z<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5 zw8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf5+w=(GBgqb mGBp|kGBzR$#+S#q#-cVa%9U0s0x~x;0x~!{0x~%o03rZVvtfz= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ComponentStatus.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ComponentStatus.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1f6234dea536461e8de25bedf3f547586b2a2553 GIT binary patch literal 326 zcmV-M0lEHbICB6B6$%1&F%l0$Z*6dIZe?zCQ*>c;b#oG=0t(y#3IQ?_0W%r_G$H{t zDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5Rjl zH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q z8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u) zqnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf z57t9rg;U3&#*b4ZE5f}< Y=ZTl*w4LR!zZwEEG$H~rH5vdS059Nx#Q*>R literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ConfigMap.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ConfigMap.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d80d6367df17287ac3d7a218b2ba608a830d04d9 GIT binary patch literal 270 zcmV+p0rCE8ICB6B4+;WyF%k(wZ*FF3XH8*n67m5G+yM#!G75&|(WY9I;%F)|tgF*70# zM0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy z<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!L3IZ}T U5&|+c8V3pjGBy$c{Tcuw0Of02Q2+n{ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Endpoints.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Endpoints.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..00ff37d3b6b9f63792481fc182f98bae38aafb11 GIT binary patch literal 398 zcmWNLyGtBV97gB;l(g-WR_z| zZW^{!LRqF|aN(%?fAfD+UOpA?(%yYrK3hnC{gb~${nZ%R1gQ_tFmebm<5M#R#&uwV z)^^VZm)YM-bBTg`n~6t&F+)>m0+^fyX1b^|R4vj{S#yJ|TRHer*ll|sMtIRq;p8UmOT)cBGMzIm#4`hID8&HZ?k$Op-N(J1}rbcu1Q7S2}QqHu>BBe6W-& zZ)6H?dE50@W=iMj(#2*3guy|uD2VVRHz{z7v|$i}ya;I#5Vj6N(W=V6_bVOh4hLyO qL9%d`6ojci#~^vVcb5NOr8nGWdSA9)|9n$g$rVp`f|Dy5&|(WY9I;%F)|tgF*70#M0(}B zl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y` zw_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!o3IZ}T5&|+c z8UivlA`8Zs$GFC#HZRJRRw@EAH!=b;I649{IT`{pFd_moF)9cO0y8oa0y8r*2nef% z=H56E06GW=|Gl}wOb`G-lZgMp21)`mG*S!*k^hPDD-fu&-Rl8b8wk0Dx2p#d3<&YI zi{$|jfd7Wp0~!VCqKn6cVgfTYY9tB*Gd2 VG%z{>G%<1lG%|VuG&33iA^`U#je-CG literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.LimitRange.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.LimitRange.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..55b0b1d539de38b8fae084a21b7ba65f645c1248 GIT binary patch literal 423 zcmV;Y0a*TPICB6B5DEfzF%k+)X>DnAQekdqWfF=53fut-0WuN+Ga3OjA^|ljBE*I1 zql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?X zIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp z4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$h zRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+zar~wM4 z0SX)FguTR@#De9Am*|s^#fs>gio}U|=eLFDxRnwt3MIw8=ZCrGhK=R3l|Sc;vBI-0 z$B*T|gevL1r{|5D=9PxXj>wx50}25$8Vw2r<+Fu&5(NqaI5IXO8wwIT#-Qe{zdGlO zp5>&B=c1L$f)WJ^12;1_DjNzC#=JmiL~_WkPvwfS>A9EXp`sE63IjMdG%^ng235(X RPsNrJ1quT5&|(WY9I;%F)|tgF*70# zM0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy z<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!g3LEHz zy~LZug5`&o=#!7dis+k)#EE(5w}t1pl^Pxj9O$r+>7t9rg;U3&#*b4ZE5f}<=ZTl* Mw4LR!zZw7{0JeX91^@s6 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Node.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Node.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..8fe578773fdd18562fef59dadeca7960c2d9d9ea GIT binary patch literal 756 zcmWlV+fNfg6vn&5#b&(W2#Hx^z%?jo0(5s~x7#LOAiT(fAQ2yk8Zm-Ki6TUz5E6=% zODh%SDi#!q0g;Ma3?)!V%C@wGkoe$>=;LhLnD_@6jgIqhlKFCe=bZ1mtJWJJgrGr0 z$rtY5tU}*Y;5QC(65=q=5rLCUg62qgUE2Ex#rmkTQjL#wU)QFhLwWI`Sw(YQrW5`u zDP2^o3Xx>9g{W9nWW_9DtGfHM^^4u*vDX$FN`0N5o;Y6bcviTIRLEHnr{35DIV%F9 z`A!xDqQnCc3kQlC=}KRuqp3dR3_q(i0Z}v?RIUz)q!Ea+lPh4Y3Ob(Xane3#!uv8b znp;jiiyKRo`O&^+{kc6yUmn!jud-P_%nP%lPmJto+aqq20+X;Jp+nGENEaNBNOt9aNhFvT>O$_# z7Tq&{E$;GGhgZ+tE~<-sD51`|#PT2=8`pZXg!6D;DII7Hcj^P~f)WKCJGHS|5TALw z>817_>UndzCf4uO1NQjG*?7woZ#4cH{u<6mGYCfGPOHynMdAt1OI5K;z+TzC)yqNIJ^?(Cla zLAT#=#hDRbcG$h)(cOME7zldv8a5ZVo+cJOA$xXcD$-d7VRFb3^ddkk6%Gz&pu=ng zif$CoYCQ^ zJBNXUfijRt1Z^@|lvTlQN~KLb<-SOuV%d4pj1 E2Y;X($p8QV literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolume.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolume.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..877de8e1f6f382c1499a60868a8f97e22992143d GIT binary patch literal 1218 zcmW+#T}&KR6yAGLYj0vhMr^jLG0U_M%_Pv7duQg}*_XD|#0W9PCN@nIjU^$`iddnw z5hM}HvUE29 z`qJ&>1yP02902YsR!QZ@YaTR5}oZ^$>Pu@4I73Y z5~vLuW(PK`BsvM9wo)D3NP5G`Ap6bM?V5MJ%yJ=r;n?nQSLy5SqovhRx9>fu#R{}?-@KOiXvg4g`)VW#m%Lf?IG{SUM*Ok z^#{h)1K@!vnH~C)&m{E9VVMLDrhVsmcU}l4tYnTa&nG<`FU{hDHX`DbY1{g9- z7Eb^6^dG7C45`>OHEdcsieb|}5jrCiI0T7vp(boPbyY9|6tIjiQo(0I0gKhY1_%T# z5VSzh;+pgcU>rSk<`BWQUO6+K*?zhw62Z0+4Qbe>=ON5y3bxIr*8y38?1c9#d7DXC%Oo|;Vh8?>OJG>q{q7hA_{Se|P6^5?QqXq(}Azx?&jLZ^} zG9_h6%2vb23oCBA_$XLNxr1JB!b_~NVqf9@I~uq-1tVf$oCk1cE8rSKs$sy$a8S4f za4<=kbPrn++p#^&B^GsiSawA9$jg7NEnKZB&F8kKy}psH4gbb)t6B?1sO*x;E-Cyy zoA=A>*UqdrGvYq-=kAogUo9lQ-25RJ z9N(OZ7Sl4E%WzRwyBqf=?)Xc2KYQ1o&-t@UZoWKuvz*%a@cq(U+)pff*}L9AZ#g~p zwwpU%-$33XZ;~3>l%rG^GsjK^8~L62LSIWMH{qxA!NlXz!|6iCpIP_U;+@bk)0Kk| t&J2Z=*YC9+4IVr$E=it74w09N*@mCSwtBC|EN?0WQ!*x9W+bGB{s&ybg4qB7 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc26b087d510b82c44eb4119f190188dd6f6beca GIT binary patch literal 741 zcmWlVOH30{7==4y(0XGG-sr+%qmyV1$v@1UJ2Rc>4wWdrLVO@Gm@Ae-q@`2}MIhLqH8`j08d}K@*r3aN*9CkGScy-MG}9S~q8La`NTm3m6d>DnWdd;2l-| z*2twun?KZ6-4bkX_8$n=U24WlMd&MsI0bW5;8c;*N<}-KpX{?=UOwWCT6IQl;_e0e z#rmL>8+@bNebt$%gkRZCbW>LqP4=h;HFQmv6>1t^eqQ?=>l=xM_q(cI-jT}+gV;VN`Pja3zCiPoZpXMwB!=iMq$zqs z?ZIGoH~!9}l3eeSJ#1gg+i2Bq?huPD576pA6R>o>z&Wf-Adg_ zzt8r@I#v3Z!PTPv-vH)HPE)gfMMLFE)If%qAzC>7nH}_OlAS!=717q>}da twOM;{dCGqFF`l!Y2yXYE-@QMCVwdQ4ul)M*_e8O)a8*-ystYdB^$)(854QjS literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Pod.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Pod.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..dc8bbf00e1a9255acff1c5a889ed1cd7f780ba1f GIT binary patch literal 4849 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 a`_(T-fO8@b&WQpzC*oy5Td|q!rvC@+7C-9% literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PodStatusResult.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.PodStatusResult.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c1356513c4592ac8dd216945c0d54dfb22e2c567 GIT binary patch literal 738 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 L(iaGJ!EO6Lzs|E6 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.RangeAllocation.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.RangeAllocation.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ff9bb1e60177449450dab1c4f178613b1c13e0bf GIT binary patch literal 264 zcmV+j0r&oEICB6B6$%1&F%l0_VQyz-L2PVqV_|e@Z*CIi0Sep!3IQ?_0W%r_G$H{t zDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5Rjl zH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q z8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u) zqnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf O5&|+b8Ub+{03rY+Xk01) literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ReplicationController.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ReplicationController.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..88d7194b37b01cfc5d3a7a5b6a0316b07ad45720 GIT binary patch literal 4652 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 A4gdfE literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Secret.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Secret.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..abc3896038e04b82cfb8ef7c700551f07d668564 GIT binary patch literal 285 zcmV+&0pk8^ICB6B3bP|LD3fut-0WuN+Ga3OjA^|ljBE*I1ql?6= zaZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(y zg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8 zyOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t z!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za2MPi*G!g+U j8W6;S<%gH(laIxU=$nefiFqOj3IZ}U5&|+d8UP{yc_w3~ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Service.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.Service.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..dbdd9c130166165639df3cc64c4cbba12876d15f GIT binary patch literal 422 zcmd0{C}!Z|Kxms|&rJ z&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPtw@wrqz z-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(D4JPnTyHD zL`eEY%ibfik2F1PpZ;QU|Iw}&v%8LTRzBa}`h3S!iJ99wcl`Pf1dK}j91H@VzfC*} z;{9ioV$gWr)_jp&hy!SdsSuNqnG}j?)!sJ_jzd}sQU@YS0;^ydhdtn#EHYpx1E-s+a#zsO+ K#>P?%N(=y0(WLJH literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ServiceAccount.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/core.v1.ServiceAccount.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..37c7524be8aa860328eeb94f244020f86bddd4e4 GIT binary patch literal 319 zcmV-F0l@xiICB6B6bb@%F%k|_WpZ|DV`V{OV{dhCbP}Ed3fut-0WuN+Ga3OjA^|lj zBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOi zHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg z0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2 znZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za zH3|YUG!ggio}U|=eLFDxRojbGB+{;GB`Q{ RGC3Lq3Ia1QAORWxA^@7YaaRBU literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..9e4e27f9c5aea2fffa471644d2a0c766438b9e72 GIT binary patch literal 484 zcmVi=AMdSIOw5`V8p1&m@ep;uQtSsR^_C)Wik{oHaRvl zGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T3IR6~0XSj@3IRD1 z0x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r#6cQ49A~853I(s59 zIU+i4b!=>XeG&`^i_ON4N)W)W_^JUKEeQR!nD7S@3<$2C`nv-VsH&~}0U8(OhnMJ+ zkHw1Un~KDVdFQu<=eU(V#l0c|GBhdzGBq*+GB!E_GB-j!3IZ}X5&|+g8UiygA|uCz zQ^%pkk5eQo!o5i6iI?WIo#n8<<-LI9x}NBssY2zmg(?CwF){)(GCBe?GfE)}0y8uc z0y8xl0y8!u2Q(#N>94R5$ aj1>?7atH{G^3olgcm+a82?@^x0wEG~GLxB!OG*J-r2ZCN&Sa)l>tBUhkl%lw8H%peEY`kv z_St7Y&)NICOxAA%kyTWZM~;!WooFUc99-#-S8VvN1#~@Hy>3!>lX(1pUxr=V%1P7Q6!D( zvaTwsL}Ww%^A{EGm#^Pdz9Pjk`*8KiH{RTHepf$AkLQraBRyjbhYa3|rKL{JiiyLD zW!L?aON0H5{;D+v-rAvt6-ic%C5w*ot(cZtu~LgBfvCzq7TH)EY^;s6ZTGea3xc~& z44zt)9B5n{+Ektx>f7e2d=Ne}Y;8W+}GY|x3 zXO$>qPE!{PqACbxi6{uts@(J(Y{H^kUdIThbr+80L8pjCHCXxRsXyd-E9Brlk<-_(RdElK(R{gC?y%*L7S@D|4=h<`zm`SJfnW3qj@zA5-^ z^tBfKlnD~srtLR(AP2n4;14|LW^^xGQJ4zVj&`7@Ij9AeH2xv>&>7#bU%qttgP11! z>5q2R-6;&(haLnW%<%$?m9^a6sd*tlKTaNQ5<+seq%({G~V=4k)eS#ikPi(UQUm-5$7hDe@G$x_&fp{*C zKt}|kIe_RcAVyLgArhGgO9b0`4_)~<=8paHwTiyjy>R_kr2H*!*X-#d6-Pq#weDki z!$%@p-wJN74|Sc+8g677$oQE|15-{k#{>?{69Q==#DKdSM_5`&EG;Ss+|P1BAQwPn zsQR7Xa0-YFry%8F?jFvq!p|wvX)YS{vM3HPYH0 zZaNv*7hYdUV9A&ZMNE$xqJ*CSJE_e7IKg5&{Pv|!SvtQ%4yK4w*TXMIdOMX>!ItvK zsk-n$XL$SB1tSf+lUNiKDo>~ix96S&6t&FqPpEF|sqXP0d*kP4_QX5O558X+)0r4J zaw!taq4eozbvtiHEu|N56Jo9yJRE75e*C}HDR3JIR1B?++G9l{3jKjSXlKAtZM*AQ z{}yLId-J_-V|8)v{`%tscZ@dscD)z7$&$x?>&qB7V?W|%N3BBtQ`=f3^cZ7BF12>>20*CT3jnEaDMpeD5QDuip)m{8V|JDL` z*I@7P5l`7K1`m$348%0T6(pMU1C1K9p^>FP58#p;roD=S@a<}>W_=kr2e2uFHPvy-R>E1bIq3OcaMswN zBNPz27zO4?L52qw7lO{M)|^sN_D+fsy0QgJr(Wfpf!~Vc3A5?4oE! z3OntoK=523B+c?0w8WA>i(`@LEcrTx$aDoF(^cESYvGPh2E4nA?Z|oko4wV44}MhP zNc`~DA8vO4qq6ONB)xlf=byL!vGVv3n`p3womyQljb19F0>u$Ss$~>!M%%`4Er^@U zrEpJyq(S(x>DYV3vuR{kt!KbjALx0;cP`S_5a}ojZfXM`44H=+K@7_OXsAC_vDJT2 z8an+ewxI9}6M7=suEcsCKZA2IIhB8SL8R+cxUK$)7Z&>WOw=N6ZNc_4{#v$0;~!@- zI{(w*@=!x%pxIv+UN;cj(Gc9Y(X;pYp^Z$);E%^~*AW*+ToLz6g{s*Cm2_Rkn!2=5 z$kHUoOBe zERX`(07+oHRxAj)fC~kU2pNkP(OiWlPZgJdvK(`!!hCtrOpRhahYU=!P)OJ3EtobN zOo~M*U|A5e=kjr~q&k3Td@oAqUDwnSyVQIK;&viV=0+_L^;!JWvjkHpE*9pHm8IfK zqDUc7Q2>}IPRpLJnOcfD83Gi<99mS$XL9qkBBAj0tf=?dxw0th#mfX-3Qj{ZGlgP# zDJ-oPRtQ2-a;88{3cd(tIu)OvBu`&B&5%vdJVO>u$gCuknx#@fp3dJpd3jdBtmTDM zN?tE01jjKPR2eIdb5^buagB&uz@_RM)s~ltB|^Sn5XhaHtQi1ia{$JIvNk^y)0&nCYh>%7f`zw^G!kK$53H@u4qo-hqIUeW(jYH&$S}Vg;`=!da6 z;IaqW-91As1%Yz?)!}wu<9tu2|FpNy^9I`%o!1z;H@x4O*H~pRMvcyEtT7m)#b6Bd z?C5+3OvadZ=QU>S7Hf*#lH%Yv4yCh!O##OOO7u3YVZRJ$XmGpXmO?{?2h3~?@b^ca zrr~woP2t+DYko_BW6Uk#=CRI;VYkj6(1~Ny7PF>@q3J!e!hg=&9BHoeZVi?71S^}T z`_2sYvdMyV7KW~UKUuKOLeUM|_JbGJkG2Qi8SJwxJPKHkiBCY0+6FQU1T7e*!9J4t2Hd`~n<;mMN*OpN$JQ9nNuj z&xB7LTsl%#%-%5!$`n7iNGGt+Z&939^DaO9Y=y1k>6`|_51EFq|%E8T%d7F2aw|iXZMCa<@ zx~65hgWc>}QP*P=+`azpq0TATeI|UiGc)|VnrA(Yk$s)sEw6-5REO5JCw~5J^We?B z2fD7J=+}h|-@dR_b+a3(`BA(7!X4m#5k1Uo!HJV)11>_G%s_%n@fCzVL62}_f14fX z8QFhG%m^ND2pq^7?(!TBo!a6)>RBiK6|_Wtyu5!P z20LwS*FztSvY+zZ3f#erTfQs%YE0sR-+y%6{proVvC>x+T{}nVx39eW*Z7Io1}+9; z&13q|JLR3$x#PG|!TR0;p7XVZwjYUXtM~4ABqVHhUkX2Iv$()@ISB}LSX`F>2mj5~ AApigX literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..be729cef218bbb09fe887dfdab9c9476dde1f7be GIT binary patch literal 5216 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 L`0)JDKycuHZnA}m literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1e26bd1f7d50048b249818108596edeaacf6791f GIT binary patch literal 648 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Scale.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/extensions.v1beta1.Scale.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c8dcea40ab256ffc1cf5a06b79f9ac6c21aebb82 GIT binary patch literal 303 zcmd0{C}!Z2<`PP+C`rvL&dkp%)-N+mN-aq=6k-idPRvOaYG>lQ!^p*GB*bVe#b~0$ zXsV@jr1j5?6(Mk0o0mS!eKrUvFF z7RDB4re+34#+DYh-!)xr?4HwD;KUHHwqt8^>-=+bb~8q?aWR?;FXpdqw{n_pU&BGczdG$$tktZCN^q3+d2J6TP)Btb1e}ep=u>V3neQcX{ltD zSDKSkTPwuP@&8oc+8_UcfKf`4W6is+BOvyFMj;L^CLcRCL=Q`1|rKI@0=barcqcg3X?%=Fxe&p-<;*IlMhl|Kya~XA>JWp6#4|q%9U`nz@#U zkWjUfp@otakhD~?$}7#usjU?f;bP%pGBOe30FtIcOh#r>Oh)EX0vrrLwuKZ(6zD2r J11Sb21^^p&W{Cg* literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1e7ac80d7c3d5701aa101cd717ae5aaaa7f0c2b7 GIT binary patch literal 1302 zcmXw1+iz4w81GpWVG@lw=~Lr%6N#YTw{zyqoC^k(Qd%fVNg=?4Zzd-CWZZ_n_$L?#43nHQIp2Kqo!>3*&G)f4Sbu4* z-YVDf*;0UcZyvMdNYgT(kN#hsC>OHHj`{aS_NT!NVH);;A;X5+5?(pEc5QLx>+0z0 zm4&$XX!*+OM8D3q#%Bt@HOkK0JSS;oc{e zEg{R|eV$PZS+X0l)Pk{Hw>swQYiAdF=NHzlUAlV(4)iX6d*_FExruyzo~2_QP9CjY8qb5%bsvcGY0-GU=DxPRf<4%HhcpAf#o3EHuCa zrzRzrDWy*WFDW4JN1|;UG1v1k>|kIXVw)TfDY37GkQ#B4fDQn)5rDUfvw4g3p*>G9 zXohx|1|pNSWC{cV(N2mriG;Ifn)VX{M(Y_QfEdZ4?F5SS|Mv-Vc^!L&y>#d7y=!|O zF5NxR+NyfXi;u2<)m#2PysfkL>2k^ZH^hE7SeMm0(19`sRRsavR1-iW;ShI(pMYEn zyrfk6+tc+DKueQtX;PN&1YQatYay@u5s{826=*#Br@<2xC{7I`#AL&BiNLK;3+Egp ztmITZZ$6WO(J^zDjYJ4%!01%vHn{k2$H(RdBB7P(zKxC;;`O(`HsGg#Mp zbJT*9)0yI~22Vu6IHWLpAijfIGqKV1phnz{0TMTd*^8cyu_43>eFqeRZ9W?<*R?xu zWjbB05LINc3xK;R?c{UwU2qGn8JO{HXgi5)P$WI4I! z>g}c3-s#U*KRd%WubsO6%QtI3pQ!ZCeKBdCUdR42*l~ls?}PAFybfiznohgW2B^7B z$4L}js{tjM_FH+dwMR;5wE!xhiy%R>6oC`T6wUVp`b0CZ3&yIIx+bO>BUj1CY^og~ zMKMgNxIL;1=maEDFAFhOAD;6PG@& zo^YDdx9Bi6v2BcR(}<>R2B?lMyEMXdz22kdC_1~Y}1Gi@)St1Q}1P;kI;4v z0`}^Mh({@k<2Hwe`Sv)7%p_{>kz7!PCk-0()Xq3iP(lxqxWlGl4QYDV+{QL55IRks z7NyW^7C}_IF4$a$%W^Z3W>le2@q=v?V^2YD9Kw-c(j|A|v0utDL&^=ajC`=L>;8og LAD$iP3-|p8+0cdp literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..b978af30037bb7ea324b4f985b266a00a3d7ac42 GIT binary patch literal 353 zcmd0{C}!YN;gZZtEh*10%FfJ7*UPpj*2~P-FEdO^ElD&KV)x8TFG?*g7TUnXb%&9Q z(MX8VSc=g^iP2O`=}7C##ob3%7kWLL*Oh4TVqtH>krgLr=)IV+-t0(s*wZCDQjJ6m z%`DAKj7$y8O)QKp%uLM;jEpTUZog}~+Som(vA~HTU~R|N=GOV==ImySV&h^o7h<$X zV&`JC6k;+o$Wq{9GBlE6GBj4=bE$f|d&-IS>f)na$NCGjm<$aK7%Uizm<&y-m<&z3 z7#)F1&4d(RPUw0%rR(M5nMdd8hCZFMAgM(3kL5j)9REPt}HxptqGM7>XvMhw;xn#Md tfhTufF=1?QXkjrD3{rJ&bZKp6Lu_Gla}wnN z3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}= z6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCj zVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m; z0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*s cI3hZGA~884I&O7rY<+za1PTH&G#UUR09{{U1^@s6 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..45c3c6e3c82d5d5807ac59f4ad1d5a6c03bdd356 GIT binary patch literal 275 zcmV+u0qp*3ICB6BBMK94Z)9aIYdCW*X>TufF=AzOVKEX6Qgv>0X>DagY+-YA65|01 z+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+- zK?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7 ZB075_F*zbSZgp&IeSH!FGBg?hA^<4wV2S_$ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.Eviction.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.Eviction.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..83d19dfb5e1f3f1113604a3187565296fff22eec GIT binary patch literal 354 zcmV-o0iFJ9ICB6B8VU|@Z)|B}c`tS`Vr6t;F%k$xc4=dDX>V>4y8;T_0SW;!5&<(B z0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1&m@ep;uQtSsR^_C)Wik{oHaRvlGBq$a zG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T3IR6~0XSj@3IRD10x>XZ zAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r#6cQ49A~853I(s59IU+i4 zb!=>XeG*y-tnP}$pU%;XiUATO3LiEv%9U2dnkdA-$cpEbp6IZU>7t9rg;U3&#*b4Z zD-r@SG#CIPAm@pf=CqyVu)pQKfaJQK=$@%U<+Fu&G$mo_ufKA|jw%8&H5vdS0NC=2 A>;M1& literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c154498d8a4505d5a94d5ab6fa81f89d5b835e2f GIT binary patch literal 501 zcmd0{C}!YN<>D*I&&f=#)GsqkN-aq=6cP@|PjSgCE-Ec3$;{7lDosgGEfG4*%yoy6 zi_u7k(O8PnM2XQ4rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sd zN`@9nRzT8H$ttfjC#SYnXc42(d`2!iE)&Z<^U4%+6VpNiT`(}xH8L?Y)-}l~)wR$y zD>5-LFi9~5%A{K)8|h|S>ibpbxeKuw`07>ar3=M!shL^m#U}-p>*=Prn loSn=H?_Tfw{_{T&Flw~CeYu6j;M#+h-5~ydMkxj*1^`2Qt>ORx literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..4ca0855f7bb58f0ee40ae6601a7cdfcb125b1da4 GIT binary patch literal 644 zcmV-~0(<>yICB6BBMJ_1Z)|B}c`tS`Vr6t;F%l6_Z)8(tV|8+Aba_y3Y-wY864V3= z+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+- zK?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7 zB075_F*zbSZgp&IeSH%00tf*T2FJL@qBbuY5mv>TD8#?WiszJ`=&+FKqKhI0Q^%pk zk187^E5f}<=ZTl*w4LR!zvaDv(gc zBuT}F$(9lo2-vW;(%|vonOzX1*{I9^y#2S90b()=7(c_f#FNIl>8*>zj^%`h<%hd7 z#)iYJQ4$si=7zZZ?~k{-fB_KT?}3-ghKjI;0cs!$2I#1l+qn*XRC@m5c2$_t< ezsR}7xk3=Hq1DCpu-%qux&Z_V0y8ig03rZ%tryM! literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fb1908e9de8e5ad049465d193078d488878988ed GIT binary patch literal 503 zcmWNLziU%b9K~~=sBi^`OBNpv`Ua86_cr(aytiATV4{hnwW+00u4xi6Ce2IolC-8| zh*FgVQ6XT3P?0(aA})$b2M1r(E^bb`CNztGgKs&*=X^MvGWSCG0zTbX&E;vX)x7OC zN}XJ@7>ZvC{II#m2l_DUz>8@Lzeb?*%)3V) z?{B^QHQGbV$1rjT;;Y9o5=3FqJ7=)MbX8%7cJfkZyf^&$aMRoGe}7VoD2zoz95obX zb`)myQ7lkxa(4Q(KOXj{yD#>4AUhs?`1UC`b1>{qp7qX8zC8CItORRLBuvPr#<(^c zq|j!otxBcaC1I@SCQ)=tRdicZbSI+dT>XKtk8mD~SQP-;5-gBBwUhxD1f{G3(h9h> zF4`#xG)?bP33A@zGLgzs%Bh?q=Nu?pw(~%30J%W{qU&qRWhR5t@B%wtr)v`GWCfpM z1p^$omEnv66^n%px)7IXNLb|PHMg0ps$$O6(*RWlHH#WjO4Fgz6t!erx;9H*&zb-+ YNtdolD$`;?cnNx=6+EN~HKc|918;bo4*&oF literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6aba7914e37c72370be8510f29607837d85ea580 GIT binary patch literal 318 zcmV-E0m1%jICB6BG721WVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp5!5<_ftb97~L zQg3W!LTPSfX>Ml{{{afz0SW;!5&<(B0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1& zm@ep;uQtSsR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQ zg`duxy8&7T3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^Z zF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B z#D-lO0x>r#6cQ49A~853I(s59IU+i4b!=>XeG(7~0x~ob0x~rk0x~ut0x~xm30ond*ICB6BBnljIVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp5!1X6EoWfJuP z3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}= z6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCj zVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m; z0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*s sI3hZGA~884I&O7rY<+za6bb?|G!g5&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143 zF*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8Uisl zDijhDdm=G7B075_F*zbSZgp&IeSH!T3IZ}T5&|+c8UivlA_6iu8Vm{oGB^?fGC3Lo JGcXzeA^;IAXH5VA literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3dd9c173563cc520766b3e835ab360e5937d9964 GIT binary patch literal 509 zcmWNLziSg=9LDpWsBnVAOBQd^8$<%%w|Vd9`*uqdOf-?SHnkMW>otiq=9)`#Nm^4f zM5#)Gs1UG1s7M_I5f??JgM(MKi(4mM6Pm@p!CRi;^L%)CD$I|_R8||SPJuYB=9WoTyHHki&V(~4_4XMg_PKk5xey;?Go zd;j>;gY8$pNBd~`l#FbQ*y?E+aV*jJ-Se_UHASMjdiF|Zyg&T)Xv;t7|9D!9NtDJT z3^gQbbR=r_Q6f|=d|~>mKOXj{doK@mAwM2{{QlXQIUIH;&wH09Uta_dSHd+r7R7i= zrA(a-ldH4Umg{!AI4Vn;p-7skN}3guG+UE2ru;;5faHSA6IB3c3ot>j%u)_K;Dk^Y zgc)*kgSRsRNS53q0>r$@L@JXfgb^`^FWOMNY88N30AiB>#5dNLD^!G~?uT}=PSyp~ z@rrzo7Im=UPL5FmgfA91$wE?OA!Xu|H@s%Ls_;2O%K}s>)J&oaAq<-cgV)kY;aN0& cGj9MS1X;Q+h{*Bcg0x>fp4n%t8yOhX>dvnE# z#*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KO zk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za5DEe^G!gi=AMdSIOw5`V8p1&m@ep;uQtSs zR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T z3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{ zG7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r# y6cQ49A~853I(s59IU+i4b!=>XeG(K30x~oj0x~rs0x~u#0x~x;0x~!n03rZ&i)Gya literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7fd54c7f0cd1019a8079eb763f61bd8aeec5aac4 GIT binary patch literal 317 zcmV-D0mA-kICB6BF$yAbVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6uY;b5{F%k<> zZ){~kX>Md`Zf6qz0Sep!3IQ?_0W%r_G$H{tDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)b zF6fxAHpGio<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=- zpU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSv zFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-| zhFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf5)cXkGBgqbGBp|kGBzRtGB+9w3IZ}X P5&|+g8Uiyg8UP{y(6(ui literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..f14218156626857e362255278cfb2d4058425b28 GIT binary patch literal 508 zcmWNL&1(}u9ELM1Dy-mP$i+R`J%|K;)1CdC=`B$((L~bP)KVzp=0l80vq?5dYf27L zs*)fo1guahQV)WN7e%E94{p_7y!E8lgy!Pk;9lOt^FF-173N1|O`d7y-2!pjtvg<` z+;v-JuSP1&CuMK8L-VDUOYxaY)wbU%H5a^U34c2w|3xy=F)|cns>q6|!Pazd7`$s- zo$L-=cKrIut>Eq9HaXt@UB_jtTmOm{cjwPzyJugdCS0rkvXD@fh`=eivHvNOakEivRM5z{G zs3}piD^Y8J;-PBend!5^cr=*qy*${3+<52X_s{O^;ixxx-oH5c`XYF^8m>99D8`#A zW$Ij*T%D`6tJPi)M`cMjv7}pyq}!^bJ26RT%1;e!QKx_~IZGCN}LPb~_erP8eWKBQ= zugd3W(EtZ-XBj0x_)>9$EG9$-k`_LB-D{<43ZFOi3_y)S-6Dn%!gPo*c|Da7o=sCX bawb4rkmYNFhzwukev;g5hYv|oiKvnP4WXUp literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..0c643ab25109a53f6c4aea2a4fc8ccdd1a4548a9 GIT binary patch literal 323 zcmV-J0lfZeICB6BHwqzgVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6vWprUN5)wmf zb#ruOa#C+>WkP9gWNB_^68`}T+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3r zk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxr zfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!T3IZ}T5&|+c8UivlA_6iu V8Vm{oGB^?fGC3LoGcXzeA^_c-Y!m7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio z<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM z0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|l zdIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{ x5)ykNF*qVRdm=G8B06q$Y;1jf5)=voGBgqbGBp|kGBzRtGB+v$GB_FlA^`X>Wl;bC literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..0823a9d1dac00ed2021f822c267ce742dc55f5a6 GIT binary patch literal 316 zcmV-C0mJ@lICB6BFbW}ZVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6vWprUN5(`pq zY-K`eZe(e0XA=Jb3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv z=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9 z&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z# z05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL- zT^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za5DEe^G!gm literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..34ac626969779f0889fd32f4ea3489ac612e7310 GIT binary patch literal 290 zcmV+-0p0#7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY} zG88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr> zIARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*u ziUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykN oF*qVRdm=G8B06q$Y;1jf5dX@Kt@!`{|Nj9P03rf1G#UUR0Ol`g{Qv*} literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..55c60776df3449f831f1e8050068ea8aefa1b858 GIT binary patch literal 296 zcmV+@0oVR(ICB6BD+(HOV`yb$b!=&FXD(|vb1rFbFLp6uY;b5{F%k_>a%pdJX>@r* zY+-YA67T^E+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143 zF*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8Uisl uDijhDdm=G7B075_F*zbSZgp&IeSHxB%8sr0|NsC00T=)x0x~oj03rZ%hipIq literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..103a240657619442598f6383e167c3838804c8a9 GIT binary patch literal 295 zcmV+?0oeX)ICB6BDhe5MV`yb$b!=&FXD(|vb1rFbFLp6vWprUN5)DvtX>W3Aba_K; zVRLg5@Bs?k0SW;!5&<(B0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1&m@ep;uQtSs zR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T z3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{ zG7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r# t6cQ49A~853I(s59IU+i4b!=>XeGvc3j;;9r|Ns917yu#yGBg?hA^`e?Yt#S$ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..814a4c2a5d8803d5fdb3d603a42270ecb070a6b1 GIT binary patch literal 1464 zcmXw2Yit!o6y6!M!ispAfY~fRysW{%O?JEU+}S1)s2Cy!Qa}xokhP_RM{9wWHzDC6 zNN$7W(b7U{v9>%)DX38_0)ONdOHKTNfgfOELUMb1F)QA{um*QIStnTsj+Ce7QCzuG+b z!On((?9HYP8BA$tX;hD?*nz3cqPgIz$n@gjY`!^L>^d>f;lGt{|Ki41m8G|ucMTue zGjsS#Ywo}b$QEU$5VF&w+A9MYdu4T-YioDyBHa`0Q^=lei?}Y@UL6U!G4w|l^O>OB z7qy#x?W=krLQyTjvRbcXeob7uXj?F!l!Oa|?ZIlY!hTulAgNlsHSnwFtCfDBd_UP1 z_|&fzP)L;t5Jv%v_NrE*Yt26RX#wbOR%{buZ8 z8E3ExLsW(pontM5<`i3IRbj;!K%4@0lys~m(4kT(YdJhE1@TI|Sj8TW!VHcm!x1Zk z$cWEDRW9rh6-n113JM0kBZ!IgI%p<>(sk%q9#}Q42U0c6LUR{u;bAQ^23MiA1EMrU zX}uRkHk7Sn;2y^?#F)A;xER7>ZU!f$PIq_w{^;*f&QjNpKD<8GdlpRrKau+G$%Buu zi({F#GB{R85p)(q?pQn4Ni@SuG>%Ei9!JBFfS}IZ6PMbs^H=Z1yN~}H#3zsoOw8E1 z3qp7xP&X< zw_@9c-R}T@Os6jPx98A3Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPt

w@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(Dy@8=i6JK@0e4rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sd zN`@9nRzT8H$ttfjC#SYnh>wfO$V7+*NSaD98JS7xa4-sS0D0y@Ohy(`d|VtH{nyqW a%N1Y%@-3A>{B`qw?Pdn?jSZw2lo$X;0&Cs? literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1bb5e92827db5aa589912664864ed9b42e05c552 GIT binary patch literal 341 zcmd0{C}!Z&<`OS1$uCMwPu0t|DAvo&*Do_n%qhr7G!zmD%g-szO?50ONlebjP0cG2 zn#;s>hmniXNQlu`iqS-g(Ns(6NbAeR-A7gzdOe%hm1yx|VQ<2b6(?uty_m7y>_~Um z(}HH& z<6<-yVzfwN=VG)JVlp(yQs81TG?HR6G*;qssd~D5%8B;s;-g*1`U|v}3=It!EEtQJ z3{9$-3{ATj9f3;CgcM&+=z2P(>*eB^N9XB=KAp4W@b*OglT&J+O>ES7wsZQCwpgHP z=2{{`Le)x!7D`q?(o)GPuQVs8wpNIbi^<4Dhy_TRN--IkN$GGf3UL5==0Z$H7E*j% g931`E)*j0hU;y$hl|cM;^M37S2Jwvzq!^SK06C6sApigX literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..840b040ced4da90bf573dfd38687214b7642af57 GIT binary patch literal 277 zcmV+w0qXv1ICB6BBMKICbZ>HDXJsyHICCy(Z!dN+Vr6t;F%k(wQ%OW}X?A6D66FC3 z+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+- zK?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7 bB075_F*zbSZgp&IeSH!H2mlZP8UP{yv-V&C literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fd387b56bc50dc2d651e562955c323229898f4c0 GIT binary patch literal 285 zcmV+&0pk8^ICB6BAqp0AbZ>HDXJsyHICCy(Z!dN+Vr6t;F%kzuQ%O#5WMvZX0Sep! z3IQ?_0W%r_G$H{tDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3 zIW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA1 z0XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i z0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVR jdm=G8B06q$Y;1jf5)KLs3IZ}T5&|+c8Uivl8UP{ykLh5U literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.14.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ea41811f0dd79b72096d1b290376ca0d5373dad7 GIT binary patch literal 346 zcmd0{C}!YN;}R<_$uCMwPu0t|DAvo&*Do_nN-aq=6ygbnh&$&b78eUGXX3iU$i-+R z#AqzVXrjbus-<+K_2uI3BdZI&p3Un@w0N5O!M0<7d(XM0t1zJpoh6W54j73a_CRI#^rd^DV zK&56viZ3U0J)P3^a`DWg^K?U>&e?K!d!qiyDYefgHflWEIsHgmEYLJ_EfFE1Y9&Jp zB`Y9lsbrN`nv+voE5u}EBE`YQWMm3tnJKXy-*Ie_nZ6d2k+}h*mE4ie%IDi#pYNDz ncXaRb_MOk#dY^8dYX7`@ed>&wO6M^+blJ)75+Xz^lUZ^DrkCuiurn6cjMNO#!N zB|B1$L=4R=%}k6;4a`j}j4jMe%?yl;EiG=pYr5LlJ*Tn2i6LNZ$JXZ7`RC^BW{hIv zVl)?Gv`Av-Vzd-uGBn6i;9@c~l43G6R^oH1db)eciT3K^qg}`P3$&OF4GkD97>k$; zO{$m-O}iK!flAGU6kks0dOD@+<>Hw~=jnz%owMce_C)=YQ)-`0Y}9zRbNZ3CSfFX< zS|UP1)k=mIN>)J9QpqZ>G$*IFR)~*_$;d>A1xT7oF&UXj>2NR#aR7PdLQF;$QhZz- f9R1hU9?KPA0P-!BK>T&{e(h!k@r@0n7?c7%Q6!xzABUUYkRk;`r#f?xE^j>!Mceb4DI;msgG-;Ydia>*1JC2>$YkTb^ zP8Ep+r4Sovk&-rrD5O7!@)Na!R)DH1QfsGnCAa|xxY|iBhyzz7CSnfr-kbO4o9}(2 zH%VQO6qGum@l48fQ%<&!NT%FkAzI`Iq`nrmh-_rBjWXhN-BUP5=07@z;gw`a&+?8QA*h(FaRk{<8j97&{^fmMqZN zQAx06ktpetl1NmqNHpKe!MWDsmBxpc-Fju`YOYfxMDb9eAQF8}Bt}K>^HNiOeg9ge zwNlx?bF;ny!>#p)&whw@HCN`_pDmnj|8%2v& zOGD3Z?OYw|c=PF#(C+dL`4mUsEoh2Y)QInu#;1)ho_*b1t9{qL{_WH6-`d%1Z*BXI z?^ZWjcR${}z4~IYxz+izAZgMYkx<_-B1IM(oI!}6GcN&}0BjZkl$p%fBw-Xa`K4iC zfjnlIF0TsGJ2^wq06@1a(Cr-e9FrWx<7EJwJJx}*T~MH8Or=!-qU7>CviPwIO4s-R zB?xGb#AoqhfJGq042DI-*f~WOd$V2=R4j}#EVD9m6lUc6RmO2y1p67XsEKwgl#Yiu z2EW%!8Oy4N>JMw%baS)$`{977>)~UU20D7{SDM$`U){7X9BwSPo-B^NFG|aTG)qa& z;hknoVrga6Y$XpSq|~^gDidjdD9|Lp9At|S;|XGcK_ScEH{#>O?g}AeI00dZpv^8~ z9vlnHFf@p^A9?_F&U3nN6w_(WE`Z25M-7;cT1q~i!k#3abs19V_R9q+rf0xasK(_q zRIrn!X@l!_ATD2Kaay$skfAeR#=DFe8%8tCe;%gj$lHD8ke?y+ux^zNo-YmZZvw&$ ii?Q$p><2Q}2b_rMKtMhgbP{gAQ|zAQv*`8sJpTa*k}>lD literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..20d70243319410d667954611f2031a88543a959c GIT binary patch literal 930 zcmX9-&2L*p5chj3t$1oVtjfhmsJIcTf@b{oeeNqKyGiPpBu$#ekt)z)*N$Vy_VZ^F zr;0?1Qm75INJ*PQ6w;4F`G{IUD?k;B)Y@rW2{<7RaJ7>hK>PzpY{VXRW_D(O`DzQ*F-oqFTzLb$V5i?ZEYAHUnU*IL2dmHSqs z9%-QIevSEY|Ul{J{Z(eR)?|gaFIs2ZhT#=MnM)R&{F>6s< zucGd#1+XBc#Z^t6OanxLB?0CjSB98KP#a7JIq|R=pP-IEgq-6fgkcaJehv%Z+E|6r z5p)932WSX_(*xs}P77K=L@vnbzzx(>R#j?uNnq7n}n*l5CH)k9e&+@<-$gs#;1JzJ~BlPiJjgOqEjEMgM%1xW|@L3!J cIyV4+yO113RZK&j0`b literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ControllerRevision.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ControllerRevision.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..dd5497dd02e18b6185a256c29e2bb752bbc697c2 GIT binary patch literal 377 zcmd0{C}!Z24rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sdN`@9nRzT8H z$ttfjC#SYnD1|GjS}Cz0Gc2_TiUy4DA0RT5ohcf^G literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.DaemonSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.DaemonSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1cc9a0f345e21c24c0965cb7e6c2bcc8de9a8d3c GIT binary patch literal 4977 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 l@-Ev_w{6EEz*t!4! literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ReplicaSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.ReplicaSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..16a8a6786de10dc22d8eefedc2f4a9dc217958f7 GIT binary patch literal 4915 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.StatefulSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1.StatefulSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..9745b1012c791b08853c00a9b5a68f8251599506 GIT binary patch literal 5726 zcmYjV3s_avw%%(~N~><+%Dnq*`;NP?bT8W?uil{u4>ia-N z6cG^xK~xeH5k%ggfbd=Rn{M4+p1P+xH@mI+h;oO8@E#vF5u zf6febhl!p*k6o9QwPQvu&)mH-dtG+ghMdhS)3TX?$LJ3zn!*evSSis?NwIckQK;dd zvt?Vn|8&VZHF)OG^Ufw;H5;sMlbr{XjI)>1@OWO_QW#228B0?dW9GSZ8*S#X)yxa_d*|gF1IN6@FYa)a zxDRK=nt7fxsnm8eFXo$hsf3yhLuKZnP<2sF28z;LRed}iUj=k(ZQaH_j z<+yX-vmi~09nUZ?+IiJJ6R2jNnVGYB^UE(Y!AGOND*f<{@BayZ6m!x{ucfs-Ef=9J z9O8FLXrnMAenDKOvI{99i@2q$mnE)P!6smqXP2;>(OOn#ktnikDy!=onFkjjT|k*g zN4hTLAmA<6byiu8R&Ui8FhdmmlBDwT7D+>?J5>aKn-G$ank~pF2yq%hSU@?vwgm|i zLaA)-R+)!E;)Y!aK_^nkN85oolp}3U#|ZIU);9R102`yUjE#s>_>>uI<5z88pNcRG zTFlp1=IT0@7q0;Y?o8O4y(rVF?9zAXTRC0YmVk8-t1o2}bXH#{vsy}AdTJbtSV?CW zsh~QVy(kZ?06{u0TRZIZyA*8}IL0jSR!mE{#@u>L#$cQ zAU;gn%_7b>i$V!C9VUy+-A3bpyJ*$Im6GQWNRlFvAj%{XMCJELc*jN;jit>J&-^-u zj)4Yd=+&cT{+=FRr=y4Y6CJa4YOu03!{+J_c3(&j6dYjgq@!faTOWYI0%Mj$%NHYi zOMVK6l8v$xHkc#HmXB(__e3JhW{SNB*kGHaTFsJ%r_yGbW9|paGiDiEzW=rO+aJRc zEZ2v+zWX&I%rujR5wM0VT1<0dp$&p%*%I3CZ8O`=vJz{SRn9ciENin&iFeRugD%AZjNyhxBUDi#h8Q6fca?@zRNhgCsa7-YFXY-(I5n4B19Mos}Ip0#S7rlQHq5= zfh+)VPYe-xa6f!71|rM^BF+IK#RHL-Q*Tif6upxDO6NTCgPck$wVR(E7qrISQTS%1jZTzfryDCaKsUc z!ddSn-o#)%5I8#a+rJ?yumDjpXC`Ebv4NUBYUpwmNdv0NGgIk5C;Nt+4gR)+j-#@t z%V;`fRG%>V%jUgo)LqRPEo0zV$U;1^0GtIr!-4{q32N*lU!UeEHM;9Yh6B}&zN$c9 zrT2v6ka4gm*w?r$D-XjcEisQ?8CFZg43QxU%w5qGaU&K*LL~cm@6q6u24A_SHg~$} zJ{#EAZ0xIzCANyha#4XpM@O4tKCb$p$!s+dmKyWRM}~v4ynf?)VU%spH$VJ$)U^M7 zXE2)k^i)&b&*2l3{4%{NvarTzAWPzYUs!^ZgJBaVJp0Mjj*;Of10_BFOU15Aua#S%-OBZqoMNF$;QP3_Zin^b(Jl6@cb@E$KrTjc~}R?t}qV& ziw=-Yfg>`{h9yHjg@cV{nIZ1!d2{y(a1Rl!*#G>vzjE*9oR|EKr=~bAvEH)aspip> zQmC-~iTOs|-iUY-NwW4Y;uR843ZD)HZy)0v@YHRZnx9EeqoV@#$C!r_7Q1Uguk3qf z{zzk}y3QzUi#PUk8AIp%eO;pe@Bo?u+Y0FkD@03$?5-j~s3@|n|7Ka^k&oKij!@G~ z1P#slu>FnepIvYJc4B^nlUmEdgb!;m5#l^6MK9O z&Y?#`MJ1u3CP&#wx2?A5!_rqT1^)gOHLbhiP2;C7$AyXbfzY9&!R|Ky&@r34KUjNG zb{_~ebVD@*{UFC-m74>Ej|YMife34;=S?q|wkOlXdX=0vRRZf(8LU^8nAf{6zIN_- zXU7G~LfKv$`ZDyNpSP$(gNW9dSQM)Y*rN_r*c-cU!GyXHR? z{wkeih19vZLOQ{%dKRG5oGcb6{DutK4Q!S!=<)i>*_tLTT0A$A-GR^smi*`E!W^BI zP#n98$YfU~F`zUYKmm&A|54G0K4=NU6~NKgDB4TWyXaIbqYM?T2dIj0TK0w)M1K7` zl#is1IB)${*nKu*9g>m2Z$!Y|iiDJW8MFrI4L=c_pB*Sm0|wfH)~Bq`kN^%VnKP2+ zvaGUI-zl)5g&NO{!>TT*JGUSFI}@NbAz6o0M0>ZJ3AksFGP(%%8`6S@z8Z$lNJQ+KIK*bK3cFcHPpey5eP=w6 zHZPdH2JFIcwgf1Om#OHR9~i$xaxnvk{}e?(LyK{`p2Q~Q>oOacuP5p3c0CugNYjy` zZq?;vmgRX}$yx)Uv}MWWoh-}d>FLZAL1INNF;Cn$k0nvIQ%+4mOBCWNv{1(xbF)_J zJmm37sc20y+6n5iYr#{Qx&+t6HJg#JJWog4m5smc$^A*IgdLd(ytGNz*Rjj+LOmW- z7X(mU5KmA*rF!Z*Kn7ldBF9UxSG)v}ftLU>@NoHrV#&*VOylQWuSQvZ4&LYl$PgE* zyJECmG@33t+5$%h1EmFcrlWUlsJB_lGfo$hiDAgVLrH-4ZOFjO5DjpOsFoi`dzWD`IEAcT34zJEt%u;la#$6oJ%w`BTL?pCAgJn7XGE*>f&ugGB(1t=cc zYV5-!EsoyNOU{DF9Tx(pheit$To-*!o*KvA?ZMi^!H)gDJ#nsAFpSj_i%AfJD7ca_ zPm+(o+y|xa>-P`69SH+c|9DljKftaCb{3B`c&`{O?d~g{V|k9g%tfT^@o*ymBL7kL zc(@q=M~&&Jexoyj1T7t}`F=6m-22P_8iDiEzW%9W7I*W^4>x{@po=1kPKs!vF*89b zV7AD_5%2lx5$vgW9iN{XHx)&tW2RHBFc8_eJ} z5>pz)l<&ga$eN^haoiu4V@T-0!OZe-iRA=FgqpyKVLahEGx|vcPjHew#@V#Mc|Ool z?I`e6_=ZO-!U%#R_>B7vpWUcCRz5b2&p0(5_}X^Hbw%@3E?MF&@tsCF?g9Vqs{AU7 z7HEt6@?V_Q&USxe>FQ8RU$CKU%F-ln-7JOqcjH{YwRqxSH>-&#V@somOt%35ZBj=sP z&)6Joj*BBLpImNpSNl)b1`d?_`op+`+?p^ig>i?eoT9?Gg9oG)1{=KmJMQ4+Fz&GN zuHis!U+`>MUYe)a(Uh~(-*_^~eK47KU2+}?oGb~$5MCt*P34;?QzwO?b_y~x&R^2E zZPkWk?|^Zob4&2zK9ZmTO-CDh5BM(l>k6jb_+)?k+ktCGYN+saOAtsN7qk(`7b54S z`m0K=MZ)1NY68d+5T7t~SPGH8rXcuHm-b4gh`2A7jO^UvIxue%z8mjCHovmi3(D%_}{1pxUrh@S6 z2VkmkbhNlO)YTd9I}=V#DzQ<)_D%F8dSW)4Au3DZ^=#fQcoEB6&u(K?o#R+ePhd>U z0(#Q&4GBA;Fs#dDae5i*|*O0ydC58*#q>Z{RE{5VLt4Nu>IZ@Z)tE08^ z&4qpufAwsO){jy?-k+*;5}HIvqIO<~ZkX?s6V~a($rhP{v4ou=K3E z-cvVnHBi`VolH;6@pqJMaUGIJdVEKo_a1*-eJ(J3a#gT;zvC*o=|MEc)02FKBmJI^ z!1>_1-|8m@XaaI9ve*;Vmauz%n$q27HP0=4IZ7rFw+ z4~dU3cSoQ9pPw2dDR|bG-ir-mtXrdRRh=xX{YTf^(_`N6+4t@pmY;w9;d*3<&3*On zAKp3bAA_yuC|D1kf`IUG1Lfa*HYQP~A24d0{2evkswW>e_M9+=svTXyiecuiU~_@1 c)$VJ23Y7ordp&ed>&wO6M^+blJ)75+Xz^lUZ^DrkCuiurn6cjMNO#!NB|B1$L=4R= z%}k6;4a`j}j4jMe%?yl;EiG=pYr5LlJ*Tn2i6LNZ$JXZ7`RC^BW{hIvVl)?Gv`Av- zVzd-uGBn6i;9@c~l43G6R^oH1db)eciT3K^qg}`P3$&OF4GkD97>k$;O{$m-O}iK! zflAGU6kks0dOD@+<>Hw~=jnz%owMce_C)=YQ)-`0Y}9zRbNZ3CSfFX)J9QpqZ>G$*IFRw#ulsah$qATunr2;^fWE2Y$m#N2|MRK4WL@^eEf3sQk%#RaL!Ad`wx3vx1(6N{Cs3~Pa+C5a`aKsM0Cvc$}s#H5^5kVLJ- S|5JTyU;LUffnSP2i2(rX35f~- literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..049a5646e689406da814cfc838e5ce18bdb6a963 GIT binary patch literal 5196 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Scale.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.Scale.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3771f7f4a35b3f45f6eabce67ce62927713d7131 GIT binary patch literal 297 zcmd0{C}!Xi<>E;!C@9u1GfYY?Ni-B<4NgwXNfl~m;=04g#b_kNXe`BOqQq#brF5kA z<>Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPtw@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(D4= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.StatefulSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta1.StatefulSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..167261bf95c58e0247f5b0595b643da58d381366 GIT binary patch literal 5774 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 O3BpNm!ZVY}Zu)=I>!N%B literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.ControllerRevision.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..cba1cab987bb2a003161bc19c7ec176b2d8404c2 GIT binary patch literal 382 zcmd0{C}!YN;^IjxC@9u1GfYY?Ni-4?a?Z~yDay~uNi7OWEz2y<%+C`#&%||yk&Dqt zh|ySz(L{;SR7>ed>&wO6M^+blJ)75+Xz^lUZ^DrkCuiurn6cjMNO#!NB|B1$L=4R= z%}k6;4a`j}j4jMe%?yl;EiG=pYr5LlJ*Tn2i6LNZ$JXZ7`RC^BW{hIvVl)?Gv`Av- zVzd-uGBn6i;9@c~l43G6R^oH1db)eciT3K^qg}`P3$&OF4GkD97>k$;O{$m-O}iK! zflAGU6kks0dOD@+<>Hw~=jnz%owMce_C)=YQ)-`0Y}9zRbNZ3CSfFX)J9QpqZ>G$*IFRw#ulsah$qATunr2;^fWE2Y$m#N2|MRK4WL@^eEf3sQk%#RaL!Ad`wx3vx1(6N{Cs3~Pa+C5a`aKsM0Cvc$}s#H5^5kVLJ- S|5JTyU;LUffnSP2i2(rYbcqW9 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.DaemonSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.DaemonSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1eb2f57cf23b392efa75dc7f4679542f54221fb6 GIT binary patch literal 4982 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

&GVci3N( z7i>G1TD3xWOt6WMMrzJ_FZOr#_4rOr_r5+#2{b-A=9$oI8*>9~fIxXehO!Ps2K`il zhD=r0jX;uTV`*gxlGJq3X`ThS28MjKK}j zo>S4<_CQk%t5AdQWrH3;s0;lT`mGF`V}XAoKVYW&{y#ih5k9lew?DL{Be?x=(vB~0 zcq5-xF}I>PNIp9^*E z3LJJmB0PM(yU}+r+k^^Inf^l9U^%SR7=v91@Eksc(L_X&svTyzp4KxmO7uJ|En$*LOa8ye_z}cc}RZPf3x#e&|faP`x-(A3T#E bKHuO>NT{u;{{G2Cn;RT7l7W~`o7?vPk*p}j literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.Deployment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.Deployment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..b585072ae49eb34ce5e0575a4b42873143bd8f9b GIT binary patch literal 5200 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.StatefulSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/apps.v1beta2.StatefulSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..080a2dcac5505962cd36f8ecc410953a5237f979 GIT binary patch literal 5731 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenRequest.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..31245ae86e760061fbb145b500e8507dd1c9e197 GIT binary patch literal 341 zcmV-b0jmCMICB6BC<+*1b#!QDZggp5VRUJ4ZZ2y$b1rFbFLp5!3{-DxWo}Ysadl;L zbP}Kf3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwt zq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRM zHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt z0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho z5_=*sI3hZGA~884I&O7rY<+zaFA4%OG#VZX0x~rc0x~ul0x~xu5X6GzhnMJ+kHw1U nn~KDVc_6Irio~DJ(Tj=!8V(8qGB^?l2-(Q;;tmi18UP{y0;PHi literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1.TokenReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7d1f1adae54cff42f7d16f3949783d0363b6ea07 GIT binary patch literal 323 zcmd0{C}!YN=aNV)Ey+mDE6GewEXmBz)62Ff*2~P-FEbS44$03>%?nB`%SSyA* z!^p*GB*bVe#b~0$XsV@jr1j5?6( zMk0o0mS!eKrUvFF7RDB4re+34#+DYh-!)xr?4HwD;KUHHwqt8^>-=+bb~8q?aWR?; zFXpdqw{n_pU&BGczdG$$tktZCN^q3+d2J6TP)Btb1e}e zp=u>V3neQcX{ltDSDKSkTPwuD#bjh6#AIYDrNY4=Bmv}^0eR+9Ohy(;TtJ?s5DOQR Sv4Iqmv5^v!v7r=$5(5BPbY|)R literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authentication.k8s.io.v1beta1.TokenReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..91156009a75f1a46553bd227f8edf43158d2ade3 GIT binary patch literal 328 zcmd0{C}!Z&;gU@(Ey+mDE6GewEXmBz)62Ff*2~P-FEdO^ElD&K;tt8rPR$ESEz3+T z7wTu?y2HrDXe7jFEX8P|#AvFebfop=;_f4>3%#Dr>q@kEv9LGc$cmFQ^j^$ZZ+4_R z?CFvnsYW7(W|n3qMy3YlCKkpPW~OEaM#h#Fx8F5gZS0=YSm4AEu(o4sbL;$bb9OUE zv2ih)3o%+Gv2!t63NaZPWGQel85&7385%3`xl}#fJ>^7ub@9=zWBmnMOooOA3>J(< zOok>^OopaijE+F1Wdq|&n7l%Jli?_NLwt> zG;=KxA)#s|LklGFHULzJdkrbhDX-^jb3KW|HaU*pl>P$@IWF zBVA+Zgqxbo&M$h2%upiX`Tm5rp7b`zE#M!75hqBf$e_s7Xjp7ql)~%P(fVoN%HQ+- zx$x?v68o*(T48CrcKPV>4rV!)!A;#Zq>z?r>0CJS`)}*3P^uPIhL!P~z5DIr*=O|` z%`{_V6C~$bFmebmeX$1v<0>#g+edP>=kojRrvDne9js`;n65~)2F%C-GXpdfRV~un zI1Fm#pmA~XdfGo#tKPjlxC0;MeEq18@ z7`Q=zn<{XN0=G5bk^^_*Aav4-K`;U$dL#q|VQ4r?Owtt5;vj6btyPJRD~-4 Di%f7q literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3593afed83d6637ff9ff6f97edff962bad1638ef GIT binary patch literal 342 zcmWNJu}cC`9DwirhKfftJcQtAs5i+$cJIBr^POAK)D%e#L6FKtrf79)U^rM z7Dy2_1Q9JoMPpag($-Y#NiO{jxqRR9@nxi|V2%e9#lmuaJzY)|()nB@Bi%?kKUQL7 zFz#fR;>F~OlPZj-QjY7+IHk0+L7ISn5JsFJp(2AKQ=@*Zb5ZxN*QVO1UPAt!?=SjS zAIFj3<6FzG&jpu{4i7QQwhV6SQ9}x8nU>ClEx-S^zN+^mi7zx2P5(WRo&UV_n)bmMdnnl?n;tAq?Cg mz)cmnMS({(;F1HkV<2?Whe0p`f~);~O4mXKVGJWxp~^pYENsRA literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SelfSubjectRulesReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..befb55f58602c3b374703911d89509dbbcae5581 GIT binary patch literal 327 zcmd0{C}!X?6)%B)H($;{8w%eE-i%gom=GZYdFPR&URE=|fxO)d#4%}Ff| zN-fJwEf?x!;=04g#b_kNXe`BOqQq#brF5kA<>Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1} zSZ{WuJM8I_9jQhlhGv##CPtw@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH z{YYCZ&@^)`5h0;!B|{4(D<#Ng_w-Yq?nA%m6(hy XggAgAKo=PsNH8cd85>G5C@}y42_b5B literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1.SubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..026bdc299d9571948b91d4ab9d7e203ba028875a GIT binary patch literal 362 zcmWNL&npCB9LDGUCiEtUmr|3%dQY0N=6&D!@y?!*laq*pQr0$Q?Pf8%)M^h)i)IsQ z3$?AZ4oY$%UCFT1S4P z;M)mIHAwK+3DKw9ZgUzRtV0S)Tv$bAAwkVS{7Sf@ym0UVqD3B4{kAWKm zxTylSC~#W?E;(=~20|yD7z86A!bd_-5Qc`s#3XGYEe^s~yE>K7%g{R!q$*VT2hEah AOaK4? literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..8a8daabd7e3734e9a7a8184ddbfb9e1d960589ea GIT binary patch literal 372 zcmWNL&npCB9LDGUCiEtUHwR4)yeCar^Sax}!n&57%7_Tq0am(St(JUu;2(pRv=J#H?$kXcLR-E1ne99xopER`8t zX9+LsGSWSsNxJE&Tw>8nW`~nW&-W+2^^~_kZUO%wj5t9;MFvHtM#EC`q8whYjx|mL zSN@*w&xcnZ)!1+K)(Xor^~*<(cQMPc3~uVSA%(O|OXtFo-+xpd z&OU3;Xtot2n;@BJ!^k1P^u=BbjH|!|?HtY5pDXXXoBnI?cCexWW4a>I8ZaXd%nZ*>IBy>|EV;0}IN3XP*;f8*&m+?k8kY^{rsP0A#VM|5a>IhRfs z3S#TGV)F@ IQWdKF121557ytkO literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..49f78713eec3b42a0387e657839e8eb40beee20b GIT binary patch literal 347 zcmWNJze@s99Ki2=hmuD$Jc8h8u$x54?!9+E-nkV`O_9_P1f6n`KhW~jKyk3>2PaX1 zP=ORtLlDtYR5W%)E^SScCoOQ%O}frA(_iY(!z}-bCV?+ zcM3KoqcJD58Y{+APNFcCNI0%L@060xCOHB8i!fpYaT#d}(!+|s)4Qtsw;QvabI%st z%YzmFrga+Wp57aNeX)K0?647PScb-Q)zkzRhHj{gTjJ+$>$_HO*4C$`xx4+x?VXFS z<||qnz{n&>#0N352v9W@#6X!0lqsZ%_7Qt5NM7*Fv3_6MuKPe>1})gj5tNlxUxp63rGfnQE1U r@E8WB5n#Fu%us-tVPJv*v!cLN62QPI0nX&1fYdjafonk|ON#Ul>@9Ac literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SelfSubjectRulesReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6cbdf45bc3f2cac53a338606b4117a9f3cfd2823 GIT binary patch literal 332 zcmd0{C}!X?6)%B)H($;{8w%eE-i%gom=GfYY?Ni-A^3r@{R3ocE{N=+^a zD$PkP4oWS{Of47cWa7HR$i-+R#AqzVXrjbus-<+K_2uI3BdZI&p3Un@w0N5O!M0<7d(XM0t z1zJpoh6W54j73a_CRI#^rd^DVK&56viZ3U0J)P3^a`DWg^K?U>&e?K!d!qiyDYefg zHflWEIsHgmEYLJ_EfFE1Y9&JpB`Y9lsbrN`nv+voE5yRZWMm?x#3cZvO@)|@%%qr% c%$1moEQC0KB0v`z8%QuHF&P_5F(@$r0Aqw~O#lD@ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/authorization.k8s.io.v1beta1.SubjectAccessReview.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ddcceb0bb2c2bad0f8cbc261362896ea5ad4c8b0 GIT binary patch literal 367 zcmWNL&npCB9LDGUCiEtUm(%3Hd(xCO@B7Y=clKoEQS_b0uLw6{ra0skP3I6*>121TYu!*c7Q5?-&3H%|js{+{p8 zhgTo9*l+FD3M(^>%SVs*GRv_HZtAung|tjd=faWSe_LOrO1-o?s!ZJM-EWuAKI_kD zwjCpzAerpI$RWV=#eNKotH1>99?LhLtM9u7|223!Sk-_rU6E)Vn2`r&1}G6#Ei%wL z3>wv-b#d}~IyBv=-@QDz!ynaR^Qbh~d^!$y=At!Q>m{T>nWXWE4vnwmmY0h~GJ^Xs zaDxChRp1r{Zfn3L2kyi{=%f>aU<5?;NC*nT&~TKPq%ESwLD*_nrxJM?d8Z$#3RV6A DXj*V1 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v1.HorizontalPodAutoscaler.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..5de2ed82b62194b8056897054fe666b8d01e6e19 GIT binary patch literal 356 zcmd0{C}!Z&3%#Dr>q@kEv9LGc$cmFQ^j^$ZZ+4_R?CFvnsYW7( zW|n3qMy3YlCKkpPW~OEaM#h#Fx8F5gZS0=YSm4AEu(o4sbL;$bb9OUEv2ih)3o%+G zv2!t63NaZPWGQel85&7385%3`xl}#fJ>^7ub@9=zWBmnMOooOA3>J(^Oopai zjE+F1Wdq|&n7l%Jli?_NLwt>G;=KxA)#s| zLklG|ZkbH2Q9`U{rS__1o`9X2TjB?bWa&*pU{TD(};n{Z^s$r*YtW~?_m(jE46$&OSb5koUeGZQ0I19KA#V+%7= zGXo=ION-m@nyxl>&uJ`hVhC8{) k72@Xjf2wcokN-fxD86?-9uDxrI-d%gW zyK+4w5ljUO1Td}EQY%msK~#JJg_MY)*A|E|hQ!3E#7}*TiIEQ){9tri<%7G)%+6-^ zzyIeyzo(POvk*oP`jUyRc&jfQinizX>i$5&N7M~vT|J?6S2W=Z*L1ZN{p_@T_Xn0sz)z{eL(9eFWx=Eg8y7(Q=i4mHfadnur=Bc^Q{ zI@2tJQ*JU-)2YpW{B{3#`worn>n_Tw`S9SySNh-iW^_VnS&bA+Rk(i*Qf$>hv|YK# zL3F2sP}hAW>Dh_F>j(D4rv|2vcIP<=(XzPG;~+-bLD+y&D7TvGrp03evx5VR<8Muk z!H(I{3zJ{?@^1|8ojbm7%iQHRGq1iN)vUaAs=CKTxT`>pwyPkT42SpbRp(ctwaB3x zszYZ^hi>NFIeh!uyMN0|+4$GR;osJ{rdFcI%>0`}4O1gqGFPt;%nyz&e0*&2^r4x4 z@64&`quwW;R=-x3RV=B(rHU+sYR*+?1t*&8tb!`g{p~Dd=ZB#g3k-%~sJvAdonD*Z z0IL8IFsT4RAqsL5GznOU8X>T?19o%?LqLhuBbUC2X{aqo*RkAHD!jcy=w?NesFR}D zljy(#z$=WBLIF&G5w11#Du5^fraH=_&fMxG!4ZL3VIv4HVA_r?p$9#!45UC^6VH>D znN6Gr7383nDpy3aoqNz$l*<5cg}@qs&}uA!i*ZW;phUB z5m@+4Z2QZ0m8k`2({^cC5ZeUY)+9o`q)ZlwJHQQ9*cSCT*0pT#0fqtM^-T9;?2#o^ zaMya2?PW7ZZjR2popWa7>QhUp>XwmrURsnfjwmRG%39l)&cKX@3}~ki2b=E(19U52 zqd{p%!?+S_v0AfH{vPXE2UN?Y|X7sQ-SR{`!EmIU2({KQ44X6W+Q(U61E=`5viTJWrjku&^*#XY4 zR%K7$`sL1N6UTpO+?aX&^q`V^`-49|U6FTZCE8f9aG`&9>2ufLh+jK5`T5O{GA}yCfMj zxjL?($I*&pk)=Ko#O;0|dw|O>0O)heb{Ehj(Mowd>Px7HLaRkM>Fxubpq3q{z*AJ_ zp~sS-$-H861kSJlMj~ye01PSvlv47Hb$L?@AfRccYwWlcUd1pV+x@rQg1B dVs3oMnVtRp?9W5>Iaw};#qu1M>CAFv{R21H;}HM= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/autoscaling.v2beta2.HorizontalPodAutoscaler.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d5f52a263045cbfc2d9d3ccefa40fd7b7dbf142f GIT binary patch literal 2090 zcmX|?Z)_Y#8OFU^Vn?eAs!2rLL#XaiL1py5w>!JDI~yS?JF$Is?ZkiL+KGgQ^WFL4 zvwe5=o$q{CMIuezGN3*l@{NCqzZ&+rl3^cYyCUWU)G%_-jN`&%!AfAhGwj-P#A1b9&xyVRo zI@a*N74dQQ(HD$AYKF#{W(PDUsEPXE($vQJnWYP3ZEK6u5m`R_-ES|wd1oHW^KZFJ zGtaDk@0~c`Zn?heaAA6mw52OtliR-h!{45}cX(#uaHg@U^G7dUIWqP7uNJOr2dWLt zW11YOF*Kj)mYJ+Gbc+Xc%MN~icWL$d?Cqn^W^YX|znrPpEz7Ku+PH2xCEXI!S_3V0 z+2b3>r&njEH_o5BwFted3zu)c9SPl;J+yY>@RMuT=9XUg7VYNMZ)fb;pe2Jl>DLeL zOihf896H2q)EEyNI(L}PML_57Bma2mPw)Tx6S}n8`&Z`wUK2c1V?5@D?!NNOtyDH}AZ>54nRT3^^em(Ha3IXkHZje7gedz#=M8-9oBxdoQ9y zHPBT+h_$#`wnOe~R2>jjLSYVZprr|YrEo8!bL=)VV_<>@K5&Q+C&2Wq2=F4%@k|gt zPKfl-knM#M=qWz9Cn`W8boYbgDj`fYK^sMx-kJ*d?X3X4n8$YPRdNs^%u%^sF#+u< zpj9+DKnZi)EC50-M#oRZMin*$Ueb+UY6Qn)%bHO%vN0Pbf#)j>1WYEPHWW*A#7Tgt z=^!5f7c38igj5AVY|sKIMCl<@7>7Z^GHwl7;FU}})C@>iRldCslSx3)h^SB~8if~AC~R9iRh0jtzbbptmI(3qxG z3bDVN;8>7>K33f{Ih4(1*-qn$^6A$$PQUt%m8(lXbc*ktFJHg9a-{z5snrXozFIzc zQf!<#y6bDKViQYL++urP-H9`={;MYVO=HXLW2^5z$Al5MeQou^#pP=&vxS>)r&`x9 zz1Flob#3MN@};KAtG;JeUUf~oZsi9b->dlS6RrN&n(-FlbR71kX7n0gDRwBQIn%8A zz#@~7Uxug{5CLd`R=V47+rtcHFA^VORT`!0sP48L&-5#asQ4?a~C_(k>BmF2(Qn7{Y_^KWRi&o6(tcz;uB-OPg@|E#+H z#cE^A>gCtpyTR^j#&1Zvu-IMAh?BcxIX7OZ=$LdQ_+!G%gOvvJV7?gYj3||Y-7!F) z4txMjMR*P-P^DGIb;Vxgv?NhA=Gd3bCIp_QnC(G-H#9pU-uATDC7|0;UIU95-hiJV zp+qk-4vCbIsVKKYZJjFJpqvJ5<5?T~+g;Vv3(ydTE^O)WI8}gc*^|yubRKJ_kM={e zPu|S$5y(ZPZxVT=gIf;4+{GR>h>7LO3L#;dwIBU?YVPAr0s-o5LNZlpz z@^+PlwCDNc!eJ0fDd-wQjAjp3zIwpgmoM0Uv)TpYxt{${?AW)Z#{9jO}-$4 zKi7-}%_zhR(KMH&br1w~8>CdvVX$Sh(-3*N6wIBTU&WX*aXgp{< pTt0nnGRCR`TemJ8x&OkpN2-FlC+c<24O9iI{tLtCkxc*q literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/batch.v1.Job.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/batch.v1.Job.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..38e7f50d4580c5f125f76b4bab772276bb1f153c GIT binary patch literal 4794 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 I4vW+Bzm2H$<^TWy literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/batch.v1beta1.JobTemplate.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/batch.v1beta1.JobTemplate.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..e09dc470a88a94dcd9fcc5862400743b4cd5da3c GIT binary patch literal 5009 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 L10p*tPRsuRPB-;a literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ccd61cb110db0a59040cd1cc070d57c0e494e59c GIT binary patch literal 5010 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 Y9n+5w)x8>zlsRAY)dzlTSG|t^2lHEZPyhe` literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..88285b919cf562ae5254e44fd9bb0e7b249d9fd0 GIT binary patch literal 386 zcmd0{C}!ZY;F3;GEh@=O%S=uzNiEjPwkX!i%-1h7OiC?DG!&9_Mo0!{rsrkmr3a-J zmZlb$2<>I!y2HrDXe7jFEX8P|#AvFebfop=;_f4>3%#Dr>q@kEv9LGc$cmFQ^j^$Z zZ+4_R?CFvnsYW7(W|n3qMy3YlCKkpPW~OEaM#h#Fx8F5gZS0=YSm4AEu(o4sbL;$b zb9OUEv2ih)3o%+Gv2!t63NaZPWGQel85&7385%3`xl}#fJ>^7ub@9=zWBmnMOooOA z3>J(^OopaijE+F1Wdq|&n7l%Jli?_ zNLwt>G;=KxA)#s|LklG-m&M&?2+K+-}=hfAGH_*q-;)6G-upLcIOv|0Cf|I_^~T0k=_ arI?HjlsGtAUY_60DZn7a7%9b|!~g&s%7<(K literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/coordination.k8s.io.v1.Lease.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6a3f729eb22647f6bd71e6c90973e82e80cedeee GIT binary patch literal 295 zcmd0{C}!Z2=MqcK&o4^J%u6iE%+J%ywkX!i%-1h76k_#BO)O3o`pw97hmniXNQlu` ziqS-g(Ns(6NbAeR-A7gzdOe%hm1yx|VQ<2b6(?uty_m7y>_~Um(}HH&<6<-yVzfwN=VG)J zVlp(yQs81TG?HR6G*;qssd~D5%8B;s;-g*1`U|v}3=It!EEtQJ3{9$-3{ATj9f3;C zgcM&+=z2P(>*eB^N9XB=KAp4W@b*OglT&J+O>ES7wsZQCwpgHP=2{{`Le)x!7D`q? q(o)GPuQVs8wpK`ri^<4D;A79-3qSq?0i(vXAMNlh$H75dG{b%&9Q z(MX8VSc=g^iP2O`=}7C##ob3%7kWLL*Oh4TVqtH>krgLr=)IV+-t0(s*wZCDQjJ6m z%`DAKj7$y8O)QKp%uLM;jEpTUZog}~+Som(vA~HTU~R|N=GOV==ImySV&h^o7h<$X zV&`JC6k;+o$Wq{9GBlE6GBj4=bE$f|d&-IS>f)na$NCGjm<$aK7%Uizm<&y-m<&z3 z7#)F1&4d(RPUw0%rR(M5nMdd8hCZFM>ICB6B4GIEwF%kztX>Md`Zf6pP0t(y#3IQ?_0W%r_G$H{tDk8*%>7$Fp zt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch z?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1) z<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5 zw8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf5+w=(GBgqb mGBp|kGBzR$#+S#q#-cVa%9U0s0x~x;0x~!{0x~%o03rZVvtfz= literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ComponentStatus.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ComponentStatus.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1f6234dea536461e8de25bedf3f547586b2a2553 GIT binary patch literal 326 zcmV-M0lEHbICB6B6$%1&F%l0$Z*6dIZe?zCQ*>c;b#oG=0t(y#3IQ?_0W%r_G$H{t zDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5Rjl zH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q z8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u) zqnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf z57t9rg;U3&#*b4ZE5f}< Y=ZTl*w4LR!zZwEEG$H~rH5vdS059Nx#Q*>R literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ConfigMap.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ConfigMap.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d80d6367df17287ac3d7a218b2ba608a830d04d9 GIT binary patch literal 270 zcmV+p0rCE8ICB6B4+;WyF%k(wZ*FF3XH8*n67m5G+yM#!G75&|(WY9I;%F)|tgF*70# zM0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy z<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!L3IZ}T U5&|+c8V3pjGBy$c{Tcuw0Of02Q2+n{ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Endpoints.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Endpoints.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..00ff37d3b6b9f63792481fc182f98bae38aafb11 GIT binary patch literal 398 zcmWNLyGtBV97gB;l(g-WR_z| zZW^{!LRqF|aN(%?fAfD+UOpA?(%yYrK3hnC{gb~${nZ%R1gQ_tFmebm<5M#R#&uwV z)^^VZm)YM-bBTg`n~6t&F+)>m0+^fyX1b^|R4vj{S#yJ|TRHer*ll|sMtIRq;p8UmOT)cBGMzIm#4`hID8&HZ?k$Op-N(J1}rbcu1Q7S2}QqHu>BBe6W-& zZ)6H?dE50@W=iMj(#2*3guy|uD2VVRHz{z7v|$i}ya;I#5Vj6N(W=V6_bVOh4hLyO qL9%d`6ojci#~^vVcb5NOr8nGWdSA9)|9n$g$rVp`f|Dy5&|(WY9I;%F)|tgF*70#M0(}B zl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y` zw_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!o3IZ}T5&|+c z8UivlA`8Zs$GFC#HZRJRRw@EAH!=b;I649{IT`{pFd_moF)9cO0y8oa0y8r*2nef% z=H56E06GW=|Gl}wOb`G-lZgMp21)`mG*S!*k^hPDD-fu&-Rl8b8wk0Dx2p#d3<&YI zi{$|jfd7Wp0~!VCqKn6cVgfTYY9tB*Gd2 VG%z{>G%<1lG%|VuG&33iA^`U#je-CG literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.LimitRange.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.LimitRange.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..55b0b1d539de38b8fae084a21b7ba65f645c1248 GIT binary patch literal 423 zcmV;Y0a*TPICB6B5DEfzF%k+)X>DnAQekdqWfF=53fut-0WuN+Ga3OjA^|ljBE*I1 zql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?X zIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp z4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$h zRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+zar~wM4 z0SX)FguTR@#De9Am*|s^#fs>gio}U|=eLFDxRnwt3MIw8=ZCrGhK=R3l|Sc;vBI-0 z$B*T|gevL1r{|5D=9PxXj>wx50}25$8Vw2r<+Fu&5(NqaI5IXO8wwIT#-Qe{zdGlO zp5>&B=c1L$f)WJ^12;1_DjNzC#=JmiL~_WkPvwfS>A9EXp`sE63IjMdG%^ng235(X RPsNrJ1quT5&|(WY9I;%F)|tgF*70# zM0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy z<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!g3LEHz zy~LZug5`&o=#!7dis+k)#EE(5w}t1pl^Pxj9O$r+>7t9rg;U3&#*b4ZE5f}<=ZTl* Mw4LR!zZw7{0JeX91^@s6 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Node.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Node.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..8fe578773fdd18562fef59dadeca7960c2d9d9ea GIT binary patch literal 756 zcmWlV+fNfg6vn&5#b&(W2#Hx^z%?jo0(5s~x7#LOAiT(fAQ2yk8Zm-Ki6TUz5E6=% zODh%SDi#!q0g;Ma3?)!V%C@wGkoe$>=;LhLnD_@6jgIqhlKFCe=bZ1mtJWJJgrGr0 z$rtY5tU}*Y;5QC(65=q=5rLCUg62qgUE2Ex#rmkTQjL#wU)QFhLwWI`Sw(YQrW5`u zDP2^o3Xx>9g{W9nWW_9DtGfHM^^4u*vDX$FN`0N5o;Y6bcviTIRLEHnr{35DIV%F9 z`A!xDqQnCc3kQlC=}KRuqp3dR3_q(i0Z}v?RIUz)q!Ea+lPh4Y3Ob(Xane3#!uv8b znp;jiiyKRo`O&^+{kc6yUmn!jud-P_%nP%lPmJto+aqq20+X;Jp+nGENEaNBNOt9aNhFvT>O$_# z7Tq&{E$;GGhgZ+tE~<-sD51`|#PT2=8`pZXg!6D;DII7Hcj^P~f)WKCJGHS|5TALw z>817_>UndzCf4uO1NQjG*?7woZ#4cH{u<6mGYCfGPOHynMdAt1OI5K;z+TzC)yqNIJ^?(Cla zLAT#=#hDRbcG$h)(cOME7zldv8a5ZVo+cJOA$xXcD$-d7VRFb3^ddkk6%Gz&pu=ng zif$CoYCQ^ zJBNXUfijRt1Z^@|lvTlQN~KLb<-SOuV%d4pj1 E2Y;X($p8QV literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolume.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolume.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..0e817690e0879bfda226230a87d42b5e709ecab3 GIT binary patch literal 1262 zcmW+#T}&KR6rOugYv-XMlWNv&HOts0WP~#J&di-V>tBnF4;WLZv1y1#ArjMy*g|O{ zgv6!5!mfap-!9u4Sel~18h%<92$Ha~%Wh44GcoFu$?VQP)Hf4fYCXd|ocql=-#Ono zXYPE)I|T805nm@#d3{TJ$EA*IEp68>e9_wZd5iS(VewBSA}S%xk8~Lsifs3n5>b2c zYF*(@q=~z;!ynrV`RP;c^pDJrUU249E%Yd17SpMrnmX4wGnh&>i~sR=@2{a~Jana2 zs9zquf204qU*g-S@fi`B65`E=L}W>rsFwpGCe)9KCLcN5uhc9>5(2B5?>aNxqUnKjNR*mr`)m8OvIgu*h60yH~NdI3F#>j8>Tez zv{)`;s!Ny}zDK3M9+d@<^c;8?cue2FzuATVp1^|w$nOI;m!x8JWpAx|f7IFSQ%XDc zio-Ga2t;5?P4x*f)`%jCSflW+`4Bw;7|LsgA8QPvrh+w2v1SFI6|t^LSSP1ZPy-AZ zy5<}E{qaAZ;u9oeU01Mfs3?eac3L>^C73|s7lmf5TeU}F1Snt-ACe(vKmkLmI}Qj0 z4G=Uy&@dG*#=&E$!uc0O%+&JvSbYESfruY75)c&3Xd}>=CSj&GzXZqt#QdHQBpC;e zhha)ny$ti31P}#bY-;VWLK7rSkTgNkG`ryDnILIe-bT2pU`{CJv==cEa}eRWzoI>t zJm*AKN}E&8?3_Io$WGKdlfBu&!sN)AbIe|U3o?yLftERm+Yton96ky+Zz5PPhvFQH z$B-go3zlFJuU89JU}*uQU`waiGJ@D*wb(N2u*K`q96AgXODZF(`U84Lgp+tL)DOnX z;+{+QT!!ajvhU4w${x#Zm6oISh|?E#!rNMQAidO}K-i>Uco2-Wir$4(qCzSmFftqz zZUG#c=hEo`HayIN2iWv5uRXwCM^vrzF!dUu)L*`rICXu0{o&W8^>`+9GP5AR>P5Y3 zREOTEAs>4q)4!K+A55eZHKoCo6V+}q*^|5H%um`|3NRQ2V?ukBD=%h#a+jmd!fJ7P zGrydR$(c8oM8cKFz0I-=9wp6z68D zNMkl$Q}=<`C|(q+pdF1!0cX3Ug1}$ z^w^qoymaF$XEgTqrDANU5dFTYp)efIrMh3qrwYlC$JG5qJlRxCt+~l)KIzVGInkZ$ i^wpZoW}wrZU43nDw-~;=KlxF50Tuzj6d2|gWZ{1x^pxNL literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PersistentVolumeClaim.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc26b087d510b82c44eb4119f190188dd6f6beca GIT binary patch literal 741 zcmWlVOH30{7==4y(0XGG-sr+%qmyV1$v@1UJ2Rc>4wWdrLVO@Gm@Ae-q@`2}MIhLqH8`j08d}K@*r3aN*9CkGScy-MG}9S~q8La`NTm3m6d>DnWdd;2l-| z*2twun?KZ6-4bkX_8$n=U24WlMd&MsI0bW5;8c;*N<}-KpX{?=UOwWCT6IQl;_e0e z#rmL>8+@bNebt$%gkRZCbW>LqP4=h;HFQmv6>1t^eqQ?=>l=xM_q(cI-jT}+gV;VN`Pja3zCiPoZpXMwB!=iMq$zqs z?ZIGoH~!9}l3eeSJ#1gg+i2Bq?huPD576pA6R>o>z&Wf-Adg_ zzt8r@I#v3Z!PTPv-vH)HPE)gfMMLFE)If%qAzC>7nH}_OlAS!=717q>}da twOM;{dCGqFF`l!Y2yXYE-@QMCVwdQ4ul)M*_e8O)a8*-ystYdB^$)(854QjS literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Pod.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Pod.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..cb134ccafc8c9b35c5506b19b8196c49ce2202cb GIT binary patch literal 4992 zcmYjVdw5humhZYzh<9D>xv10h>}aMPAx7$Q-;d0y7(^fS3iewM{q>xnQz=Ppr4z zxmoi!7H*ns^;EI`sxD=+Al^JZxK((7S9C=ZWKNYdQB!1v6GUD6@T=UbIR&*jX)%_y zok#i)<~O`uJB$+M&`4#FmN=J2Iz#bXas*BBf}P?;$9>OcnZxDo!>?wzoKwYVQ54T} z77e9Syp%=pvJ*W6stWU~K#9{VcLtiPUG@04X6=QEfz69O<*$2>=R|skDkl%U1lH83 z2N>p62d_DzLF$g^lzqE)z5Y7$aRhyP4owLXb8`;;Fucf&ZSv$~u6el9UsmjL`cFD1 zj~?(1U z-w)Olh7wep|D*p>Baq`kXwaZRw>kYyfBgH8@Iw)nsC#KjgC8ik^1&;aYAYC|!L;T;T%x-BpN(9PRH6$d48QIy1UD4LRl zC6>6mXi5?{S`sNqiiN?F%uteILves!QmvK*;9UYEl5VGD&Oyn16eSA+C5zE8QkIsW zL_0iTl&siE3m}RLhbN4Y^<*neDF8y@Z59XgDnhyqqzEmNol;~6r6^IPUF9rUFiL?@ zik^#rQJPXY2AWi!q0}I2DhyL4``vVyAZZaleAh8WS<8LnbDU^CsL9sCn?DwP7X)di zR0Z6iRJ9ZVCKarzy3JC9B59aR;|Px$*wqBvSJ%I2`#w0xR)4ep1uq3I z6ndQAoU`uE$EJ!LlrBXg!Ey-!G95_Mm2q@09R?B1fB=?e5KBG<@+lImJTE~oz(W>5 zDA6F)7!X=42z{;P3Mxai6VbmU&~%kR(*dup+bSAHZqCMqh2iPNV2k4znmk}1^PFJ+ z8F?4Udx%z5i1^{7OZ6c>>=87Xo|Bme$wMJ(s;#r9ATJb25f;Y-q(ig%Zhu`||8`&H zGj{mYtzQ(p|37m+KsM+U2rPkzc0m9X#GWAj89hRtk`Go zLezZUxl>DD@?UCt?eV~H_f~hC*?&^{^<(Qi-2(KBar^02K^NdOd2?g0rjE<}2m3b8LYl?k*~#?e^$UXv)aK^3O{` z5yh3A_^vawkcn?1IyvNm#;hd9b>^OM6l722zypzYESPBY=Z{UE^^II){iXT8+HBUH zTeHb~F=w*dpMA_f*cQk;wsoRD=$lAZSrlh|`{2L*&d}i*WCo7Z^})GBnGs+vI6!}z zOC@t@j{7%w3#&YZJA8vZ6GLXxg^*Fgw8Z@baL$$f5RRZxiBE=3A>FaUmwVn@UgF=Cb$dD{oK&Xhy)s`s6{7`;6;E0O*M{c~S-$-jG!dWTw9JUMa3SJ(c!dFrsQ zv6ry`XxM0i1RGV5B=AR)A$%kyqUf7D*Y8}ayFNeC0twKvq^*C0&NGchoWg~P1SxOKbg1;aeNM-IJka=B$Z8-a?TTv6T`7g9@2{e!V`m-^of8g?K zOP&r4+-TZl}AR59A+wQhD9e=sFxR z`rTXK|NX-Ib=4^HoBlUCu1?f{{|yoz36$jf4|i-?VGf)%n``ziH4Agrc$%jBXF9h8 zdK;r5e}T7zSDA|e!N-CS;y{QS(I(4wl%4>a4nBz+vJ7O%3XmbI*3vIezmwh8+!|*? z5uaSGJa@eP#(PU6`)a?q>M!tp@-5GtCG5Jw;1A*}lu2ivnfCYh0(Nn`SzRw!mBqqw^^GTSO<)5gU#8 zn5ArNij-s+tf+5fSr+eIgV{YvN$j%BgmmVq{R)eBL#u(=Bpu^*qVXatvzTSq8fnia zVAf!by@nxR{0z&nhVk+imff`<8=F_HOI#^rF(ruJtLq%*RlI#0k5h4)qR1FaI9bCO z?^STR3ePPV@7ui#YdV|4?ZHr#%j!p zDL9ijX5iJkv9VEP`7OqaE5uAN2zhd4iv0oIVA(YW8*AX@FfJZT!m^iP-BcZzfSi5> zg@4@o*FlQ$AbJGR@$@6w8j-`sKGwj(_6;n~0(>f#cdZH%fa4i)Gd8xRuo`}uT`C&S zu}11f{2a_8?_Vvmg1q^6nXIt+1qgYA#jA~NK$9Ue!1Hq3EO$GAkshTa&cpto;(!u_&iv z9?P%DSt3~ljJY%r8PEeiRZ>%Nrnqylgx9hM*6Qmq)?{tfN{AKBfM5C=ydJLwhggnz zc&QFx4XhYD+0|HxG2$VTlD13i%bPc38QYkL=zHU|XN`@l5d&Ij%$#MJJ2LiWfa5yZ zle)r;q41XW%7)p1??LowL?58zGBWpJF)bDN5K}Y2RlF~0XFAU0_F;ba)?LX-7&4`< z>D$<>tsDj{@Y}CpVR0<`VutZTYMLk+_yG7TYMHw+o07>cV;;={at+BaHm*rYG7?sk z#lh+9GQzE9Y&CWX>_%oGJtq;r!Wr?wwVA&hL!hSVpvuJ&ebHD&qTYZkA#$P}gj9n- z%1x+|lp>IQ!g!K*c*r{-1gIuNQFt7>M9JzplV`QH{-Jr0axnhR0<*Q(S2g76bUQsY zo}x&iDo4i>RbmD5#ZxpKI=n=RFiBvnHm&Py89 z9V-2E`o8VI_qOKy4qq^v&zXgJq{z_W?D;o(-ozna)5%4A!c^_zrGd)>?zV|Tq*s-> zSWKqUNfPCumIuK{Js2oHZ}yi?wXgRUR(J-U9dGoHwx=Ze@ctI z4B^Sknq!_>T=U!xUrmR%;M}5h-onG~!B63Rwd}JPLN0Hfw>rc()dR*1DD4`P3+k<%t?g-1ljv@sskLzDoG~7)p4<7Cek4}}W zHGGwW{=y>jU_qj*bGkRs)$MESe${^@$1FMOFKb;BbOMfK7@*GP=VOOT-wKuYBtP?t zX1#SMP!%dSY*n7Taw_6_-py-sBS*d}{@a~kImvy{&{rIKO>98)Z$qBxj0B#+N&OFK zDydOb!SS=n`pNDn?}cVx?&vd1W}Gu+K{w#u0^QQA8>6M4kA_SJ-B4xbxu989VV)pn zLp9#PgRSq*2?AC%$6Qx~<8fc{K*$Q;oGuR4AG`)Bmxt&C0V$W))QH;JwuX_i%F|yUC_s>gmJBvzclAx( znAsa^O_~}`nrZe8HG0ofk9SSBkXnS-AkXre9;`*sPqhdsw}KRi>QA+Zs9E6-Hs5n% zo4eR7t9BQo?>34?_Zc|=8a8t1e~4w{LPI96Y1+XyUHxD4-D1#>yG-5_0F6OoN;=ZpP%gg z-Q>lY%2)l(EjuO#JOlRd@XtnbtL9lPj_~kX|9hi&y%p|{BJ4d7ux~~9vjc<lJ5LY+hU4j-a{X+o$?sL+0R*g~*;We>^@He3mpafgTek!m0MKzp7x9 zZ|w3ySD&lMclq=(-_Z{9QdOYoyb}4^^oh6uf)1`QA$0JU4t&W$Z-zg-UT}91-9Uff zt-Gz)3dcT}E#W~2qFjV4X?Xa1*Ul8$gYJA>*>+)h&>cauuMDCisX>H4Y6!Xy?qoOo z9_%d+f1~V;Yn1iJTZI?G02xUdkS@Sf%ct*qmIO^*9d(W4pea!VWFF_cxfCE1B|s+1 PfJ{^pV1CYSaajHzyTo`) literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PodStatusResult.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.PodStatusResult.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c1356513c4592ac8dd216945c0d54dfb22e2c567 GIT binary patch literal 738 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.RangeAllocation.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.RangeAllocation.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ff9bb1e60177449450dab1c4f178613b1c13e0bf GIT binary patch literal 264 zcmV+j0r&oEICB6B6$%1&F%l0_VQyz-L2PVqV_|e@Z*CIi0Sep!3IQ?_0W%r_G$H{t zDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3IW{yhH83|cI5Rjl zH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q z8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u) zqnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf O5&|+b8Ub+{03rY+Xk01) literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ReplicationController.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ReplicationController.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7c30e24a150ac6998ce6201ecff29cc6ebbf66c9 GIT binary patch literal 4766 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 O0yC%^h~%)iEdK{r#4WA> literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ResourceQuota.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ResourceQuota.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c895ae777787c1cd8f02e4628f6e92e7076d5ec3 GIT binary patch literal 406 zcmV;H0crkgICB6B6AA)$F%k_@Wpi(Ja${vtb#HWG67~WL+yM#!G75&|(WY9I;%F)|tg zF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7 z#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH#9 z3L^>|=!Ct*o5X_UhnMJ+kHw1Un~KDVdFQu<=eU&;1PTH*HxdQuqKn6c8Y2oJ3KKu) zi?PD9Eys`Lzl193y{G4mni2-(y@2Gpo*Du&G#Ww*6AB8+n8dQ?maM|FI}!y712;7@ z5-SQKa>b6vfaaXCUg(RXX2!fgXhd?zu21EPvFW*&<)Na)lOPfW3IjPgH5vdS0Lav# A4gdfE literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Secret.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Secret.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..abc3896038e04b82cfb8ef7c700551f07d668564 GIT binary patch literal 285 zcmV+&0pk8^ICB6B3bP|LD3fut-0WuN+Ga3OjA^|ljBE*I1ql?6= zaZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(y zg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8 zyOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t z!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za2MPi*G!g+U j8W6;S<%gH(laIxU=$nefiFqOj3IZ}U5&|+d8UP{yc_w3~ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Service.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.Service.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..dbdd9c130166165639df3cc64c4cbba12876d15f GIT binary patch literal 422 zcmd0{C}!Z|Kxms|&rJ z&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPtw@wrqz z-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(D4JPnTyHD zL`eEY%ibfik2F1PpZ;QU|Iw}&v%8LTRzBa}`h3S!iJ99wcl`Pf1dK}j91H@VzfC*} z;{9ioV$gWr)_jp&hy!SdsSuNqnG}j?)!sJ_jzd}sQU@YS0;^ydhdtn#EHYpx1E-s+a#zsO+ K#>P?%N(=y0(WLJH literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ServiceAccount.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/core.v1.ServiceAccount.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..37c7524be8aa860328eeb94f244020f86bddd4e4 GIT binary patch literal 319 zcmV-F0l@xiICB6B6bb@%F%k|_WpZ|DV`V{OV{dhCbP}Ed3fut-0WuN+Ga3OjA^|lj zBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOi zHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg z0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2 znZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za zH3|YUG!ggio}U|=eLFDxRojbGB+{;GB`Q{ RGC3Lq3Ia1QAORWxA^@7YaaRBU literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/events.k8s.io.v1beta1.Event.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..9e4e27f9c5aea2fffa471644d2a0c766438b9e72 GIT binary patch literal 484 zcmVi=AMdSIOw5`V8p1&m@ep;uQtSsR^_C)Wik{oHaRvl zGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T3IR6~0XSj@3IRD1 z0x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r#6cQ49A~853I(s59 zIU+i4b!=>XeG&`^i_ON4N)W)W_^JUKEeQR!nD7S@3<$2C`nv-VsH&~}0U8(OhnMJ+ zkHw1Un~KDVdFQu<=eU(V#l0c|GBhdzGBq*+GB!E_GB-j!3IZ}X5&|+g8UiygA|uCz zQ^%pkk5eQo!o5i6iI?WIo#n8<<-LI9x}NBssY2zmg(?CwF){)(GCBe?GfE)}0y8uc z0y8xl0y8!u2Q(#N>94R5$ aj1>?7atH{G^36|&!)7co3y4X$ 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 aI0Yk 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Ingress.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Ingress.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c1ed7662e11cdac42fea1cc0b26548ad09dff596 GIT binary patch literal 346 zcmd0{C}!Z24rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sdN`@9nRzT8H z$ttfjC#SYn$dQYWi^<4Dh=YSsfI*7M$W({}$Tt&WGBTG^1+pxJ8kO0O^Bf1ch8wKa~>E}O6i3{Zwt4Swh8&X@AtF!jVyR6 zv>}2)sHQ?1Tws*2@eL~}1X#E;G0~OrHgw~kU>r!8Lj3$C7CzqYvgO>J!L z%0kS0v~uo))$0$I@X^vuXLWJ9|J6?^F=#oyBZV?u>Div698=i7_vgPSem}mre7rh5 zFnQz5_a{$Z{cZV{F}IN!E;qdRbIkC0z%ui%v4ACp0+t0A{;1SFlJQ+Vcd% zJg~Ps6q>3hk{}R>c2l%PB%FOSbdV4*(#RqKL`jb9Bv7RPe?ah+4eS;6(w+17uI+oc zboW$yyXvnjKDz#Of8~eZj_&%WD`oy)fc;^x9;B; z**riDybM4O$_*Qc@E$;%;!;3_X0f65 zHc<;sPIuaLHFzS*Oh6KIhhn>^JsTZM4{OA|C?J`9l)dQL7#%^J)OSE3*!z< zE8Fd9g{Ue^JpkNGX{V5%?}1xv&%&&4L&u5dG9}V;YD1e?Knfm^_Rx(D>{a&iy_>6- z)^0D&_0N8>_Srde>-w47zka*^%c*Mr!k1J0><0F?!A=_NeIJCcVhyOcwRGBr4nW;) zIZnLfT1_a+wBIg(tvymgs|8R6T?7f5rN}s;Y>B@o&?lOOJuqIYHZ(EK7)_OU%%;`_ zQWV9cirHhjfKG-a>SZD38>1;NPLtZMcf!qzJsBe^!$=a)*CXc8Bnv5o9#C$OW#xl~J@+qt L`0)JDKycuHZnA}m literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.PodSecurityPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..cc4f2ce0f5ce65ad96a0cc2a51ce146678e2e9f6 GIT binary patch literal 659 zcmV;E0&M+jICB6BCkhf}cywiMb7^mGb1!x=Vr6t;F%l6_Z)8(tV|8+Aba_y3Y-wY8 z65j+0+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGt zF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhD zdm=G7B075_F*zbSZgp&IeSH%B0tf*T2FJL@qBbuY5mv>TD8#?WiszJ`=&+FKqKhI0 zQ^%pkk187^E5f}<=ZTl*w4LR!zvaDv(gcBuT}F$(9lo2-vW;(%|vonOzX1*{I9^y#2S90b()=7(c_f#FNIl>8*>zj^%`h z<%hd7#)iYJQ4$si=7zZZ?~k{-fB_KT?}3-ghKjI;0cs!$2I#1l+qn*XRC@m5c t2$_t#8)N_g literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..17b42ce99b7a2f4ce35dce17a44c69c455a2f2f1 GIT binary patch literal 4926 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 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Scale.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/extensions.v1beta1.Scale.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c8dcea40ab256ffc1cf5a06b79f9ac6c21aebb82 GIT binary patch literal 303 zcmd0{C}!Z2<`PP+C`rvL&dkp%)-N+mN-aq=6k-idPRvOaYG>lQ!^p*GB*bVe#b~0$ zXsV@jr1j5?6(Mk0o0mS!eKrUvFF z7RDB4re+34#+DYh-!)xr?4HwD;KUHHwqt8^>-=+bb~8q?aWR?;FXpdqw{n_pU&BGczdG$$tktZCN^q3+d2J6TP)Btb1e}ep=u>V3neQcX{ltD zSDKSkTPwuP@&8oc+8_UcfKf`4W6is+BOvyFMj;L^CLcRCL=Q`1|rKI@0=barcqcg3X?%=Fxe&p-<;*IlMhl|Kya~XA>JWp6#4|q%9U`nz@#U zkWjUfp@otakhD~?$}7#usjU?f;bP%pGBOe30FtIcOh#r>Oh)EX0vrrLwuKZ(6zD2r J11Sb21^^p&W{Cg* literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1.NetworkPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..1e7ac80d7c3d5701aa101cd717ae5aaaa7f0c2b7 GIT binary patch literal 1302 zcmXw1+iz4w81GpWVG@lw=~Lr%6N#YTw{zyqoC^k(Qd%fVNg=?4Zzd-CWZZ_n_$L?#43nHQIp2Kqo!>3*&G)f4Sbu4* z-YVDf*;0UcZyvMdNYgT(kN#hsC>OHHj`{aS_NT!NVH);;A;X5+5?(pEc5QLx>+0z0 zm4&$XX!*+OM8D3q#%Bt@HOkK0JSS;oc{e zEg{R|eV$PZS+X0l)Pk{Hw>swQYiAdF=NHzlUAlV(4)iX6d*_FExruyzo~2_QP9CjY8qb5%bsvcGY0-GU=DxPRf<4%HhcpAf#o3EHuCa zrzRzrDWy*WFDW4JN1|;UG1v1k>|kIXVw)TfDY37GkQ#B4fDQn)5rDUfvw4g3p*>G9 zXohx|1|pNSWC{cV(N2mriG;Ifn)VX{M(Y_QfEdZ4?F5SS|Mv-Vc^!L&y>#d7y=!|O zF5NxR+NyfXi;u2<)m#2PysfkL>2k^ZH^hE7SeMm0(19`sRRsavR1-iW;ShI(pMYEn zyrfk6+tc+DKueQtX;PN&1YQatYay@u5s{826=*#Br@<2xC{7I`#AL&BiNLK;3+Egp ztmITZZ$6WO(J^zDjYJ4%!01%vHn{k2$H(RdBB7P(zKxC;;`O(`HsGg#Mp zbJT*9)0yI~22Vu6IHWLpAijfIGqKV1phnz{0TMTd*^8cyu_43>eFqeRZ9W?<*R?xu zWjbB05LINc3xK;R?c{UwU2qGn8JO{HXgi5)P$WI4I! z>g}c3-s#U*KRd%WubsO6%QtI3pQ!ZCeKBdCUdR42*l~ls?}PAFybfiznohgW2B^7B z$4L}js{tjM_FH+dwMR;5wE!xhiy%R>6oC`T6wUVp`b0CZ3&yIIx+bO>BUj1CY^og~ zMKMgNxIL;1=maEDFAFhOAD;6PG@& zo^YDdx9Bi6v2BcR(}<>R2B?lMyEMXdz22kdC_1~Y}1Gi@)St1Q}1P;kI;4v z0`}^Mh({@k<2Hwe`Sv)7%p_{>kz7!PCk-0()Xq3iP(lxqxWlGl4QYDV+{QL55IRks z7NyW^7C}_IF4$a$%W^Z3W>le2@q=v?V^2YD9Kw-c(j|A|v0utDL&^=ajC`=L>;8og LAD$iP3-|p8+0cdp literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/networking.k8s.io.v1beta1.Ingress.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..b978af30037bb7ea324b4f985b266a00a3d7ac42 GIT binary patch literal 353 zcmd0{C}!YN;gZZtEh*10%FfJ7*UPpj*2~P-FEdO^ElD&KV)x8TFG?*g7TUnXb%&9Q z(MX8VSc=g^iP2O`=}7C##ob3%7kWLL*Oh4TVqtH>krgLr=)IV+-t0(s*wZCDQjJ6m z%`DAKj7$y8O)QKp%uLM;jEpTUZog}~+Som(vA~HTU~R|N=GOV==ImySV&h^o7h<$X zV&`JC6k;+o$Wq{9GBlE6GBj4=bE$f|d&-IS>f)na$NCGjm<$aK7%Uizm<&y-m<&z3 z7#)F1&4d(RPUw0%rR(M5nMdd8hCZFMAgM(3kL5j)9REPt}HxptqGM7>XvMhw;xn#Md tfhTufF=1?QXkjrD3{rJ&bZKp6Lu_Gla}wnN z3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}= z6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCj zVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m; z0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*s cI3hZGA~884I&O7rY<+za1PTH&G#UUR09{{U1^@s6 literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/node.k8s.io.v1beta1.RuntimeClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..45c3c6e3c82d5d5807ac59f4ad1d5a6c03bdd356 GIT binary patch literal 275 zcmV+u0qp*3ICB6BBMK94Z)9aIYdCW*X>TufF=AzOVKEX6Qgv>0X>DagY+-YA65|01 z+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+- zK?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7 ZB075_F*zbSZgp&IeSH!FGBg?hA^<4wV2S_$ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.Eviction.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.Eviction.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..83d19dfb5e1f3f1113604a3187565296fff22eec GIT binary patch literal 354 zcmV-o0iFJ9ICB6B8VU|@Z)|B}c`tS`Vr6t;F%k$xc4=dDX>V>4y8;T_0SW;!5&<(B z0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1&m@ep;uQtSsR^_C)Wik{oHaRvlGBq$a zG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T3IR6~0XSj@3IRD10x>XZ zAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r#6cQ49A~853I(s59IU+i4 zb!=>XeG*y-tnP}$pU%;XiUATO3LiEv%9U2dnkdA-$cpEbp6IZU>7t9rg;U3&#*b4Z zD-r@SG#CIPAm@pf=CqyVu)pQKfaJQK=$@%U<+Fu&G$mo_ufKA|jw%8&H5vdS0NC=2 A>;M1& literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodDisruptionBudget.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..c154498d8a4505d5a94d5ab6fa81f89d5b835e2f GIT binary patch literal 501 zcmd0{C}!YN<>D*I&&f=#)GsqkN-aq=6cP@|PjSgCE-Ec3$;{7lDosgGEfG4*%yoy6 zi_u7k(O8PnM2XQ4rX?v*qyiME#RfYM)JP)OfaY`jNI+plRk>B0@sd zN`@9nRzT8H$ttfjC#SYnXc42(d`2!iE)&Z<^U4%+6VpNiT`(}xH8L?Y)-}l~)wR$y zD>5-LFi9~5%A{K)8|h|S>ibpbxeKuw`07>ar3=M!shL^m#U}-p>*=Prn loSn=H?_Tfw{_{T&Flw~CeYu6j;M#+h-5~ydMkxj*1^`2Qt>ORx literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/policy.v1beta1.PodSecurityPolicy.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..b0105246c5e6d74c614c18036693241a781ba457 GIT binary patch literal 655 zcmW+yUq};i9KYXTYutm(A4_Dt*yV#P%-!8~yX~d49;}yEk`IEAnvf;A{1d4No948e zIm@}J=)~!RmD5o(=cWnn?%Wb00zv7Yf_K{^zof zt*@)CZYg|BRMj+95-`hBf48)zy1AjYsl{?~fq&#osAnjKHqbhfGBIC&b!^z3qjqaC zVhQxjcXo|`8jXT-1qO@|Fjc29V1g*2yPu1p1gSv@3eUXSDn{M$?zTpr6}o!EJFg6kDh)Ot{;n7xsK<(aSk17Ht)jf za!K-;R|<`Z!4+}Ywj1%Ke6NbdcU?MQ&Q>07&Kw*b%K)mLz0Z-qC-yQZ0k_l`0#z7F z>LE%RG$={qC}}JwupD#J=@X}Vlm5Yv9f?3}w%U?+jdvtG@QiXZ`2NfG@15Za)zsGX z`tj1yf(KNQSk9$bm>Uox>41~#6Q6dA-BC(##Aa^7Y^CG~AMU#rA~vAf-nV<#9c<76 z-#zyt|H~=eDp1NoL6p*K5FGgjwfPyG literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fb1908e9de8e5ad049465d193078d488878988ed GIT binary patch literal 503 zcmWNLziU%b9K~~=sBi^`OBNpv`Ua86_cr(aytiATV4{hnwW+00u4xi6Ce2IolC-8| zh*FgVQ6XT3P?0(aA})$b2M1r(E^bb`CNztGgKs&*=X^MvGWSCG0zTbX&E;vX)x7OC zN}XJ@7>ZvC{II#m2l_DUz>8@Lzeb?*%)3V) z?{B^QHQGbV$1rjT;;Y9o5=3FqJ7=)MbX8%7cJfkZyf^&$aMRoGe}7VoD2zoz95obX zb`)myQ7lkxa(4Q(KOXj{yD#>4AUhs?`1UC`b1>{qp7qX8zC8CItORRLBuvPr#<(^c zq|j!otxBcaC1I@SCQ)=tRdicZbSI+dT>XKtk8mD~SQP-;5-gBBwUhxD1f{G3(h9h> zF4`#xG)?bP33A@zGLgzs%Bh?q=Nu?pw(~%30J%W{qU&qRWhR5t@B%wtr)v`GWCfpM z1p^$omEnv66^n%px)7IXNLb|PHMg0ps$$O6(*RWlHH#WjO4Fgz6t!erx;9H*&zb-+ YNtdolD$`;?cnNx=6+EN~HKc|918;bo4*&oF literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..6aba7914e37c72370be8510f29607837d85ea580 GIT binary patch literal 318 zcmV-E0m1%jICB6BG721WVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp5!5<_ftb97~L zQg3W!LTPSfX>Ml{{{afz0SW;!5&<(B0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1& zm@ep;uQtSsR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQ zg`duxy8&7T3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^Z zF)#o)0dfK{G7$v&o-I}7oV3HYVK2#)eddvYDCW7B z#D-lO0x>r#6cQ49A~853I(s59IU+i4b!=>XeG(7~0x~ob0x~rk0x~ut0x~xm30ond*ICB6BBnljIVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp5!1X6EoWfJuP z3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv=$NlI#EVwtq_|}= z6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9&YZgeS_TRMHxdCj zVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z#05}110x>jt0x>m; z0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL-T^a&0H!2ho5_=*s sI3hZGA~884I&O7rY<+za6bb?|G!g5&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143 zF*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8Uisl zDijhDdm=G7B075_F*zbSZgp&IeSH!T3IZ}T5&|+c8UivlA_6iu8Vm{oGB^?fGC3Lo JGcXzeA^;IAXH5VA literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..3dd9c173563cc520766b3e835ab360e5937d9964 GIT binary patch literal 509 zcmWNLziSg=9LDpWsBnVAOBQd^8$<%%w|Vd9`*uqdOf-?SHnkMW>otiq=9)`#Nm^4f zM5#)Gs1UG1s7M_I5f??JgM(MKi(4mM6Pm@p!CRi;^L%)CD$I|_R8||SPJuYB=9WoTyHHki&V(~4_4XMg_PKk5xey;?Go zd;j>;gY8$pNBd~`l#FbQ*y?E+aV*jJ-Se_UHASMjdiF|Zyg&T)Xv;t7|9D!9NtDJT z3^gQbbR=r_Q6f|=d|~>mKOXj{doK@mAwM2{{QlXQIUIH;&wH09Uta_dSHd+r7R7i= zrA(a-ldH4Umg{!AI4Vn;p-7skN}3guG+UE2ru;;5faHSA6IB3c3ot>j%u)_K;Dk^Y zgc)*kgSRsRNS53q0>r$@L@JXfgb^`^FWOMNY88N30AiB>#5dNLD^!G~?uT}=PSyp~ z@rrzo7Im=UPL5FmgfA91$wE?OA!Xu|H@s%Ls_;2O%K}s>)J&oaAq<-cgV)kY;aN0& cGj9MS1X;Q+h{*Bcg0x>fp4n%t8yOhX>dvnE# z#*c6+0x>Z#05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KO zk%1`YxtGL-T^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za5DEe^G!gi=AMdSIOw5`V8p1&m@ep;uQtSs zR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T z3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{ zG7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r# y6cQ49A~853I(s59IU+i4b!=>XeG(K30x~oj0x~rs0x~u#0x~x;0x~!n03rZ&i)Gya literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1alpha1.RoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..7fd54c7f0cd1019a8079eb763f61bd8aeec5aac4 GIT binary patch literal 317 zcmV-D0mA-kICB6BF$yAbVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6uY;b5{F%k<> zZ){~kX>Md`Zf6qz0Sep!3IQ?_0W%r_G$H{tDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)b zF6fxAHpGio<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=- zpU#}S0a^wM0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSv zFaS6Kasn|ldIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-| zhFuy0F*hm{5)ykNF*qVRdm=G8B06q$Y;1jf5)cXkGBgqbGBp|kGBzRtGB+9w3IZ}X P5&|+g8Uiyg8UP{y(6(ui literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRole.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..f14218156626857e362255278cfb2d4058425b28 GIT binary patch literal 508 zcmWNL&1(}u9ELM1Dy-mP$i+R`J%|K;)1CdC=`B$((L~bP)KVzp=0l80vq?5dYf27L zs*)fo1guahQV)WN7e%E94{p_7y!E8lgy!Pk;9lOt^FF-173N1|O`d7y-2!pjtvg<` z+;v-JuSP1&CuMK8L-VDUOYxaY)wbU%H5a^U34c2w|3xy=F)|cns>q6|!Pazd7`$s- zo$L-=cKrIut>Eq9HaXt@UB_jtTmOm{cjwPzyJugdCS0rkvXD@fh`=eivHvNOakEivRM5z{G zs3}piD^Y8J;-PBend!5^cr=*qy*${3+<52X_s{O^;ixxx-oH5c`XYF^8m>99D8`#A zW$Ij*T%D`6tJPi)M`cMjv7}pyq}!^bJ26RT%1;e!QKx_~IZGCN}LPb~_erP8eWKBQ= zugd3W(EtZ-XBj0x_)>9$EG9$-k`_LB-D{<43ZFOi3_y)S-6Dn%!gPo*c|Da7o=sCX bawb4rkmYNFhzwukev;g5hYv|oiKvnP4WXUp literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..0c643ab25109a53f6c4aea2a4fc8ccdd1a4548a9 GIT binary patch literal 323 zcmV-J0lfZeICB6BHwqzgVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6vWprUN5)wmf zb#ruOa#C+>WkP9gWNB_^68`}T+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3r zk8mmiF)=UzI0143F*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxr zfhgv=m&Ar$8UislDijhDdm=G7B075_F*zbSZgp&IeSH!T3IZ}T5&|+c8UivlA_6iu V8Vm{oGB^?fGC3LoGcXzeA^_c-Y!m7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio z<)pY}G88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM z0XGr>IARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|l zdIB*uiUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{ x5)ykNF*qVRdm=G8B06q$Y;1jf5)=voGBgqbGBp|kGBzRtGB+v$GB_FlA^`X>Wl;bC literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/rbac.authorization.k8s.io.v1beta1.RoleBinding.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..0823a9d1dac00ed2021f822c267ce742dc55f5a6 GIT binary patch literal 316 zcmV-C0mJ@lICB6BFbW}ZVqs%0VRdw9Z*pmRVRUJ4ZZ2y$b1rFbFLp6vWprUN5(`pq zY-K`eZe(e0XA=Jb3fut-0WuN+Ga3OjA^|ljBE*I1ql?6=aZ2W%ieWhDp^ad~sL7Zv z=$NlI#EVwtq_|}=6frhAHZ(FdFgG+fGdMOiHZU?XIXK(yg4KbGoPlsc08p)nwS$G9 z&YZgeS_TRMHxdCjVh0KVIT8XfFlrzQ0x>cg0x>fp4n%t8yOhX>dvnE##*c6+0x>Z# z05}110x>jt0x>m;0YM4^F*Xt*>5z)$l#1!2nZ=$hRpp$t!?$5C$&`KOk%1`YxtGL- zT^a&0H!2ho5_=*sI3hZGA~884I&O7rY<+za5DEe^G!gm literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..33c4f378e9c0e96c5364c105ca1d490547e2f700 GIT binary patch literal 309 zcmV-50m}YsICB6BB?=UCV`yb$b!=&FXD(|vb1rFbFLp5!4N!7vZ*pmLc|&Yrb8`}d z0t(y#3IQ?_0W%r_G$H{tDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY} zG88d3IW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr> zIARA10XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*u ziUC0i0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykN zF*qVRdm=G8B06q$Y;1jf5dX@Kt@!`{|Nj9P03rf1G%69sqBbwel~%=?D8#?WiszJ` H8UP{y(e!h} literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1alpha1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..10675f1ec484b4490c6a0d3cca79951b7d7cec94 GIT binary patch literal 315 zcmV-B0mS}mICB6BD+(HOV`yb$b!=&FXD(|vb1rFbFLp6uY;b5{F%k_>a%pdJX>@r* zY+-YA5`zK?+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143 zF*JGtF*S+-K?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8Uisl zDijhDdm=G7B075_F*zbSZgp&IeSHxB%8sr0|NsC00T=)x0x~oz5yql6FUplx#hNI@ NzsQQ`l%5&@A^?j;b_M_d literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/scheduling.k8s.io.v1beta1.PriorityClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..d3a2b4663be353b12b79258e7acdb2a9f76085de GIT binary patch literal 314 zcmV-A0mc4nICB6BDhe5MV`yb$b!=&FXD(|vb1rFbFLp6vWprUN5)DvtX>W3Aba_K; zVRLg5g8~ZN0SW;!5&<(B0W=~3H7X*+h3TV<#H(>i=AMdSIOw5`V8p1&m@ep;uQtSs zR^_C)Wik{oHaRvlGBq$aG&nOjHZ?XdGBY_i+wOwZfs34ha6$l3t%$XQg`duxy8&7T z3IR6~0XSj@3IRD10x>XZAPNF8G8zIgGa?Q|dgZ&6$cKA##frv{a4G^ZF)#o)0dfK{ zG7$v&o-I}7oV3HYVK2#)eddvYDCW7B#D-lO0x>r# z6cQ49A~853I(s59IU+i4b!=>XeGvc3j;;9r|Ns917yu#yGBhd?#-cVa%9U2dnkdA- M$cpEbo*Dom00~WXng9R* literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/settings.k8s.io.v1alpha1.PodPreset.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..814a4c2a5d8803d5fdb3d603a42270ecb070a6b1 GIT binary patch literal 1464 zcmXw2Yit!o6y6!M!ispAfY~fRysW{%O?JEU+}S1)s2Cy!Qa}xokhP_RM{9wWHzDC6 zNN$7W(b7U{v9>%)DX38_0)ONdOHKTNfgfOELUMb1F)QA{um*QIStnTsj+Ce7QCzuG+b z!On((?9HYP8BA$tX;hD?*nz3cqPgIz$n@gjY`!^L>^d>f;lGt{|Ki41m8G|ucMTue zGjsS#Ywo}b$QEU$5VF&w+A9MYdu4T-YioDyBHa`0Q^=lei?}Y@UL6U!G4w|l^O>OB z7qy#x?W=krLQyTjvRbcXeob7uXj?F!l!Oa|?ZIlY!hTulAgNlsHSnwFtCfDBd_UP1 z_|&fzP)L;t5Jv%v_NrE*Yt26RX#wbOR%{buZ8 z8E3ExLsW(pontM5<`i3IRbj;!K%4@0lys~m(4kT(YdJhE1@TI|Sj8TW!VHcm!x1Zk z$cWEDRW9rh6-n113JM0kBZ!IgI%p<>(sk%q9#}Q42U0c6LUR{u;bAQ^23MiA1EMrU zX}uRkHk7Sn;2y^?#F)A;xER7>ZU!f$PIq_w{^;*f&QjNpKD<8GdlpRrKau+G$%Buu zi({F#GB{R85p)(q?pQn4Ni@SuG>%Ei9!JBFfS}IZ6PMbs^H=Z1yN~}H#3zsoOw8E1 z3qp7xP&X< zw_@9c-R}T@Os6jPx98A3Kxms|&rJ&Ff0Ec(JfI;mC@UGxT1}SZ{WuJM8I_9jQhlhGv##CPt

w@wrqz-96<*dv)>Au4DZLT1ZS$qW;M#wa+FtYCPLH{YYCZ&@^)`5h0;!B|{4(Dy@8=i6JK@0eGCML9vRWT-lVzs4EfocLF zagpC$+iodPzzy168nI=uVq2kDjb(vd9(?mfYvMy^ch(1ev5#8M#d)~*yWjcF`OdjB zbAop(>a*(J?w-!BmSb&oCwO<=d!6+kn55!pXZz`sZ4Es=EpNShvaO?sTzg2pi&R7j zVnJkS$kw&YP%#zDTzx;BpNqC||I(Q^GYh%tI)C~rClfpB&9Ai4O4AXJMQy{iIOC4( z7?cVA>z@NZM`DS{sYazKJ$mEgq0fFwtfA&o6}bfQ)-n|df=%Oim5NOo#3s{rAMEwk zCbA=a-5b%(bEkA{nufwr7dEY4Y}!%O08)oMU5rP)iD)r3voTluvX{8N{%uQrZlXVb zK2noky_gw(1FE@tB_Vy9$+ZxyLJM`AZg21JCy6o@Q;WpqW|Ofpb&p!QwX&IX>d7v( z#C8N3+NC}QL5E=K1`>b&HSo^^cu*B06+m;KMc~5dgC9$)P>`sY8RX%@#GHREUQEWe zhK^{vfinqaG@xjhFBF;WCf6hUAqe|$OShS++1*TMepM(=HSLnso+${oKeiJ0c1b`Ot=$#q!63)=07PU zC$|T3X;8T}i0*BwesNCxA3*Lx@2$z_K(S(wa3dkg|&?_h`4@@4cAS^P^m6RhXS5jPiBD?ao z|IPX5*1v1;7cXz6yhz+je7?V3hp3<>@QsFGF_+OxkZDrLH03*h&4PCin=L7a?qFA9 z9@@bIFf|$_rm`VQ!#h~^L#^PWo41PTSmvxZIO2`0vCZN2#Y5UbDV7DP1Km+qtMg^Tyr(jV65uPkjPz2T{i?+fvX4sU7T&Z2*NRtG7kun1_C8G7JO%D*|eo~kd7 zeqCMbFD>D5A$Dc=Kufz literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1alpha1.VolumeAttachment.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ba338cccc87360a8bbdc9c87901e9498520f1a77 GIT binary patch literal 1256 zcmX9-T})g>6uvX0fH&IWh<39v2CpQNi@=?k`!lmiO(A`e#DvyZ6=NbOwzd=ys3s5+ zL4J2_yQM$@H`MOZh%Jj1+X}^MEDP-N;F~X66CZk)T_5ztK59LK_hIIn?|kQc=ghtL zr0CN0N_~GiAQ)|cZCQ3?)l%Et-Sp1!Q!Q=X5Dy~TK#pmohVqF>>e>hO*|~6&$X!13c4{FrU7ef$%1uR%`tvI-tdzRawV7ji zw&22bT#Ioje*JUc=l)2nzoSlTNRHn8Wa!dQu{G3Ks3VUc(Oje>Nieleln@ErJc5Q?=&vlrXQcDx46H~hfQzwjSLF$rc^U<(B5zZ%OHs-2c^wN=UCkg%N^P8lkq+t*w21BvzzjW|OGe95Pm<@6!vnRyN~q z4cVg?IIbi^d-NwE=n~AlKn4=O{X1ZV-Y3|ts}_+w!i3KAW2i#)nBF_*g@ z&Br5KL$4TnfujU-7SIgLxv9h1hO-kutQ;^D=3WqU0a0mU+hW+Jp<*4|j9{A|)IuCE zWY|t1x%$iEzq|GZwp|c=mKMUcIH(;_32=dq^}5!K9a>kaV+RU29Bd)xKmo_8e;N=N zI$-F4p(9O*xfa1Lwa^jBaaqZO->%#%3SyU+X(o2;N*b=XAmadEn-On+I;5?0HJZ0^9^u3c*Y)IK#poKo$hRM7Y7nb|Q2B z{HHtd$?btm5>#FVVvjeJzqB!&naX}SBh%M5X1B+~2z&)xzmVey?o>iqNdwv}s)Pef zF1hMb!ram+Lnf9k!_o_3DeAD4^##_(nsp&}H;8WKss1RJ{Y(Yqm#^L9QNNuBivNBogBzB#Z!H+HaV>hy6%jq8uH}-D#AIq#9*qUD--id$q0)-yo+b>rM4hgho`zJGJ z(j)%bU@nogvm-P4b4&isaivn@z;9s{YeZcF7ce82!F_sh@#Wv|M_(+_fUqq?5f8Ti N7_9uCph3;h{sa8naVh`+ literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSIDriver.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..840b040ced4da90bf573dfd38687214b7642af57 GIT binary patch literal 277 zcmV+w0qXv1ICB6BBMKICbZ>HDXJsyHICCy(Z!dN+Vr6t;F%k(wQ%OW}X?A6D66FC3 z+yM#!G75&|(WY9I;%F)|tgF*70#M0(}Bl*osBbH$3rk8mmiF)=UzI0143F*JGtF*S+- zK?(vfHWDG}kc#D$is_@7#hxuy<(#y`w_z{Ilzrxrfhgv=m&Ar$8UislDijhDdm=G7 bB075_F*zbSZgp&IeSH!H2mlZP8UP{yv-V&C literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.CSINode.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..fd387b56bc50dc2d651e562955c323229898f4c0 GIT binary patch literal 285 zcmV+&0pk8^ICB6BAqp0AbZ>HDXJsyHICCy(Z!dN+Vr6t;F%kzuQ%O#5WMvZX0Sep! z3IQ?_0W%r_G$H{tDk8*%>7$Fpt8q%^o{C{O=%I~Z#Hh)bF6fxAHpGio<)pY}G88d3 zIW{yhH83|cI5RjlH8wCZGdVch?t;~Ui=2UQLI6;$h_!=-pU#}S0a^wM0XGr>IARA1 z0XY%^F)(T%3IZ`Q8UishA`V1)<-3%~hkJ9yipGy{DgrSvFaS6Kasn|ldIB*uiUC0i z0x>ocA?c8c<&=u)qnX8?Emh^5w8OVyFUgdB=8=IY=DC-|hFuy0F*hm{5)ykNF*qVR jdm=G8B06q$Y;1jf5)KLs3IZ}T5&|+c8Uivl8UP{ykLh5U literal 0 HcmV?d00001 diff --git a/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb b/staging/src/k8s.io/api/testdata/v1.15.0/storage.k8s.io.v1beta1.StorageClass.after_roundtrip.pb new file mode 100644 index 0000000000000000000000000000000000000000..ea41811f0dd79b72096d1b290376ca0d5373dad7 GIT binary patch literal 346 zcmd0{C}!YN;}R<_$uCMwPu0t|DAvo&*Do_nN-aq=6ygbnh&$&b78eUGXX3iU$i-+R z#AqzVXrjbus-<+K_2uI3BdZI&p3Un@w0N5O!M0<7d(XM0t1zJpoh6W54j73a_CRI#^rd^DV zK&56viZ3U0J)P3^a`DWg^K?U>&e?K!d!qiyDYefgHflWEIsHgmEYLJ_EfFE1Y9&Jp zB`Y9lsbrN`nv+voE5u}EBE`YQWMm3tnJKXy-*Ie_nZ6d2k+}h*mE4ie%IDi#pYNDz ncXaRb_MOk#dY^8dYX7`@6uvX0fH&IWh;_3u2CpQNTY)<>_h)94nnL;_i3zQ-D#k=mthN*?P)#5t zF7mr;+bso3af5c3Mr>KE*j6Z3V_9IA2j6_rn)uMWKR)P-ebjme@59VD-}%n@&Y64f zanYmcroOkQx2wDLXnWmp(Np(cSN#XHt-ZIEl8Pf;9j8vTH}v+lzV+^j_Rd~%?IHax z(h(zw2a#dn?{_Lmt8fq!kkw=hdE7OrAm|DlGbWB+gQ*P`& z*ypcJW=8vaHX@s6PnwugOB1LYQ@amSCxRM4>XN66v4}qzDJCy&%+YMxn1NWVda5rS13q0Uns9RmX-UZ!JalbG5ZGG34kJe;4LD_n~e z6Va{VmyF%OQGz)OXa?ro)ZuKy*$E(44Hyb@FNnE-s5G%{F>KRNxsGi{u+0x>Ar2Ta zY$uRf{bljr9eV@YE{Hu#3t?Lv&0|guowh(imfa5eh2?z`w zFm%AsktW1ki(r>p=rH8Ctm6J}m+zJZvCFG86T5bcQaGS++nxgC0TMyQftzQ62CxSM zdh8gC>Ty7J02$bGy5WL6aPz>;12<3h?bWdWH$jy`FcS;Tu&@V_1pzP-Zt#(Obk3ju zB%het9?Ygd<<%heXmj-o8zb52+?N++=IX}m_Cy4MuYl_past7fN+>I7K$}JT-~f|L zuDX;kw{)tIiKWZ1^g>vQMl5Ah3ALz~l)%ESpeA+T>R<<9QF)%CTt#_`62=pm zmA4DuoO^ctyN1Hz<*lS2j`{J=_ji~Om8=B5(GVpG7c)SD#%>uj(J9P zVLY0% zGw=8x#WLsp_@Y04JvY9b`QcDY|91Fjc4hz8{Q5{f@#%9EdW3JkS|vCn(2)yIWlv{D z{k5S&GG*sRFBZ=(`8Ot%N{s`*g;lN*bqQR+j9doy=;h^?e!mxczCr`SwhTqw-~MB0 L-~R*+YKHb7?Z9xp literal 0 HcmV?d00001