diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 6923189b68e..f958855a443 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -7140,7 +7140,11 @@ }, "dataSource": { "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source." + "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the AnyVolumeDataSource feature gate is enabled, this field will always have the same contents as the DataSourceRef field." + }, + "dataSourceRef": { + "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", + "description": "Specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any local object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the DataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, both fields (DataSource and DataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. There are two important differences between DataSource and DataSourceRef: * While DataSource only allows two specific types of objects, DataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While DataSource ignores disallowed values (dropping them), DataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n(Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled." }, "resources": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements", diff --git a/pkg/api/persistentvolumeclaim/util.go b/pkg/api/persistentvolumeclaim/util.go index f338f199715..1f55fcbd460 100644 --- a/pkg/api/persistentvolumeclaim/util.go +++ b/pkg/api/persistentvolumeclaim/util.go @@ -29,8 +29,47 @@ const ( // DropDisabledFields removes disabled fields from the pvc spec. // This should be called from PrepareForCreate/PrepareForUpdate for all resources containing a pvc spec. -func DropDisabledFields(pvcSpec, oldPVCSpec *core.PersistentVolumeClaimSpec) { - if !dataSourceIsEnabled(pvcSpec) && !dataSourceInUse(oldPVCSpec) { +func DropDisabledFields(pvcSpec *core.PersistentVolumeClaimSpec) { + // Drop the contents of the dataSourceRef field if the AnyVolumeDataSource + // feature gate is disabled. + if !utilfeature.DefaultFeatureGate.Enabled(features.AnyVolumeDataSource) { + pvcSpec.DataSourceRef = nil + } +} + +// EnforceDataSourceBackwardsCompatibility drops the data source field under certain conditions +// to maintain backwards compatibility with old behavior. +// See KEP 1495 for details. +// Specifically, if this is an update of a PVC with no data source, or a creation of a new PVC, +// and the dataSourceRef field is not filled in, then we will drop "invalid" data sources +// (anything other than a PVC or a VolumeSnapshot) from this request as if an empty PVC had +// been requested. +// This should be called after DropDisabledFields so that if the AnyVolumeDataSource feature +// gate is disabled, dataSourceRef will be forced to empty, ensuring pre-1.22 behavior. +// This should be called before NormalizeDataSources, so that data sources other than PVCs +// and VolumeSnapshots can only be set through the dataSourceRef field and not the dataSource +// field. +func EnforceDataSourceBackwardsCompatibility(pvcSpec, oldPVCSpec *core.PersistentVolumeClaimSpec) { + // Check if the old PVC has a data source here is so that on updates from old clients + // that omit dataSourceRef, we preserve the data source, even if it would have been + // invalid to specify it at using the dataSource field at create. + if dataSourceInUse(oldPVCSpec) { + return + } + + // Check if dataSourceRef is empty is because if it's not empty, then there is + // definitely a newer client and it definitely either wants to create a non-empty + // volume, or it wants to update a PVC that has a data source. Whether the + // specified data source is valid or satisfiable is a matter for validation and + // the volume populator code, but we can say with certainty that the client is + // not expecting the legacy behavior of ignoring invalid data sources. + if pvcSpec.DataSourceRef != nil { + return + } + + // Historically, we only allow PVCs and VolumeSnapshots in the dataSource field. + // All other values are silently dropped. + if !dataSourceIsPvcOrSnapshot(pvcSpec.DataSource) { pvcSpec.DataSource = nil } } @@ -39,31 +78,43 @@ func dataSourceInUse(oldPVCSpec *core.PersistentVolumeClaimSpec) bool { if oldPVCSpec == nil { return false } - if oldPVCSpec.DataSource != nil { + if oldPVCSpec.DataSource != nil || oldPVCSpec.DataSourceRef != nil { return true } return false } -func dataSourceIsEnabled(pvcSpec *core.PersistentVolumeClaimSpec) bool { - if pvcSpec.DataSource != nil { - if utilfeature.DefaultFeatureGate.Enabled(features.AnyVolumeDataSource) { - return true - } - +func dataSourceIsPvcOrSnapshot(dataSource *core.TypedLocalObjectReference) bool { + if dataSource != nil { apiGroup := "" - if pvcSpec.DataSource.APIGroup != nil { - apiGroup = *pvcSpec.DataSource.APIGroup + if dataSource.APIGroup != nil { + apiGroup = *dataSource.APIGroup } - if pvcSpec.DataSource.Kind == pvc && + if dataSource.Kind == pvc && apiGroup == "" { return true - } - if pvcSpec.DataSource.Kind == volumeSnapshot && apiGroup == "snapshot.storage.k8s.io" { + if dataSource.Kind == volumeSnapshot && apiGroup == "snapshot.storage.k8s.io" { return true } } return false } + +// NormalizeDataSources ensures that DataSource and DataSourceRef have the same contents +// as long as both are not explicitly set. +// This should be used by creates/gets of PVCs, but not updates +func NormalizeDataSources(pvcSpec *core.PersistentVolumeClaimSpec) { + // Don't enable this behavior if the feature gate is not on + if !utilfeature.DefaultFeatureGate.Enabled(features.AnyVolumeDataSource) { + return + } + if pvcSpec.DataSource != nil && pvcSpec.DataSourceRef == nil { + // Using the old way of setting a data source + pvcSpec.DataSourceRef = pvcSpec.DataSource.DeepCopy() + } else if pvcSpec.DataSourceRef != nil && pvcSpec.DataSource == nil { + // Using the new way of setting a data source + pvcSpec.DataSource = pvcSpec.DataSourceRef.DeepCopy() + } +} diff --git a/pkg/api/persistentvolumeclaim/util_test.go b/pkg/api/persistentvolumeclaim/util_test.go index a8ea213dd67..9f3da4e945d 100644 --- a/pkg/api/persistentvolumeclaim/util_test.go +++ b/pkg/api/persistentvolumeclaim/util_test.go @@ -68,9 +68,6 @@ func TestDropDisabledSnapshotDataSource(t *testing.T) { }, } - // Ensure that any data sources aren't enabled for this test - defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, false)() - for _, oldpvcInfo := range pvcInfo { for _, newpvcInfo := range pvcInfo { oldpvc := oldpvcInfo.pvc() @@ -80,11 +77,7 @@ func TestDropDisabledSnapshotDataSource(t *testing.T) { } t.Run(fmt.Sprintf("old pvc %v, new pvc %v", oldpvcInfo.description, newpvcInfo.description), func(t *testing.T) { - var oldpvcSpec *core.PersistentVolumeClaimSpec - if oldpvc != nil { - oldpvcSpec = &oldpvc.Spec - } - DropDisabledFields(&newpvc.Spec, oldpvcSpec) + EnforceDataSourceBackwardsCompatibility(&newpvc.Spec, nil) // old pvc should never be changed if !reflect.DeepEqual(oldpvc, oldpvcInfo.pvc()) { @@ -148,20 +141,15 @@ func TestPVCDataSourceSpecFilter(t *testing.T) { }, } - // Ensure that any data sources aren't enabled for this test - defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, false)() - for testName, test := range tests { t.Run(testName, func(t *testing.T) { - DropDisabledFields(&test.spec, nil) + EnforceDataSourceBackwardsCompatibility(&test.spec, nil) if test.spec.DataSource != test.want { t.Errorf("expected drop datasource condition was not met, test: %s, spec: %v, expected: %v", testName, test.spec, test.want) } }) - } - } // TestAnyDataSourceFilter checks to ensure the AnyVolumeDataSource feature gate works @@ -175,59 +163,127 @@ func TestAnyDataSourceFilter(t *testing.T) { } volumeDataSource := makeDataSource("", "PersistentVolumeClaim", "my-vol") - snapshotDataSource := makeDataSource("snapshot.storage.k8s.io", "VolumeSnapshot", "my-snap") - genericDataSource := makeDataSource("generic.storage.k8s.io", "Generic", "my-foo") var tests = map[string]struct { spec core.PersistentVolumeClaimSpec anyEnabled bool want *core.TypedLocalObjectReference + wantRef *core.TypedLocalObjectReference }{ "any disabled with empty ds": { spec: core.PersistentVolumeClaimSpec{}, - want: nil, }, "any disabled with volume ds": { spec: core.PersistentVolumeClaimSpec{DataSource: volumeDataSource}, want: volumeDataSource, }, - "any disabled with snapshot ds": { - spec: core.PersistentVolumeClaimSpec{DataSource: snapshotDataSource}, - want: snapshotDataSource, + "any disabled with volume ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: volumeDataSource}, }, - "any disabled with generic ds": { - spec: core.PersistentVolumeClaimSpec{DataSource: genericDataSource}, - want: nil, + "any disabled with both data sources": { + spec: core.PersistentVolumeClaimSpec{DataSource: volumeDataSource, DataSourceRef: volumeDataSource}, + want: volumeDataSource, }, "any enabled with empty ds": { spec: core.PersistentVolumeClaimSpec{}, anyEnabled: true, - want: nil, }, "any enabled with volume ds": { spec: core.PersistentVolumeClaimSpec{DataSource: volumeDataSource}, anyEnabled: true, want: volumeDataSource, }, - "any enabled with snapshot ds": { - spec: core.PersistentVolumeClaimSpec{DataSource: snapshotDataSource}, + "any enabled with volume ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: volumeDataSource}, anyEnabled: true, - want: snapshotDataSource, + wantRef: volumeDataSource, }, - "any enabled with generic ds": { - spec: core.PersistentVolumeClaimSpec{DataSource: genericDataSource}, + "any enabled with both data sources": { + spec: core.PersistentVolumeClaimSpec{DataSource: volumeDataSource, DataSourceRef: volumeDataSource}, anyEnabled: true, - want: genericDataSource, + want: volumeDataSource, + wantRef: volumeDataSource, }, } for testName, test := range tests { t.Run(testName, func(t *testing.T) { defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, test.anyEnabled)() - DropDisabledFields(&test.spec, nil) - if test.spec.DataSource != test.want { - t.Errorf("expected condition was not met, test: %s, anyEnabled: %v, spec: %v, expected: %v", - testName, test.anyEnabled, test.spec, test.want) + DropDisabledFields(&test.spec) + if test.spec.DataSource != test.want || test.spec.DataSourceRef != test.wantRef { + t.Errorf("expected condition was not met, test: %s, anyEnabled: %v, spec: %v, expected: %v %v", + testName, test.anyEnabled, test.spec, test.want, test.wantRef) + } + }) + } +} + +// TestDataSourceRef checks to ensure the DataSourceRef field handles backwards +// compatibility with the DataSource field +func TestDataSourceRef(t *testing.T) { + makeDataSource := func(apiGroup, kind, name string) *core.TypedLocalObjectReference { + return &core.TypedLocalObjectReference{ + APIGroup: &apiGroup, + Kind: kind, + Name: name, + } + } + + volumeDataSource := makeDataSource("", "PersistentVolumeClaim", "my-vol") + snapshotDataSource := makeDataSource("snapshot.storage.k8s.io", "VolumeSnapshot", "my-snap") + genericDataSource := makeDataSource("generic.storage.k8s.io", "Generic", "my-foo") + coreDataSource := makeDataSource("", "Pod", "my-pod") + + var tests = map[string]struct { + spec core.PersistentVolumeClaimSpec + want *core.TypedLocalObjectReference + }{ + "empty ds": { + spec: core.PersistentVolumeClaimSpec{}, + }, + "volume ds": { + spec: core.PersistentVolumeClaimSpec{DataSource: volumeDataSource}, + want: volumeDataSource, + }, + "snapshot ds": { + spec: core.PersistentVolumeClaimSpec{DataSource: snapshotDataSource}, + want: snapshotDataSource, + }, + "generic ds": { + spec: core.PersistentVolumeClaimSpec{DataSource: genericDataSource}, + want: genericDataSource, + }, + "core ds": { + spec: core.PersistentVolumeClaimSpec{DataSource: coreDataSource}, + want: coreDataSource, + }, + "volume ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: volumeDataSource}, + want: volumeDataSource, + }, + "snapshot ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: snapshotDataSource}, + want: snapshotDataSource, + }, + "generic ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: genericDataSource}, + want: genericDataSource, + }, + "core ds ref": { + spec: core.PersistentVolumeClaimSpec{DataSourceRef: coreDataSource}, + want: coreDataSource, + }, + } + + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, true)() + + for testName, test := range tests { + t.Run(testName, func(t *testing.T) { + NormalizeDataSources(&test.spec) + if !reflect.DeepEqual(test.spec.DataSource, test.want) || + !reflect.DeepEqual(test.spec.DataSourceRef, test.want) { + t.Errorf("expected condition was not met, test: %s, spec: %v, expected: %v", + testName, test.spec, test.want) } }) } diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index 57f31639f1c..8fdb51cf815 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -450,13 +450,31 @@ type PersistentVolumeClaimSpec struct { // This field can be used to specify either: // * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) // * An existing PVC (PersistentVolumeClaim) - // * An existing custom resource that implements data population (Alpha) - // In order to use custom resource types that implement data population, - // the AnyVolumeDataSource feature gate must be enabled. // If the provisioner or an external controller can support the specified data source, // it will create a new volume based on the contents of the specified data source. + // If the AnyVolumeDataSource feature gate is enabled, this field will always have + // the same contents as the DataSourceRef field. // +optional DataSource *TypedLocalObjectReference + // Specifies the object from which to populate the volume with data, if a non-empty + // volume is desired. This may be any local object from a non-empty API group (non + // core object) or a PersistentVolumeClaim object. + // When this field is specified, volume binding will only succeed if the type of + // the specified object matches some installed volume populator or dynamic + // provisioner. + // This field will replace the functionality of the DataSource field and as such + // if both fields are non-empty, they must have the same value. For backwards + // compatibility, both fields (DataSource and DataSourceRef) will be set to the same + // value automatically if one of them is empty and the other is non-empty. + // There are two important differences between DataSource and DataSourceRef: + // * While DataSource only allows two specific types of objects, DataSourceRef + // allows any non-core object, as well as PersistentVolumeClaim objects. + // * While DataSource ignores disallowed values (dropping them), DataSourceRef + // preserves all values, and generates an error if a disallowed value is + // specified. + // (Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + // +optional + DataSourceRef *TypedLocalObjectReference } // PersistentVolumeClaimConditionType defines the condition of PV claim. diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index 26cc97f56e7..3f46c6ddc63 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -5117,6 +5117,7 @@ func autoConvert_v1_PersistentVolumeClaimSpec_To_core_PersistentVolumeClaimSpec( out.StorageClassName = (*string)(unsafe.Pointer(in.StorageClassName)) out.VolumeMode = (*core.PersistentVolumeMode)(unsafe.Pointer(in.VolumeMode)) out.DataSource = (*core.TypedLocalObjectReference)(unsafe.Pointer(in.DataSource)) + out.DataSourceRef = (*core.TypedLocalObjectReference)(unsafe.Pointer(in.DataSourceRef)) return nil } @@ -5135,6 +5136,7 @@ func autoConvert_core_PersistentVolumeClaimSpec_To_v1_PersistentVolumeClaimSpec( out.StorageClassName = (*string)(unsafe.Pointer(in.StorageClassName)) out.VolumeMode = (*v1.PersistentVolumeMode)(unsafe.Pointer(in.VolumeMode)) out.DataSource = (*v1.TypedLocalObjectReference)(unsafe.Pointer(in.DataSource)) + out.DataSourceRef = (*v1.TypedLocalObjectReference)(unsafe.Pointer(in.DataSourceRef)) return nil } diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 2b9955156e8..c695d1a8dc2 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -2046,6 +2046,27 @@ func ValidatePersistentVolumeClaim(pvc *core.PersistentVolumeClaim, opts Persist return allErrs } +// validateDataSource validates a DataSource/DataSourceRef in a PersistentVolumeClaimSpec +func validateDataSource(dataSource *core.TypedLocalObjectReference, fldPath *field.Path) field.ErrorList { + allErrs := field.ErrorList{} + + if len(dataSource.Name) == 0 { + allErrs = append(allErrs, field.Required(fldPath.Child("name"), "")) + } + if len(dataSource.Kind) == 0 { + allErrs = append(allErrs, field.Required(fldPath.Child("kind"), "")) + } + apiGroup := "" + if dataSource.APIGroup != nil { + apiGroup = *dataSource.APIGroup + } + if len(apiGroup) == 0 && dataSource.Kind != "PersistentVolumeClaim" { + allErrs = append(allErrs, field.Invalid(fldPath, dataSource.Kind, "")) + } + + return allErrs +} + // ValidatePersistentVolumeClaimSpec validates a PersistentVolumeClaimSpec func ValidatePersistentVolumeClaimSpec(spec *core.PersistentVolumeClaimSpec, fldPath *field.Path, opts PersistentVolumeClaimSpecValidationOptions) field.ErrorList { allErrs := field.ErrorList{} @@ -2096,18 +2117,15 @@ func ValidatePersistentVolumeClaimSpec(spec *core.PersistentVolumeClaimSpec, fld } if spec.DataSource != nil { - if len(spec.DataSource.Name) == 0 { - allErrs = append(allErrs, field.Required(fldPath.Child("dataSource", "name"), "")) - } - if len(spec.DataSource.Kind) == 0 { - allErrs = append(allErrs, field.Required(fldPath.Child("dataSource", "kind"), "")) - } - apiGroup := "" - if spec.DataSource.APIGroup != nil { - apiGroup = *spec.DataSource.APIGroup - } - if len(apiGroup) == 0 && spec.DataSource.Kind != "PersistentVolumeClaim" { - allErrs = append(allErrs, field.Invalid(fldPath.Child("dataSource"), spec.DataSource.Kind, "")) + allErrs = append(allErrs, validateDataSource(spec.DataSource, fldPath.Child("dataSource"))...) + } + if spec.DataSourceRef != nil { + allErrs = append(allErrs, validateDataSource(spec.DataSourceRef, fldPath.Child("dataSourceRef"))...) + } + if spec.DataSource != nil && spec.DataSourceRef != nil { + if !apiequality.Semantic.DeepEqual(spec.DataSource, spec.DataSourceRef) { + allErrs = append(allErrs, field.Invalid(fldPath, fldPath.Child("dataSource"), + "must match dataSourceRef")) } } diff --git a/pkg/apis/core/validation/validation_test.go b/pkg/apis/core/validation/validation_test.go index 7dc13795955..b358ad1f2d5 100644 --- a/pkg/apis/core/validation/validation_test.go +++ b/pkg/apis/core/validation/validation_test.go @@ -1462,6 +1462,27 @@ func testValidatePVC(t *testing.T, ephemeral bool) { VolumeMode: &invalidMode, }), }, + "mismatch-data-source-and-ref": { + isExpectedFailure: true, + claim: testVolumeClaim(goodName, goodNS, core.PersistentVolumeClaimSpec{ + AccessModes: []core.PersistentVolumeAccessMode{ + core.ReadWriteOnce, + }, + Resources: core.ResourceRequirements{ + Requests: core.ResourceList{ + core.ResourceName(core.ResourceStorage): resource.MustParse("10G"), + }, + }, + DataSource: &core.TypedLocalObjectReference{ + Kind: "PersistentVolumeClaim", + Name: "pvc1", + }, + DataSourceRef: &core.TypedLocalObjectReference{ + Kind: "PersistentVolumeClaim", + Name: "pvc2", + }, + }), + }, } for name, scenario := range scenarios { @@ -16833,7 +16854,7 @@ func TestValidateWindowsSecurityContextOptions(t *testing.T) { } } -func testDataSourceInSpec(name string, kind string, apiGroup string) *core.PersistentVolumeClaimSpec { +func testDataSourceInSpec(name, kind, apiGroup string) *core.PersistentVolumeClaimSpec { scName := "csi-plugin" dataSourceInSpec := core.PersistentVolumeClaimSpec{ AccessModes: []core.PersistentVolumeAccessMode{ @@ -16891,14 +16912,13 @@ func TestAlphaVolumePVCDataSource(t *testing.T) { } for _, tc := range testCases { + opts := PersistentVolumeClaimSpecValidationOptions{} if tc.expectedFail { - opts := PersistentVolumeClaimSpecValidationOptions{} if errs := ValidatePersistentVolumeClaimSpec(&tc.claimSpec, field.NewPath("spec"), opts); len(errs) == 0 { t.Errorf("expected failure: %v", errs) } } else { - opts := PersistentVolumeClaimSpecValidationOptions{} if errs := ValidatePersistentVolumeClaimSpec(&tc.claimSpec, field.NewPath("spec"), opts); len(errs) != 0 { t.Errorf("expected success: %v", errs) } @@ -16906,6 +16926,67 @@ func TestAlphaVolumePVCDataSource(t *testing.T) { } } +func testAnyDataSource(t *testing.T, ds, dsRef bool) { + testCases := []struct { + testName string + claimSpec core.PersistentVolumeClaimSpec + expectedFail bool + }{ + { + testName: "test create from valid snapshot source", + claimSpec: *testDataSourceInSpec("test_snapshot", "VolumeSnapshot", "snapshot.storage.k8s.io"), + }, + { + testName: "test create from valid pvc source", + claimSpec: *testDataSourceInSpec("test_pvc", "PersistentVolumeClaim", ""), + }, + { + testName: "test missing name in snapshot datasource should fail", + claimSpec: *testDataSourceInSpec("", "VolumeSnapshot", "snapshot.storage.k8s.io"), + expectedFail: true, + }, + { + testName: "test missing kind in snapshot datasource should fail", + claimSpec: *testDataSourceInSpec("test_snapshot", "", "snapshot.storage.k8s.io"), + expectedFail: true, + }, + { + testName: "test create from valid generic custom resource source", + claimSpec: *testDataSourceInSpec("test_generic", "Generic", "generic.storage.k8s.io"), + }, + { + testName: "test invalid datasource should fail", + claimSpec: *testDataSourceInSpec("test_pod", "Pod", ""), + expectedFail: true, + }, + } + + for _, tc := range testCases { + if dsRef { + tc.claimSpec.DataSourceRef = tc.claimSpec.DataSource.DeepCopy() + } + if !ds { + tc.claimSpec.DataSource = nil + } + opts := PersistentVolumeClaimSpecValidationOptions{} + if tc.expectedFail { + if errs := ValidatePersistentVolumeClaimSpec(&tc.claimSpec, field.NewPath("spec"), opts); len(errs) == 0 { + t.Errorf("expected failure: %v", errs) + } + } else { + if errs := ValidatePersistentVolumeClaimSpec(&tc.claimSpec, field.NewPath("spec"), opts); len(errs) != 0 { + t.Errorf("expected success: %v", errs) + } + } + } +} + +func TestAnyDataSource(t *testing.T) { + testAnyDataSource(t, true, false) + testAnyDataSource(t, false, true) + testAnyDataSource(t, true, false) +} + func TestValidateTopologySpreadConstraints(t *testing.T) { testCases := []struct { name string diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index cb5e272f166..0e5fa25612a 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -2936,6 +2936,11 @@ func (in *PersistentVolumeClaimSpec) DeepCopyInto(out *PersistentVolumeClaimSpec *out = new(TypedLocalObjectReference) (*in).DeepCopyInto(*out) } + if in.DataSourceRef != nil { + in, out := &in.DataSourceRef, &out.DataSourceRef + *out = new(TypedLocalObjectReference) + (*in).DeepCopyInto(*out) + } return } diff --git a/pkg/registry/core/persistentvolumeclaim/storage/storage.go b/pkg/registry/core/persistentvolumeclaim/storage/storage.go index 409e0695365..f02eb05b3c8 100644 --- a/pkg/registry/core/persistentvolumeclaim/storage/storage.go +++ b/pkg/registry/core/persistentvolumeclaim/storage/storage.go @@ -18,6 +18,7 @@ package storage import ( "context" + pvcutil "k8s.io/kubernetes/pkg/api/persistentvolumeclaim" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" @@ -62,7 +63,10 @@ func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) { statusStore.UpdateStrategy = persistentvolumeclaim.StatusStrategy statusStore.ResetFieldsStrategy = persistentvolumeclaim.StatusStrategy - return &REST{store}, &StatusREST{store: &statusStore}, nil + rest := &REST{store} + store.Decorator = rest.defaultOnRead + + return rest, &StatusREST{store: &statusStore}, nil } // Implement ShortNamesProvider @@ -73,6 +77,46 @@ func (r *REST) ShortNames() []string { return []string{"pvc"} } +// defaultOnRead sets interlinked fields that were not previously set on read. +// We can't do this in the normal defaulting path because that same logic +// applies on Get, Create, and Update, but we need to distinguish between them. +// +// This will be called on both PersistentVolumeClaim and PersistentVolumeClaimList types. +func (r *REST) defaultOnRead(obj runtime.Object) { + switch s := obj.(type) { + case *api.PersistentVolumeClaim: + r.defaultOnReadPvc(s) + case *api.PersistentVolumeClaimList: + r.defaultOnReadPvcList(s) + default: + // This was not an object we can default. This is not an error, as the + // caching layer can pass through here, too. + } +} + +// defaultOnReadPvcList defaults a PersistentVolumeClaimList. +func (r *REST) defaultOnReadPvcList(pvcList *api.PersistentVolumeClaimList) { + if pvcList == nil { + return + } + + for i := range pvcList.Items { + r.defaultOnReadPvc(&pvcList.Items[i]) + } +} + +// defaultOnReadPvc defaults a single PersistentVolumeClaim. +func (r *REST) defaultOnReadPvc(pvc *api.PersistentVolumeClaim) { + if pvc == nil { + return + } + + // We set dataSourceRef to the same value as dataSource at creation time now, + // but for pre-existing PVCs with data sources, the dataSourceRef field will + // be blank, so we fill it in here at read time. + pvcutil.NormalizeDataSources(&pvc.Spec) +} + // StatusREST implements the REST endpoint for changing the status of a persistentvolumeclaim. type StatusREST struct { store *genericregistry.Store diff --git a/pkg/registry/core/persistentvolumeclaim/storage/storage_test.go b/pkg/registry/core/persistentvolumeclaim/storage/storage_test.go index e623e7115b3..5cbdc2a65ca 100644 --- a/pkg/registry/core/persistentvolumeclaim/storage/storage_test.go +++ b/pkg/registry/core/persistentvolumeclaim/storage/storage_test.go @@ -17,6 +17,7 @@ limitations under the License. package storage import ( + "reflect" "testing" apiequality "k8s.io/apimachinery/pkg/api/equality" @@ -31,7 +32,10 @@ import ( genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing" "k8s.io/apiserver/pkg/registry/rest" etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing" + utilfeature "k8s.io/apiserver/pkg/util/feature" + featuregatetesting "k8s.io/component-base/featuregate/testing" api "k8s.io/kubernetes/pkg/apis/core" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/pkg/registry/registrytest" ) @@ -207,3 +211,95 @@ func TestShortNames(t *testing.T) { expected := []string{"pvc"} registrytest.AssertShortNames(t, storage, expected) } + +func TestDefaultOnReadPvc(t *testing.T) { + storage, _, server := newStorage(t) + defer server.Terminate(t) + defer storage.Store.DestroyFunc() + + dataSource := api.TypedLocalObjectReference{ + Kind: "PersistentVolumeClaim", + Name: "my-pvc", + } + + var tests = map[string]struct { + anyEnabled bool + dataSource bool + dataSourceRef bool + want bool + wantRef bool + }{ + "any disabled with empty ds": { + anyEnabled: false, + }, + "any disabled with volume ds": { + dataSource: true, + want: true, + }, + "any disabled with volume ds ref": { + dataSourceRef: true, + wantRef: true, + }, + "any disabled with both data sources": { + dataSource: true, + dataSourceRef: true, + want: true, + wantRef: true, + }, + "any enabled with empty ds": { + anyEnabled: true, + }, + "any enabled with volume ds": { + anyEnabled: true, + dataSource: true, + want: true, + wantRef: true, + }, + "any enabled with volume ds ref": { + anyEnabled: true, + dataSourceRef: true, + want: true, + wantRef: true, + }, + "any enabled with both data sources": { + anyEnabled: true, + dataSource: true, + dataSourceRef: true, + want: true, + wantRef: true, + }, + } + + for testName, test := range tests { + t.Run(testName, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, test.anyEnabled)() + pvc := new(api.PersistentVolumeClaim) + if test.dataSource { + pvc.Spec.DataSource = dataSource.DeepCopy() + } + if test.dataSourceRef { + pvc.Spec.DataSourceRef = dataSource.DeepCopy() + } + var expectDataSource *api.TypedLocalObjectReference + if test.want { + expectDataSource = &dataSource + } + var expectDataSourceRef *api.TypedLocalObjectReference + if test.wantRef { + expectDataSourceRef = &dataSource + } + + // Method under test + storage.defaultOnReadPvc(pvc) + + if !reflect.DeepEqual(pvc.Spec.DataSource, expectDataSource) { + t.Errorf("data source does not match, test: %s, anyEnabled: %v, dataSource: %v, expected: %v", + testName, test.anyEnabled, test.dataSource, test.want) + } + if !reflect.DeepEqual(pvc.Spec.DataSourceRef, expectDataSourceRef) { + t.Errorf("data source ref does not match, test: %s, anyEnabled: %v, dataSourceRef: %v, expected: %v", + testName, test.anyEnabled, test.dataSourceRef, test.wantRef) + } + }) + } +} diff --git a/pkg/registry/core/persistentvolumeclaim/strategy.go b/pkg/registry/core/persistentvolumeclaim/strategy.go index c8f2025311f..b9e975794b8 100644 --- a/pkg/registry/core/persistentvolumeclaim/strategy.go +++ b/pkg/registry/core/persistentvolumeclaim/strategy.go @@ -67,7 +67,17 @@ func (persistentvolumeclaimStrategy) PrepareForCreate(ctx context.Context, obj r pvc := obj.(*api.PersistentVolumeClaim) pvc.Status = api.PersistentVolumeClaimStatus{} - pvcutil.DropDisabledFields(&pvc.Spec, nil) + pvcutil.DropDisabledFields(&pvc.Spec) + + // For data sources, we need to do 2 things to implement KEP 1495 + + // First drop invalid values from spec.dataSource (anything other than PVC or + // VolumeSnapshot) if certain conditions are met. + pvcutil.EnforceDataSourceBackwardsCompatibility(&pvc.Spec, nil) + + // Second copy dataSource -> dataSourceRef or dataSourceRef -> dataSource if one of them + // is nil and the other is non-nil + pvcutil.NormalizeDataSources(&pvc.Spec) } func (persistentvolumeclaimStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList { @@ -95,7 +105,15 @@ func (persistentvolumeclaimStrategy) PrepareForUpdate(ctx context.Context, obj, oldPvc := old.(*api.PersistentVolumeClaim) newPvc.Status = oldPvc.Status - pvcutil.DropDisabledFields(&newPvc.Spec, &oldPvc.Spec) + pvcutil.DropDisabledFields(&newPvc.Spec) + + // We need to use similar logic to PrepareForCreate here both to preserve backwards + // compatibility with the old behavior (ignoring of garbage dataSources at both create + // and update time) and also for compatibility with older clients, that might omit + // the dataSourceRef field which we filled in automatically, so we have to fill it + // in again here. + pvcutil.EnforceDataSourceBackwardsCompatibility(&newPvc.Spec, &oldPvc.Spec) + pvcutil.NormalizeDataSources(&newPvc.Spec) } func (persistentvolumeclaimStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList { diff --git a/pkg/registry/core/persistentvolumeclaim/strategy_test.go b/pkg/registry/core/persistentvolumeclaim/strategy_test.go index 7dd07bcd42e..44d3091038e 100644 --- a/pkg/registry/core/persistentvolumeclaim/strategy_test.go +++ b/pkg/registry/core/persistentvolumeclaim/strategy_test.go @@ -118,3 +118,139 @@ func TestDropConditions(t *testing.T) { } } } + +func TestPrepareForCreate(t *testing.T) { + ctx := genericapirequest.NewDefaultContext() + + makeDataSource := func(apiGroup, kind, name string) *api.TypedLocalObjectReference { + return &api.TypedLocalObjectReference{ + APIGroup: &apiGroup, + Kind: kind, + Name: name, + } + } + + volumeDataSource := makeDataSource("", "PersistentVolumeClaim", "my-vol") + snapshotDataSource := makeDataSource("snapshot.storage.k8s.io", "VolumeSnapshot", "my-snap") + genericDataSource := makeDataSource("generic.storage.k8s.io", "Generic", "my-foo") + coreDataSource := makeDataSource("", "Pod", "my-pod") + + var tests = map[string]struct { + anyEnabled bool + dataSource *api.TypedLocalObjectReference + dataSourceRef *api.TypedLocalObjectReference + want *api.TypedLocalObjectReference + wantRef *api.TypedLocalObjectReference + }{ + "any disabled with empty ds": { + want: nil, + }, + "any disabled with volume ds": { + dataSource: volumeDataSource, + want: volumeDataSource, + }, + "any disabled with snapshot ds": { + dataSource: snapshotDataSource, + want: snapshotDataSource, + }, + "any disabled with generic ds": { + dataSource: genericDataSource, + want: nil, + }, + "any disabled with invalid ds": { + dataSource: coreDataSource, + want: nil, + }, + "any disabled with volume ds ref": { + dataSourceRef: volumeDataSource, + }, + "any disabled with snapshot ds ref": { + dataSourceRef: snapshotDataSource, + }, + "any disabled with generic ds ref": { + dataSourceRef: genericDataSource, + }, + "any disabled with invalid ds ref": { + dataSourceRef: coreDataSource, + }, + "any enabled with empty ds": { + anyEnabled: true, + want: nil, + }, + "any enabled with volume ds": { + dataSource: volumeDataSource, + anyEnabled: true, + want: volumeDataSource, + wantRef: volumeDataSource, + }, + "any enabled with snapshot ds": { + dataSource: snapshotDataSource, + anyEnabled: true, + want: snapshotDataSource, + wantRef: snapshotDataSource, + }, + "any enabled with generic ds": { + dataSource: genericDataSource, + anyEnabled: true, + }, + "any enabled with invalid ds": { + dataSource: coreDataSource, + anyEnabled: true, + }, + "any enabled with volume ds ref": { + dataSourceRef: volumeDataSource, + anyEnabled: true, + want: volumeDataSource, + wantRef: volumeDataSource, + }, + "any enabled with snapshot ds ref": { + dataSourceRef: snapshotDataSource, + anyEnabled: true, + want: snapshotDataSource, + wantRef: snapshotDataSource, + }, + "any enabled with generic ds ref": { + dataSourceRef: genericDataSource, + anyEnabled: true, + want: genericDataSource, + wantRef: genericDataSource, + }, + "any enabled with invalid ds ref": { + dataSourceRef: coreDataSource, + anyEnabled: true, + want: coreDataSource, + wantRef: coreDataSource, + }, + "any enabled with mismatched data sources": { + dataSource: volumeDataSource, + dataSourceRef: snapshotDataSource, + anyEnabled: true, + want: volumeDataSource, + wantRef: snapshotDataSource, + }, + } + + for testName, test := range tests { + t.Run(testName, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.AnyVolumeDataSource, test.anyEnabled)() + pvc := api.PersistentVolumeClaim{ + Spec: api.PersistentVolumeClaimSpec{ + DataSource: test.dataSource, + DataSourceRef: test.dataSourceRef, + }, + } + + // Method under test + Strategy.PrepareForCreate(ctx, &pvc) + + if !reflect.DeepEqual(pvc.Spec.DataSource, test.want) { + t.Errorf("data source does not match, test: %s, anyEnabled: %v, dataSource: %v, expected: %v", + testName, test.anyEnabled, test.dataSource, test.want) + } + if !reflect.DeepEqual(pvc.Spec.DataSourceRef, test.wantRef) { + t.Errorf("data source ref does not match, test: %s, anyEnabled: %v, dataSourceRef: %v, expected: %v", + testName, test.anyEnabled, test.dataSourceRef, test.wantRef) + } + }) + } +} diff --git a/staging/src/k8s.io/api/core/v1/generated.pb.go b/staging/src/k8s.io/api/core/v1/generated.pb.go index 9ca70b61bee..2594443719b 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -6087,16 +6087,16 @@ func init() { } var fileDescriptor_83c10c24ec417dc9 = []byte{ - // 14044 bytes of a gzipped FileDescriptorProto + // 14068 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x69, 0x70, 0x5c, 0xd9, - 0x75, 0x18, 0xac, 0xd7, 0x8d, 0xad, 0x0f, 0xf6, 0x0b, 0x92, 0x03, 0x62, 0x86, 0x04, 0xe7, 0x51, - 0xe2, 0x70, 0x34, 0x33, 0xa0, 0x38, 0x8b, 0x34, 0x9e, 0x91, 0xc6, 0x02, 0xd0, 0x00, 0xd9, 0x43, - 0x02, 0xec, 0xb9, 0x0d, 0x92, 0x92, 0x3c, 0x52, 0xe9, 0xa1, 0xfb, 0x02, 0x78, 0x42, 0xf7, 0x7b, - 0x3d, 0xef, 0xbd, 0x06, 0x89, 0xf9, 0xe4, 0xfa, 0xfc, 0xc9, 0xab, 0xbc, 0x7c, 0xa5, 0x4a, 0x39, - 0x9b, 0xed, 0x72, 0xa5, 0x1c, 0xa7, 0x6c, 0xc5, 0xd9, 0x1c, 0x3b, 0xb6, 0x63, 0x39, 0xb1, 0x13, - 0x67, 0x71, 0xf2, 0xc3, 0x71, 0x5c, 0x89, 0xe5, 0x2a, 0x57, 0x10, 0x9b, 0x4e, 0x95, 0x4b, 0x3f, - 0x62, 0x3b, 0x71, 0xf2, 0x23, 0x88, 0x2b, 0x4e, 0xdd, 0xf5, 0xdd, 0xfb, 0x96, 0xee, 0x06, 0x07, - 0x84, 0x46, 0xaa, 0xf9, 0xd7, 0x7d, 0xcf, 0xb9, 0xe7, 0xde, 0x77, 0xd7, 0x73, 0xcf, 0x0a, 0xaf, + 0x79, 0x18, 0xaa, 0xdb, 0x8d, 0xad, 0x3f, 0xec, 0x07, 0x24, 0x07, 0xc4, 0x0c, 0x09, 0xce, 0xa5, + 0xc4, 0xe1, 0x68, 0x66, 0x40, 0x71, 0x16, 0x69, 0x3c, 0x23, 0x8d, 0x05, 0xa0, 0x01, 0xb2, 0x87, + 0x04, 0xd8, 0x73, 0x1a, 0x24, 0x25, 0x79, 0xa4, 0xd2, 0x45, 0xf7, 0x01, 0x70, 0x85, 0xee, 0x7b, + 0x7b, 0xee, 0xbd, 0x0d, 0x12, 0xf3, 0xe4, 0x7a, 0x7e, 0xf2, 0x2a, 0x2f, 0xaf, 0x54, 0xaf, 0xfc, + 0xb2, 0xd8, 0x2e, 0x57, 0xca, 0x71, 0xca, 0x56, 0x94, 0xcd, 0xb1, 0x63, 0x3b, 0x96, 0x13, 0x3b, + 0xbb, 0x93, 0x1f, 0x8e, 0xe3, 0x4a, 0x2c, 0x57, 0xb9, 0x82, 0xd8, 0x74, 0xaa, 0x5c, 0xfa, 0x11, + 0xdb, 0x89, 0x93, 0x1f, 0x41, 0x5c, 0x71, 0xea, 0xac, 0xf7, 0x9c, 0xbb, 0x74, 0x37, 0x38, 0x20, + 0x34, 0x52, 0xcd, 0xbf, 0xee, 0xf3, 0x7d, 0xe7, 0x3b, 0xe7, 0x9e, 0xf5, 0x3b, 0xdf, 0x0a, 0xaf, 0xee, 0xbe, 0x1c, 0x2e, 0xb8, 0xfe, 0x95, 0xdd, 0xce, 0x26, 0x09, 0x3c, 0x12, 0x91, 0xf0, 0xca, 0x1e, 0xf1, 0x1a, 0x7e, 0x70, 0x45, 0x00, 0x9c, 0xb6, 0x7b, 0xa5, 0xee, 0x07, 0xe4, 0xca, 0xde, 0xd5, 0x2b, 0xdb, 0xc4, 0x23, 0x81, 0x13, 0x91, 0xc6, 0x42, 0x3b, 0xf0, 0x23, 0x1f, 0x21, 0x8e, @@ -6106,7 +6106,7 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x60, 0xff, 0x4a, 0x7b, 0x77, 0x9b, 0xb5, 0x1b, 0x90, 0xd0, 0xef, 0x04, 0x75, 0x92, 0x6c, 0xb8, 0x6b, 0xad, 0xf0, 0x4a, 0x8b, 0x44, 0x4e, 0x46, 0x77, 0xe7, 0xae, 0xe4, 0xd5, 0x0a, 0x3a, 0x5e, 0xe4, 0xb6, 0xd2, 0xcd, 0x7c, 0xb8, 0x57, 0x85, 0xb0, 0xbe, 0x43, 0x5a, 0x4e, 0xaa, 0xde, 0x0b, - 0x79, 0xf5, 0x3a, 0x91, 0xdb, 0xbc, 0xe2, 0x7a, 0x51, 0x18, 0x05, 0xc9, 0x4a, 0xf6, 0x57, 0x2d, + 0x79, 0xf5, 0x3a, 0x91, 0xdb, 0xbc, 0xe2, 0x7a, 0x51, 0x18, 0x05, 0xc9, 0x4a, 0xf6, 0xd7, 0x2c, 0xb8, 0xb0, 0x78, 0xb7, 0xb6, 0xd2, 0x74, 0xc2, 0xc8, 0xad, 0x2f, 0x35, 0xfd, 0xfa, 0x6e, 0x2d, 0xf2, 0x03, 0x72, 0xc7, 0x6f, 0x76, 0x5a, 0xa4, 0xc6, 0x06, 0x02, 0x3d, 0x0b, 0x23, 0x7b, 0xec, 0x7f, 0xa5, 0x3c, 0x6b, 0x5d, 0xb0, 0x2e, 0x97, 0x96, 0xa6, 0x7e, 0xe3, 0x60, 0xfe, 0x7d, 0x0f, @@ -6114,7 +6114,7 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x64, 0xb6, 0xc0, 0x70, 0x27, 0x04, 0xee, 0xd0, 0x6a, 0x8d, 0x96, 0x62, 0x01, 0x45, 0x57, 0xa0, 0xd4, 0x76, 0x82, 0xc8, 0x8d, 0x5c, 0xdf, 0x9b, 0x2d, 0x5e, 0xb0, 0x2e, 0x0f, 0x2e, 0x4d, 0x0b, 0xd4, 0x52, 0x55, 0x02, 0x70, 0x8c, 0x43, 0xbb, 0x11, 0x10, 0xa7, 0x71, 0xcb, 0x6b, 0xee, 0xcf, - 0x0e, 0x5c, 0xb0, 0x2e, 0x8f, 0xc4, 0xdd, 0xc0, 0xa2, 0x1c, 0x2b, 0x0c, 0xfb, 0x47, 0x0a, 0x30, + 0x0e, 0x5c, 0xb0, 0x2e, 0x8f, 0xc4, 0xdd, 0xc0, 0xa2, 0x1c, 0x2b, 0x0c, 0xfb, 0xc7, 0x0a, 0x30, 0xb2, 0xb8, 0xb5, 0xe5, 0x7a, 0x6e, 0xb4, 0x8f, 0xee, 0xc0, 0x98, 0xe7, 0x37, 0x88, 0xfc, 0xcf, 0xbe, 0x62, 0xf4, 0xf9, 0x0b, 0x0b, 0xe9, 0xa5, 0xb4, 0xb0, 0xae, 0xe1, 0x2d, 0x4d, 0x3d, 0x38, 0x98, 0x1f, 0xd3, 0x4b, 0xb0, 0x41, 0x07, 0x61, 0x18, 0x6d, 0xfb, 0x0d, 0x45, 0xb6, 0xc0, 0xc8, @@ -6127,7 +6127,7 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x68, 0x47, 0xcc, 0x37, 0x12, 0x75, 0xa1, 0xac, 0x20, 0x58, 0xc3, 0xb2, 0xef, 0x43, 0x69, 0x71, 0xcf, 0x77, 0x1b, 0x55, 0xbf, 0x11, 0xa2, 0x5d, 0x98, 0x6c, 0x07, 0x64, 0x8b, 0x04, 0xaa, 0x68, 0xd6, 0xba, 0x50, 0xbc, 0x3c, 0xfa, 0xfc, 0xe5, 0xcc, 0x8f, 0x35, 0x51, 0x57, 0xbc, 0x28, 0xd8, - 0x5f, 0x7a, 0x4c, 0xb4, 0x37, 0x99, 0x80, 0xe2, 0x24, 0x65, 0xfb, 0x5f, 0x14, 0xe0, 0xf4, 0xe2, + 0x5f, 0x7a, 0x4c, 0xb4, 0x37, 0x99, 0x80, 0xe2, 0x24, 0x65, 0xfb, 0x9f, 0x17, 0xe0, 0xf4, 0xe2, 0xdb, 0x9d, 0x80, 0x94, 0xdd, 0x70, 0x37, 0xb9, 0xc2, 0x1b, 0x6e, 0xb8, 0xbb, 0x1e, 0x8f, 0x80, 0x5a, 0x5a, 0x65, 0x51, 0x8e, 0x15, 0x06, 0x7a, 0x0e, 0x86, 0xe9, 0xef, 0xdb, 0xb8, 0x22, 0x3e, 0x79, 0x46, 0x20, 0x8f, 0x96, 0x9d, 0xc8, 0x29, 0x73, 0x10, 0x96, 0x38, 0x68, 0x0d, 0x46, 0xeb, @@ -6140,84 +6140,84 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x42, 0x52, 0x0f, 0x48, 0xa4, 0x0d, 0xa9, 0x5a, 0x18, 0x35, 0x05, 0xc1, 0x1a, 0x16, 0x3d, 0x10, 0xc2, 0x1d, 0x27, 0x60, 0xeb, 0x4b, 0x0c, 0xac, 0x3a, 0x10, 0x6a, 0x12, 0x80, 0x63, 0x1c, 0xe3, 0x40, 0x28, 0xf6, 0x3a, 0x10, 0xd0, 0xc7, 0x60, 0x32, 0x6e, 0x2c, 0x6c, 0x3b, 0x75, 0x39, 0x80, - 0x6c, 0xcb, 0xd4, 0x4c, 0x10, 0x4e, 0xe2, 0xda, 0x7f, 0xdb, 0x12, 0x8b, 0x87, 0x7e, 0xf5, 0xbb, - 0xfc, 0x5b, 0xed, 0x5f, 0xb2, 0x60, 0x78, 0xc9, 0xf5, 0x1a, 0xae, 0xb7, 0x8d, 0x3e, 0x0b, 0x23, + 0x6c, 0xcb, 0xd4, 0x4c, 0x10, 0x4e, 0xe2, 0xda, 0x7f, 0xd3, 0x12, 0x8b, 0x87, 0x7e, 0xf5, 0xbb, + 0xfc, 0x5b, 0xed, 0x5f, 0xb6, 0x60, 0x78, 0xc9, 0xf5, 0x1a, 0xae, 0xb7, 0x8d, 0x3e, 0x0b, 0x23, 0xf4, 0x6e, 0x6a, 0x38, 0x91, 0x23, 0xce, 0xbd, 0x0f, 0x69, 0x7b, 0x4b, 0x5d, 0x15, 0x0b, 0xed, 0xdd, 0x6d, 0x5a, 0x10, 0x2e, 0x50, 0x6c, 0xba, 0xdb, 0x6e, 0x6d, 0x7e, 0x8e, 0xd4, 0xa3, 0x35, 0x12, 0x39, 0xf1, 0xe7, 0xc4, 0x65, 0x58, 0x51, 0x45, 0x37, 0x60, 0x28, 0x72, 0x82, 0x6d, 0x12, 0x89, 0x03, 0x30, 0xf3, 0xa0, 0xe2, 0x35, 0x31, 0xdd, 0x91, 0xc4, 0xab, 0x93, 0xf8, 0x5a, 0xd8, - 0x60, 0x55, 0xb1, 0x20, 0x61, 0xff, 0xd0, 0x30, 0x9c, 0x5d, 0xae, 0x55, 0x72, 0xd6, 0xd5, 0x25, + 0x60, 0x55, 0xb1, 0x20, 0x61, 0xff, 0xc8, 0x30, 0x9c, 0x5d, 0xae, 0x55, 0x72, 0xd6, 0xd5, 0x25, 0x18, 0x6a, 0x04, 0xee, 0x1e, 0x09, 0xc4, 0x38, 0x2b, 0x2a, 0x65, 0x56, 0x8a, 0x05, 0x14, 0xbd, 0x0c, 0x63, 0xfc, 0x42, 0xba, 0xee, 0x78, 0x8d, 0xa6, 0x1c, 0xe2, 0x53, 0x02, 0x7b, 0xec, 0x8e, 0x06, 0xc3, 0x06, 0xe6, 0x11, 0x17, 0xd5, 0xa5, 0xc4, 0x66, 0xcc, 0xbb, 0xec, 0xbe, 0x68, 0xc1, 0x14, 0x6f, 0x66, 0x31, 0x8a, 0x02, 0x77, 0xb3, 0x13, 0x91, 0x70, 0x76, 0x90, 0x9d, 0x74, 0xcb, 0x59, 0xa3, 0x95, 0x3b, 0x02, 0x0b, 0x77, 0x12, 0x54, 0xf8, 0x21, 0x38, 0x2b, 0xda, 0x9d, 0x4a, - 0x82, 0x71, 0xaa, 0x59, 0xf4, 0x9d, 0x16, 0xcc, 0xd5, 0x7d, 0x2f, 0x0a, 0xfc, 0x66, 0x93, 0x04, + 0x82, 0x71, 0xaa, 0x59, 0xf4, 0xdd, 0x16, 0xcc, 0xd5, 0x7d, 0x2f, 0x0a, 0xfc, 0x66, 0x93, 0x04, 0xd5, 0xce, 0x66, 0xd3, 0x0d, 0x77, 0xf8, 0x3a, 0xc5, 0x64, 0x8b, 0x9d, 0x04, 0x39, 0x73, 0xa8, 0x90, 0xc4, 0x1c, 0x9e, 0x7f, 0x70, 0x30, 0x3f, 0xb7, 0x9c, 0x4b, 0x0a, 0x77, 0x69, 0x06, 0xed, 0x02, 0xa2, 0x57, 0x69, 0x2d, 0x72, 0xb6, 0x49, 0xdc, 0xf8, 0x70, 0xff, 0x8d, 0x9f, 0x79, 0x70, 0x30, 0x8f, 0xd6, 0x53, 0x24, 0x70, 0x06, 0x59, 0xf4, 0x16, 0x9c, 0xa2, 0xa5, 0xa9, 0x6f, 0x1d, - 0xe9, 0xbf, 0xb9, 0xd9, 0x07, 0x07, 0xf3, 0xa7, 0xd6, 0x33, 0x88, 0xe0, 0x4c, 0xd2, 0xe8, 0x3b, + 0xe9, 0xbf, 0xb9, 0xd9, 0x07, 0x07, 0xf3, 0xa7, 0xd6, 0x33, 0x88, 0xe0, 0x4c, 0xd2, 0xe8, 0xbb, 0x2c, 0x38, 0x1b, 0x7f, 0xfe, 0xca, 0xfd, 0xb6, 0xe3, 0x35, 0xe2, 0x86, 0x4b, 0xfd, 0x37, 0x4c, 0xcf, 0xe4, 0xb3, 0xcb, 0x79, 0x94, 0x70, 0x7e, 0x23, 0x73, 0xcb, 0x70, 0x3a, 0x73, 0xb5, 0xa0, 0x29, 0x28, 0xee, 0x12, 0xce, 0x05, 0x95, 0x30, 0xfd, 0x89, 0x4e, 0xc1, 0xe0, 0x9e, 0xd3, 0xec, - 0x88, 0x8d, 0x82, 0xf9, 0x9f, 0x57, 0x0a, 0x2f, 0x5b, 0xf6, 0xbf, 0x2c, 0xc2, 0xe4, 0x72, 0xad, + 0x88, 0x8d, 0x82, 0xf9, 0x9f, 0x57, 0x0a, 0x2f, 0x5b, 0xf6, 0xbf, 0x28, 0xc2, 0xe4, 0x72, 0xad, 0xf2, 0x50, 0xbb, 0x50, 0xbf, 0x86, 0x0a, 0x5d, 0xaf, 0xa1, 0xf8, 0x52, 0x2b, 0xe6, 0x5e, 0x6a, - 0xff, 0x6f, 0xc6, 0x16, 0x1a, 0x60, 0x5b, 0xe8, 0x5b, 0x72, 0xb6, 0xd0, 0x31, 0x6f, 0x9c, 0xbd, + 0xff, 0x77, 0xc6, 0x16, 0x1a, 0x60, 0x5b, 0xe8, 0xdb, 0x72, 0xb6, 0xd0, 0x31, 0x6f, 0x9c, 0xbd, 0x9c, 0x55, 0x34, 0xc8, 0x26, 0x33, 0x93, 0x63, 0xb9, 0xe9, 0xd7, 0x9d, 0x66, 0xf2, 0xe8, 0x3b, 0xe2, 0x52, 0x3a, 0x9e, 0x79, 0xac, 0xc3, 0xd8, 0xb2, 0xd3, 0x76, 0x36, 0xdd, 0xa6, 0x1b, 0xb9, 0x24, 0x44, 0x4f, 0x41, 0xd1, 0x69, 0x34, 0x18, 0xb7, 0x55, 0x5a, 0x3a, 0xfd, 0xe0, 0x60, 0xbe, 0xb8, 0xd8, 0xa0, 0xd7, 0x3e, 0x28, 0xac, 0x7d, 0x4c, 0x31, 0xd0, 0x07, 0x61, 0xa0, 0x11, 0xf8, 0xed, 0xd9, 0x02, 0xc3, 0xa4, 0xbb, 0x6e, 0xa0, 0x1c, 0xf8, 0xed, 0x04, 0x2a, 0xc3, 0xb1, 0x7f, - 0xad, 0x00, 0x4f, 0x2c, 0x93, 0xf6, 0xce, 0x6a, 0x2d, 0xe7, 0xfc, 0xbe, 0x0c, 0x23, 0x2d, 0xdf, + 0xbd, 0x00, 0x4f, 0x2c, 0x93, 0xf6, 0xce, 0x6a, 0x2d, 0xe7, 0xfc, 0xbe, 0x0c, 0x23, 0x2d, 0xdf, 0x73, 0x23, 0x3f, 0x08, 0x45, 0xd3, 0x6c, 0x45, 0xac, 0x89, 0x32, 0xac, 0xa0, 0xe8, 0x02, 0x0c, 0xb4, 0x63, 0xa6, 0x72, 0x4c, 0x32, 0xa4, 0x8c, 0x9d, 0x64, 0x10, 0x8a, 0xd1, 0x09, 0x49, 0x20, 0x56, 0x8c, 0xc2, 0xb8, 0x1d, 0x92, 0x00, 0x33, 0x48, 0x7c, 0x33, 0xd3, 0x3b, 0x5b, 0x9c, 0xd0, 0x89, 0x9b, 0x99, 0x42, 0xb0, 0x86, 0x85, 0xaa, 0x50, 0x0a, 0x13, 0x33, 0xdb, 0xd7, 0x36, 0x1d, - 0x67, 0x57, 0xb7, 0x9a, 0xc9, 0x98, 0x88, 0x71, 0xa3, 0x0c, 0xf5, 0xbc, 0xba, 0xbf, 0x52, 0x00, - 0xc4, 0x87, 0xf0, 0x1b, 0x6c, 0xe0, 0x6e, 0xa7, 0x07, 0xae, 0xff, 0x2d, 0x71, 0x5c, 0xa3, 0xf7, - 0x3f, 0x2c, 0x78, 0x62, 0xd9, 0xf5, 0x1a, 0x24, 0xc8, 0x59, 0x80, 0x8f, 0xe6, 0x2d, 0x7b, 0x34, + 0x67, 0x57, 0xb7, 0x9a, 0xc9, 0x98, 0x88, 0x71, 0xa3, 0x0c, 0xf5, 0xbc, 0xba, 0xbf, 0x5a, 0x00, + 0xc4, 0x87, 0xf0, 0x9b, 0x6c, 0xe0, 0x6e, 0xa7, 0x07, 0xae, 0xff, 0x2d, 0x71, 0x5c, 0xa3, 0xf7, + 0xdf, 0x2d, 0x78, 0x62, 0xd9, 0xf5, 0x1a, 0x24, 0xc8, 0x59, 0x80, 0x8f, 0xe6, 0x2d, 0x7b, 0x34, 0xa6, 0xc1, 0x58, 0x62, 0x03, 0xc7, 0xb0, 0xc4, 0xec, 0x3f, 0xb1, 0x00, 0xf1, 0xcf, 0x7e, 0xd7, 0x7d, 0xec, 0xed, 0xf4, 0xc7, 0x1e, 0xc3, 0xb2, 0xb0, 0x6f, 0xc2, 0xc4, 0x72, 0xd3, 0x25, 0x5e, 0x54, 0xa9, 0x2e, 0xfb, 0xde, 0x96, 0xbb, 0x8d, 0x5e, 0x81, 0x89, 0xc8, 0x6d, 0x11, 0xbf, 0x13, 0xd5, 0x48, 0xdd, 0xf7, 0xd8, 0x4b, 0xd2, 0xba, 0x3c, 0xb8, 0x84, 0x1e, 0x1c, 0xcc, 0x4f, 0x6c, 0x18, 0x10, 0x9c, 0xc0, 0xb4, 0x7f, 0x8f, 0x8e, 0x9f, 0xdf, 0x6a, 0xfb, 0x1e, 0xf1, 0xa2, 0x65, 0xdf, 0x6b, 0x70, 0x89, 0xc3, 0x2b, 0x30, 0x10, 0xd1, 0xf1, 0xe0, 0x63, 0x77, 0x49, 0x6e, 0x14, - 0x3a, 0x0a, 0x87, 0x07, 0xf3, 0x67, 0xd2, 0x35, 0xd8, 0x38, 0xb1, 0x3a, 0xe8, 0x5b, 0x60, 0x28, + 0x3a, 0x0a, 0x87, 0x07, 0xf3, 0x67, 0xd2, 0x35, 0xd8, 0x38, 0xb1, 0x3a, 0xe8, 0xdb, 0x60, 0x28, 0x8c, 0x9c, 0xa8, 0x13, 0x8a, 0xd1, 0x7c, 0x52, 0x8e, 0x66, 0x8d, 0x95, 0x1e, 0x1e, 0xcc, 0x4f, 0xaa, 0x6a, 0xbc, 0x08, 0x8b, 0x0a, 0xe8, 0x69, 0x18, 0x6e, 0x91, 0x30, 0x74, 0xb6, 0xe5, 0x6d, 0x38, 0x29, 0xea, 0x0e, 0xaf, 0xf1, 0x62, 0x2c, 0xe1, 0xe8, 0x22, 0x0c, 0x92, 0x20, 0xf0, 0x03, - 0xb1, 0x47, 0xc7, 0x05, 0xe2, 0xe0, 0x0a, 0x2d, 0xc4, 0x1c, 0x66, 0xff, 0x3b, 0x0b, 0x26, 0x55, + 0xb1, 0x47, 0xc7, 0x05, 0xe2, 0xe0, 0x0a, 0x2d, 0xc4, 0x1c, 0x66, 0xff, 0x5b, 0x0b, 0x26, 0x55, 0x5f, 0x79, 0x5b, 0x27, 0xf0, 0x2a, 0xf8, 0x14, 0x40, 0x5d, 0x7e, 0x60, 0xc8, 0x6e, 0x8f, 0xd1, 0xe7, 0x2f, 0x65, 0x5e, 0xd4, 0xa9, 0x61, 0x8c, 0x29, 0xab, 0xa2, 0x10, 0x6b, 0xd4, 0xec, 0x7f, - 0x62, 0xc1, 0x4c, 0xe2, 0x8b, 0x6e, 0xba, 0x61, 0x84, 0xde, 0x4c, 0x7d, 0xd5, 0x42, 0x7f, 0x5f, + 0x64, 0xc1, 0x4c, 0xe2, 0x8b, 0x6e, 0xba, 0x61, 0x84, 0xde, 0x4c, 0x7d, 0xd5, 0x42, 0x7f, 0x5f, 0x45, 0x6b, 0xb3, 0x6f, 0x52, 0x4b, 0x59, 0x96, 0x68, 0x5f, 0x74, 0x1d, 0x06, 0xdd, 0x88, 0xb4, 0xe4, 0xc7, 0x5c, 0xec, 0xfa, 0x31, 0xbc, 0x57, 0xf1, 0x8c, 0x54, 0x68, 0x4d, 0xcc, 0x09, 0xd8, - 0xbf, 0x56, 0x84, 0x12, 0x5f, 0xb6, 0x6b, 0x4e, 0xfb, 0x04, 0xe6, 0xe2, 0x19, 0x28, 0xb9, 0xad, + 0xbf, 0x5e, 0x84, 0x12, 0x5f, 0xb6, 0x6b, 0x4e, 0xfb, 0x04, 0xe6, 0xe2, 0x19, 0x28, 0xb9, 0xad, 0x56, 0x27, 0x72, 0x36, 0xc5, 0x71, 0x3e, 0xc2, 0xb7, 0x56, 0x45, 0x16, 0xe2, 0x18, 0x8e, 0x2a, 0x30, 0xc0, 0xba, 0xc2, 0xbf, 0xf2, 0xa9, 0xec, 0xaf, 0x14, 0x7d, 0x5f, 0x28, 0x3b, 0x91, 0xc3, 0x39, 0x29, 0x75, 0x8f, 0xd0, 0x22, 0xcc, 0x48, 0x20, 0x07, 0x60, 0xd3, 0xf5, 0x9c, 0x60, 0x9f, 0x96, 0xcd, 0x16, 0x19, 0xc1, 0xe7, 0xba, 0x13, 0x5c, 0x52, 0xf8, 0x9c, 0xac, 0xfa, 0xb0, 0x18, 0x80, 0x35, 0xa2, 0x73, 0x1f, 0x81, 0x92, 0x42, 0x3e, 0x0a, 0x43, 0x34, 0xf7, 0x31, 0x98, 0x4c, - 0xb4, 0xd5, 0xab, 0xfa, 0x98, 0xce, 0x4f, 0xfd, 0x32, 0x3b, 0x32, 0x44, 0xaf, 0x57, 0xbc, 0x3d, + 0xb4, 0xd5, 0xab, 0xfa, 0x98, 0xce, 0x4f, 0xfd, 0x0a, 0x3b, 0x32, 0x44, 0xaf, 0x57, 0xbc, 0x3d, 0x71, 0xe4, 0xbe, 0x0d, 0xa7, 0x9a, 0x19, 0x27, 0x99, 0x98, 0xd7, 0xfe, 0x4f, 0xbe, 0x27, 0xc4, 0x67, 0x9f, 0xca, 0x82, 0xe2, 0xcc, 0x36, 0x28, 0x8f, 0xe0, 0xb7, 0xe9, 0x06, 0x71, 0x9a, 0x3a, 0xbb, 0x7d, 0x4b, 0x94, 0x61, 0x05, 0xa5, 0xe7, 0xdd, 0x29, 0xd5, 0xf9, 0x1b, 0x64, 0xbf, 0x46, - 0x9a, 0xa4, 0x1e, 0xf9, 0xc1, 0xd7, 0xb5, 0xfb, 0xe7, 0xf8, 0xe8, 0xf3, 0xe3, 0x72, 0x54, 0x10, - 0x28, 0xde, 0x20, 0xfb, 0x7c, 0x2a, 0xf4, 0xaf, 0x2b, 0x76, 0xfd, 0xba, 0x9f, 0xb5, 0x60, 0x5c, + 0x9a, 0xa4, 0x1e, 0xf9, 0xc1, 0x37, 0xb4, 0xfb, 0xe7, 0xf8, 0xe8, 0xf3, 0xe3, 0x72, 0x54, 0x10, + 0x28, 0xde, 0x20, 0xfb, 0x7c, 0x2a, 0xf4, 0xaf, 0x2b, 0x76, 0xfd, 0xba, 0x9f, 0xb3, 0x60, 0x5c, 0x7d, 0xdd, 0x09, 0x9c, 0x0b, 0x4b, 0xe6, 0xb9, 0x70, 0xae, 0xeb, 0x02, 0xcf, 0x39, 0x11, 0xbe, - 0x52, 0x80, 0xb3, 0x0a, 0x87, 0xbe, 0x0d, 0xf8, 0x1f, 0xb1, 0xaa, 0xae, 0x40, 0xc9, 0x53, 0x52, + 0x5a, 0x80, 0xb3, 0x0a, 0x87, 0xbe, 0x0d, 0xf8, 0x1f, 0xb1, 0xaa, 0xae, 0x40, 0xc9, 0x53, 0x52, 0x2b, 0xcb, 0x14, 0x17, 0xc5, 0x32, 0xab, 0x18, 0x87, 0xb2, 0x78, 0x5e, 0x2c, 0x5a, 0x1a, 0xd3, 0xc5, 0xb9, 0x42, 0x74, 0xbb, 0x04, 0xc5, 0x8e, 0xdb, 0x10, 0x17, 0xcc, 0x87, 0xe4, 0x68, 0xdf, 0xae, 0x94, 0x0f, 0x0f, 0xe6, 0x9f, 0xcc, 0x53, 0x25, 0xd0, 0x9b, 0x2d, 0x5c, 0xb8, 0x5d, 0x29, 0x63, 0x5a, 0x19, 0x2d, 0xc2, 0xa4, 0xd4, 0x96, 0xdc, 0xa1, 0xec, 0x96, 0xef, 0x89, 0x7b, 0x48, 0xc9, 0x64, 0xb1, 0x09, 0xc6, 0x49, 0x7c, 0x54, 0x86, 0xa9, 0xdd, 0xce, 0x26, 0x69, 0x92, 0x88, 0x7f, 0xf0, 0x0d, 0xc2, 0x25, 0x96, 0xa5, 0xf8, 0x65, 0x76, 0x23, 0x01, 0xc7, 0xa9, 0x1a, 0xf6, - 0x5f, 0xb0, 0xfb, 0x40, 0x8c, 0x5e, 0x35, 0xf0, 0xe9, 0xc2, 0xa2, 0xd4, 0xbf, 0x9e, 0xcb, 0xb9, + 0x5f, 0xb0, 0xfb, 0x40, 0x8c, 0x5e, 0x35, 0xf0, 0xe9, 0xc2, 0xa2, 0xd4, 0xbf, 0x91, 0xcb, 0xb9, 0x9f, 0x55, 0x71, 0x83, 0xec, 0x6f, 0xf8, 0x94, 0x33, 0xcf, 0x5e, 0x15, 0xc6, 0x9a, 0x1f, 0xe8, - 0xba, 0xe6, 0x7f, 0xbe, 0x00, 0xa7, 0xd5, 0x08, 0x18, 0x4c, 0xe0, 0x37, 0xfa, 0x18, 0x5c, 0x85, + 0xba, 0xe6, 0x7f, 0xa1, 0x00, 0xa7, 0xd5, 0x08, 0x18, 0x4c, 0xe0, 0x37, 0xfb, 0x18, 0x5c, 0x85, 0xd1, 0x06, 0xd9, 0x72, 0x3a, 0xcd, 0x48, 0x89, 0xcf, 0x07, 0xb9, 0x0a, 0xa5, 0x1c, 0x17, 0x63, - 0x1d, 0xe7, 0x08, 0xc3, 0xf6, 0x3f, 0x47, 0xd9, 0x45, 0x1c, 0x39, 0x74, 0x8d, 0xab, 0x5d, 0x63, + 0x1d, 0xe7, 0x08, 0xc3, 0xf6, 0x3f, 0x46, 0xd9, 0x45, 0x1c, 0x39, 0x74, 0x8d, 0xab, 0x5d, 0x63, 0xe5, 0xee, 0x9a, 0x8b, 0x30, 0xe8, 0xb6, 0x28, 0x63, 0x56, 0x30, 0xf9, 0xad, 0x0a, 0x2d, 0xc4, 0x1c, 0x86, 0x3e, 0x00, 0xc3, 0x75, 0xbf, 0xd5, 0x72, 0xbc, 0x06, 0xbb, 0xf2, 0x4a, 0x4b, 0xa3, 0x94, 0x77, 0x5b, 0xe6, 0x45, 0x58, 0xc2, 0xd0, 0x13, 0x30, 0xe0, 0x04, 0xdb, 0x5c, 0x86, 0x51, @@ -6226,7 +6226,7 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0xc2, 0x60, 0xdb, 0x0f, 0xa2, 0x70, 0x76, 0x88, 0x0d, 0xf7, 0x93, 0x39, 0x07, 0x11, 0xff, 0xda, 0xaa, 0x1f, 0x44, 0xf1, 0x07, 0xd0, 0x7f, 0x21, 0xe6, 0xd5, 0xd1, 0x4d, 0x18, 0x26, 0xde, 0xde, 0x6a, 0xe0, 0xb7, 0x66, 0x67, 0xf2, 0x29, 0xad, 0x70, 0x14, 0xbe, 0xcc, 0x62, 0x1e, 0x55, 0x14, - 0x63, 0x49, 0x02, 0x7d, 0x0b, 0x14, 0x89, 0xb7, 0x37, 0x3b, 0xcc, 0x28, 0xcd, 0xe5, 0x50, 0xba, + 0x63, 0x49, 0x02, 0x7d, 0x1b, 0x14, 0x89, 0xb7, 0x37, 0x3b, 0xcc, 0x28, 0xcd, 0xe5, 0x50, 0xba, 0xe3, 0x04, 0xf1, 0x99, 0xbf, 0xe2, 0xed, 0x61, 0x5a, 0x07, 0x7d, 0x12, 0x4a, 0xf2, 0xc0, 0x08, 0x85, 0xb0, 0x2e, 0x73, 0xc1, 0xca, 0x63, 0x06, 0x93, 0xb7, 0x3a, 0x6e, 0x40, 0x5a, 0xc4, 0x8b, 0xc2, 0xf8, 0x84, 0x94, 0xd0, 0x10, 0xc7, 0xd4, 0xd0, 0x27, 0xa5, 0x84, 0x78, 0xcd, 0xef, 0x78, @@ -6251,282 +6251,282 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x63, 0x1c, 0xca, 0x4c, 0x46, 0xd1, 0xfe, 0x2c, 0x62, 0xa8, 0xea, 0x60, 0xd9, 0xd8, 0xf8, 0x24, 0xa6, 0xe5, 0xf6, 0x26, 0x4c, 0xa8, 0x83, 0x90, 0x8d, 0x09, 0x9a, 0x87, 0x41, 0xc6, 0x3e, 0x09, 0xe9, 0x5a, 0x89, 0x76, 0x81, 0xb1, 0x56, 0x98, 0x97, 0xb3, 0x2e, 0xb8, 0x6f, 0x93, 0xa5, 0xfd, - 0x88, 0xf0, 0x37, 0x7d, 0x51, 0xeb, 0x82, 0x04, 0xe0, 0x18, 0xc7, 0xfe, 0x3f, 0x9c, 0x0d, 0x8d, + 0x88, 0xf0, 0x37, 0x7d, 0x51, 0xeb, 0x82, 0x04, 0xe0, 0x18, 0xc7, 0xfe, 0xdf, 0x9c, 0x0d, 0x8d, 0x4f, 0xdb, 0x3e, 0xee, 0x97, 0x67, 0x61, 0x64, 0xc7, 0x0f, 0x23, 0x8a, 0xcd, 0xda, 0x18, 0x8c, 0x19, 0xcf, 0xeb, 0xa2, 0x1c, 0x2b, 0x0c, 0xf4, 0x2a, 0x8c, 0xd7, 0xf5, 0x06, 0xc4, 0xe5, 0xa8, 0x8e, 0x11, 0xa3, 0x75, 0x6c, 0xe2, 0xa2, 0x97, 0x61, 0x84, 0xd9, 0x80, 0xd4, 0xfd, 0xa6, 0xe0, 0xda, 0xe4, 0x0d, 0x3f, 0x52, 0x15, 0xe5, 0x87, 0xda, 0x6f, 0xac, 0xb0, 0xd1, 0x25, 0x18, 0xa2, - 0x5d, 0xa8, 0x54, 0xc5, 0xb5, 0xa4, 0x04, 0x45, 0xd7, 0x59, 0x29, 0x16, 0x50, 0xfb, 0x2f, 0x15, - 0xb4, 0x51, 0xa6, 0xef, 0x61, 0x82, 0xaa, 0x30, 0x7c, 0xcf, 0x71, 0x23, 0xd7, 0xdb, 0x16, 0xfc, - 0xc7, 0xd3, 0x5d, 0xef, 0x28, 0x56, 0xe9, 0x2e, 0xaf, 0xc0, 0x6f, 0x51, 0xf1, 0x07, 0x4b, 0x32, - 0x94, 0x62, 0xd0, 0xf1, 0x3c, 0x4a, 0xb1, 0xd0, 0x2f, 0x45, 0xcc, 0x2b, 0x70, 0x8a, 0xe2, 0x0f, - 0x96, 0x64, 0xd0, 0x9b, 0x00, 0x72, 0x87, 0x91, 0x86, 0xb0, 0xbd, 0x78, 0xb6, 0x37, 0xd1, 0x0d, - 0x55, 0x67, 0x69, 0x82, 0xde, 0xd1, 0xf1, 0x7f, 0xac, 0xd1, 0xb3, 0x23, 0xc6, 0xa7, 0xa5, 0x3b, - 0x83, 0xbe, 0x8d, 0x2e, 0x71, 0x27, 0x88, 0x48, 0x63, 0x31, 0x12, 0x83, 0xf3, 0xc1, 0xfe, 0x1e, - 0x29, 0x1b, 0x6e, 0x8b, 0xe8, 0xdb, 0x41, 0x10, 0xc1, 0x31, 0x3d, 0xfb, 0x17, 0x8b, 0x30, 0x9b, - 0xd7, 0x5d, 0xba, 0xe8, 0xc8, 0x7d, 0x37, 0x5a, 0xa6, 0xec, 0x95, 0x65, 0x2e, 0xba, 0x15, 0x51, - 0x8e, 0x15, 0x06, 0x9d, 0xfd, 0xd0, 0xdd, 0x96, 0x6f, 0xcc, 0xc1, 0x78, 0xf6, 0x6b, 0xac, 0x14, - 0x0b, 0x28, 0xc5, 0x0b, 0x88, 0x13, 0x0a, 0xe3, 0x1e, 0x6d, 0x95, 0x60, 0x56, 0x8a, 0x05, 0x54, - 0x97, 0x76, 0x0d, 0xf4, 0x90, 0x76, 0x19, 0x43, 0x34, 0x78, 0xbc, 0x43, 0x84, 0x3e, 0x03, 0xb0, - 0xe5, 0x7a, 0x6e, 0xb8, 0xc3, 0xa8, 0x0f, 0x1d, 0x99, 0xba, 0x62, 0xce, 0x56, 0x15, 0x15, 0xac, - 0x51, 0x44, 0x2f, 0xc1, 0xa8, 0xda, 0x80, 0x95, 0x32, 0xd3, 0x74, 0x6a, 0x96, 0x23, 0xf1, 0x69, - 0x54, 0xc6, 0x3a, 0x9e, 0xfd, 0xb9, 0xe4, 0x7a, 0x11, 0x3b, 0x40, 0x1b, 0x5f, 0xab, 0xdf, 0xf1, - 0x2d, 0x74, 0x1f, 0x5f, 0xfb, 0x6b, 0x45, 0x98, 0x34, 0x1a, 0xeb, 0x84, 0x7d, 0x9c, 0x59, 0xd7, - 0xe8, 0x01, 0xee, 0x44, 0x44, 0xec, 0x3f, 0xbb, 0xf7, 0x56, 0xd1, 0x0f, 0x79, 0xba, 0x03, 0x78, - 0x7d, 0xf4, 0x19, 0x28, 0x35, 0x9d, 0x90, 0x49, 0xce, 0x88, 0xd8, 0x77, 0xfd, 0x10, 0x8b, 0x1f, - 0x26, 0x4e, 0x18, 0x69, 0xb7, 0x26, 0xa7, 0x1d, 0x93, 0xa4, 0x37, 0x0d, 0xe5, 0x4f, 0xa4, 0xf5, - 0x98, 0xea, 0x04, 0x65, 0x62, 0xf6, 0x31, 0x87, 0xa1, 0x97, 0x61, 0x2c, 0x20, 0x6c, 0x55, 0x2c, - 0x53, 0x6e, 0x8e, 0x2d, 0xb3, 0xc1, 0x98, 0xed, 0xc3, 0x1a, 0x0c, 0x1b, 0x98, 0xf1, 0xdb, 0x60, - 0xa8, 0xcb, 0xdb, 0xe0, 0x69, 0x18, 0x66, 0x3f, 0xd4, 0x0a, 0x50, 0xb3, 0x51, 0xe1, 0xc5, 0x58, - 0xc2, 0x93, 0x0b, 0x66, 0xa4, 0xbf, 0x05, 0x43, 0x5f, 0x1f, 0x62, 0x51, 0x33, 0x2d, 0xf3, 0x08, - 0x3f, 0xe5, 0xc4, 0x92, 0xc7, 0x12, 0x66, 0x7f, 0x10, 0x26, 0xca, 0x0e, 0x69, 0xf9, 0xde, 0x8a, - 0xd7, 0x68, 0xfb, 0xae, 0x17, 0xa1, 0x59, 0x18, 0x60, 0x97, 0x08, 0x3f, 0x02, 0x06, 0x68, 0x43, - 0x98, 0x95, 0xd8, 0xdb, 0x70, 0xba, 0xec, 0xdf, 0xf3, 0xee, 0x39, 0x41, 0x63, 0xb1, 0x5a, 0xd1, - 0xde, 0xd7, 0xeb, 0xf2, 0x7d, 0xc7, 0x8d, 0xb6, 0x32, 0x8f, 0x5e, 0xad, 0x26, 0x67, 0x6b, 0x57, - 0xdd, 0x26, 0xc9, 0x91, 0x82, 0xfc, 0xd5, 0x82, 0xd1, 0x52, 0x8c, 0xaf, 0xb4, 0x5a, 0x56, 0xae, - 0x56, 0xeb, 0x0d, 0x18, 0xd9, 0x72, 0x49, 0xb3, 0x81, 0xc9, 0x96, 0x58, 0x89, 0x4f, 0xe5, 0xdb, - 0xa1, 0xac, 0x52, 0x4c, 0x29, 0xf5, 0xe2, 0xaf, 0xc3, 0x55, 0x51, 0x19, 0x2b, 0x32, 0x68, 0x17, - 0xa6, 0xe4, 0x83, 0x41, 0x42, 0xc5, 0xba, 0x7c, 0xba, 0xdb, 0x2b, 0xc4, 0x24, 0x7e, 0xea, 0xc1, - 0xc1, 0xfc, 0x14, 0x4e, 0x90, 0xc1, 0x29, 0xc2, 0xf4, 0x39, 0xd8, 0xa2, 0x27, 0xf0, 0x00, 0x1b, - 0x7e, 0xf6, 0x1c, 0x64, 0x2f, 0x5b, 0x56, 0x6a, 0xff, 0x98, 0x05, 0x8f, 0xa5, 0x46, 0x46, 0xbc, - 0xf0, 0x8f, 0x79, 0x16, 0x92, 0x2f, 0xee, 0x42, 0xef, 0x17, 0xb7, 0xfd, 0x77, 0x2c, 0x38, 0xb5, - 0xd2, 0x6a, 0x47, 0xfb, 0x65, 0xd7, 0x54, 0x41, 0x7d, 0x04, 0x86, 0x5a, 0xa4, 0xe1, 0x76, 0x5a, - 0x62, 0xe6, 0xe6, 0xe5, 0x29, 0xb5, 0xc6, 0x4a, 0x0f, 0x0f, 0xe6, 0xc7, 0x6b, 0x91, 0x1f, 0x38, - 0xdb, 0x84, 0x17, 0x60, 0x81, 0xce, 0xce, 0x7a, 0xf7, 0x6d, 0x72, 0xd3, 0x6d, 0xb9, 0xd2, 0xae, - 0xa8, 0xab, 0xcc, 0x6e, 0x41, 0x0e, 0xe8, 0xc2, 0x1b, 0x1d, 0xc7, 0x8b, 0xdc, 0x68, 0x5f, 0x68, - 0x8f, 0x24, 0x11, 0x1c, 0xd3, 0xb3, 0xbf, 0x6a, 0xc1, 0xa4, 0x5c, 0xf7, 0x8b, 0x8d, 0x46, 0x40, - 0xc2, 0x10, 0xcd, 0x41, 0xc1, 0x6d, 0x8b, 0x5e, 0x82, 0xe8, 0x65, 0xa1, 0x52, 0xc5, 0x05, 0xb7, - 0x2d, 0xd9, 0x32, 0x76, 0x10, 0x16, 0x4d, 0x45, 0xda, 0x75, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x0c, - 0x23, 0x9e, 0xdf, 0xe0, 0xb6, 0x5d, 0xfc, 0x4a, 0x63, 0x0b, 0x6c, 0x5d, 0x94, 0x61, 0x05, 0x45, - 0x55, 0x28, 0x71, 0xb3, 0xa7, 0x78, 0xd1, 0xf6, 0x65, 0x3c, 0xc5, 0xbe, 0x6c, 0x43, 0xd6, 0xc4, - 0x31, 0x11, 0xfb, 0x57, 0x2d, 0x18, 0x93, 0x5f, 0xd6, 0x27, 0xcf, 0x49, 0xb7, 0x56, 0xcc, 0x6f, - 0xc6, 0x5b, 0x8b, 0xf2, 0x8c, 0x0c, 0x62, 0xb0, 0x8a, 0xc5, 0x23, 0xb1, 0x8a, 0x57, 0x61, 0xd4, - 0x69, 0xb7, 0xab, 0x26, 0x9f, 0xc9, 0x96, 0xd2, 0x62, 0x5c, 0x8c, 0x75, 0x1c, 0xfb, 0x47, 0x0b, - 0x30, 0x21, 0xbf, 0xa0, 0xd6, 0xd9, 0x0c, 0x49, 0x84, 0x36, 0xa0, 0xe4, 0xf0, 0x59, 0x22, 0x72, - 0x91, 0x5f, 0xcc, 0x96, 0x23, 0x18, 0x53, 0x1a, 0x5f, 0xf8, 0x8b, 0xb2, 0x36, 0x8e, 0x09, 0xa1, - 0x26, 0x4c, 0x7b, 0x7e, 0xc4, 0x0e, 0x7f, 0x05, 0xef, 0xa6, 0xda, 0x49, 0x52, 0x3f, 0x2b, 0xa8, - 0x4f, 0xaf, 0x27, 0xa9, 0xe0, 0x34, 0x61, 0xb4, 0x22, 0x65, 0x33, 0xc5, 0x7c, 0x61, 0x80, 0x3e, - 0x71, 0xd9, 0xa2, 0x19, 0xfb, 0x57, 0x2c, 0x28, 0x49, 0xb4, 0x93, 0xd0, 0xe2, 0xad, 0xc1, 0x70, - 0xc8, 0x26, 0x41, 0x0e, 0x8d, 0xdd, 0xad, 0xe3, 0x7c, 0xbe, 0xe2, 0x3b, 0x8d, 0xff, 0x0f, 0xb1, - 0xa4, 0xc1, 0x44, 0xf3, 0xaa, 0xfb, 0xef, 0x12, 0xd1, 0xbc, 0xea, 0x4f, 0xce, 0xa5, 0xf4, 0x47, - 0xac, 0xcf, 0x9a, 0xac, 0x8b, 0xb2, 0x5e, 0xed, 0x80, 0x6c, 0xb9, 0xf7, 0x93, 0xac, 0x57, 0x95, - 0x95, 0x62, 0x01, 0x45, 0x6f, 0xc2, 0x58, 0x5d, 0xca, 0x64, 0xe3, 0x1d, 0x7e, 0xa9, 0xab, 0x7e, - 0x40, 0xa9, 0x92, 0xb8, 0x2c, 0x64, 0x59, 0xab, 0x8f, 0x0d, 0x6a, 0xa6, 0x19, 0x41, 0xb1, 0x97, - 0x19, 0x41, 0x4c, 0x37, 0x5f, 0xa9, 0xfe, 0xe3, 0x16, 0x0c, 0x71, 0x59, 0x5c, 0x7f, 0xa2, 0x50, - 0x4d, 0xb3, 0x16, 0x8f, 0xdd, 0x1d, 0x5a, 0x28, 0x34, 0x65, 0x68, 0x0d, 0x4a, 0xec, 0x07, 0x93, - 0x25, 0x16, 0xf3, 0xad, 0xee, 0x79, 0xab, 0x7a, 0x07, 0xef, 0xc8, 0x6a, 0x38, 0xa6, 0x60, 0xff, - 0x70, 0x91, 0x9e, 0x6e, 0x31, 0xaa, 0x71, 0xe9, 0x5b, 0x8f, 0xee, 0xd2, 0x2f, 0x3c, 0xaa, 0x4b, - 0x7f, 0x1b, 0x26, 0xeb, 0x9a, 0x1e, 0x2e, 0x9e, 0xc9, 0xcb, 0x5d, 0x17, 0x89, 0xa6, 0xb2, 0xe3, - 0x52, 0x96, 0x65, 0x93, 0x08, 0x4e, 0x52, 0x45, 0xdf, 0x06, 0x63, 0x7c, 0x9e, 0x45, 0x2b, 0xdc, - 0x12, 0xe3, 0x03, 0xf9, 0xeb, 0x45, 0x6f, 0x82, 0x4b, 0xe5, 0xb4, 0xea, 0xd8, 0x20, 0x66, 0xff, - 0xa9, 0x05, 0x68, 0xa5, 0xbd, 0x43, 0x5a, 0x24, 0x70, 0x9a, 0xb1, 0x38, 0xfd, 0xfb, 0x2d, 0x98, - 0x25, 0xa9, 0xe2, 0x65, 0xbf, 0xd5, 0x12, 0x8f, 0x96, 0x9c, 0x77, 0xf5, 0x4a, 0x4e, 0x1d, 0xe5, - 0x96, 0x30, 0x9b, 0x87, 0x81, 0x73, 0xdb, 0x43, 0x6b, 0x30, 0xc3, 0x6f, 0x49, 0x05, 0xd0, 0x6c, - 0xaf, 0x1f, 0x17, 0x84, 0x67, 0x36, 0xd2, 0x28, 0x38, 0xab, 0x9e, 0xfd, 0x5d, 0x63, 0x90, 0xdb, - 0x8b, 0xf7, 0xf4, 0x08, 0xef, 0xe9, 0x11, 0xde, 0xd3, 0x23, 0xbc, 0xa7, 0x47, 0x78, 0x4f, 0x8f, - 0xf0, 0x4d, 0xaf, 0x47, 0xf8, 0xcb, 0x16, 0x9c, 0x56, 0xd7, 0x80, 0xf1, 0xf0, 0xfd, 0x3c, 0xcc, - 0xf0, 0xed, 0xb6, 0xdc, 0x74, 0xdc, 0xd6, 0x06, 0x69, 0xb5, 0x9b, 0x4e, 0x24, 0xb5, 0xee, 0x57, - 0x33, 0x57, 0x6e, 0xc2, 0x62, 0xd5, 0xa8, 0xb8, 0xf4, 0x18, 0xbd, 0x9e, 0x32, 0x00, 0x38, 0xab, - 0x19, 0xfb, 0x17, 0x47, 0x60, 0x70, 0x65, 0x8f, 0x78, 0xd1, 0x09, 0x3c, 0x11, 0xea, 0x30, 0xe1, - 0x7a, 0x7b, 0x7e, 0x73, 0x8f, 0x34, 0x38, 0xfc, 0x28, 0x2f, 0xd9, 0x33, 0x82, 0xf4, 0x44, 0xc5, - 0x20, 0x81, 0x13, 0x24, 0x1f, 0x85, 0x34, 0xf9, 0x1a, 0x0c, 0xf1, 0x43, 0x5c, 0x88, 0x92, 0x33, - 0xcf, 0x6c, 0x36, 0x88, 0xe2, 0x6a, 0x8a, 0x25, 0xdd, 0xfc, 0x92, 0x10, 0xd5, 0xd1, 0xe7, 0x60, - 0x62, 0xcb, 0x0d, 0xc2, 0x68, 0xc3, 0x6d, 0x91, 0x30, 0x72, 0x5a, 0xed, 0x87, 0x90, 0x1e, 0xab, - 0x71, 0x58, 0x35, 0x28, 0xe1, 0x04, 0x65, 0xb4, 0x0d, 0xe3, 0x4d, 0x47, 0x6f, 0x6a, 0xf8, 0xc8, - 0x4d, 0xa9, 0xdb, 0xe1, 0xa6, 0x4e, 0x08, 0x9b, 0x74, 0xe9, 0x76, 0xaa, 0x33, 0x01, 0xe8, 0x08, - 0x13, 0x0b, 0xa8, 0xed, 0xc4, 0x25, 0x9f, 0x1c, 0x46, 0x19, 0x1d, 0x66, 0x20, 0x5b, 0x32, 0x19, - 0x1d, 0xcd, 0x0c, 0xf6, 0xb3, 0x50, 0x22, 0x74, 0x08, 0x29, 0x61, 0x71, 0xc1, 0x5c, 0xe9, 0xaf, - 0xaf, 0x6b, 0x6e, 0x3d, 0xf0, 0x4d, 0xb9, 0xfd, 0x8a, 0xa4, 0x84, 0x63, 0xa2, 0x68, 0x19, 0x86, - 0x42, 0x12, 0xb8, 0x24, 0x14, 0x57, 0x4d, 0x97, 0x69, 0x64, 0x68, 0xdc, 0xb7, 0x84, 0xff, 0xc6, - 0xa2, 0x2a, 0x5d, 0x5e, 0x0e, 0x13, 0x69, 0xb2, 0xcb, 0x40, 0x5b, 0x5e, 0x8b, 0xac, 0x14, 0x0b, - 0x28, 0x7a, 0x1d, 0x86, 0x03, 0xd2, 0x64, 0x8a, 0xa1, 0xf1, 0xfe, 0x17, 0x39, 0xd7, 0x33, 0xf1, - 0x7a, 0x58, 0x12, 0x40, 0x37, 0x00, 0x05, 0x84, 0x32, 0x4a, 0xae, 0xb7, 0xad, 0xcc, 0x46, 0xc5, - 0x41, 0xab, 0x18, 0x52, 0x1c, 0x63, 0x48, 0x37, 0x1f, 0x9c, 0x51, 0x0d, 0x5d, 0x83, 0x69, 0x55, - 0x5a, 0xf1, 0xc2, 0xc8, 0xa1, 0x07, 0xdc, 0x24, 0xa3, 0xa5, 0xe4, 0x14, 0x38, 0x89, 0x80, 0xd3, - 0x75, 0xec, 0x2f, 0x5b, 0xc0, 0xc7, 0xf9, 0x04, 0x5e, 0xe7, 0xaf, 0x99, 0xaf, 0xf3, 0xb3, 0xb9, - 0x33, 0x97, 0xf3, 0x32, 0xff, 0xb2, 0x05, 0xa3, 0xda, 0xcc, 0xc6, 0x6b, 0xd6, 0xea, 0xb2, 0x66, - 0x3b, 0x30, 0x45, 0x57, 0xfa, 0xad, 0xcd, 0x90, 0x04, 0x7b, 0xa4, 0xc1, 0x16, 0x66, 0xe1, 0xe1, - 0x16, 0xa6, 0x32, 0x51, 0xbb, 0x99, 0x20, 0x88, 0x53, 0x4d, 0xd8, 0x9f, 0x95, 0x5d, 0x55, 0x16, - 0x7d, 0x75, 0x35, 0xe7, 0x09, 0x8b, 0x3e, 0x35, 0xab, 0x38, 0xc6, 0xa1, 0x5b, 0x6d, 0xc7, 0x0f, - 0xa3, 0xa4, 0x45, 0xdf, 0x75, 0x3f, 0x8c, 0x30, 0x83, 0xd8, 0x2f, 0x00, 0xac, 0xdc, 0x27, 0x75, - 0xbe, 0x62, 0xf5, 0xc7, 0x83, 0x95, 0xff, 0x78, 0xb0, 0x7f, 0xdb, 0x82, 0x89, 0xd5, 0x65, 0xe3, - 0xe6, 0x5a, 0x00, 0xe0, 0x2f, 0x9e, 0xbb, 0x77, 0xd7, 0xa5, 0x3a, 0x9c, 0x6b, 0x34, 0x55, 0x29, - 0xd6, 0x30, 0xd0, 0x59, 0x28, 0x36, 0x3b, 0x9e, 0x10, 0x1f, 0x0e, 0xd3, 0xeb, 0xf1, 0x66, 0xc7, - 0xc3, 0xb4, 0x4c, 0x73, 0x29, 0x28, 0xf6, 0xed, 0x52, 0xd0, 0xd3, 0xb5, 0x1f, 0xcd, 0xc3, 0xe0, - 0xbd, 0x7b, 0x6e, 0x83, 0x3b, 0x50, 0x0a, 0x55, 0xfd, 0xdd, 0xbb, 0x95, 0x72, 0x88, 0x79, 0xb9, - 0xfd, 0xa5, 0x22, 0xcc, 0xad, 0x36, 0xc9, 0xfd, 0x77, 0xe8, 0x44, 0xda, 0xaf, 0x43, 0xc4, 0xd1, - 0x04, 0x31, 0x47, 0x75, 0x7a, 0xe9, 0x3d, 0x1e, 0x5b, 0x30, 0xcc, 0x0d, 0xda, 0xa4, 0x4b, 0xe9, - 0xab, 0x59, 0xad, 0xe7, 0x0f, 0xc8, 0x02, 0x37, 0x8c, 0x13, 0x1e, 0x71, 0xea, 0xc2, 0x14, 0xa5, - 0x58, 0x12, 0x9f, 0x7b, 0x05, 0xc6, 0x74, 0xcc, 0x23, 0xb9, 0x9f, 0xfd, 0x7f, 0x45, 0x98, 0xa2, - 0x3d, 0x78, 0xa4, 0x13, 0x71, 0x3b, 0x3d, 0x11, 0xc7, 0xed, 0x82, 0xd4, 0x7b, 0x36, 0xde, 0x4c, - 0xce, 0xc6, 0xd5, 0xbc, 0xd9, 0x38, 0xe9, 0x39, 0xf8, 0x4e, 0x0b, 0x66, 0x56, 0x9b, 0x7e, 0x7d, - 0x37, 0xe1, 0x26, 0xf4, 0x12, 0x8c, 0xd2, 0xe3, 0x38, 0x34, 0x3c, 0xd8, 0x8d, 0x98, 0x06, 0x02, - 0x84, 0x75, 0x3c, 0xad, 0xda, 0xed, 0xdb, 0x95, 0x72, 0x56, 0x28, 0x04, 0x01, 0xc2, 0x3a, 0x9e, - 0xfd, 0x9b, 0x16, 0x9c, 0xbb, 0xb6, 0xbc, 0x12, 0x2f, 0xc5, 0x54, 0x34, 0x86, 0x4b, 0x30, 0xd4, - 0x6e, 0x68, 0x5d, 0x89, 0xc5, 0xab, 0x65, 0xd6, 0x0b, 0x01, 0x7d, 0xb7, 0x44, 0x1a, 0xf9, 0x69, - 0x0b, 0x66, 0xae, 0xb9, 0x11, 0xbd, 0x5d, 0x93, 0x71, 0x01, 0xe8, 0xf5, 0x1a, 0xba, 0x91, 0x1f, - 0xec, 0x27, 0xe3, 0x02, 0x60, 0x05, 0xc1, 0x1a, 0x16, 0x6f, 0x79, 0xcf, 0x65, 0xa6, 0xd4, 0x05, - 0x53, 0xd1, 0x84, 0x45, 0x39, 0x56, 0x18, 0xf4, 0xc3, 0x1a, 0x6e, 0xc0, 0x64, 0x74, 0xfb, 0xe2, - 0x84, 0x55, 0x1f, 0x56, 0x96, 0x00, 0x1c, 0xe3, 0xd8, 0x7f, 0x6c, 0xc1, 0xfc, 0xb5, 0x66, 0x27, - 0x8c, 0x48, 0xb0, 0x15, 0xe6, 0x9c, 0x8e, 0x2f, 0x40, 0x89, 0x48, 0x89, 0xb8, 0xe8, 0xb5, 0xe2, - 0x18, 0x95, 0xa8, 0x9c, 0x87, 0x27, 0x50, 0x78, 0x7d, 0x38, 0x1d, 0x1e, 0xcd, 0x6b, 0x6c, 0x15, - 0x10, 0xd1, 0xdb, 0xd2, 0xe3, 0x35, 0x30, 0xc7, 0xef, 0x95, 0x14, 0x14, 0x67, 0xd4, 0xb0, 0x7f, - 0xcc, 0x82, 0xd3, 0xea, 0x83, 0xdf, 0x75, 0x9f, 0x69, 0xff, 0x5c, 0x01, 0xc6, 0xaf, 0x6f, 0x6c, - 0x54, 0xaf, 0x91, 0x48, 0x5c, 0xdb, 0xbd, 0xf5, 0xdc, 0x58, 0x53, 0xd7, 0x75, 0x7b, 0xcc, 0x75, - 0x22, 0xb7, 0xb9, 0xc0, 0xc3, 0xfe, 0x2c, 0x54, 0xbc, 0xe8, 0x56, 0x50, 0x8b, 0x02, 0xd7, 0xdb, - 0xce, 0x54, 0xf0, 0x49, 0xe6, 0xa2, 0x98, 0xc7, 0x5c, 0xa0, 0x17, 0x60, 0x88, 0xc5, 0x1d, 0x92, - 0x93, 0xf0, 0xb8, 0x7a, 0x0b, 0xb1, 0xd2, 0xc3, 0x83, 0xf9, 0xd2, 0x6d, 0x5c, 0xe1, 0x7f, 0xb0, - 0x40, 0x45, 0xb7, 0x61, 0x74, 0x27, 0x8a, 0xda, 0xd7, 0x89, 0xd3, 0x20, 0x81, 0x3c, 0x0e, 0xcf, - 0x67, 0x1d, 0x87, 0x74, 0x10, 0x38, 0x5a, 0x7c, 0x82, 0xc4, 0x65, 0x21, 0xd6, 0xe9, 0xd8, 0x35, - 0x80, 0x18, 0x76, 0x4c, 0x9a, 0x0a, 0xfb, 0x0f, 0x2d, 0x18, 0xe6, 0x21, 0x20, 0x02, 0xf4, 0x51, - 0x18, 0x20, 0xf7, 0x49, 0x5d, 0x70, 0xbc, 0x99, 0x1d, 0x8e, 0x39, 0x2d, 0x2e, 0x71, 0xa5, 0xff, - 0x31, 0xab, 0x85, 0xae, 0xc3, 0x30, 0xed, 0xed, 0x35, 0x15, 0x0f, 0xe3, 0xc9, 0xbc, 0x2f, 0x56, - 0xd3, 0xce, 0x99, 0x33, 0x51, 0x84, 0x65, 0x75, 0xa6, 0x1e, 0xae, 0xb7, 0x6b, 0xf4, 0xc4, 0x8e, - 0xba, 0x31, 0x16, 0x1b, 0xcb, 0x55, 0x8e, 0x24, 0xa8, 0x71, 0xf5, 0xb0, 0x2c, 0xc4, 0x31, 0x11, - 0x7b, 0x03, 0x4a, 0x74, 0x52, 0x17, 0x9b, 0xae, 0xd3, 0x5d, 0xe3, 0xfd, 0x0c, 0x94, 0xa4, 0x3e, - 0x3b, 0x14, 0xae, 0xdf, 0x8c, 0xaa, 0x54, 0x77, 0x87, 0x38, 0x86, 0xdb, 0x5b, 0x70, 0x8a, 0x59, - 0x27, 0x3a, 0xd1, 0x8e, 0xb1, 0xc7, 0x7a, 0x2f, 0xe6, 0x67, 0xc5, 0x03, 0x92, 0xcf, 0xcc, 0xac, - 0xe6, 0x5d, 0x39, 0x26, 0x29, 0xc6, 0x8f, 0x49, 0xfb, 0x6b, 0x03, 0xf0, 0x78, 0xa5, 0x96, 0x1f, - 0x1d, 0xe4, 0x65, 0x18, 0xe3, 0x7c, 0x29, 0x5d, 0xda, 0x4e, 0x53, 0xb4, 0xab, 0x44, 0xad, 0x1b, - 0x1a, 0x0c, 0x1b, 0x98, 0xe8, 0x1c, 0x14, 0xdd, 0xb7, 0xbc, 0xa4, 0xef, 0x51, 0xe5, 0x8d, 0x75, - 0x4c, 0xcb, 0x29, 0x98, 0xb2, 0xb8, 0xfc, 0xee, 0x50, 0x60, 0xc5, 0xe6, 0xbe, 0x06, 0x13, 0x6e, - 0x58, 0x0f, 0xdd, 0x8a, 0x47, 0xcf, 0x19, 0xed, 0xa4, 0x52, 0xc2, 0x0d, 0xda, 0x69, 0x05, 0xc5, - 0x09, 0x6c, 0xed, 0x22, 0x1b, 0xec, 0x9b, 0x4d, 0xee, 0xe9, 0x0b, 0x4d, 0x5f, 0x00, 0x6d, 0xf6, - 0x75, 0x21, 0x93, 0x99, 0x8b, 0x17, 0x00, 0xff, 0xe0, 0x10, 0x4b, 0x18, 0x7d, 0x39, 0xd6, 0x77, - 0x9c, 0xf6, 0x62, 0x27, 0xda, 0x29, 0xbb, 0x61, 0xdd, 0xdf, 0x23, 0xc1, 0x3e, 0x7b, 0xf4, 0x8f, - 0xc4, 0x2f, 0x47, 0x05, 0x58, 0xbe, 0xbe, 0x58, 0xa5, 0x98, 0x38, 0x5d, 0x07, 0x2d, 0xc2, 0xa4, - 0x2c, 0xac, 0x91, 0x90, 0x5d, 0x61, 0xa3, 0x8c, 0x8c, 0xf2, 0x06, 0x12, 0xc5, 0x8a, 0x48, 0x12, - 0xdf, 0xe4, 0xa4, 0xe1, 0x38, 0x38, 0xe9, 0x8f, 0xc0, 0xb8, 0xeb, 0xb9, 0x91, 0xeb, 0x44, 0x3e, - 0x57, 0xf8, 0xf0, 0xf7, 0x3d, 0x93, 0x64, 0x57, 0x74, 0x00, 0x36, 0xf1, 0xec, 0xff, 0x32, 0x00, - 0xd3, 0x6c, 0xda, 0xde, 0x5b, 0x61, 0xdf, 0x4c, 0x2b, 0xec, 0x76, 0x7a, 0x85, 0x1d, 0xc7, 0x13, - 0xe1, 0xa1, 0x97, 0xd9, 0xe7, 0xa0, 0xa4, 0x1c, 0xa0, 0xa4, 0x07, 0xa4, 0x95, 0xe3, 0x01, 0xd9, - 0x9b, 0xfb, 0x90, 0x36, 0x64, 0xc5, 0x4c, 0x1b, 0xb2, 0xbf, 0x6e, 0x41, 0xac, 0xc1, 0x40, 0xd7, - 0xa1, 0xd4, 0xf6, 0x99, 0x69, 0x64, 0x20, 0xed, 0x8d, 0x1f, 0xcf, 0xbc, 0xa8, 0xf8, 0xa5, 0xc8, - 0x3f, 0xbe, 0x2a, 0x6b, 0xe0, 0xb8, 0x32, 0x5a, 0x82, 0xe1, 0x76, 0x40, 0x6a, 0x11, 0x0b, 0x12, - 0xd2, 0x93, 0x0e, 0x5f, 0x23, 0x1c, 0x1f, 0xcb, 0x8a, 0xf6, 0xcf, 0x5b, 0x00, 0xdc, 0x4c, 0xcb, - 0xf1, 0xb6, 0xc9, 0x09, 0x48, 0xad, 0xcb, 0x30, 0x10, 0xb6, 0x49, 0xbd, 0x9b, 0xd1, 0x6a, 0xdc, - 0x9f, 0x5a, 0x9b, 0xd4, 0xe3, 0x01, 0xa7, 0xff, 0x30, 0xab, 0x6d, 0x7f, 0x37, 0xc0, 0x44, 0x8c, - 0x56, 0x89, 0x48, 0x0b, 0x3d, 0x67, 0x04, 0x0d, 0x38, 0x9b, 0x08, 0x1a, 0x50, 0x62, 0xd8, 0x9a, - 0x80, 0xf4, 0x73, 0x50, 0x6c, 0x39, 0xf7, 0x85, 0x04, 0xec, 0x99, 0xee, 0xdd, 0xa0, 0xf4, 0x17, - 0xd6, 0x9c, 0xfb, 0xfc, 0x91, 0xf8, 0x8c, 0x5c, 0x20, 0x6b, 0xce, 0xfd, 0x43, 0x6e, 0x9a, 0xca, - 0x0e, 0xa9, 0x9b, 0x6e, 0x18, 0x7d, 0xe1, 0x3f, 0xc7, 0xff, 0xd9, 0xb2, 0xa3, 0x8d, 0xb0, 0xb6, - 0x5c, 0x4f, 0x58, 0x20, 0xf5, 0xd5, 0x96, 0xeb, 0x25, 0xdb, 0x72, 0xbd, 0x3e, 0xda, 0x72, 0x3d, - 0xf4, 0x36, 0x0c, 0x0b, 0x03, 0x41, 0x11, 0xa4, 0xe7, 0x4a, 0x1f, 0xed, 0x09, 0xfb, 0x42, 0xde, - 0xe6, 0x15, 0xf9, 0x08, 0x16, 0xa5, 0x3d, 0xdb, 0x95, 0x0d, 0xa2, 0xbf, 0x62, 0xc1, 0x84, 0xf8, - 0x8d, 0xc9, 0x5b, 0x1d, 0x12, 0x46, 0x82, 0xf7, 0xfc, 0x70, 0xff, 0x7d, 0x10, 0x15, 0x79, 0x57, - 0x3e, 0x2c, 0x8f, 0x59, 0x13, 0xd8, 0xb3, 0x47, 0x89, 0x5e, 0xa0, 0xbf, 0x67, 0xc1, 0xa9, 0x96, - 0x73, 0x9f, 0xb7, 0xc8, 0xcb, 0xb0, 0x13, 0xb9, 0xbe, 0x50, 0xb4, 0x7f, 0xb4, 0xbf, 0xe9, 0x4f, - 0x55, 0xe7, 0x9d, 0x94, 0xda, 0xc0, 0x53, 0x59, 0x28, 0x3d, 0xbb, 0x9a, 0xd9, 0xaf, 0xb9, 0x2d, - 0x18, 0x91, 0xeb, 0x2d, 0x43, 0xd4, 0x50, 0xd6, 0x19, 0xeb, 0x23, 0xdb, 0x67, 0xea, 0xce, 0xf8, - 0xb4, 0x1d, 0xb1, 0xd6, 0x1e, 0x69, 0x3b, 0x9f, 0x83, 0x31, 0x7d, 0x8d, 0x3d, 0xd2, 0xb6, 0xde, - 0x82, 0x99, 0x8c, 0xb5, 0xf4, 0x48, 0x9b, 0xbc, 0x07, 0x67, 0x73, 0xd7, 0xc7, 0xa3, 0x6c, 0xd8, - 0xfe, 0x39, 0x4b, 0x3f, 0x07, 0x4f, 0x40, 0x75, 0xb0, 0x6c, 0xaa, 0x0e, 0xce, 0x77, 0xdf, 0x39, - 0x39, 0xfa, 0x83, 0x37, 0xf5, 0x4e, 0xd3, 0x53, 0x1d, 0xbd, 0x0e, 0x43, 0x4d, 0x5a, 0x22, 0xcd, - 0x4c, 0xed, 0xde, 0x3b, 0x32, 0xe6, 0xa5, 0x58, 0x79, 0x88, 0x05, 0x05, 0xfb, 0x97, 0x2c, 0x18, - 0x38, 0x81, 0x91, 0xc0, 0xe6, 0x48, 0x3c, 0x97, 0x4b, 0x5a, 0xc4, 0x0f, 0x5e, 0xc0, 0xce, 0xbd, - 0x95, 0xfb, 0x11, 0xf1, 0x42, 0xf6, 0x54, 0xcc, 0x1c, 0x98, 0x9f, 0xb4, 0x60, 0xe6, 0xa6, 0xef, - 0x34, 0x96, 0x9c, 0xa6, 0xe3, 0xd5, 0x49, 0x50, 0xf1, 0xb6, 0x8f, 0x64, 0x23, 0x5d, 0xe8, 0x69, - 0x23, 0xbd, 0x2c, 0x4d, 0x8c, 0x06, 0xf2, 0xe7, 0x8f, 0x32, 0x92, 0xc9, 0x30, 0x2a, 0x86, 0x31, - 0xec, 0x0e, 0x20, 0xbd, 0x97, 0xc2, 0x63, 0x05, 0xc3, 0xb0, 0xcb, 0xfb, 0x2b, 0x26, 0xf1, 0xa9, - 0x6c, 0x06, 0x2f, 0xf5, 0x79, 0x9a, 0x2f, 0x06, 0x2f, 0xc0, 0x92, 0x90, 0xfd, 0x32, 0x64, 0xba, - 0xbd, 0xf7, 0x16, 0x3e, 0xd8, 0x9f, 0x84, 0x69, 0x56, 0xf3, 0x88, 0x0f, 0x63, 0x3b, 0x21, 0xdb, - 0xcc, 0x08, 0x88, 0x67, 0x7f, 0xd1, 0x82, 0xc9, 0xf5, 0x44, 0x9c, 0xb0, 0x4b, 0x4c, 0x1b, 0x9a, - 0x21, 0x52, 0xaf, 0xb1, 0x52, 0x2c, 0xa0, 0xc7, 0x2e, 0xc9, 0xfa, 0x0b, 0x0b, 0xe2, 0x48, 0x14, - 0x27, 0xc0, 0xbe, 0x2d, 0x1b, 0xec, 0x5b, 0xa6, 0x84, 0x45, 0x75, 0x27, 0x8f, 0x7b, 0x43, 0x37, - 0x54, 0x8c, 0xa6, 0x2e, 0xc2, 0x95, 0x98, 0x0c, 0x5f, 0x8a, 0x13, 0x66, 0x20, 0x27, 0x19, 0xb5, - 0xc9, 0xfe, 0x9d, 0x02, 0x20, 0x85, 0xdb, 0x77, 0x0c, 0xa9, 0x74, 0x8d, 0xe3, 0x89, 0x21, 0xb5, - 0x07, 0x88, 0xe9, 0xf3, 0x03, 0xc7, 0x0b, 0x39, 0x59, 0x57, 0xc8, 0xee, 0x8e, 0x66, 0x2c, 0x30, - 0x27, 0x9a, 0x44, 0x37, 0x53, 0xd4, 0x70, 0x46, 0x0b, 0x9a, 0x9d, 0xc6, 0x60, 0xbf, 0x76, 0x1a, - 0x43, 0x3d, 0xbc, 0xd2, 0x7e, 0xd6, 0x82, 0x71, 0x35, 0x4c, 0xef, 0x12, 0x9b, 0x71, 0xd5, 0x9f, - 0x9c, 0x03, 0xb4, 0xaa, 0x75, 0x99, 0x5d, 0x2c, 0xdf, 0xca, 0xbc, 0x0b, 0x9d, 0xa6, 0xfb, 0x36, - 0x51, 0x11, 0xfc, 0xe6, 0x85, 0xb7, 0xa0, 0x28, 0x3d, 0x3c, 0x98, 0x1f, 0x57, 0xff, 0x78, 0xc4, - 0xe0, 0xb8, 0x0a, 0x3d, 0x92, 0x27, 0x13, 0x4b, 0x11, 0xbd, 0x04, 0x83, 0xed, 0x1d, 0x27, 0x24, - 0x09, 0xdf, 0x9a, 0xc1, 0x2a, 0x2d, 0x3c, 0x3c, 0x98, 0x9f, 0x50, 0x15, 0x58, 0x09, 0xe6, 0xd8, - 0xfd, 0x47, 0xe6, 0x4a, 0x2f, 0xce, 0x9e, 0x91, 0xb9, 0xfe, 0xd4, 0x82, 0x81, 0x75, 0xbf, 0x71, - 0x12, 0x47, 0xc0, 0x6b, 0xc6, 0x11, 0xf0, 0x44, 0x5e, 0x30, 0xf7, 0xdc, 0xdd, 0xbf, 0x9a, 0xd8, - 0xfd, 0xe7, 0x73, 0x29, 0x74, 0xdf, 0xf8, 0x2d, 0x18, 0x65, 0x21, 0xe2, 0x85, 0x1f, 0xd1, 0x0b, - 0xc6, 0x86, 0x9f, 0x4f, 0x6c, 0xf8, 0x49, 0x0d, 0x55, 0xdb, 0xe9, 0x4f, 0xc3, 0xb0, 0x70, 0x4c, - 0x49, 0x3a, 0x69, 0x0a, 0x5c, 0x2c, 0xe1, 0xf6, 0x8f, 0x17, 0xc1, 0x08, 0x49, 0x8f, 0x7e, 0xc5, - 0x82, 0x85, 0x80, 0x1b, 0xac, 0x36, 0xca, 0x9d, 0xc0, 0xf5, 0xb6, 0x6b, 0xf5, 0x1d, 0xd2, 0xe8, - 0x34, 0x5d, 0x6f, 0xbb, 0xb2, 0xed, 0xf9, 0xaa, 0x78, 0xe5, 0x3e, 0xa9, 0x77, 0x98, 0x12, 0xac, - 0x47, 0xfc, 0x7b, 0x65, 0xf8, 0xfd, 0xfc, 0x83, 0x83, 0xf9, 0x05, 0x7c, 0x24, 0xda, 0xf8, 0x88, - 0x7d, 0x41, 0xbf, 0x69, 0xc1, 0x15, 0x1e, 0xa9, 0xbd, 0xff, 0xfe, 0x77, 0x79, 0x2d, 0x57, 0x25, - 0xa9, 0x98, 0xc8, 0x06, 0x09, 0x5a, 0x4b, 0x1f, 0x11, 0x03, 0x7a, 0xa5, 0x7a, 0xb4, 0xb6, 0xf0, - 0x51, 0x3b, 0x67, 0xff, 0xb3, 0x22, 0x8c, 0x8b, 0x08, 0x4e, 0xe2, 0x0e, 0x78, 0xc9, 0x58, 0x12, - 0x4f, 0x26, 0x96, 0xc4, 0xb4, 0x81, 0x7c, 0x3c, 0xc7, 0x7f, 0x08, 0xd3, 0xf4, 0x70, 0xbe, 0x4e, - 0x9c, 0x20, 0xda, 0x24, 0x0e, 0x37, 0xbf, 0x2a, 0x1e, 0xf9, 0xf4, 0x57, 0xe2, 0xb9, 0x9b, 0x49, - 0x62, 0x38, 0x4d, 0xff, 0x9b, 0xe9, 0xce, 0xf1, 0x60, 0x2a, 0x15, 0x84, 0xeb, 0x53, 0x50, 0x52, - 0x5e, 0x15, 0xe2, 0xd0, 0xe9, 0x1e, 0xcb, 0x2e, 0x49, 0x81, 0x8b, 0xd0, 0x62, 0x8f, 0x9e, 0x98, - 0x9c, 0xfd, 0x0f, 0x0a, 0x46, 0x83, 0x7c, 0x12, 0xd7, 0x61, 0xc4, 0x09, 0x43, 0x77, 0xdb, 0x23, - 0x0d, 0xb1, 0x63, 0xdf, 0x9f, 0xb7, 0x63, 0x8d, 0x66, 0x98, 0x67, 0xcb, 0xa2, 0xa8, 0x89, 0x15, - 0x0d, 0x74, 0x9d, 0x1b, 0xb9, 0xed, 0xc9, 0xf7, 0x5e, 0x7f, 0xd4, 0x40, 0x9a, 0xc1, 0xed, 0x11, - 0x2c, 0xea, 0xa3, 0x4f, 0x73, 0x2b, 0xc4, 0x1b, 0x9e, 0x7f, 0xcf, 0xbb, 0xe6, 0xfb, 0x32, 0x4a, - 0x42, 0x7f, 0x04, 0xa7, 0xa5, 0xed, 0xa1, 0xaa, 0x8e, 0x4d, 0x6a, 0xfd, 0x45, 0xb5, 0xfc, 0x3c, - 0xcc, 0x50, 0xd2, 0xa6, 0x13, 0x73, 0x88, 0x08, 0x4c, 0x8a, 0xf0, 0x60, 0xb2, 0x4c, 0x8c, 0x5d, - 0xe6, 0x53, 0xce, 0xac, 0x1d, 0xcb, 0x91, 0x6f, 0x98, 0x24, 0x70, 0x92, 0xa6, 0xfd, 0x53, 0x16, - 0x30, 0x87, 0xce, 0x13, 0xe0, 0x47, 0x3e, 0x66, 0xf2, 0x23, 0xb3, 0x79, 0x83, 0x9c, 0xc3, 0x8a, - 0xbc, 0xc8, 0x57, 0x56, 0x35, 0xf0, 0xef, 0xef, 0x0b, 0xd3, 0x91, 0xde, 0xef, 0x0f, 0xfb, 0x7f, - 0x5b, 0xfc, 0x10, 0x53, 0x3e, 0x0f, 0xe8, 0xdb, 0x61, 0xa4, 0xee, 0xb4, 0x9d, 0x3a, 0xcf, 0x9f, - 0x92, 0x2b, 0xd1, 0x33, 0x2a, 0x2d, 0x2c, 0x8b, 0x1a, 0x5c, 0x42, 0x25, 0xc3, 0xcc, 0x8d, 0xc8, - 0xe2, 0x9e, 0x52, 0x29, 0xd5, 0xe4, 0xdc, 0x2e, 0x8c, 0x1b, 0xc4, 0x1e, 0xa9, 0x38, 0xe3, 0xdb, - 0xf9, 0x15, 0xab, 0xc2, 0x22, 0xb6, 0x60, 0xda, 0xd3, 0xfe, 0xd3, 0x0b, 0x45, 0x3e, 0x2e, 0xdf, - 0xdf, 0xeb, 0x12, 0x65, 0xb7, 0x8f, 0xe6, 0x2b, 0x9a, 0x20, 0x83, 0xd3, 0x94, 0xed, 0x9f, 0xb0, - 0xe0, 0x31, 0x1d, 0x51, 0x73, 0x47, 0xe9, 0xa5, 0x23, 0x28, 0xc3, 0x88, 0xdf, 0x26, 0x81, 0x13, - 0xf9, 0x81, 0xb8, 0x35, 0x2e, 0xcb, 0x41, 0xbf, 0x25, 0xca, 0x0f, 0x45, 0xf4, 0x71, 0x49, 0x5d, - 0x96, 0x63, 0x55, 0x93, 0xbe, 0x3e, 0xd9, 0x60, 0x84, 0xc2, 0xf1, 0x88, 0x9d, 0x01, 0x4c, 0x5d, - 0x1e, 0x62, 0x01, 0xb1, 0xbf, 0x66, 0xf1, 0x85, 0xa5, 0x77, 0x1d, 0xbd, 0x05, 0x53, 0x2d, 0x27, - 0xaa, 0xef, 0xac, 0xdc, 0x6f, 0x07, 0x5c, 0xe3, 0x22, 0xc7, 0xe9, 0x99, 0x5e, 0xe3, 0xa4, 0x7d, - 0x64, 0x6c, 0x58, 0xb9, 0x96, 0x20, 0x86, 0x53, 0xe4, 0xd1, 0x26, 0x8c, 0xb2, 0x32, 0xe6, 0x53, - 0x17, 0x76, 0x63, 0x0d, 0xf2, 0x5a, 0x53, 0x16, 0x07, 0x6b, 0x31, 0x1d, 0xac, 0x13, 0xb5, 0x7f, - 0xa6, 0xc8, 0x77, 0x3b, 0x63, 0xe5, 0x9f, 0x86, 0xe1, 0xb6, 0xdf, 0x58, 0xae, 0x94, 0xb1, 0x98, - 0x05, 0x75, 0x8d, 0x54, 0x79, 0x31, 0x96, 0x70, 0x74, 0x19, 0x46, 0xc4, 0x4f, 0xa9, 0x21, 0x63, - 0x67, 0xb3, 0xc0, 0x0b, 0xb1, 0x82, 0xa2, 0xe7, 0x01, 0xda, 0x81, 0xbf, 0xe7, 0x36, 0x58, 0xac, - 0x87, 0xa2, 0x69, 0x2c, 0x54, 0x55, 0x10, 0xac, 0x61, 0xa1, 0x57, 0x61, 0xbc, 0xe3, 0x85, 0x9c, - 0x1d, 0xd1, 0x22, 0xbb, 0x2a, 0x33, 0x96, 0xdb, 0x3a, 0x10, 0x9b, 0xb8, 0x68, 0x11, 0x86, 0x22, - 0x87, 0x19, 0xbf, 0x0c, 0xe6, 0x1b, 0xdf, 0x6e, 0x50, 0x0c, 0x3d, 0x55, 0x07, 0xad, 0x80, 0x45, - 0x45, 0xf4, 0x29, 0xe9, 0xde, 0xca, 0x0f, 0x76, 0x61, 0xf5, 0xde, 0xdf, 0x25, 0xa0, 0x39, 0xb7, - 0x0a, 0x6b, 0x7a, 0x83, 0x16, 0x7a, 0x05, 0x80, 0xdc, 0x8f, 0x48, 0xe0, 0x39, 0x4d, 0x65, 0x5b, - 0xa6, 0xf8, 0x82, 0xb2, 0xbf, 0xee, 0x47, 0xb7, 0x43, 0xb2, 0xa2, 0x30, 0xb0, 0x86, 0x6d, 0xff, - 0x66, 0x09, 0x20, 0xe6, 0xdb, 0xd1, 0xdb, 0xa9, 0x83, 0xeb, 0xd9, 0xee, 0x9c, 0xfe, 0xf1, 0x9d, - 0x5a, 0xe8, 0x7b, 0x2c, 0x18, 0x75, 0x9a, 0x4d, 0xbf, 0xee, 0xf0, 0xd8, 0xbb, 0x85, 0xee, 0x07, - 0xa7, 0x68, 0x7f, 0x31, 0xae, 0xc1, 0xbb, 0xf0, 0x82, 0x5c, 0xa1, 0x1a, 0xa4, 0x67, 0x2f, 0xf4, - 0x86, 0xd1, 0x87, 0xe4, 0x53, 0xb1, 0x68, 0x0c, 0xa5, 0x7a, 0x2a, 0x96, 0xd8, 0x1d, 0xa1, 0xbf, - 0x12, 0x6f, 0x1b, 0xaf, 0xc4, 0x81, 0x7c, 0xff, 0x3d, 0x83, 0x7d, 0xed, 0xf5, 0x40, 0x44, 0x55, - 0xdd, 0x97, 0x7f, 0x30, 0xdf, 0x59, 0x4e, 0x7b, 0x27, 0xf5, 0xf0, 0xe3, 0xff, 0x1c, 0x4c, 0x36, - 0x4c, 0x26, 0x40, 0xac, 0xc4, 0xa7, 0xf2, 0xe8, 0x26, 0x78, 0x86, 0xf8, 0xda, 0x4f, 0x00, 0x70, - 0x92, 0x30, 0xaa, 0xf2, 0xd0, 0x0e, 0x15, 0x6f, 0xcb, 0x17, 0x9e, 0x17, 0x76, 0xee, 0x5c, 0xee, - 0x87, 0x11, 0x69, 0x51, 0xcc, 0xf8, 0x76, 0x5f, 0x17, 0x75, 0xb1, 0xa2, 0x82, 0x5e, 0x87, 0x21, - 0xe6, 0x2d, 0x15, 0xce, 0x8e, 0xe4, 0x4b, 0x9c, 0xcd, 0x58, 0x65, 0xf1, 0x86, 0x64, 0x7f, 0x43, - 0x2c, 0x28, 0xa0, 0xeb, 0xd2, 0x17, 0x31, 0xac, 0x78, 0xb7, 0x43, 0xc2, 0x7c, 0x11, 0x4b, 0x4b, - 0xef, 0x8f, 0xdd, 0x0c, 0x79, 0x79, 0x66, 0x42, 0x2f, 0xa3, 0x26, 0xe5, 0xa2, 0xc4, 0x7f, 0x99, - 0x27, 0x6c, 0x16, 0xf2, 0xbb, 0x67, 0xe6, 0x12, 0x8b, 0x87, 0xf3, 0x8e, 0x49, 0x02, 0x27, 0x69, - 0x52, 0x8e, 0x94, 0xef, 0x7a, 0xe1, 0xbb, 0xd1, 0xeb, 0xec, 0xe0, 0x0f, 0x71, 0x76, 0x1b, 0xf1, - 0x12, 0x2c, 0xea, 0x9f, 0x28, 0x7b, 0x30, 0xe7, 0xc1, 0x54, 0x72, 0x8b, 0x3e, 0x52, 0x76, 0xe4, - 0x0f, 0x07, 0x60, 0xc2, 0x5c, 0x52, 0xe8, 0x0a, 0x94, 0x04, 0x11, 0x15, 0xdb, 0x5f, 0xed, 0x92, - 0x35, 0x09, 0xc0, 0x31, 0x0e, 0x4b, 0xe9, 0xc0, 0xaa, 0x6b, 0xc6, 0xba, 0x71, 0x4a, 0x07, 0x05, - 0xc1, 0x1a, 0x16, 0x7d, 0x58, 0x6d, 0xfa, 0x7e, 0xa4, 0x2e, 0x24, 0xb5, 0xee, 0x96, 0x58, 0x29, - 0x16, 0x50, 0x7a, 0x11, 0xed, 0x92, 0xc0, 0x23, 0x4d, 0x33, 0x0a, 0xb0, 0xba, 0x88, 0x6e, 0xe8, - 0x40, 0x6c, 0xe2, 0xd2, 0xeb, 0xd4, 0x0f, 0xd9, 0x42, 0x16, 0xcf, 0xb7, 0xd8, 0xf8, 0xb9, 0xc6, - 0xdd, 0xa1, 0x25, 0x1c, 0x7d, 0x12, 0x1e, 0x53, 0x91, 0x8e, 0x30, 0xd7, 0x66, 0xc8, 0x16, 0x87, - 0x0c, 0x69, 0xcb, 0x63, 0xcb, 0xd9, 0x68, 0x38, 0xaf, 0x3e, 0x7a, 0x0d, 0x26, 0x04, 0x8b, 0x2f, - 0x29, 0x0e, 0x9b, 0x06, 0x36, 0x37, 0x0c, 0x28, 0x4e, 0x60, 0xcb, 0x38, 0xc6, 0x8c, 0xcb, 0x96, - 0x14, 0x46, 0xd2, 0x71, 0x8c, 0x75, 0x38, 0x4e, 0xd5, 0x40, 0x8b, 0x30, 0xc9, 0x79, 0x30, 0xd7, - 0xdb, 0xe6, 0x73, 0x22, 0x5c, 0xab, 0xd4, 0x96, 0xba, 0x65, 0x82, 0x71, 0x12, 0x1f, 0xbd, 0x0c, - 0x63, 0x4e, 0x50, 0xdf, 0x71, 0x23, 0x52, 0x8f, 0x3a, 0x01, 0xf7, 0xb9, 0xd2, 0x2c, 0x94, 0x16, - 0x35, 0x18, 0x36, 0x30, 0xed, 0xb7, 0x61, 0x26, 0x23, 0x4e, 0x02, 0x5d, 0x38, 0x4e, 0xdb, 0x95, - 0xdf, 0x94, 0x30, 0x63, 0x5e, 0xac, 0x56, 0xe4, 0xd7, 0x68, 0x58, 0x74, 0x75, 0xb2, 0x78, 0x0a, - 0x5a, 0x5a, 0x40, 0xb5, 0x3a, 0x57, 0x25, 0x00, 0xc7, 0x38, 0xf6, 0x7f, 0x2f, 0xc0, 0x64, 0x86, - 0x6e, 0x85, 0xa5, 0xa6, 0x4b, 0x3c, 0x52, 0xe2, 0x4c, 0x74, 0x66, 0x58, 0xec, 0xc2, 0x11, 0xc2, - 0x62, 0x17, 0x7b, 0x85, 0xc5, 0x1e, 0x78, 0x27, 0x61, 0xb1, 0xcd, 0x11, 0x1b, 0xec, 0x6b, 0xc4, - 0x32, 0x42, 0x69, 0x0f, 0x1d, 0x31, 0x94, 0xb6, 0x31, 0xe8, 0xc3, 0x7d, 0x0c, 0xfa, 0x0f, 0x17, - 0x60, 0x2a, 0x69, 0x49, 0x79, 0x02, 0x72, 0xdb, 0xd7, 0x0d, 0xb9, 0xed, 0xe5, 0x7e, 0x5c, 0x61, - 0x73, 0x65, 0xb8, 0x38, 0x21, 0xc3, 0xfd, 0x60, 0x5f, 0xd4, 0xba, 0xcb, 0x73, 0xff, 0x66, 0x01, - 0x4e, 0x67, 0xfa, 0xe2, 0x9e, 0xc0, 0xd8, 0xdc, 0x32, 0xc6, 0xe6, 0xb9, 0xbe, 0xdd, 0x84, 0x73, - 0x07, 0xe8, 0x6e, 0x62, 0x80, 0xae, 0xf4, 0x4f, 0xb2, 0xfb, 0x28, 0x7d, 0xb5, 0x08, 0xe7, 0x33, - 0xeb, 0xc5, 0x62, 0xcf, 0x55, 0x43, 0xec, 0xf9, 0x7c, 0x42, 0xec, 0x69, 0x77, 0xaf, 0x7d, 0x3c, - 0x72, 0x50, 0xe1, 0x2e, 0xcb, 0x9c, 0xfe, 0x1f, 0x52, 0x06, 0x6a, 0xb8, 0xcb, 0x2a, 0x42, 0xd8, - 0xa4, 0xfb, 0xcd, 0x24, 0xfb, 0xfc, 0x37, 0x16, 0x9c, 0xcd, 0x9c, 0x9b, 0x13, 0x90, 0x75, 0xad, - 0x9b, 0xb2, 0xae, 0xa7, 0xfb, 0x5e, 0xad, 0x39, 0xc2, 0xaf, 0x5f, 0x1f, 0xc8, 0xf9, 0x16, 0xf6, + 0x5d, 0xa8, 0x54, 0xc5, 0xb5, 0xa4, 0x04, 0x45, 0xd7, 0x59, 0x29, 0x16, 0x50, 0xfb, 0xff, 0x2b, + 0x68, 0xa3, 0x4c, 0xdf, 0xc3, 0x04, 0x55, 0x61, 0xf8, 0x9e, 0xe3, 0x46, 0xae, 0xb7, 0x2d, 0xf8, + 0x8f, 0xa7, 0xbb, 0xde, 0x51, 0xac, 0xd2, 0x5d, 0x5e, 0x81, 0xdf, 0xa2, 0xe2, 0x0f, 0x96, 0x64, + 0x28, 0xc5, 0xa0, 0xe3, 0x79, 0x94, 0x62, 0xa1, 0x5f, 0x8a, 0x98, 0x57, 0xe0, 0x14, 0xc5, 0x1f, + 0x2c, 0xc9, 0xa0, 0x37, 0x01, 0xe4, 0x0e, 0x23, 0x0d, 0x61, 0x7b, 0xf1, 0x6c, 0x6f, 0xa2, 0x1b, + 0xaa, 0xce, 0xd2, 0x04, 0xbd, 0xa3, 0xe3, 0xff, 0x58, 0xa3, 0x67, 0x47, 0x8c, 0x4f, 0x4b, 0x77, + 0x06, 0x7d, 0x07, 0x5d, 0xe2, 0x4e, 0x10, 0x91, 0xc6, 0x62, 0x24, 0x06, 0xe7, 0x83, 0xfd, 0x3d, + 0x52, 0x36, 0xdc, 0x16, 0xd1, 0xb7, 0x83, 0x20, 0x82, 0x63, 0x7a, 0xf6, 0x2f, 0x15, 0x61, 0x36, + 0xaf, 0xbb, 0x74, 0xd1, 0x91, 0xfb, 0x6e, 0xb4, 0x4c, 0xd9, 0x2b, 0xcb, 0x5c, 0x74, 0x2b, 0xa2, + 0x1c, 0x2b, 0x0c, 0x3a, 0xfb, 0xa1, 0xbb, 0x2d, 0xdf, 0x98, 0x83, 0xf1, 0xec, 0xd7, 0x58, 0x29, + 0x16, 0x50, 0x8a, 0x17, 0x10, 0x27, 0x14, 0xc6, 0x3d, 0xda, 0x2a, 0xc1, 0xac, 0x14, 0x0b, 0xa8, + 0x2e, 0xed, 0x1a, 0xe8, 0x21, 0xed, 0x32, 0x86, 0x68, 0xf0, 0x78, 0x87, 0x08, 0x7d, 0x06, 0x60, + 0xcb, 0xf5, 0xdc, 0x70, 0x87, 0x51, 0x1f, 0x3a, 0x32, 0x75, 0xc5, 0x9c, 0xad, 0x2a, 0x2a, 0x58, + 0xa3, 0x88, 0x5e, 0x82, 0x51, 0xb5, 0x01, 0x2b, 0x65, 0xa6, 0xe9, 0xd4, 0x2c, 0x47, 0xe2, 0xd3, + 0xa8, 0x8c, 0x75, 0x3c, 0xfb, 0x73, 0xc9, 0xf5, 0x22, 0x76, 0x80, 0x36, 0xbe, 0x56, 0xbf, 0xe3, + 0x5b, 0xe8, 0x3e, 0xbe, 0xf6, 0xd7, 0x8b, 0x30, 0x69, 0x34, 0xd6, 0x09, 0xfb, 0x38, 0xb3, 0xae, + 0xd1, 0x03, 0xdc, 0x89, 0x88, 0xd8, 0x7f, 0x76, 0xef, 0xad, 0xa2, 0x1f, 0xf2, 0x74, 0x07, 0xf0, + 0xfa, 0xe8, 0x33, 0x50, 0x6a, 0x3a, 0x21, 0x93, 0x9c, 0x11, 0xb1, 0xef, 0xfa, 0x21, 0x16, 0x3f, + 0x4c, 0x9c, 0x30, 0xd2, 0x6e, 0x4d, 0x4e, 0x3b, 0x26, 0x49, 0x6f, 0x1a, 0xca, 0x9f, 0x48, 0xeb, + 0x31, 0xd5, 0x09, 0xca, 0xc4, 0xec, 0x63, 0x0e, 0x43, 0x2f, 0xc3, 0x58, 0x40, 0xd8, 0xaa, 0x58, + 0xa6, 0xdc, 0x1c, 0x5b, 0x66, 0x83, 0x31, 0xdb, 0x87, 0x35, 0x18, 0x36, 0x30, 0xe3, 0xb7, 0xc1, + 0x50, 0x97, 0xb7, 0xc1, 0xd3, 0x30, 0xcc, 0x7e, 0xa8, 0x15, 0xa0, 0x66, 0xa3, 0xc2, 0x8b, 0xb1, + 0x84, 0x27, 0x17, 0xcc, 0x48, 0x7f, 0x0b, 0x86, 0xbe, 0x3e, 0xc4, 0xa2, 0x66, 0x5a, 0xe6, 0x11, + 0x7e, 0xca, 0x89, 0x25, 0x8f, 0x25, 0xcc, 0xfe, 0x20, 0x4c, 0x94, 0x1d, 0xd2, 0xf2, 0xbd, 0x15, + 0xaf, 0xd1, 0xf6, 0x5d, 0x2f, 0x42, 0xb3, 0x30, 0xc0, 0x2e, 0x11, 0x7e, 0x04, 0x0c, 0xd0, 0x86, + 0x30, 0x2b, 0xb1, 0xb7, 0xe1, 0x74, 0xd9, 0xbf, 0xe7, 0xdd, 0x73, 0x82, 0xc6, 0x62, 0xb5, 0xa2, + 0xbd, 0xaf, 0xd7, 0xe5, 0xfb, 0x8e, 0x1b, 0x6d, 0x65, 0x1e, 0xbd, 0x5a, 0x4d, 0xce, 0xd6, 0xae, + 0xba, 0x4d, 0x92, 0x23, 0x05, 0xf9, 0xcb, 0x05, 0xa3, 0xa5, 0x18, 0x5f, 0x69, 0xb5, 0xac, 0x5c, + 0xad, 0xd6, 0x1b, 0x30, 0xb2, 0xe5, 0x92, 0x66, 0x03, 0x93, 0x2d, 0xb1, 0x12, 0x9f, 0xca, 0xb7, + 0x43, 0x59, 0xa5, 0x98, 0x52, 0xea, 0xc5, 0x5f, 0x87, 0xab, 0xa2, 0x32, 0x56, 0x64, 0xd0, 0x2e, + 0x4c, 0xc9, 0x07, 0x83, 0x84, 0x8a, 0x75, 0xf9, 0x74, 0xb7, 0x57, 0x88, 0x49, 0xfc, 0xd4, 0x83, + 0x83, 0xf9, 0x29, 0x9c, 0x20, 0x83, 0x53, 0x84, 0xe9, 0x73, 0xb0, 0x45, 0x4f, 0xe0, 0x01, 0x36, + 0xfc, 0xec, 0x39, 0xc8, 0x5e, 0xb6, 0xac, 0xd4, 0xfe, 0x09, 0x0b, 0x1e, 0x4b, 0x8d, 0x8c, 0x78, + 0xe1, 0x1f, 0xf3, 0x2c, 0x24, 0x5f, 0xdc, 0x85, 0xde, 0x2f, 0x6e, 0xfb, 0x6f, 0x59, 0x70, 0x6a, + 0xa5, 0xd5, 0x8e, 0xf6, 0xcb, 0xae, 0xa9, 0x82, 0xfa, 0x08, 0x0c, 0xb5, 0x48, 0xc3, 0xed, 0xb4, + 0xc4, 0xcc, 0xcd, 0xcb, 0x53, 0x6a, 0x8d, 0x95, 0x1e, 0x1e, 0xcc, 0x8f, 0xd7, 0x22, 0x3f, 0x70, + 0xb6, 0x09, 0x2f, 0xc0, 0x02, 0x9d, 0x9d, 0xf5, 0xee, 0xdb, 0xe4, 0xa6, 0xdb, 0x72, 0xa5, 0x5d, + 0x51, 0x57, 0x99, 0xdd, 0x82, 0x1c, 0xd0, 0x85, 0x37, 0x3a, 0x8e, 0x17, 0xb9, 0xd1, 0xbe, 0xd0, + 0x1e, 0x49, 0x22, 0x38, 0xa6, 0x67, 0x7f, 0xcd, 0x82, 0x49, 0xb9, 0xee, 0x17, 0x1b, 0x8d, 0x80, + 0x84, 0x21, 0x9a, 0x83, 0x82, 0xdb, 0x16, 0xbd, 0x04, 0xd1, 0xcb, 0x42, 0xa5, 0x8a, 0x0b, 0x6e, + 0x5b, 0xb2, 0x65, 0xec, 0x20, 0x2c, 0x9a, 0x8a, 0xb4, 0xeb, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x19, + 0x46, 0x3c, 0xbf, 0xc1, 0x6d, 0xbb, 0xf8, 0x95, 0xc6, 0x16, 0xd8, 0xba, 0x28, 0xc3, 0x0a, 0x8a, + 0xaa, 0x50, 0xe2, 0x66, 0x4f, 0xf1, 0xa2, 0xed, 0xcb, 0x78, 0x8a, 0x7d, 0xd9, 0x86, 0xac, 0x89, + 0x63, 0x22, 0xf6, 0xaf, 0x59, 0x30, 0x26, 0xbf, 0xac, 0x4f, 0x9e, 0x93, 0x6e, 0xad, 0x98, 0xdf, + 0x8c, 0xb7, 0x16, 0xe5, 0x19, 0x19, 0xc4, 0x60, 0x15, 0x8b, 0x47, 0x62, 0x15, 0xaf, 0xc2, 0xa8, + 0xd3, 0x6e, 0x57, 0x4d, 0x3e, 0x93, 0x2d, 0xa5, 0xc5, 0xb8, 0x18, 0xeb, 0x38, 0xf6, 0x8f, 0x17, + 0x60, 0x42, 0x7e, 0x41, 0xad, 0xb3, 0x19, 0x92, 0x08, 0x6d, 0x40, 0xc9, 0xe1, 0xb3, 0x44, 0xe4, + 0x22, 0xbf, 0x98, 0x2d, 0x47, 0x30, 0xa6, 0x34, 0xbe, 0xf0, 0x17, 0x65, 0x6d, 0x1c, 0x13, 0x42, + 0x4d, 0x98, 0xf6, 0xfc, 0x88, 0x1d, 0xfe, 0x0a, 0xde, 0x4d, 0xb5, 0x93, 0xa4, 0x7e, 0x56, 0x50, + 0x9f, 0x5e, 0x4f, 0x52, 0xc1, 0x69, 0xc2, 0x68, 0x45, 0xca, 0x66, 0x8a, 0xf9, 0xc2, 0x00, 0x7d, + 0xe2, 0xb2, 0x45, 0x33, 0xf6, 0xaf, 0x5a, 0x50, 0x92, 0x68, 0x27, 0xa1, 0xc5, 0x5b, 0x83, 0xe1, + 0x90, 0x4d, 0x82, 0x1c, 0x1a, 0xbb, 0x5b, 0xc7, 0xf9, 0x7c, 0xc5, 0x77, 0x1a, 0xff, 0x1f, 0x62, + 0x49, 0x83, 0x89, 0xe6, 0x55, 0xf7, 0xdf, 0x25, 0xa2, 0x79, 0xd5, 0x9f, 0x9c, 0x4b, 0xe9, 0x8f, + 0x58, 0x9f, 0x35, 0x59, 0x17, 0x65, 0xbd, 0xda, 0x01, 0xd9, 0x72, 0xef, 0x27, 0x59, 0xaf, 0x2a, + 0x2b, 0xc5, 0x02, 0x8a, 0xde, 0x84, 0xb1, 0xba, 0x94, 0xc9, 0xc6, 0x3b, 0xfc, 0x52, 0x57, 0xfd, + 0x80, 0x52, 0x25, 0x71, 0x59, 0xc8, 0xb2, 0x56, 0x1f, 0x1b, 0xd4, 0x4c, 0x33, 0x82, 0x62, 0x2f, + 0x33, 0x82, 0x98, 0x6e, 0xbe, 0x52, 0xfd, 0x27, 0x2d, 0x18, 0xe2, 0xb2, 0xb8, 0xfe, 0x44, 0xa1, + 0x9a, 0x66, 0x2d, 0x1e, 0xbb, 0x3b, 0xb4, 0x50, 0x68, 0xca, 0xd0, 0x1a, 0x94, 0xd8, 0x0f, 0x26, + 0x4b, 0x2c, 0xe6, 0x5b, 0xdd, 0xf3, 0x56, 0xf5, 0x0e, 0xde, 0x91, 0xd5, 0x70, 0x4c, 0xc1, 0xfe, + 0xd1, 0x22, 0x3d, 0xdd, 0x62, 0x54, 0xe3, 0xd2, 0xb7, 0x1e, 0xdd, 0xa5, 0x5f, 0x78, 0x54, 0x97, + 0xfe, 0x36, 0x4c, 0xd6, 0x35, 0x3d, 0x5c, 0x3c, 0x93, 0x97, 0xbb, 0x2e, 0x12, 0x4d, 0x65, 0xc7, + 0xa5, 0x2c, 0xcb, 0x26, 0x11, 0x9c, 0xa4, 0x8a, 0xbe, 0x03, 0xc6, 0xf8, 0x3c, 0x8b, 0x56, 0xb8, + 0x25, 0xc6, 0x07, 0xf2, 0xd7, 0x8b, 0xde, 0x04, 0x97, 0xca, 0x69, 0xd5, 0xb1, 0x41, 0xcc, 0xfe, + 0x53, 0x0b, 0xd0, 0x4a, 0x7b, 0x87, 0xb4, 0x48, 0xe0, 0x34, 0x63, 0x71, 0xfa, 0x0f, 0x5a, 0x30, + 0x4b, 0x52, 0xc5, 0xcb, 0x7e, 0xab, 0x25, 0x1e, 0x2d, 0x39, 0xef, 0xea, 0x95, 0x9c, 0x3a, 0xca, + 0x2d, 0x61, 0x36, 0x0f, 0x03, 0xe7, 0xb6, 0x87, 0xd6, 0x60, 0x86, 0xdf, 0x92, 0x0a, 0xa0, 0xd9, + 0x5e, 0x3f, 0x2e, 0x08, 0xcf, 0x6c, 0xa4, 0x51, 0x70, 0x56, 0x3d, 0xfb, 0x7b, 0xc6, 0x20, 0xb7, + 0x17, 0xef, 0xe9, 0x11, 0xde, 0xd3, 0x23, 0xbc, 0xa7, 0x47, 0x78, 0x4f, 0x8f, 0xf0, 0x9e, 0x1e, + 0xe1, 0x5b, 0x5e, 0x8f, 0xf0, 0xff, 0x5b, 0x70, 0x5a, 0x5d, 0x03, 0xc6, 0xc3, 0xf7, 0xf3, 0x30, + 0xc3, 0xb7, 0xdb, 0x72, 0xd3, 0x71, 0x5b, 0x1b, 0xa4, 0xd5, 0x6e, 0x3a, 0x91, 0xd4, 0xba, 0x5f, + 0xcd, 0x5c, 0xb9, 0x09, 0x8b, 0x55, 0xa3, 0xe2, 0xd2, 0x63, 0xf4, 0x7a, 0xca, 0x00, 0xe0, 0xac, + 0x66, 0xec, 0x5f, 0x1a, 0x81, 0xc1, 0x95, 0x3d, 0xe2, 0x45, 0x27, 0xf0, 0x44, 0xa8, 0xc3, 0x84, + 0xeb, 0xed, 0xf9, 0xcd, 0x3d, 0xd2, 0xe0, 0xf0, 0xa3, 0xbc, 0x64, 0xcf, 0x08, 0xd2, 0x13, 0x15, + 0x83, 0x04, 0x4e, 0x90, 0x7c, 0x14, 0xd2, 0xe4, 0x6b, 0x30, 0xc4, 0x0f, 0x71, 0x21, 0x4a, 0xce, + 0x3c, 0xb3, 0xd9, 0x20, 0x8a, 0xab, 0x29, 0x96, 0x74, 0xf3, 0x4b, 0x42, 0x54, 0x47, 0x9f, 0x83, + 0x89, 0x2d, 0x37, 0x08, 0xa3, 0x0d, 0xb7, 0x45, 0xc2, 0xc8, 0x69, 0xb5, 0x1f, 0x42, 0x7a, 0xac, + 0xc6, 0x61, 0xd5, 0xa0, 0x84, 0x13, 0x94, 0xd1, 0x36, 0x8c, 0x37, 0x1d, 0xbd, 0xa9, 0xe1, 0x23, + 0x37, 0xa5, 0x6e, 0x87, 0x9b, 0x3a, 0x21, 0x6c, 0xd2, 0xa5, 0xdb, 0xa9, 0xce, 0x04, 0xa0, 0x23, + 0x4c, 0x2c, 0xa0, 0xb6, 0x13, 0x97, 0x7c, 0x72, 0x18, 0x65, 0x74, 0x98, 0x81, 0x6c, 0xc9, 0x64, + 0x74, 0x34, 0x33, 0xd8, 0xcf, 0x42, 0x89, 0xd0, 0x21, 0xa4, 0x84, 0xc5, 0x05, 0x73, 0xa5, 0xbf, + 0xbe, 0xae, 0xb9, 0xf5, 0xc0, 0x37, 0xe5, 0xf6, 0x2b, 0x92, 0x12, 0x8e, 0x89, 0xa2, 0x65, 0x18, + 0x0a, 0x49, 0xe0, 0x92, 0x50, 0x5c, 0x35, 0x5d, 0xa6, 0x91, 0xa1, 0x71, 0xdf, 0x12, 0xfe, 0x1b, + 0x8b, 0xaa, 0x74, 0x79, 0x39, 0x4c, 0xa4, 0xc9, 0x2e, 0x03, 0x6d, 0x79, 0x2d, 0xb2, 0x52, 0x2c, + 0xa0, 0xe8, 0x75, 0x18, 0x0e, 0x48, 0x93, 0x29, 0x86, 0xc6, 0xfb, 0x5f, 0xe4, 0x5c, 0xcf, 0xc4, + 0xeb, 0x61, 0x49, 0x00, 0xdd, 0x00, 0x14, 0x10, 0xca, 0x28, 0xb9, 0xde, 0xb6, 0x32, 0x1b, 0x15, + 0x07, 0xad, 0x62, 0x48, 0x71, 0x8c, 0x21, 0xdd, 0x7c, 0x70, 0x46, 0x35, 0x74, 0x0d, 0xa6, 0x55, + 0x69, 0xc5, 0x0b, 0x23, 0x87, 0x1e, 0x70, 0x93, 0x8c, 0x96, 0x92, 0x53, 0xe0, 0x24, 0x02, 0x4e, + 0xd7, 0xb1, 0xbf, 0x6c, 0x01, 0x1f, 0xe7, 0x13, 0x78, 0x9d, 0xbf, 0x66, 0xbe, 0xce, 0xcf, 0xe6, + 0xce, 0x5c, 0xce, 0xcb, 0xfc, 0xcb, 0x16, 0x8c, 0x6a, 0x33, 0x1b, 0xaf, 0x59, 0xab, 0xcb, 0x9a, + 0xed, 0xc0, 0x14, 0x5d, 0xe9, 0xb7, 0x36, 0x43, 0x12, 0xec, 0x91, 0x06, 0x5b, 0x98, 0x85, 0x87, + 0x5b, 0x98, 0xca, 0x44, 0xed, 0x66, 0x82, 0x20, 0x4e, 0x35, 0x61, 0x7f, 0x56, 0x76, 0x55, 0x59, + 0xf4, 0xd5, 0xd5, 0x9c, 0x27, 0x2c, 0xfa, 0xd4, 0xac, 0xe2, 0x18, 0x87, 0x6e, 0xb5, 0x1d, 0x3f, + 0x8c, 0x92, 0x16, 0x7d, 0xd7, 0xfd, 0x30, 0xc2, 0x0c, 0x62, 0xbf, 0x00, 0xb0, 0x72, 0x9f, 0xd4, + 0xf9, 0x8a, 0xd5, 0x1f, 0x0f, 0x56, 0xfe, 0xe3, 0xc1, 0xfe, 0x6d, 0x0b, 0x26, 0x56, 0x97, 0x8d, + 0x9b, 0x6b, 0x01, 0x80, 0xbf, 0x78, 0xee, 0xde, 0x5d, 0x97, 0xea, 0x70, 0xae, 0xd1, 0x54, 0xa5, + 0x58, 0xc3, 0x40, 0x67, 0xa1, 0xd8, 0xec, 0x78, 0x42, 0x7c, 0x38, 0x4c, 0xaf, 0xc7, 0x9b, 0x1d, + 0x0f, 0xd3, 0x32, 0xcd, 0xa5, 0xa0, 0xd8, 0xb7, 0x4b, 0x41, 0x4f, 0xd7, 0x7e, 0x34, 0x0f, 0x83, + 0xf7, 0xee, 0xb9, 0x0d, 0xee, 0x40, 0x29, 0x54, 0xf5, 0x77, 0xef, 0x56, 0xca, 0x21, 0xe6, 0xe5, + 0xf6, 0x97, 0x8a, 0x30, 0xb7, 0xda, 0x24, 0xf7, 0xdf, 0xa1, 0x13, 0x69, 0xbf, 0x0e, 0x11, 0x47, + 0x13, 0xc4, 0x1c, 0xd5, 0xe9, 0xa5, 0xf7, 0x78, 0x6c, 0xc1, 0x30, 0x37, 0x68, 0x93, 0x2e, 0xa5, + 0xaf, 0x66, 0xb5, 0x9e, 0x3f, 0x20, 0x0b, 0xdc, 0x30, 0x4e, 0x78, 0xc4, 0xa9, 0x0b, 0x53, 0x94, + 0x62, 0x49, 0x7c, 0xee, 0x15, 0x18, 0xd3, 0x31, 0x8f, 0xe4, 0x7e, 0xf6, 0xff, 0x14, 0x61, 0x8a, + 0xf6, 0xe0, 0x91, 0x4e, 0xc4, 0xed, 0xf4, 0x44, 0x1c, 0xb7, 0x0b, 0x52, 0xef, 0xd9, 0x78, 0x33, + 0x39, 0x1b, 0x57, 0xf3, 0x66, 0xe3, 0xa4, 0xe7, 0xe0, 0xbb, 0x2d, 0x98, 0x59, 0x6d, 0xfa, 0xf5, + 0xdd, 0x84, 0x9b, 0xd0, 0x4b, 0x30, 0x4a, 0x8f, 0xe3, 0xd0, 0xf0, 0x60, 0x37, 0x62, 0x1a, 0x08, + 0x10, 0xd6, 0xf1, 0xb4, 0x6a, 0xb7, 0x6f, 0x57, 0xca, 0x59, 0xa1, 0x10, 0x04, 0x08, 0xeb, 0x78, + 0xf6, 0x6f, 0x5a, 0x70, 0xee, 0xda, 0xf2, 0x4a, 0xbc, 0x14, 0x53, 0xd1, 0x18, 0x2e, 0xc1, 0x50, + 0xbb, 0xa1, 0x75, 0x25, 0x16, 0xaf, 0x96, 0x59, 0x2f, 0x04, 0xf4, 0xdd, 0x12, 0x69, 0xe4, 0x67, + 0x2d, 0x98, 0xb9, 0xe6, 0x46, 0xf4, 0x76, 0x4d, 0xc6, 0x05, 0xa0, 0xd7, 0x6b, 0xe8, 0x46, 0x7e, + 0xb0, 0x9f, 0x8c, 0x0b, 0x80, 0x15, 0x04, 0x6b, 0x58, 0xbc, 0xe5, 0x3d, 0x97, 0x99, 0x52, 0x17, + 0x4c, 0x45, 0x13, 0x16, 0xe5, 0x58, 0x61, 0xd0, 0x0f, 0x6b, 0xb8, 0x01, 0x93, 0xd1, 0xed, 0x8b, + 0x13, 0x56, 0x7d, 0x58, 0x59, 0x02, 0x70, 0x8c, 0x63, 0xff, 0xb1, 0x05, 0xf3, 0xd7, 0x9a, 0x9d, + 0x30, 0x22, 0xc1, 0x56, 0x98, 0x73, 0x3a, 0xbe, 0x00, 0x25, 0x22, 0x25, 0xe2, 0xa2, 0xd7, 0x8a, + 0x63, 0x54, 0xa2, 0x72, 0x1e, 0x9e, 0x40, 0xe1, 0xf5, 0xe1, 0x74, 0x78, 0x34, 0xaf, 0xb1, 0x55, + 0x40, 0x44, 0x6f, 0x4b, 0x8f, 0xd7, 0xc0, 0x1c, 0xbf, 0x57, 0x52, 0x50, 0x9c, 0x51, 0xc3, 0xfe, + 0x09, 0x0b, 0x4e, 0xab, 0x0f, 0x7e, 0xd7, 0x7d, 0xa6, 0xfd, 0xf3, 0x05, 0x18, 0xbf, 0xbe, 0xb1, + 0x51, 0xbd, 0x46, 0x22, 0x71, 0x6d, 0xf7, 0xd6, 0x73, 0x63, 0x4d, 0x5d, 0xd7, 0xed, 0x31, 0xd7, + 0x89, 0xdc, 0xe6, 0x02, 0x0f, 0xfb, 0xb3, 0x50, 0xf1, 0xa2, 0x5b, 0x41, 0x2d, 0x0a, 0x5c, 0x6f, + 0x3b, 0x53, 0xc1, 0x27, 0x99, 0x8b, 0x62, 0x1e, 0x73, 0x81, 0x5e, 0x80, 0x21, 0x16, 0x77, 0x48, + 0x4e, 0xc2, 0xe3, 0xea, 0x2d, 0xc4, 0x4a, 0x0f, 0x0f, 0xe6, 0x4b, 0xb7, 0x71, 0x85, 0xff, 0xc1, + 0x02, 0x15, 0xdd, 0x86, 0xd1, 0x9d, 0x28, 0x6a, 0x5f, 0x27, 0x4e, 0x83, 0x04, 0xf2, 0x38, 0x3c, + 0x9f, 0x75, 0x1c, 0xd2, 0x41, 0xe0, 0x68, 0xf1, 0x09, 0x12, 0x97, 0x85, 0x58, 0xa7, 0x63, 0xd7, + 0x00, 0x62, 0xd8, 0x31, 0x69, 0x2a, 0xec, 0x3f, 0xb4, 0x60, 0x98, 0x87, 0x80, 0x08, 0xd0, 0x47, + 0x61, 0x80, 0xdc, 0x27, 0x75, 0xc1, 0xf1, 0x66, 0x76, 0x38, 0xe6, 0xb4, 0xb8, 0xc4, 0x95, 0xfe, + 0xc7, 0xac, 0x16, 0xba, 0x0e, 0xc3, 0xb4, 0xb7, 0xd7, 0x54, 0x3c, 0x8c, 0x27, 0xf3, 0xbe, 0x58, + 0x4d, 0x3b, 0x67, 0xce, 0x44, 0x11, 0x96, 0xd5, 0x99, 0x7a, 0xb8, 0xde, 0xae, 0xd1, 0x13, 0x3b, + 0xea, 0xc6, 0x58, 0x6c, 0x2c, 0x57, 0x39, 0x92, 0xa0, 0xc6, 0xd5, 0xc3, 0xb2, 0x10, 0xc7, 0x44, + 0xec, 0x0d, 0x28, 0xd1, 0x49, 0x5d, 0x6c, 0xba, 0x4e, 0x77, 0x8d, 0xf7, 0x33, 0x50, 0x92, 0xfa, + 0xec, 0x50, 0xb8, 0x7e, 0x33, 0xaa, 0x52, 0xdd, 0x1d, 0xe2, 0x18, 0x6e, 0x6f, 0xc1, 0x29, 0x66, + 0x9d, 0xe8, 0x44, 0x3b, 0xc6, 0x1e, 0xeb, 0xbd, 0x98, 0x9f, 0x15, 0x0f, 0x48, 0x3e, 0x33, 0xb3, + 0x9a, 0x77, 0xe5, 0x98, 0xa4, 0x18, 0x3f, 0x26, 0xed, 0xaf, 0x0f, 0xc0, 0xe3, 0x95, 0x5a, 0x7e, + 0x74, 0x90, 0x97, 0x61, 0x8c, 0xf3, 0xa5, 0x74, 0x69, 0x3b, 0x4d, 0xd1, 0xae, 0x12, 0xb5, 0x6e, + 0x68, 0x30, 0x6c, 0x60, 0xa2, 0x73, 0x50, 0x74, 0xdf, 0xf2, 0x92, 0xbe, 0x47, 0x95, 0x37, 0xd6, + 0x31, 0x2d, 0xa7, 0x60, 0xca, 0xe2, 0xf2, 0xbb, 0x43, 0x81, 0x15, 0x9b, 0xfb, 0x1a, 0x4c, 0xb8, + 0x61, 0x3d, 0x74, 0x2b, 0x1e, 0x3d, 0x67, 0xb4, 0x93, 0x4a, 0x09, 0x37, 0x68, 0xa7, 0x15, 0x14, + 0x27, 0xb0, 0xb5, 0x8b, 0x6c, 0xb0, 0x6f, 0x36, 0xb9, 0xa7, 0x2f, 0x34, 0x7d, 0x01, 0xb4, 0xd9, + 0xd7, 0x85, 0x4c, 0x66, 0x2e, 0x5e, 0x00, 0xfc, 0x83, 0x43, 0x2c, 0x61, 0xf4, 0xe5, 0x58, 0xdf, + 0x71, 0xda, 0x8b, 0x9d, 0x68, 0xa7, 0xec, 0x86, 0x75, 0x7f, 0x8f, 0x04, 0xfb, 0xec, 0xd1, 0x3f, + 0x12, 0xbf, 0x1c, 0x15, 0x60, 0xf9, 0xfa, 0x62, 0x95, 0x62, 0xe2, 0x74, 0x1d, 0xb4, 0x08, 0x93, + 0xb2, 0xb0, 0x46, 0x42, 0x76, 0x85, 0x8d, 0x32, 0x32, 0xca, 0x1b, 0x48, 0x14, 0x2b, 0x22, 0x49, + 0x7c, 0x93, 0x93, 0x86, 0xe3, 0xe0, 0xa4, 0x3f, 0x02, 0xe3, 0xae, 0xe7, 0x46, 0xae, 0x13, 0xf9, + 0x5c, 0xe1, 0xc3, 0xdf, 0xf7, 0x4c, 0x92, 0x5d, 0xd1, 0x01, 0xd8, 0xc4, 0xb3, 0xff, 0xf3, 0x00, + 0x4c, 0xb3, 0x69, 0x7b, 0x6f, 0x85, 0x7d, 0x2b, 0xad, 0xb0, 0xdb, 0xe9, 0x15, 0x76, 0x1c, 0x4f, + 0x84, 0x87, 0x5e, 0x66, 0x9f, 0x83, 0x92, 0x72, 0x80, 0x92, 0x1e, 0x90, 0x56, 0x8e, 0x07, 0x64, + 0x6f, 0xee, 0x43, 0xda, 0x90, 0x15, 0x33, 0x6d, 0xc8, 0xfe, 0xaa, 0x05, 0xb1, 0x06, 0x03, 0x5d, + 0x87, 0x52, 0xdb, 0x67, 0xa6, 0x91, 0x81, 0xb4, 0x37, 0x7e, 0x3c, 0xf3, 0xa2, 0xe2, 0x97, 0x22, + 0xff, 0xf8, 0xaa, 0xac, 0x81, 0xe3, 0xca, 0x68, 0x09, 0x86, 0xdb, 0x01, 0xa9, 0x45, 0x2c, 0x48, + 0x48, 0x4f, 0x3a, 0x7c, 0x8d, 0x70, 0x7c, 0x2c, 0x2b, 0xda, 0xbf, 0x60, 0x01, 0x70, 0x33, 0x2d, + 0xc7, 0xdb, 0x26, 0x27, 0x20, 0xb5, 0x2e, 0xc3, 0x40, 0xd8, 0x26, 0xf5, 0x6e, 0x46, 0xab, 0x71, + 0x7f, 0x6a, 0x6d, 0x52, 0x8f, 0x07, 0x9c, 0xfe, 0xc3, 0xac, 0xb6, 0xfd, 0xbd, 0x00, 0x13, 0x31, + 0x5a, 0x25, 0x22, 0x2d, 0xf4, 0x9c, 0x11, 0x34, 0xe0, 0x6c, 0x22, 0x68, 0x40, 0x89, 0x61, 0x6b, + 0x02, 0xd2, 0xcf, 0x41, 0xb1, 0xe5, 0xdc, 0x17, 0x12, 0xb0, 0x67, 0xba, 0x77, 0x83, 0xd2, 0x5f, + 0x58, 0x73, 0xee, 0xf3, 0x47, 0xe2, 0x33, 0x72, 0x81, 0xac, 0x39, 0xf7, 0x0f, 0xb9, 0x69, 0x2a, + 0x3b, 0xa4, 0x6e, 0xba, 0x61, 0xf4, 0x85, 0xff, 0x14, 0xff, 0x67, 0xcb, 0x8e, 0x36, 0xc2, 0xda, + 0x72, 0x3d, 0x61, 0x81, 0xd4, 0x57, 0x5b, 0xae, 0x97, 0x6c, 0xcb, 0xf5, 0xfa, 0x68, 0xcb, 0xf5, + 0xd0, 0xdb, 0x30, 0x2c, 0x0c, 0x04, 0x45, 0x90, 0x9e, 0x2b, 0x7d, 0xb4, 0x27, 0xec, 0x0b, 0x79, + 0x9b, 0x57, 0xe4, 0x23, 0x58, 0x94, 0xf6, 0x6c, 0x57, 0x36, 0x88, 0xfe, 0x92, 0x05, 0x13, 0xe2, + 0x37, 0x26, 0x6f, 0x75, 0x48, 0x18, 0x09, 0xde, 0xf3, 0xc3, 0xfd, 0xf7, 0x41, 0x54, 0xe4, 0x5d, + 0xf9, 0xb0, 0x3c, 0x66, 0x4d, 0x60, 0xcf, 0x1e, 0x25, 0x7a, 0x81, 0xfe, 0x8e, 0x05, 0xa7, 0x5a, + 0xce, 0x7d, 0xde, 0x22, 0x2f, 0xc3, 0x4e, 0xe4, 0xfa, 0x42, 0xd1, 0xfe, 0xd1, 0xfe, 0xa6, 0x3f, + 0x55, 0x9d, 0x77, 0x52, 0x6a, 0x03, 0x4f, 0x65, 0xa1, 0xf4, 0xec, 0x6a, 0x66, 0xbf, 0xe6, 0xb6, + 0x60, 0x44, 0xae, 0xb7, 0x0c, 0x51, 0x43, 0x59, 0x67, 0xac, 0x8f, 0x6c, 0x9f, 0xa9, 0x3b, 0xe3, + 0xd3, 0x76, 0xc4, 0x5a, 0x7b, 0xa4, 0xed, 0x7c, 0x0e, 0xc6, 0xf4, 0x35, 0xf6, 0x48, 0xdb, 0x7a, + 0x0b, 0x66, 0x32, 0xd6, 0xd2, 0x23, 0x6d, 0xf2, 0x1e, 0x9c, 0xcd, 0x5d, 0x1f, 0x8f, 0xb2, 0x61, + 0xfb, 0xe7, 0x2d, 0xfd, 0x1c, 0x3c, 0x01, 0xd5, 0xc1, 0xb2, 0xa9, 0x3a, 0x38, 0xdf, 0x7d, 0xe7, + 0xe4, 0xe8, 0x0f, 0xde, 0xd4, 0x3b, 0x4d, 0x4f, 0x75, 0xf4, 0x3a, 0x0c, 0x35, 0x69, 0x89, 0x34, + 0x33, 0xb5, 0x7b, 0xef, 0xc8, 0x98, 0x97, 0x62, 0xe5, 0x21, 0x16, 0x14, 0xec, 0x5f, 0xb6, 0x60, + 0xe0, 0x04, 0x46, 0x02, 0x9b, 0x23, 0xf1, 0x5c, 0x2e, 0x69, 0x11, 0x3f, 0x78, 0x01, 0x3b, 0xf7, + 0x56, 0xee, 0x47, 0xc4, 0x0b, 0xd9, 0x53, 0x31, 0x73, 0x60, 0x7e, 0xda, 0x82, 0x99, 0x9b, 0xbe, + 0xd3, 0x58, 0x72, 0x9a, 0x8e, 0x57, 0x27, 0x41, 0xc5, 0xdb, 0x3e, 0x92, 0x8d, 0x74, 0xa1, 0xa7, + 0x8d, 0xf4, 0xb2, 0x34, 0x31, 0x1a, 0xc8, 0x9f, 0x3f, 0xca, 0x48, 0x26, 0xc3, 0xa8, 0x18, 0xc6, + 0xb0, 0x3b, 0x80, 0xf4, 0x5e, 0x0a, 0x8f, 0x15, 0x0c, 0xc3, 0x2e, 0xef, 0xaf, 0x98, 0xc4, 0xa7, + 0xb2, 0x19, 0xbc, 0xd4, 0xe7, 0x69, 0xbe, 0x18, 0xbc, 0x00, 0x4b, 0x42, 0xf6, 0xcb, 0x90, 0xe9, + 0xf6, 0xde, 0x5b, 0xf8, 0x60, 0x7f, 0x12, 0xa6, 0x59, 0xcd, 0x23, 0x3e, 0x8c, 0xed, 0x84, 0x6c, + 0x33, 0x23, 0x20, 0x9e, 0xfd, 0x45, 0x0b, 0x26, 0xd7, 0x13, 0x71, 0xc2, 0x2e, 0x31, 0x6d, 0x68, + 0x86, 0x48, 0xbd, 0xc6, 0x4a, 0xb1, 0x80, 0x1e, 0xbb, 0x24, 0xeb, 0x2f, 0x2c, 0x88, 0x23, 0x51, + 0x9c, 0x00, 0xfb, 0xb6, 0x6c, 0xb0, 0x6f, 0x99, 0x12, 0x16, 0xd5, 0x9d, 0x3c, 0xee, 0x0d, 0xdd, + 0x50, 0x31, 0x9a, 0xba, 0x08, 0x57, 0x62, 0x32, 0x7c, 0x29, 0x4e, 0x98, 0x81, 0x9c, 0x64, 0xd4, + 0x26, 0xfb, 0x77, 0x0a, 0x80, 0x14, 0x6e, 0xdf, 0x31, 0xa4, 0xd2, 0x35, 0x8e, 0x27, 0x86, 0xd4, + 0x1e, 0x20, 0xa6, 0xcf, 0x0f, 0x1c, 0x2f, 0xe4, 0x64, 0x5d, 0x21, 0xbb, 0x3b, 0x9a, 0xb1, 0xc0, + 0x9c, 0x68, 0x12, 0xdd, 0x4c, 0x51, 0xc3, 0x19, 0x2d, 0x68, 0x76, 0x1a, 0x83, 0xfd, 0xda, 0x69, + 0x0c, 0xf5, 0xf0, 0x4a, 0xfb, 0x39, 0x0b, 0xc6, 0xd5, 0x30, 0xbd, 0x4b, 0x6c, 0xc6, 0x55, 0x7f, + 0x72, 0x0e, 0xd0, 0xaa, 0xd6, 0x65, 0x76, 0xb1, 0x7c, 0x3b, 0xf3, 0x2e, 0x74, 0x9a, 0xee, 0xdb, + 0x44, 0x45, 0xf0, 0x9b, 0x17, 0xde, 0x82, 0xa2, 0xf4, 0xf0, 0x60, 0x7e, 0x5c, 0xfd, 0xe3, 0x11, + 0x83, 0xe3, 0x2a, 0xf4, 0x48, 0x9e, 0x4c, 0x2c, 0x45, 0xf4, 0x12, 0x0c, 0xb6, 0x77, 0x9c, 0x90, + 0x24, 0x7c, 0x6b, 0x06, 0xab, 0xb4, 0xf0, 0xf0, 0x60, 0x7e, 0x42, 0x55, 0x60, 0x25, 0x98, 0x63, + 0xf7, 0x1f, 0x99, 0x2b, 0xbd, 0x38, 0x7b, 0x46, 0xe6, 0xfa, 0x53, 0x0b, 0x06, 0xd6, 0xfd, 0xc6, + 0x49, 0x1c, 0x01, 0xaf, 0x19, 0x47, 0xc0, 0x13, 0x79, 0xc1, 0xdc, 0x73, 0x77, 0xff, 0x6a, 0x62, + 0xf7, 0x9f, 0xcf, 0xa5, 0xd0, 0x7d, 0xe3, 0xb7, 0x60, 0x94, 0x85, 0x88, 0x17, 0x7e, 0x44, 0x2f, + 0x18, 0x1b, 0x7e, 0x3e, 0xb1, 0xe1, 0x27, 0x35, 0x54, 0x6d, 0xa7, 0x3f, 0x0d, 0xc3, 0xc2, 0x31, + 0x25, 0xe9, 0xa4, 0x29, 0x70, 0xb1, 0x84, 0xdb, 0x3f, 0x59, 0x04, 0x23, 0x24, 0x3d, 0xfa, 0x55, + 0x0b, 0x16, 0x02, 0x6e, 0xb0, 0xda, 0x28, 0x77, 0x02, 0xd7, 0xdb, 0xae, 0xd5, 0x77, 0x48, 0xa3, + 0xd3, 0x74, 0xbd, 0xed, 0xca, 0xb6, 0xe7, 0xab, 0xe2, 0x95, 0xfb, 0xa4, 0xde, 0x61, 0x4a, 0xb0, + 0x1e, 0xf1, 0xef, 0x95, 0xe1, 0xf7, 0xf3, 0x0f, 0x0e, 0xe6, 0x17, 0xf0, 0x91, 0x68, 0xe3, 0x23, + 0xf6, 0x05, 0xfd, 0xa6, 0x05, 0x57, 0x78, 0xa4, 0xf6, 0xfe, 0xfb, 0xdf, 0xe5, 0xb5, 0x5c, 0x95, + 0xa4, 0x62, 0x22, 0x1b, 0x24, 0x68, 0x2d, 0x7d, 0x44, 0x0c, 0xe8, 0x95, 0xea, 0xd1, 0xda, 0xc2, + 0x47, 0xed, 0x9c, 0xfd, 0x4f, 0x8a, 0x30, 0x2e, 0x22, 0x38, 0x89, 0x3b, 0xe0, 0x25, 0x63, 0x49, + 0x3c, 0x99, 0x58, 0x12, 0xd3, 0x06, 0xf2, 0xf1, 0x1c, 0xff, 0x21, 0x4c, 0xd3, 0xc3, 0xf9, 0x3a, + 0x71, 0x82, 0x68, 0x93, 0x38, 0xdc, 0xfc, 0xaa, 0x78, 0xe4, 0xd3, 0x5f, 0x89, 0xe7, 0x6e, 0x26, + 0x89, 0xe1, 0x34, 0xfd, 0x6f, 0xa5, 0x3b, 0xc7, 0x83, 0xa9, 0x54, 0x10, 0xae, 0x4f, 0x41, 0x49, + 0x79, 0x55, 0x88, 0x43, 0xa7, 0x7b, 0x2c, 0xbb, 0x24, 0x05, 0x2e, 0x42, 0x8b, 0x3d, 0x7a, 0x62, + 0x72, 0xf6, 0xdf, 0x2b, 0x18, 0x0d, 0xf2, 0x49, 0x5c, 0x87, 0x11, 0x27, 0x0c, 0xdd, 0x6d, 0x8f, + 0x34, 0xc4, 0x8e, 0x7d, 0x7f, 0xde, 0x8e, 0x35, 0x9a, 0x61, 0x9e, 0x2d, 0x8b, 0xa2, 0x26, 0x56, + 0x34, 0xd0, 0x75, 0x6e, 0xe4, 0xb6, 0x27, 0xdf, 0x7b, 0xfd, 0x51, 0x03, 0x69, 0x06, 0xb7, 0x47, + 0xb0, 0xa8, 0x8f, 0x3e, 0xcd, 0xad, 0x10, 0x6f, 0x78, 0xfe, 0x3d, 0xef, 0x9a, 0xef, 0xcb, 0x28, + 0x09, 0xfd, 0x11, 0x9c, 0x96, 0xb6, 0x87, 0xaa, 0x3a, 0x36, 0xa9, 0xf5, 0x17, 0xd5, 0xf2, 0xf3, + 0x30, 0x43, 0x49, 0x9b, 0x4e, 0xcc, 0x21, 0x22, 0x30, 0x29, 0xc2, 0x83, 0xc9, 0x32, 0x31, 0x76, + 0x99, 0x4f, 0x39, 0xb3, 0x76, 0x2c, 0x47, 0xbe, 0x61, 0x92, 0xc0, 0x49, 0x9a, 0xf6, 0xcf, 0x58, + 0xc0, 0x1c, 0x3a, 0x4f, 0x80, 0x1f, 0xf9, 0x98, 0xc9, 0x8f, 0xcc, 0xe6, 0x0d, 0x72, 0x0e, 0x2b, + 0xf2, 0x22, 0x5f, 0x59, 0xd5, 0xc0, 0xbf, 0xbf, 0x2f, 0x4c, 0x47, 0x7a, 0xbf, 0x3f, 0xec, 0xff, + 0x65, 0xf1, 0x43, 0x4c, 0xf9, 0x3c, 0xa0, 0xef, 0x84, 0x91, 0xba, 0xd3, 0x76, 0xea, 0x3c, 0x7f, + 0x4a, 0xae, 0x44, 0xcf, 0xa8, 0xb4, 0xb0, 0x2c, 0x6a, 0x70, 0x09, 0x95, 0x0c, 0x33, 0x37, 0x22, + 0x8b, 0x7b, 0x4a, 0xa5, 0x54, 0x93, 0x73, 0xbb, 0x30, 0x6e, 0x10, 0x7b, 0xa4, 0xe2, 0x8c, 0xef, + 0xe4, 0x57, 0xac, 0x0a, 0x8b, 0xd8, 0x82, 0x69, 0x4f, 0xfb, 0x4f, 0x2f, 0x14, 0xf9, 0xb8, 0x7c, + 0x7f, 0xaf, 0x4b, 0x94, 0xdd, 0x3e, 0x9a, 0xaf, 0x68, 0x82, 0x0c, 0x4e, 0x53, 0xb6, 0x7f, 0xca, + 0x82, 0xc7, 0x74, 0x44, 0xcd, 0x1d, 0xa5, 0x97, 0x8e, 0xa0, 0x0c, 0x23, 0x7e, 0x9b, 0x04, 0x4e, + 0xe4, 0x07, 0xe2, 0xd6, 0xb8, 0x2c, 0x07, 0xfd, 0x96, 0x28, 0x3f, 0x14, 0xd1, 0xc7, 0x25, 0x75, + 0x59, 0x8e, 0x55, 0x4d, 0xfa, 0xfa, 0x64, 0x83, 0x11, 0x0a, 0xc7, 0x23, 0x76, 0x06, 0x30, 0x75, + 0x79, 0x88, 0x05, 0xc4, 0xfe, 0xba, 0xc5, 0x17, 0x96, 0xde, 0x75, 0xf4, 0x16, 0x4c, 0xb5, 0x9c, + 0xa8, 0xbe, 0xb3, 0x72, 0xbf, 0x1d, 0x70, 0x8d, 0x8b, 0x1c, 0xa7, 0x67, 0x7a, 0x8d, 0x93, 0xf6, + 0x91, 0xb1, 0x61, 0xe5, 0x5a, 0x82, 0x18, 0x4e, 0x91, 0x47, 0x9b, 0x30, 0xca, 0xca, 0x98, 0x4f, + 0x5d, 0xd8, 0x8d, 0x35, 0xc8, 0x6b, 0x4d, 0x59, 0x1c, 0xac, 0xc5, 0x74, 0xb0, 0x4e, 0xd4, 0xfe, + 0x4a, 0x91, 0xef, 0x76, 0xc6, 0xca, 0x3f, 0x0d, 0xc3, 0x6d, 0xbf, 0xb1, 0x5c, 0x29, 0x63, 0x31, + 0x0b, 0xea, 0x1a, 0xa9, 0xf2, 0x62, 0x2c, 0xe1, 0xe8, 0x32, 0x8c, 0x88, 0x9f, 0x52, 0x43, 0xc6, + 0xce, 0x66, 0x81, 0x17, 0x62, 0x05, 0x45, 0xcf, 0x03, 0xb4, 0x03, 0x7f, 0xcf, 0x6d, 0xb0, 0x58, + 0x0f, 0x45, 0xd3, 0x58, 0xa8, 0xaa, 0x20, 0x58, 0xc3, 0x42, 0xaf, 0xc2, 0x78, 0xc7, 0x0b, 0x39, + 0x3b, 0xa2, 0x45, 0x76, 0x55, 0x66, 0x2c, 0xb7, 0x75, 0x20, 0x36, 0x71, 0xd1, 0x22, 0x0c, 0x45, + 0x0e, 0x33, 0x7e, 0x19, 0xcc, 0x37, 0xbe, 0xdd, 0xa0, 0x18, 0x7a, 0xaa, 0x0e, 0x5a, 0x01, 0x8b, + 0x8a, 0xe8, 0x53, 0xd2, 0xbd, 0x95, 0x1f, 0xec, 0xc2, 0xea, 0xbd, 0xbf, 0x4b, 0x40, 0x73, 0x6e, + 0x15, 0xd6, 0xf4, 0x06, 0x2d, 0xf4, 0x0a, 0x00, 0xb9, 0x1f, 0x91, 0xc0, 0x73, 0x9a, 0xca, 0xb6, + 0x4c, 0xf1, 0x05, 0x65, 0x7f, 0xdd, 0x8f, 0x6e, 0x87, 0x64, 0x45, 0x61, 0x60, 0x0d, 0xdb, 0xfe, + 0xcd, 0x12, 0x40, 0xcc, 0xb7, 0xa3, 0xb7, 0x53, 0x07, 0xd7, 0xb3, 0xdd, 0x39, 0xfd, 0xe3, 0x3b, + 0xb5, 0xd0, 0xf7, 0x59, 0x30, 0xea, 0x34, 0x9b, 0x7e, 0xdd, 0xe1, 0xb1, 0x77, 0x0b, 0xdd, 0x0f, + 0x4e, 0xd1, 0xfe, 0x62, 0x5c, 0x83, 0x77, 0xe1, 0x05, 0xb9, 0x42, 0x35, 0x48, 0xcf, 0x5e, 0xe8, + 0x0d, 0xa3, 0x0f, 0xc9, 0xa7, 0x62, 0xd1, 0x18, 0x4a, 0xf5, 0x54, 0x2c, 0xb1, 0x3b, 0x42, 0x7f, + 0x25, 0xde, 0x36, 0x5e, 0x89, 0x03, 0xf9, 0xfe, 0x7b, 0x06, 0xfb, 0xda, 0xeb, 0x81, 0x88, 0xaa, + 0xba, 0x2f, 0xff, 0x60, 0xbe, 0xb3, 0x9c, 0xf6, 0x4e, 0xea, 0xe1, 0xc7, 0xff, 0x39, 0x98, 0x6c, + 0x98, 0x4c, 0x80, 0x58, 0x89, 0x4f, 0xe5, 0xd1, 0x4d, 0xf0, 0x0c, 0xf1, 0xb5, 0x9f, 0x00, 0xe0, + 0x24, 0x61, 0x54, 0xe5, 0xa1, 0x1d, 0x2a, 0xde, 0x96, 0x2f, 0x3c, 0x2f, 0xec, 0xdc, 0xb9, 0xdc, + 0x0f, 0x23, 0xd2, 0xa2, 0x98, 0xf1, 0xed, 0xbe, 0x2e, 0xea, 0x62, 0x45, 0x05, 0xbd, 0x0e, 0x43, + 0xcc, 0x5b, 0x2a, 0x9c, 0x1d, 0xc9, 0x97, 0x38, 0x9b, 0xb1, 0xca, 0xe2, 0x0d, 0xc9, 0xfe, 0x86, + 0x58, 0x50, 0x40, 0xd7, 0xa5, 0x2f, 0x62, 0x58, 0xf1, 0x6e, 0x87, 0x84, 0xf9, 0x22, 0x96, 0x96, + 0xde, 0x1f, 0xbb, 0x19, 0xf2, 0xf2, 0xcc, 0x84, 0x5e, 0x46, 0x4d, 0xca, 0x45, 0x89, 0xff, 0x32, + 0x4f, 0xd8, 0x2c, 0xe4, 0x77, 0xcf, 0xcc, 0x25, 0x16, 0x0f, 0xe7, 0x1d, 0x93, 0x04, 0x4e, 0xd2, + 0xa4, 0x1c, 0x29, 0xdf, 0xf5, 0xc2, 0x77, 0xa3, 0xd7, 0xd9, 0xc1, 0x1f, 0xe2, 0xec, 0x36, 0xe2, + 0x25, 0x58, 0xd4, 0x3f, 0x51, 0xf6, 0x60, 0xce, 0x83, 0xa9, 0xe4, 0x16, 0x7d, 0xa4, 0xec, 0xc8, + 0x1f, 0x0e, 0xc0, 0x84, 0xb9, 0xa4, 0xd0, 0x15, 0x28, 0x09, 0x22, 0x2a, 0xb6, 0xbf, 0xda, 0x25, + 0x6b, 0x12, 0x80, 0x63, 0x1c, 0x96, 0xd2, 0x81, 0x55, 0xd7, 0x8c, 0x75, 0xe3, 0x94, 0x0e, 0x0a, + 0x82, 0x35, 0x2c, 0xfa, 0xb0, 0xda, 0xf4, 0xfd, 0x48, 0x5d, 0x48, 0x6a, 0xdd, 0x2d, 0xb1, 0x52, + 0x2c, 0xa0, 0xf4, 0x22, 0xda, 0x25, 0x81, 0x47, 0x9a, 0x66, 0x14, 0x60, 0x75, 0x11, 0xdd, 0xd0, + 0x81, 0xd8, 0xc4, 0xa5, 0xd7, 0xa9, 0x1f, 0xb2, 0x85, 0x2c, 0x9e, 0x6f, 0xb1, 0xf1, 0x73, 0x8d, + 0xbb, 0x43, 0x4b, 0x38, 0xfa, 0x24, 0x3c, 0xa6, 0x22, 0x1d, 0x61, 0xae, 0xcd, 0x90, 0x2d, 0x0e, + 0x19, 0xd2, 0x96, 0xc7, 0x96, 0xb3, 0xd1, 0x70, 0x5e, 0x7d, 0xf4, 0x1a, 0x4c, 0x08, 0x16, 0x5f, + 0x52, 0x1c, 0x36, 0x0d, 0x6c, 0x6e, 0x18, 0x50, 0x9c, 0xc0, 0x96, 0x71, 0x8c, 0x19, 0x97, 0x2d, + 0x29, 0x8c, 0xa4, 0xe3, 0x18, 0xeb, 0x70, 0x9c, 0xaa, 0x81, 0x16, 0x61, 0x92, 0xf3, 0x60, 0xae, + 0xb7, 0xcd, 0xe7, 0x44, 0xb8, 0x56, 0xa9, 0x2d, 0x75, 0xcb, 0x04, 0xe3, 0x24, 0x3e, 0x7a, 0x19, + 0xc6, 0x9c, 0xa0, 0xbe, 0xe3, 0x46, 0xa4, 0x1e, 0x75, 0x02, 0xee, 0x73, 0xa5, 0x59, 0x28, 0x2d, + 0x6a, 0x30, 0x6c, 0x60, 0xda, 0x6f, 0xc3, 0x4c, 0x46, 0x9c, 0x04, 0xba, 0x70, 0x9c, 0xb6, 0x2b, + 0xbf, 0x29, 0x61, 0xc6, 0xbc, 0x58, 0xad, 0xc8, 0xaf, 0xd1, 0xb0, 0xe8, 0xea, 0x64, 0xf1, 0x14, + 0xb4, 0xb4, 0x80, 0x6a, 0x75, 0xae, 0x4a, 0x00, 0x8e, 0x71, 0xec, 0xff, 0x56, 0x80, 0xc9, 0x0c, + 0xdd, 0x0a, 0x4b, 0x4d, 0x97, 0x78, 0xa4, 0xc4, 0x99, 0xe8, 0xcc, 0xb0, 0xd8, 0x85, 0x23, 0x84, + 0xc5, 0x2e, 0xf6, 0x0a, 0x8b, 0x3d, 0xf0, 0x4e, 0xc2, 0x62, 0x9b, 0x23, 0x36, 0xd8, 0xd7, 0x88, + 0x65, 0x84, 0xd2, 0x1e, 0x3a, 0x62, 0x28, 0x6d, 0x63, 0xd0, 0x87, 0xfb, 0x18, 0xf4, 0x1f, 0x2d, + 0xc0, 0x54, 0xd2, 0x92, 0xf2, 0x04, 0xe4, 0xb6, 0xaf, 0x1b, 0x72, 0xdb, 0xcb, 0xfd, 0xb8, 0xc2, + 0xe6, 0xca, 0x70, 0x71, 0x42, 0x86, 0xfb, 0xc1, 0xbe, 0xa8, 0x75, 0x97, 0xe7, 0xfe, 0xf5, 0x02, + 0x9c, 0xce, 0xf4, 0xc5, 0x3d, 0x81, 0xb1, 0xb9, 0x65, 0x8c, 0xcd, 0x73, 0x7d, 0xbb, 0x09, 0xe7, + 0x0e, 0xd0, 0xdd, 0xc4, 0x00, 0x5d, 0xe9, 0x9f, 0x64, 0xf7, 0x51, 0xfa, 0x5a, 0x11, 0xce, 0x67, + 0xd6, 0x8b, 0xc5, 0x9e, 0xab, 0x86, 0xd8, 0xf3, 0xf9, 0x84, 0xd8, 0xd3, 0xee, 0x5e, 0xfb, 0x78, + 0xe4, 0xa0, 0xc2, 0x5d, 0x96, 0x39, 0xfd, 0x3f, 0xa4, 0x0c, 0xd4, 0x70, 0x97, 0x55, 0x84, 0xb0, + 0x49, 0xf7, 0x5b, 0x49, 0xf6, 0xf9, 0xaf, 0x2d, 0x38, 0x9b, 0x39, 0x37, 0x27, 0x20, 0xeb, 0x5a, + 0x37, 0x65, 0x5d, 0x4f, 0xf7, 0xbd, 0x5a, 0x73, 0x84, 0x5f, 0x5f, 0x19, 0xcc, 0xf9, 0x16, 0xf6, 0x92, 0xbf, 0x05, 0xa3, 0x4e, 0xbd, 0x4e, 0xc2, 0x70, 0xcd, 0x6f, 0xa8, 0xc8, 0xbf, 0xcf, 0xb1, 0x77, 0x56, 0x5c, 0x7c, 0x78, 0x30, 0x3f, 0x97, 0x24, 0x11, 0x83, 0xb1, 0x4e, 0x01, 0x7d, 0x1a, 0x46, 0x42, 0x71, 0x6f, 0x8a, 0xb9, 0x7f, 0xa1, 0xcf, 0xc1, 0x71, 0x36, 0x49, 0xd3, 0x0c, 0x4d, @@ -6535,437 +6535,439 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0xcb, 0x4d, 0x27, 0x64, 0xce, 0x32, 0x62, 0x15, 0xb2, 0xf0, 0x47, 0xb5, 0x04, 0x0c, 0xa7, 0xb0, 0xd1, 0xaa, 0x6c, 0x95, 0x05, 0x1a, 0xe4, 0x0b, 0xf3, 0x52, 0xdc, 0xa2, 0x48, 0x8c, 0x7b, 0x2a, 0x39, 0xfc, 0x6c, 0xe0, 0xb5, 0x9a, 0xe8, 0xd3, 0x00, 0x74, 0xf9, 0x08, 0x39, 0xc4, 0x70, 0xfe, - 0xe1, 0x49, 0x4f, 0x95, 0x46, 0xa6, 0x6d, 0x2f, 0xf3, 0x70, 0x2d, 0x2b, 0x22, 0x58, 0x23, 0x68, - 0xff, 0xf0, 0x00, 0x3c, 0xde, 0xe5, 0x8c, 0x44, 0x8b, 0xa6, 0x1e, 0xf6, 0x99, 0xe4, 0xe3, 0x7a, - 0x2e, 0xb3, 0xb2, 0xf1, 0xda, 0x4e, 0x2c, 0xc5, 0xc2, 0x3b, 0x5e, 0x8a, 0x3f, 0x60, 0x69, 0x62, - 0x0f, 0x6e, 0xf1, 0xf9, 0xb1, 0x23, 0x9e, 0xfd, 0xc7, 0x28, 0x07, 0xd9, 0xca, 0x10, 0x26, 0x3c, - 0xdf, 0x77, 0x77, 0xfa, 0x96, 0x2e, 0x9c, 0xac, 0x94, 0xf8, 0xb7, 0x2d, 0x38, 0xd7, 0x35, 0x68, - 0xc7, 0x37, 0x20, 0xc3, 0x60, 0x7f, 0xc1, 0x82, 0x27, 0x33, 0x6b, 0x18, 0x66, 0x46, 0x57, 0xa0, - 0x54, 0xa7, 0x85, 0x9a, 0x97, 0x66, 0xec, 0xbe, 0x2e, 0x01, 0x38, 0xc6, 0x31, 0xac, 0x89, 0x0a, - 0x3d, 0xad, 0x89, 0x7e, 0xd5, 0x82, 0xd4, 0xa6, 0x3f, 0x81, 0xdb, 0xa7, 0x62, 0xde, 0x3e, 0xef, - 0xef, 0x67, 0x34, 0x73, 0x2e, 0x9e, 0x3f, 0x99, 0x84, 0x33, 0x39, 0x5e, 0x4a, 0x7b, 0x30, 0xbd, - 0x5d, 0x27, 0xa6, 0xff, 0x6b, 0xb7, 0xb8, 0x30, 0x5d, 0x9d, 0x65, 0x59, 0xea, 0xce, 0xe9, 0x14, - 0x0a, 0x4e, 0x37, 0x81, 0xbe, 0x60, 0xc1, 0x29, 0xe7, 0x5e, 0x98, 0xca, 0xf5, 0x2f, 0xd6, 0xce, - 0x8b, 0x99, 0x92, 0x9d, 0xbb, 0xb5, 0x14, 0xbe, 0xd1, 0x3c, 0xcb, 0x65, 0x9a, 0x85, 0x85, 0x33, - 0xdb, 0x42, 0x58, 0x04, 0xb8, 0xa7, 0x6f, 0x94, 0x2e, 0x1e, 0xda, 0x59, 0xee, 0x64, 0xfc, 0x5a, - 0x94, 0x10, 0xac, 0xe8, 0xa0, 0xcf, 0x42, 0x69, 0x5b, 0xfa, 0x78, 0x66, 0x5c, 0xbb, 0xf1, 0x40, - 0x76, 0xf7, 0x7c, 0xe5, 0xea, 0x59, 0x85, 0x84, 0x63, 0xa2, 0xe8, 0x35, 0x28, 0x7a, 0x5b, 0x61, - 0xb7, 0x74, 0xa0, 0x09, 0x3b, 0x3c, 0x1e, 0x07, 0x61, 0x7d, 0xb5, 0x86, 0x69, 0x45, 0x74, 0x1d, - 0x8a, 0xc1, 0x66, 0x43, 0x88, 0x25, 0x33, 0x37, 0x29, 0x5e, 0x2a, 0xe7, 0xf4, 0x8a, 0x51, 0xc2, - 0x4b, 0x65, 0x4c, 0x49, 0xa0, 0x2a, 0x0c, 0x32, 0xd7, 0x1e, 0x71, 0xc9, 0x65, 0xb2, 0xf3, 0x5d, - 0x5c, 0xe4, 0x78, 0xb0, 0x04, 0x86, 0x80, 0x39, 0x21, 0xb4, 0x01, 0x43, 0x75, 0x96, 0x3a, 0x52, - 0x04, 0x46, 0xfb, 0x50, 0xa6, 0x00, 0xb2, 0x4b, 0x4e, 0x4d, 0x21, 0x8f, 0x63, 0x18, 0x58, 0xd0, - 0x62, 0x54, 0x49, 0x7b, 0x67, 0x2b, 0x14, 0xa9, 0x8e, 0xb3, 0xa9, 0x76, 0x49, 0x15, 0x2b, 0xa8, - 0x32, 0x0c, 0x2c, 0x68, 0xa1, 0x57, 0xa0, 0xb0, 0x55, 0x17, 0x6e, 0x3b, 0x99, 0x92, 0x48, 0x33, - 0x94, 0xc5, 0xd2, 0xd0, 0x83, 0x83, 0xf9, 0xc2, 0xea, 0x32, 0x2e, 0x6c, 0xd5, 0xd1, 0x3a, 0x0c, - 0x6f, 0x71, 0xe7, 0x77, 0x21, 0x6c, 0x7c, 0x2a, 0xdb, 0x2f, 0x3f, 0xe5, 0x1f, 0xcf, 0x3d, 0x56, - 0x04, 0x00, 0x4b, 0x22, 0x2c, 0x5e, 0xbc, 0x72, 0xe2, 0x17, 0x31, 0xc4, 0x16, 0x8e, 0x16, 0x78, - 0x81, 0x33, 0x1d, 0x71, 0x28, 0x00, 0xac, 0x51, 0xa4, 0xab, 0xda, 0x91, 0xf9, 0xe6, 0x45, 0xb0, - 0x99, 0xcc, 0x55, 0xdd, 0x23, 0x15, 0x3f, 0x5f, 0xd5, 0x0a, 0x09, 0xc7, 0x44, 0xd1, 0x2e, 0x8c, - 0xef, 0x85, 0xed, 0x1d, 0x22, 0xb7, 0x34, 0x8b, 0x3d, 0x93, 0x73, 0x2f, 0xdf, 0x11, 0x88, 0x6e, - 0x10, 0x75, 0x9c, 0x66, 0xea, 0x14, 0x62, 0x3a, 0xfd, 0x3b, 0x3a, 0x31, 0x6c, 0xd2, 0xa6, 0xc3, - 0xff, 0x56, 0xc7, 0xdf, 0xdc, 0x8f, 0x88, 0x08, 0xfd, 0x95, 0x39, 0xfc, 0x6f, 0x70, 0x94, 0xf4, - 0xf0, 0x0b, 0x00, 0x96, 0x44, 0xd0, 0x1d, 0x31, 0x3c, 0xec, 0xf4, 0x9c, 0xca, 0x8f, 0xcf, 0xb9, - 0x28, 0x91, 0x72, 0x06, 0x85, 0x9d, 0x96, 0x31, 0x29, 0x76, 0x4a, 0xb6, 0x77, 0xfc, 0xc8, 0xf7, - 0x12, 0x27, 0xf4, 0x74, 0xfe, 0x29, 0x59, 0xcd, 0xc0, 0x4f, 0x9f, 0x92, 0x59, 0x58, 0x38, 0xb3, - 0x2d, 0xd4, 0x80, 0x89, 0xb6, 0x1f, 0x44, 0xf7, 0xfc, 0x40, 0xae, 0x2f, 0xd4, 0x45, 0x58, 0x62, - 0x60, 0x8a, 0x16, 0x59, 0x54, 0x3d, 0x13, 0x82, 0x13, 0x34, 0xd1, 0x27, 0x60, 0x38, 0xac, 0x3b, - 0x4d, 0x52, 0xb9, 0x35, 0x3b, 0x93, 0x7f, 0xfd, 0xd4, 0x38, 0x4a, 0xce, 0xea, 0xe2, 0xc1, 0xe5, - 0x39, 0x0a, 0x96, 0xe4, 0xd0, 0x2a, 0x0c, 0xb2, 0x7c, 0x60, 0x2c, 0x4e, 0x5d, 0x4e, 0x98, 0xd1, - 0x94, 0x55, 0x34, 0x3f, 0x9b, 0x58, 0x31, 0xe6, 0xd5, 0xe9, 0x1e, 0x10, 0x6f, 0x06, 0x3f, 0x9c, - 0x3d, 0x9d, 0xbf, 0x07, 0xc4, 0x53, 0xe3, 0x56, 0xad, 0xdb, 0x1e, 0x50, 0x48, 0x38, 0x26, 0x4a, - 0x4f, 0x66, 0x7a, 0x9a, 0x9e, 0xe9, 0x62, 0xce, 0x93, 0x7b, 0x96, 0xb2, 0x93, 0x99, 0x9e, 0xa4, - 0x94, 0x84, 0xfd, 0xfb, 0xc3, 0x69, 0x9e, 0x85, 0xbd, 0x32, 0xbf, 0xcb, 0x4a, 0x29, 0x20, 0x3f, - 0xdc, 0xaf, 0xd0, 0xeb, 0x18, 0x59, 0xf0, 0x2f, 0x58, 0x70, 0xa6, 0x9d, 0xf9, 0x21, 0x82, 0x01, - 0xe8, 0x4f, 0x76, 0xc6, 0x3f, 0x5d, 0xc5, 0x34, 0xcc, 0x86, 0xe3, 0x9c, 0x96, 0x92, 0xcf, 0x9c, - 0xe2, 0x3b, 0x7e, 0xe6, 0xac, 0xc1, 0x08, 0x63, 0x32, 0x7b, 0xa4, 0x52, 0x4e, 0xbe, 0xf6, 0x18, - 0x2b, 0xb1, 0x2c, 0x2a, 0x62, 0x45, 0x02, 0xfd, 0xa0, 0x05, 0xe7, 0x92, 0x5d, 0xc7, 0x84, 0x81, - 0x45, 0x20, 0x44, 0xfe, 0xc0, 0x5d, 0x15, 0xdf, 0x9f, 0xe2, 0xff, 0x0d, 0xe4, 0xc3, 0x5e, 0x08, - 0xb8, 0x7b, 0x63, 0xa8, 0x9c, 0xf1, 0xc2, 0x1e, 0x32, 0xb5, 0x0a, 0x7d, 0xbc, 0xb2, 0x5f, 0x84, - 0xb1, 0x96, 0xdf, 0xf1, 0x22, 0x61, 0xfd, 0x23, 0x2c, 0x11, 0x98, 0x06, 0x7e, 0x4d, 0x2b, 0xc7, - 0x06, 0x56, 0xe2, 0x6d, 0x3e, 0xf2, 0xd0, 0x6f, 0xf3, 0x37, 0x61, 0xcc, 0xd3, 0xcc, 0x55, 0x05, - 0x3f, 0x70, 0x29, 0x3f, 0x88, 0xa9, 0x6e, 0xdc, 0xca, 0x7b, 0xa9, 0x97, 0x60, 0x83, 0xda, 0xc9, - 0x3e, 0xf8, 0xbe, 0x6c, 0x65, 0x30, 0xf5, 0x5c, 0x04, 0xf0, 0x51, 0x53, 0x04, 0x70, 0x29, 0x29, - 0x02, 0x48, 0x49, 0x94, 0x8d, 0xd7, 0x7f, 0xff, 0x39, 0x5a, 0xfa, 0x0d, 0x84, 0x68, 0x37, 0xe1, - 0x42, 0xaf, 0x6b, 0x89, 0x99, 0x81, 0x35, 0x94, 0xfe, 0x30, 0x36, 0x03, 0x6b, 0x54, 0xca, 0x98, - 0x41, 0xfa, 0x0d, 0xb1, 0x63, 0xff, 0x57, 0x0b, 0x8a, 0x55, 0xbf, 0x71, 0x02, 0x0f, 0xde, 0x8f, - 0x19, 0x0f, 0xde, 0xc7, 0xb3, 0x2f, 0xc4, 0x46, 0xae, 0x3c, 0x7c, 0x25, 0x21, 0x0f, 0x3f, 0x97, - 0x47, 0xa0, 0xbb, 0xf4, 0xfb, 0x27, 0x8b, 0x30, 0x5a, 0xf5, 0x1b, 0xca, 0x06, 0xfb, 0xd7, 0x1f, - 0xc6, 0x06, 0x3b, 0x37, 0xd3, 0x80, 0x46, 0x99, 0x59, 0x8f, 0x49, 0xf7, 0xd3, 0x6f, 0x30, 0x53, - 0xec, 0xbb, 0xc4, 0xdd, 0xde, 0x89, 0x48, 0x23, 0xf9, 0x39, 0x27, 0x67, 0x8a, 0xfd, 0xfb, 0x05, - 0x98, 0x4c, 0xb4, 0x8e, 0x9a, 0x30, 0xde, 0xd4, 0xa5, 0xad, 0x62, 0x9d, 0x3e, 0x94, 0xa0, 0x56, - 0x98, 0xb2, 0x6a, 0x45, 0xd8, 0x24, 0x8e, 0x16, 0x00, 0x94, 0xfa, 0x51, 0x8a, 0xf5, 0x18, 0xd7, - 0xaf, 0xf4, 0x93, 0x21, 0xd6, 0x30, 0xd0, 0x4b, 0x30, 0x1a, 0xf9, 0x6d, 0xbf, 0xe9, 0x6f, 0xef, - 0xdf, 0x20, 0x32, 0xa8, 0x93, 0x32, 0x50, 0xdb, 0x88, 0x41, 0x58, 0xc7, 0x43, 0xf7, 0x61, 0x5a, - 0x11, 0xa9, 0x1d, 0x83, 0x04, 0x9a, 0x49, 0x15, 0xd6, 0x93, 0x14, 0x71, 0xba, 0x11, 0xfb, 0xa7, - 0x8b, 0x7c, 0x88, 0xbd, 0xc8, 0x7d, 0x6f, 0x37, 0xbc, 0xbb, 0x77, 0xc3, 0x57, 0x2d, 0x98, 0xa2, - 0xad, 0x33, 0xeb, 0x1b, 0x79, 0xcd, 0xab, 0xb0, 0xc9, 0x56, 0x97, 0xb0, 0xc9, 0x97, 0xe8, 0xa9, - 0xd9, 0xf0, 0x3b, 0x91, 0x90, 0xdd, 0x69, 0xc7, 0x22, 0x2d, 0xc5, 0x02, 0x2a, 0xf0, 0x48, 0x10, - 0x08, 0x8f, 0x41, 0x1d, 0x8f, 0x04, 0x01, 0x16, 0x50, 0x19, 0x55, 0x79, 0x20, 0x3b, 0xaa, 0x32, - 0x0f, 0x8e, 0x29, 0xec, 0x34, 0x04, 0xc3, 0xa5, 0x05, 0xc7, 0x94, 0x06, 0x1c, 0x31, 0x8e, 0xfd, - 0x73, 0x45, 0x18, 0xab, 0xfa, 0x8d, 0x58, 0xf5, 0xf8, 0xa2, 0xa1, 0x7a, 0xbc, 0x90, 0x50, 0x3d, - 0x4e, 0xe9, 0xb8, 0xef, 0x29, 0x1a, 0xbf, 0x5e, 0x8a, 0xc6, 0x7f, 0x6a, 0xb1, 0x59, 0x2b, 0xaf, - 0xd7, 0xb8, 0x31, 0x17, 0xba, 0x0a, 0xa3, 0xec, 0x80, 0x61, 0x2e, 0xaa, 0x52, 0x1f, 0xc7, 0xb2, - 0x05, 0xad, 0xc7, 0xc5, 0x58, 0xc7, 0x41, 0x97, 0x61, 0x24, 0x24, 0x4e, 0x50, 0xdf, 0x51, 0xa7, - 0xab, 0x50, 0x9e, 0xf1, 0x32, 0xac, 0xa0, 0xe8, 0x8d, 0x38, 0x2e, 0x63, 0x31, 0xdf, 0xe5, 0x4d, - 0xef, 0x0f, 0xdf, 0x22, 0xf9, 0xc1, 0x18, 0xed, 0xbb, 0x80, 0xd2, 0xf8, 0x7d, 0x04, 0x24, 0x9b, - 0x37, 0x03, 0x92, 0x95, 0x52, 0xc1, 0xc8, 0xfe, 0xdc, 0x82, 0x89, 0xaa, 0xdf, 0xa0, 0x5b, 0xf7, - 0x9b, 0x69, 0x9f, 0xea, 0x41, 0x69, 0x87, 0xba, 0x04, 0xa5, 0xbd, 0x08, 0x83, 0x55, 0xbf, 0x51, - 0xa9, 0x76, 0xf3, 0x37, 0xb7, 0xff, 0x96, 0x05, 0xc3, 0x55, 0xbf, 0x71, 0x02, 0x6a, 0x81, 0x8f, - 0x9a, 0x6a, 0x81, 0xc7, 0x72, 0xd6, 0x4d, 0x8e, 0x26, 0xe0, 0x6f, 0x0c, 0xc0, 0x38, 0xed, 0xa7, - 0xbf, 0x2d, 0xa7, 0xd2, 0x18, 0x36, 0xab, 0x8f, 0x61, 0xa3, 0x5c, 0xb8, 0xdf, 0x6c, 0xfa, 0xf7, - 0x92, 0xd3, 0xba, 0xca, 0x4a, 0xb1, 0x80, 0xa2, 0x67, 0x61, 0xa4, 0x1d, 0x90, 0x3d, 0xd7, 0x17, - 0xec, 0xad, 0xa6, 0x64, 0xa9, 0x8a, 0x72, 0xac, 0x30, 0xe8, 0xb3, 0x30, 0x74, 0x3d, 0x7a, 0x95, - 0xd7, 0x7d, 0xaf, 0xc1, 0x25, 0xe7, 0x45, 0x91, 0x39, 0x41, 0x2b, 0xc7, 0x06, 0x16, 0xba, 0x0b, - 0x25, 0xf6, 0x9f, 0x1d, 0x3b, 0x47, 0xcf, 0xc1, 0x29, 0x72, 0xb2, 0x09, 0x02, 0x38, 0xa6, 0x85, - 0x9e, 0x07, 0x88, 0x64, 0xf4, 0xf1, 0x50, 0x04, 0x9f, 0x52, 0x4f, 0x01, 0x15, 0x97, 0x3c, 0xc4, - 0x1a, 0x16, 0x7a, 0x06, 0x4a, 0x91, 0xe3, 0x36, 0x6f, 0xba, 0x1e, 0x09, 0x99, 0x44, 0xbc, 0x28, - 0x53, 0xa3, 0x89, 0x42, 0x1c, 0xc3, 0x29, 0x2b, 0xc6, 0x22, 0x33, 0xf0, 0x0c, 0xbe, 0x23, 0x0c, - 0x9b, 0xb1, 0x62, 0x37, 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x0e, 0x3c, 0xe1, 0x7a, 0x2c, 0xcb, 0x00, - 0xa9, 0xed, 0xba, 0xed, 0x8d, 0x9b, 0xb5, 0x3b, 0x24, 0x70, 0xb7, 0xf6, 0x97, 0x9c, 0xfa, 0x2e, - 0xf1, 0x64, 0x76, 0xc5, 0xf7, 0x8b, 0x2e, 0x3e, 0x51, 0xe9, 0x82, 0x8b, 0xbb, 0x52, 0xb2, 0x5f, - 0x86, 0xd3, 0x55, 0xbf, 0x51, 0xf5, 0x83, 0x68, 0xd5, 0x0f, 0xee, 0x39, 0x41, 0x43, 0xae, 0x94, - 0x79, 0x19, 0x25, 0x81, 0x1e, 0x85, 0x83, 0xfc, 0xa0, 0x30, 0x22, 0x20, 0xbc, 0xc0, 0x98, 0xaf, - 0x23, 0xfa, 0xf6, 0xd4, 0x19, 0x1b, 0xa0, 0x52, 0x6e, 0x5c, 0x73, 0x22, 0x82, 0x6e, 0xb1, 0x54, - 0xc2, 0xf1, 0x8d, 0x28, 0xaa, 0x3f, 0xad, 0xa5, 0x12, 0x8e, 0x81, 0x99, 0x57, 0xa8, 0x59, 0xdf, - 0xfe, 0x6f, 0x83, 0xec, 0x70, 0x4c, 0xa4, 0x6d, 0x40, 0x9f, 0x81, 0x89, 0x90, 0xdc, 0x74, 0xbd, - 0xce, 0x7d, 0x29, 0x8d, 0xe8, 0xe2, 0x9d, 0x55, 0x5b, 0xd1, 0x31, 0xb9, 0x4c, 0xd3, 0x2c, 0xc3, - 0x09, 0x6a, 0xa8, 0x05, 0x13, 0xf7, 0x5c, 0xaf, 0xe1, 0xdf, 0x0b, 0x25, 0xfd, 0x91, 0x7c, 0xd1, - 0xe6, 0x5d, 0x8e, 0x99, 0xe8, 0xa3, 0xd1, 0xdc, 0x5d, 0x83, 0x18, 0x4e, 0x10, 0xa7, 0x0b, 0x30, - 0xe8, 0x78, 0x8b, 0xe1, 0xed, 0x90, 0x04, 0x22, 0x29, 0x34, 0x5b, 0x80, 0x58, 0x16, 0xe2, 0x18, - 0x4e, 0x17, 0x20, 0xfb, 0x73, 0x2d, 0xf0, 0x3b, 0x3c, 0x47, 0x80, 0x58, 0x80, 0x58, 0x95, 0x62, - 0x0d, 0x83, 0x6e, 0x50, 0xf6, 0x6f, 0xdd, 0xf7, 0xb0, 0xef, 0x47, 0x72, 0x4b, 0xb3, 0x34, 0xa4, - 0x5a, 0x39, 0x36, 0xb0, 0xd0, 0x2a, 0xa0, 0xb0, 0xd3, 0x6e, 0x37, 0x99, 0xd9, 0x87, 0xd3, 0x64, - 0xa4, 0xb8, 0xca, 0xbd, 0xc8, 0x43, 0xa7, 0xd6, 0x52, 0x50, 0x9c, 0x51, 0x83, 0x9e, 0xd5, 0x5b, - 0xa2, 0xab, 0x83, 0xac, 0xab, 0x5c, 0x0d, 0x52, 0xe3, 0xfd, 0x94, 0x30, 0xb4, 0x02, 0xc3, 0xe1, - 0x7e, 0x58, 0x8f, 0x44, 0x0c, 0xb8, 0x9c, 0xcc, 0x3c, 0x35, 0x86, 0xa2, 0x25, 0x86, 0xe3, 0x55, - 0xb0, 0xac, 0x8b, 0xea, 0x30, 0x23, 0x28, 0x2e, 0xef, 0x38, 0x9e, 0xca, 0x73, 0xc2, 0xad, 0x5f, - 0xaf, 0x3e, 0x38, 0x98, 0x9f, 0x11, 0x2d, 0xeb, 0xe0, 0xc3, 0x83, 0xf9, 0x33, 0x55, 0xbf, 0x91, - 0x01, 0xc1, 0x59, 0xd4, 0xf8, 0xe2, 0xab, 0xd7, 0xfd, 0x56, 0xbb, 0x1a, 0xf8, 0x5b, 0x6e, 0x93, - 0x74, 0x53, 0x25, 0xd5, 0x0c, 0x4c, 0xb1, 0xf8, 0x8c, 0x32, 0x9c, 0xa0, 0x66, 0x7f, 0x3b, 0xe3, - 0x67, 0x58, 0x1e, 0xe4, 0xa8, 0x13, 0x10, 0xd4, 0x82, 0xf1, 0x36, 0xdb, 0x26, 0x22, 0x72, 0xbf, - 0x58, 0xeb, 0x2f, 0xf6, 0x29, 0x12, 0xb9, 0x47, 0xaf, 0x01, 0x25, 0xb2, 0x64, 0x6f, 0xcd, 0xaa, - 0x4e, 0x0e, 0x9b, 0xd4, 0xed, 0x1f, 0x7b, 0x8c, 0xdd, 0x88, 0x35, 0x2e, 0xe7, 0x18, 0x16, 0xc6, - 0xf6, 0xe2, 0x69, 0x35, 0x97, 0x2f, 0x70, 0x8b, 0xa7, 0x45, 0x18, 0xec, 0x63, 0x59, 0x17, 0x7d, - 0x1a, 0x26, 0xe8, 0x4b, 0x45, 0xdd, 0x4a, 0xe1, 0xec, 0xa9, 0xfc, 0xa0, 0x08, 0x0a, 0x4b, 0xcf, - 0xea, 0xa1, 0x57, 0xc6, 0x09, 0x62, 0xe8, 0x0d, 0x66, 0x16, 0x22, 0x49, 0x17, 0xfa, 0x21, 0xad, - 0x5b, 0x80, 0x48, 0xb2, 0x1a, 0x11, 0xd4, 0x81, 0x99, 0x74, 0x0e, 0xb0, 0x70, 0xd6, 0xce, 0x67, - 0xf9, 0xd2, 0x69, 0xbc, 0xe2, 0xf4, 0x0b, 0x69, 0x58, 0x88, 0xb3, 0xe8, 0xa3, 0x9b, 0x30, 0x2e, - 0x92, 0x01, 0x8b, 0x95, 0x5b, 0x34, 0xe4, 0x80, 0xe3, 0x58, 0x07, 0x1e, 0x26, 0x0b, 0xb0, 0x59, - 0x19, 0x6d, 0xc3, 0x39, 0x2d, 0x39, 0xcf, 0xb5, 0xc0, 0x61, 0xca, 0x7c, 0x97, 0x1d, 0xa7, 0xda, - 0x5d, 0xfd, 0xe4, 0x83, 0x83, 0xf9, 0x73, 0x1b, 0xdd, 0x10, 0x71, 0x77, 0x3a, 0xe8, 0x16, 0x9c, - 0xe6, 0x2e, 0xbd, 0x65, 0xe2, 0x34, 0x9a, 0xae, 0xa7, 0x98, 0x01, 0xbe, 0xe5, 0xcf, 0x3e, 0x38, - 0x98, 0x3f, 0xbd, 0x98, 0x85, 0x80, 0xb3, 0xeb, 0xa1, 0x8f, 0x42, 0xa9, 0xe1, 0x85, 0x62, 0x0c, - 0x86, 0x8c, 0xfc, 0x47, 0xa5, 0xf2, 0x7a, 0x4d, 0x7d, 0x7f, 0xfc, 0x07, 0xc7, 0x15, 0xd0, 0x36, - 0x97, 0x15, 0x2b, 0x09, 0xc6, 0x70, 0x2a, 0xa4, 0x51, 0x52, 0xc8, 0x67, 0x38, 0xf5, 0x71, 0x25, - 0x89, 0xb2, 0x75, 0x37, 0xfc, 0xfd, 0x0c, 0xc2, 0xe8, 0x75, 0x40, 0xf4, 0x05, 0xe1, 0xd6, 0xc9, - 0x62, 0x9d, 0xa5, 0x85, 0x60, 0xa2, 0xf5, 0x11, 0xd3, 0xcd, 0xac, 0x96, 0xc2, 0xc0, 0x19, 0xb5, - 0xd0, 0x75, 0x7a, 0xaa, 0xe8, 0xa5, 0xe2, 0xd4, 0x52, 0xd9, 0xea, 0xca, 0xa4, 0x1d, 0x90, 0xba, - 0x13, 0x91, 0x86, 0x49, 0x11, 0x27, 0xea, 0xa1, 0x06, 0x3c, 0xe1, 0x74, 0x22, 0x9f, 0x89, 0xe1, - 0x4d, 0xd4, 0x0d, 0x7f, 0x97, 0x78, 0x4c, 0x03, 0x36, 0xb2, 0x74, 0x81, 0x72, 0x1b, 0x8b, 0x5d, - 0xf0, 0x70, 0x57, 0x2a, 0x94, 0x4b, 0x54, 0xe9, 0x69, 0xc1, 0x0c, 0xd4, 0x94, 0x91, 0xa2, 0xf6, - 0x25, 0x18, 0xdd, 0xf1, 0xc3, 0x68, 0x9d, 0x44, 0xf7, 0xfc, 0x60, 0x57, 0xc4, 0xdb, 0x8c, 0x63, - 0x34, 0xc7, 0x20, 0xac, 0xe3, 0xd1, 0x67, 0x20, 0xb3, 0xcf, 0xa8, 0x94, 0x99, 0x6a, 0x7c, 0x24, - 0x3e, 0x63, 0xae, 0xf3, 0x62, 0x2c, 0xe1, 0x12, 0xb5, 0x52, 0x5d, 0x66, 0x6a, 0xee, 0x04, 0x6a, - 0xa5, 0xba, 0x8c, 0x25, 0x9c, 0x2e, 0xd7, 0x70, 0xc7, 0x09, 0x48, 0x35, 0xf0, 0xeb, 0x24, 0xd4, - 0x22, 0x83, 0x3f, 0xce, 0xa3, 0x89, 0xd2, 0xe5, 0x5a, 0xcb, 0x42, 0xc0, 0xd9, 0xf5, 0x10, 0x49, - 0x27, 0xa6, 0x9a, 0xc8, 0xd7, 0x4f, 0xa4, 0xf9, 0x99, 0x3e, 0x73, 0x53, 0x79, 0x30, 0xa5, 0x52, - 0x62, 0xf1, 0xf8, 0xa1, 0xe1, 0xec, 0x24, 0x5b, 0xdb, 0xfd, 0x07, 0x1f, 0x55, 0x1a, 0x9f, 0x4a, - 0x82, 0x12, 0x4e, 0xd1, 0x36, 0x62, 0x71, 0x4d, 0xf5, 0x8c, 0xc5, 0x75, 0x05, 0x4a, 0x61, 0x67, - 0xb3, 0xe1, 0xb7, 0x1c, 0xd7, 0x63, 0x6a, 0x6e, 0xed, 0x3d, 0x52, 0x93, 0x00, 0x1c, 0xe3, 0xa0, - 0x55, 0x18, 0x71, 0xa4, 0x3a, 0x07, 0xe5, 0x47, 0x5f, 0x51, 0x4a, 0x1c, 0x1e, 0x90, 0x40, 0x2a, - 0x70, 0x54, 0x5d, 0xf4, 0x2a, 0x8c, 0x0b, 0x97, 0x54, 0x91, 0x8d, 0x71, 0xc6, 0xf4, 0x1b, 0xaa, - 0xe9, 0x40, 0x6c, 0xe2, 0xa2, 0xdb, 0x30, 0x1a, 0xf9, 0x4d, 0xe6, 0xfc, 0x42, 0xd9, 0xbc, 0x33, - 0xf9, 0x71, 0xc4, 0x36, 0x14, 0x9a, 0x2e, 0x49, 0x55, 0x55, 0xb1, 0x4e, 0x07, 0x6d, 0xf0, 0xf5, - 0xce, 0x22, 0x64, 0x93, 0x70, 0xf6, 0xb1, 0xfc, 0x3b, 0x49, 0x05, 0xd2, 0x36, 0xb7, 0x83, 0xa8, - 0x89, 0x75, 0x32, 0xe8, 0x1a, 0x4c, 0xb7, 0x03, 0xd7, 0x67, 0x6b, 0x42, 0x69, 0xf2, 0x66, 0xcd, - 0xf4, 0x3c, 0xd5, 0x24, 0x02, 0x4e, 0xd7, 0x61, 0x1e, 0xc5, 0xa2, 0x70, 0xf6, 0x2c, 0x4f, 0xd8, - 0xcc, 0x9f, 0x77, 0xbc, 0x0c, 0x2b, 0x28, 0x5a, 0x63, 0x27, 0x31, 0x97, 0x4c, 0xcc, 0xce, 0xe5, - 0x07, 0x7c, 0xd1, 0x25, 0x18, 0x9c, 0x79, 0x55, 0x7f, 0x71, 0x4c, 0x01, 0x35, 0xb4, 0xcc, 0x7e, - 0xf4, 0xc5, 0x10, 0xce, 0x3e, 0xd1, 0xc5, 0x48, 0x2e, 0xf1, 0xbc, 0x88, 0x19, 0x02, 0xa3, 0x38, - 0xc4, 0x09, 0x9a, 0xe8, 0xe3, 0x30, 0x25, 0xc2, 0xd4, 0xc5, 0xc3, 0x74, 0x2e, 0x36, 0x29, 0xc6, - 0x09, 0x18, 0x4e, 0x61, 0xf3, 0xcc, 0x01, 0xce, 0x66, 0x93, 0x88, 0xa3, 0xef, 0xa6, 0xeb, 0xed, - 0x86, 0xb3, 0xe7, 0xd9, 0xf9, 0x20, 0x32, 0x07, 0x24, 0xa1, 0x38, 0xa3, 0x06, 0xda, 0x80, 0xa9, - 0x76, 0x40, 0x48, 0x8b, 0x31, 0xfa, 0xe2, 0x3e, 0x9b, 0xe7, 0x0e, 0xf5, 0xb4, 0x27, 0xd5, 0x04, - 0xec, 0x30, 0xa3, 0x0c, 0xa7, 0x28, 0xa0, 0x7b, 0x30, 0xe2, 0xef, 0x91, 0x60, 0x87, 0x38, 0x8d, - 0xd9, 0x0b, 0x5d, 0x4c, 0xdc, 0xc5, 0xe5, 0x76, 0x4b, 0xe0, 0x26, 0xb4, 0xff, 0xb2, 0xb8, 0xb7, - 0xf6, 0x5f, 0x36, 0x86, 0x7e, 0xc8, 0x82, 0xb3, 0x52, 0x61, 0x50, 0x6b, 0xd3, 0x51, 0x5f, 0xf6, - 0xbd, 0x30, 0x0a, 0xb8, 0x0b, 0xf8, 0x93, 0xf9, 0x6e, 0xd1, 0x1b, 0x39, 0x95, 0x94, 0x70, 0xf4, - 0x6c, 0x1e, 0x46, 0x88, 0xf3, 0x5b, 0x44, 0xcb, 0x30, 0x1d, 0x92, 0x48, 0x1e, 0x46, 0x8b, 0xe1, - 0xea, 0x1b, 0xe5, 0xf5, 0xd9, 0x8b, 0xdc, 0x7f, 0x9d, 0x6e, 0x86, 0x5a, 0x12, 0x88, 0xd3, 0xf8, - 0x73, 0xdf, 0x0a, 0xd3, 0xa9, 0xeb, 0xff, 0x28, 0x19, 0x51, 0xe6, 0x76, 0x61, 0xdc, 0x18, 0xe2, - 0x47, 0xaa, 0x3d, 0xfe, 0x57, 0xc3, 0x50, 0x52, 0x9a, 0x45, 0x74, 0xc5, 0x54, 0x18, 0x9f, 0x4d, - 0x2a, 0x8c, 0x47, 0xe8, 0xbb, 0x5e, 0xd7, 0x11, 0x6f, 0x64, 0x44, 0xed, 0xca, 0xdb, 0xd0, 0xfd, - 0xbb, 0x63, 0x6b, 0xe2, 0xda, 0x62, 0xdf, 0x9a, 0xe7, 0x81, 0xae, 0x12, 0xe0, 0x6b, 0x30, 0xed, - 0xf9, 0x8c, 0xe7, 0x24, 0x0d, 0xc9, 0x50, 0x30, 0xbe, 0xa1, 0xa4, 0x87, 0xc1, 0x48, 0x20, 0xe0, - 0x74, 0x1d, 0xda, 0x20, 0xbf, 0xf8, 0x93, 0x22, 0x67, 0xce, 0x17, 0x60, 0x01, 0x45, 0x17, 0x61, - 0xb0, 0xed, 0x37, 0x2a, 0x55, 0xc1, 0x6f, 0x6a, 0xb1, 0x22, 0x1b, 0x95, 0x2a, 0xe6, 0x30, 0xb4, - 0x08, 0x43, 0xec, 0x47, 0x38, 0x3b, 0x96, 0x1f, 0xef, 0x80, 0xd5, 0xd0, 0xf2, 0xcd, 0xb0, 0x0a, - 0x58, 0x54, 0x64, 0xa2, 0x2f, 0xca, 0xa4, 0x33, 0xd1, 0xd7, 0xf0, 0x43, 0x8a, 0xbe, 0x24, 0x01, - 0x1c, 0xd3, 0x42, 0xf7, 0xe1, 0xb4, 0xf1, 0x30, 0xe2, 0x4b, 0x84, 0x84, 0xc2, 0xe7, 0xfa, 0x62, - 0xd7, 0x17, 0x91, 0xd0, 0x54, 0x9f, 0x13, 0x9d, 0x3e, 0x5d, 0xc9, 0xa2, 0x84, 0xb3, 0x1b, 0x40, - 0x4d, 0x98, 0xae, 0xa7, 0x5a, 0x1d, 0xe9, 0xbf, 0x55, 0x35, 0xa1, 0xe9, 0x16, 0xd3, 0x84, 0xd1, - 0xab, 0x30, 0xf2, 0x96, 0x1f, 0xb2, 0xb3, 0x5a, 0xf0, 0xc8, 0xd2, 0x61, 0x77, 0xe4, 0x8d, 0x5b, - 0x35, 0x56, 0x7e, 0x78, 0x30, 0x3f, 0x5a, 0xf5, 0x1b, 0xf2, 0x2f, 0x56, 0x15, 0xd0, 0xf7, 0x5a, - 0x30, 0x97, 0x7e, 0x79, 0xa9, 0x4e, 0x8f, 0xf7, 0xdf, 0x69, 0x5b, 0x34, 0x3a, 0xb7, 0x92, 0x4b, - 0x0e, 0x77, 0x69, 0xca, 0xfe, 0x65, 0x8b, 0x49, 0xdd, 0x84, 0x06, 0x88, 0x84, 0x9d, 0xe6, 0x49, - 0xa4, 0xd9, 0x5c, 0x31, 0x94, 0x53, 0x0f, 0x6d, 0xb9, 0xf0, 0xcf, 0x2d, 0x66, 0xb9, 0x70, 0x82, - 0x2e, 0x0a, 0x6f, 0xc0, 0x48, 0x24, 0xd3, 0x9f, 0x76, 0xc9, 0x0c, 0xaa, 0x75, 0x8a, 0x59, 0x6f, - 0x28, 0x8e, 0x55, 0x65, 0x3a, 0x55, 0x64, 0xec, 0x7f, 0xc4, 0x67, 0x40, 0x42, 0x4e, 0x40, 0x07, - 0x50, 0x36, 0x75, 0x00, 0xf3, 0x3d, 0xbe, 0x20, 0x47, 0x17, 0xf0, 0x0f, 0xcd, 0x7e, 0x33, 0x49, - 0xcd, 0xbb, 0xdd, 0x64, 0xc6, 0xfe, 0xa2, 0x05, 0x10, 0x87, 0xe2, 0x65, 0xf2, 0x65, 0x3f, 0x90, - 0x39, 0x16, 0xb3, 0xb2, 0x09, 0xbd, 0x4c, 0x79, 0x54, 0x3f, 0xf2, 0xeb, 0x7e, 0x53, 0x68, 0xb8, - 0x9e, 0x88, 0xd5, 0x10, 0xbc, 0xfc, 0x50, 0xfb, 0x8d, 0x15, 0x36, 0x9a, 0x97, 0x81, 0xbf, 0x8a, - 0xb1, 0x62, 0xcc, 0x08, 0xfa, 0xf5, 0x23, 0x16, 0x9c, 0xca, 0xb2, 0x77, 0xa5, 0x2f, 0x1e, 0x2e, - 0xb3, 0x52, 0xe6, 0x4c, 0x6a, 0x36, 0xef, 0x88, 0x72, 0xac, 0x30, 0xfa, 0xce, 0x1c, 0x76, 0xb4, - 0x18, 0xb8, 0xb7, 0x60, 0xbc, 0x1a, 0x10, 0xed, 0x72, 0x7d, 0x8d, 0x3b, 0x93, 0xf3, 0xfe, 0x3c, - 0x7b, 0x64, 0x47, 0x72, 0xfb, 0x67, 0x0a, 0x70, 0x8a, 0x5b, 0x05, 0x2c, 0xee, 0xf9, 0x6e, 0xa3, - 0xea, 0x37, 0x44, 0xd6, 0xb7, 0x4f, 0xc1, 0x58, 0x5b, 0x13, 0x34, 0x76, 0x8b, 0xe7, 0xa8, 0x0b, - 0x24, 0x63, 0xd1, 0x88, 0x5e, 0x8a, 0x0d, 0x5a, 0xa8, 0x01, 0x63, 0x64, 0xcf, 0xad, 0x2b, 0xd5, - 0x72, 0xe1, 0xc8, 0x17, 0x9d, 0x6a, 0x65, 0x45, 0xa3, 0x83, 0x0d, 0xaa, 0x8f, 0x20, 0x9f, 0xaf, - 0xfd, 0xa3, 0x16, 0x3c, 0x96, 0x13, 0xfd, 0x91, 0x36, 0x77, 0x8f, 0xd9, 0x5f, 0x88, 0x65, 0xab, - 0x9a, 0xe3, 0x56, 0x19, 0x58, 0x40, 0xd1, 0x27, 0x00, 0xb8, 0x55, 0x05, 0x7d, 0x72, 0xf7, 0x0a, - 0x93, 0x67, 0x44, 0xf8, 0xd2, 0x82, 0x35, 0xc9, 0xfa, 0x58, 0xa3, 0x65, 0x7f, 0x69, 0x00, 0x06, - 0x79, 0xee, 0xf1, 0x55, 0x18, 0xde, 0xe1, 0xb9, 0x30, 0xfa, 0x49, 0xbb, 0x11, 0x0b, 0x43, 0x78, - 0x01, 0x96, 0x95, 0xd1, 0x1a, 0xcc, 0xf0, 0x5c, 0x22, 0xcd, 0x32, 0x69, 0x3a, 0xfb, 0x52, 0x72, - 0xc7, 0xf3, 0x70, 0x2a, 0x09, 0x66, 0x25, 0x8d, 0x82, 0xb3, 0xea, 0xa1, 0xd7, 0x60, 0x82, 0xbe, - 0xa4, 0xfc, 0x4e, 0x24, 0x29, 0xf1, 0x2c, 0x22, 0xea, 0xe9, 0xb6, 0x61, 0x40, 0x71, 0x02, 0x9b, - 0x3e, 0xe6, 0xdb, 0x29, 0x19, 0xe5, 0x60, 0xfc, 0x98, 0x37, 0xe5, 0x92, 0x26, 0x2e, 0x33, 0x74, - 0xed, 0x30, 0xb3, 0xde, 0x8d, 0x9d, 0x80, 0x84, 0x3b, 0x7e, 0xb3, 0xc1, 0x98, 0xbe, 0x41, 0xcd, - 0xd0, 0x35, 0x01, 0xc7, 0xa9, 0x1a, 0x94, 0xca, 0x96, 0xe3, 0x36, 0x3b, 0x01, 0x89, 0xa9, 0x0c, - 0x99, 0x54, 0x56, 0x13, 0x70, 0x9c, 0xaa, 0xd1, 0x5b, 0xf8, 0x3a, 0x7c, 0x3c, 0xc2, 0x57, 0xba, - 0x60, 0x4f, 0x57, 0x03, 0x9f, 0x9e, 0xd8, 0x32, 0x76, 0x8e, 0x32, 0x93, 0x1e, 0x96, 0x6e, 0xbe, - 0x5d, 0xa2, 0xcc, 0x09, 0x43, 0x52, 0x4e, 0xc1, 0xb0, 0x54, 0xa8, 0x09, 0x07, 0x5f, 0x49, 0x05, - 0x5d, 0x85, 0x51, 0x91, 0x8a, 0x82, 0x59, 0xf3, 0xf2, 0x35, 0xc2, 0x2c, 0x2b, 0xca, 0x71, 0x31, - 0xd6, 0x71, 0xec, 0xef, 0x2b, 0xc0, 0x4c, 0x86, 0x3b, 0x06, 0x3f, 0x13, 0xb7, 0xdd, 0x30, 0x52, - 0x49, 0x0d, 0xb5, 0x33, 0x91, 0x97, 0x63, 0x85, 0x41, 0x37, 0x1e, 0x3f, 0x75, 0x93, 0x27, 0xad, - 0x30, 0x77, 0x16, 0xd0, 0x23, 0xa6, 0x07, 0xbc, 0x00, 0x03, 0x9d, 0x90, 0xc8, 0xf8, 0x90, 0xea, - 0x0e, 0x62, 0x0a, 0x37, 0x06, 0xa1, 0x6f, 0x82, 0x6d, 0xa5, 0xbb, 0xd2, 0xde, 0x04, 0x5c, 0x7b, - 0xc5, 0x61, 0xb4, 0x73, 0x11, 0xf1, 0x1c, 0x2f, 0x12, 0x2f, 0x87, 0x38, 0xd0, 0x19, 0x2b, 0xc5, - 0x02, 0x6a, 0x7f, 0xa9, 0x08, 0x67, 0x73, 0x1d, 0xb4, 0x68, 0xd7, 0x5b, 0xbe, 0xe7, 0x46, 0xbe, - 0x32, 0x59, 0xe1, 0xc1, 0xcd, 0x48, 0x7b, 0x67, 0x4d, 0x94, 0x63, 0x85, 0x81, 0x2e, 0xc1, 0x20, - 0x13, 0xd7, 0xa5, 0xd2, 0x3b, 0x2e, 0x95, 0x79, 0xb4, 0x1b, 0x0e, 0xee, 0x3b, 0x75, 0xee, 0x45, - 0x7a, 0x1d, 0xfb, 0xcd, 0xe4, 0xe9, 0x48, 0xbb, 0xeb, 0xfb, 0x4d, 0xcc, 0x80, 0xe8, 0x03, 0x62, - 0xbc, 0x12, 0x36, 0x1a, 0xd8, 0x69, 0xf8, 0xa1, 0x36, 0x68, 0x4f, 0xc3, 0xf0, 0x2e, 0xd9, 0x0f, - 0x5c, 0x6f, 0x3b, 0x69, 0xbb, 0x73, 0x83, 0x17, 0x63, 0x09, 0x37, 0x33, 0x75, 0x0d, 0x1f, 0x77, - 0xce, 0xdb, 0x91, 0x9e, 0x77, 0xed, 0x0f, 0x14, 0x61, 0x12, 0x2f, 0x95, 0xdf, 0x9b, 0x88, 0xdb, - 0xe9, 0x89, 0x38, 0xee, 0x9c, 0xb7, 0xbd, 0x67, 0xe3, 0x17, 0x2c, 0x98, 0x64, 0x09, 0x31, 0x44, - 0x58, 0x2c, 0xd7, 0xf7, 0x4e, 0x80, 0xaf, 0xbd, 0x08, 0x83, 0x01, 0x6d, 0x34, 0x99, 0xd7, 0x91, - 0xf5, 0x04, 0x73, 0x18, 0x7a, 0x02, 0x06, 0x58, 0x17, 0xe8, 0xe4, 0x8d, 0xf1, 0x94, 0x58, 0x65, - 0x27, 0x72, 0x30, 0x2b, 0x65, 0xb1, 0x5e, 0x30, 0x69, 0x37, 0x5d, 0xde, 0xe9, 0x58, 0x99, 0xfa, - 0xee, 0x70, 0xdd, 0xce, 0xec, 0xda, 0x3b, 0x8b, 0xf5, 0x92, 0x4d, 0xb2, 0xfb, 0x9b, 0xf1, 0x8f, - 0x0b, 0x70, 0x3e, 0xb3, 0x5e, 0xdf, 0xb1, 0x5e, 0xba, 0xd7, 0x7e, 0x94, 0x29, 0x0f, 0x8a, 0x27, - 0x68, 0x19, 0x39, 0xd0, 0x2f, 0x2b, 0x3b, 0xd8, 0x47, 0x08, 0x96, 0xcc, 0x21, 0x7b, 0x97, 0x84, - 0x60, 0xc9, 0xec, 0x5b, 0xce, 0x9b, 0xf7, 0x2f, 0x0a, 0x39, 0xdf, 0xc2, 0x5e, 0xbf, 0x97, 0xe9, - 0x39, 0xc3, 0x80, 0xa1, 0x7c, 0x51, 0xf2, 0x33, 0x86, 0x97, 0x61, 0x05, 0x45, 0x8b, 0x30, 0xd9, - 0x72, 0x3d, 0x7a, 0xf8, 0xec, 0x9b, 0x1c, 0xa6, 0x8a, 0x90, 0xb5, 0x66, 0x82, 0x71, 0x12, 0x1f, - 0xb9, 0x5a, 0x78, 0x96, 0x42, 0x7e, 0xa6, 0xf4, 0xdc, 0xde, 0x2e, 0x98, 0x8a, 0x66, 0x35, 0x8a, - 0x19, 0xa1, 0x5a, 0xd6, 0x34, 0xa1, 0x47, 0xb1, 0x7f, 0xa1, 0xc7, 0x58, 0xb6, 0xc0, 0x63, 0xee, - 0x55, 0x18, 0x7f, 0x68, 0x29, 0xb7, 0xfd, 0xd5, 0x22, 0x3c, 0xde, 0x65, 0xdb, 0xf3, 0xb3, 0xde, - 0x98, 0x03, 0xed, 0xac, 0x4f, 0xcd, 0x43, 0x15, 0x4e, 0x6d, 0x75, 0x9a, 0xcd, 0x7d, 0xe6, 0x30, - 0x40, 0x1a, 0x12, 0x43, 0xf0, 0x94, 0xf2, 0xa5, 0x7f, 0x6a, 0x35, 0x03, 0x07, 0x67, 0xd6, 0xa4, - 0x2f, 0x07, 0x7a, 0x93, 0xec, 0x2b, 0x52, 0x89, 0x97, 0x03, 0xd6, 0x81, 0xd8, 0xc4, 0x45, 0xd7, - 0x60, 0xda, 0xd9, 0x73, 0x5c, 0x1e, 0xe3, 0x56, 0x12, 0xe0, 0x4f, 0x07, 0x25, 0x9c, 0x5c, 0x4c, - 0x22, 0xe0, 0x74, 0x1d, 0xf4, 0x3a, 0x20, 0x7f, 0x93, 0x99, 0x15, 0x37, 0xae, 0x11, 0x4f, 0xe8, - 0x03, 0xd9, 0xdc, 0x15, 0xe3, 0x23, 0xe1, 0x56, 0x0a, 0x03, 0x67, 0xd4, 0x4a, 0x84, 0x3b, 0x19, - 0xca, 0x0f, 0x77, 0xd2, 0xfd, 0x5c, 0xec, 0x99, 0x6d, 0xe3, 0x3f, 0x59, 0xf4, 0xfa, 0xe2, 0x4c, - 0xbe, 0x19, 0xb5, 0xef, 0x55, 0x66, 0xcf, 0xc7, 0x05, 0x97, 0x5a, 0x90, 0x8e, 0xd3, 0x9a, 0x3d, - 0x5f, 0x0c, 0xc4, 0x26, 0x2e, 0x5f, 0x10, 0x61, 0xec, 0x1b, 0x6a, 0xb0, 0xf8, 0x22, 0xb4, 0x90, - 0xc2, 0x40, 0x9f, 0x84, 0xe1, 0x86, 0xbb, 0xe7, 0x86, 0x42, 0x6c, 0x73, 0x64, 0x1d, 0x49, 0x7c, - 0x0e, 0x96, 0x39, 0x19, 0x2c, 0xe9, 0xd9, 0x3f, 0x50, 0x80, 0x71, 0xd9, 0xe2, 0x1b, 0x1d, 0x3f, - 0x72, 0x4e, 0xe0, 0x5a, 0xbe, 0x66, 0x5c, 0xcb, 0x1f, 0xe8, 0x16, 0x5f, 0x89, 0x75, 0x29, 0xf7, - 0x3a, 0xbe, 0x95, 0xb8, 0x8e, 0x9f, 0xea, 0x4d, 0xaa, 0xfb, 0x35, 0xfc, 0x8f, 0x2d, 0x98, 0x36, - 0xf0, 0x4f, 0xe0, 0x36, 0x58, 0x35, 0x6f, 0x83, 0x27, 0x7b, 0x7e, 0x43, 0xce, 0x2d, 0xf0, 0xdd, - 0xc5, 0x44, 0xdf, 0xd9, 0xe9, 0xff, 0x16, 0x0c, 0xec, 0x38, 0x41, 0xa3, 0x5b, 0x3c, 0xf9, 0x54, - 0xa5, 0x85, 0xeb, 0x4e, 0x20, 0x14, 0xa2, 0xcf, 0xaa, 0x44, 0xe5, 0x4e, 0xd0, 0x5b, 0x19, 0xca, - 0x9a, 0x42, 0x2f, 0xc3, 0x50, 0x58, 0xf7, 0xdb, 0xca, 0x5d, 0xe0, 0x02, 0x4f, 0x62, 0x4e, 0x4b, - 0x0e, 0x0f, 0xe6, 0x91, 0xd9, 0x1c, 0x2d, 0xc6, 0x02, 0x1f, 0x7d, 0x0a, 0xc6, 0xd9, 0x2f, 0x65, - 0x9d, 0x54, 0xcc, 0xcf, 0x3d, 0x55, 0xd3, 0x11, 0xb9, 0xe9, 0x9e, 0x51, 0x84, 0x4d, 0x52, 0x73, - 0xdb, 0x50, 0x52, 0x9f, 0xf5, 0x48, 0x95, 0x90, 0xff, 0xbe, 0x08, 0x33, 0x19, 0x6b, 0x0e, 0x85, - 0xc6, 0x4c, 0x5c, 0xed, 0x73, 0xa9, 0xbe, 0xc3, 0xb9, 0x08, 0xd9, 0x6b, 0xa8, 0x21, 0xd6, 0x56, - 0xdf, 0x8d, 0xde, 0x0e, 0x49, 0xb2, 0x51, 0x5a, 0xd4, 0xbb, 0x51, 0xda, 0xd8, 0x89, 0x0d, 0x35, - 0x6d, 0x48, 0xf5, 0xf4, 0x91, 0xce, 0xe9, 0x9f, 0x15, 0xe1, 0x54, 0x56, 0xc8, 0x37, 0xf4, 0xf9, - 0x44, 0x36, 0xc3, 0x17, 0xfb, 0x0d, 0x16, 0xc7, 0x53, 0x1c, 0x72, 0x61, 0xf3, 0xd2, 0x82, 0x99, - 0xdf, 0xb0, 0xe7, 0x30, 0x8b, 0x36, 0x59, 0xdc, 0x83, 0x80, 0x67, 0xa1, 0x94, 0xc7, 0xc7, 0x87, - 0xfb, 0xee, 0x80, 0x48, 0x5f, 0x19, 0x26, 0x2c, 0x1f, 0x64, 0x71, 0x6f, 0xcb, 0x07, 0xd9, 0xf2, - 0x9c, 0x0b, 0xa3, 0xda, 0xd7, 0x3c, 0xd2, 0x19, 0xdf, 0xa5, 0xb7, 0x95, 0xd6, 0xef, 0x47, 0x3a, - 0xeb, 0x3f, 0x6a, 0x41, 0xc2, 0x18, 0x5e, 0x89, 0xc5, 0xac, 0x5c, 0xb1, 0xd8, 0x05, 0x18, 0x08, - 0xfc, 0x26, 0x49, 0xa6, 0xfd, 0xc3, 0x7e, 0x93, 0x60, 0x06, 0xa1, 0x18, 0x51, 0x2c, 0xec, 0x18, - 0xd3, 0x1f, 0x72, 0xe2, 0x89, 0x76, 0x11, 0x06, 0x9b, 0x64, 0x8f, 0x34, 0x93, 0xd9, 0x59, 0x6e, - 0xd2, 0x42, 0xcc, 0x61, 0xf6, 0x2f, 0x0c, 0xc0, 0xb9, 0xae, 0x91, 0x43, 0xe8, 0x73, 0x68, 0xdb, - 0x89, 0xc8, 0x3d, 0x67, 0x3f, 0x99, 0x46, 0xe1, 0x1a, 0x2f, 0xc6, 0x12, 0xce, 0xdc, 0x95, 0x78, - 0x34, 0xe4, 0x84, 0x10, 0x51, 0x04, 0x41, 0x16, 0x50, 0x53, 0x28, 0x55, 0x3c, 0x0e, 0xa1, 0xd4, - 0xf3, 0x00, 0x61, 0xd8, 0xe4, 0x26, 0x43, 0x0d, 0xe1, 0x07, 0x15, 0x47, 0xcd, 0xae, 0xdd, 0x14, - 0x10, 0xac, 0x61, 0xa1, 0x32, 0x4c, 0xb5, 0x03, 0x3f, 0xe2, 0x32, 0xd9, 0x32, 0xb7, 0xaa, 0x1b, - 0x34, 0x83, 0x36, 0x54, 0x13, 0x70, 0x9c, 0xaa, 0x81, 0x5e, 0x82, 0x51, 0x11, 0xc8, 0xa1, 0xea, - 0xfb, 0x4d, 0x21, 0x06, 0x52, 0x86, 0x66, 0xb5, 0x18, 0x84, 0x75, 0x3c, 0xad, 0x1a, 0x13, 0xf4, - 0x0e, 0x67, 0x56, 0xe3, 0xc2, 0x5e, 0x0d, 0x2f, 0x11, 0xfe, 0x71, 0xa4, 0xaf, 0xf0, 0x8f, 0xb1, - 0x60, 0xac, 0xd4, 0xb7, 0x12, 0x0d, 0x7a, 0x8a, 0x92, 0x7e, 0x76, 0x00, 0x66, 0xc4, 0xc2, 0x79, - 0xd4, 0xcb, 0xe5, 0x76, 0x7a, 0xb9, 0x1c, 0x87, 0xe8, 0xec, 0xbd, 0x35, 0x73, 0xd2, 0x6b, 0xe6, - 0x07, 0x2d, 0x30, 0xd9, 0x2b, 0xf4, 0xff, 0xe4, 0xe6, 0xa1, 0x79, 0x29, 0x97, 0x5d, 0x6b, 0xc8, - 0x0b, 0xe4, 0x1d, 0x66, 0xa4, 0xb1, 0xff, 0xa3, 0x05, 0x4f, 0xf6, 0xa4, 0x88, 0x56, 0xa0, 0xc4, - 0x78, 0x40, 0xed, 0x75, 0xf6, 0x94, 0xb2, 0xba, 0x95, 0x80, 0x1c, 0x96, 0x34, 0xae, 0x89, 0x56, - 0x52, 0x09, 0x7f, 0x9e, 0xce, 0x48, 0xf8, 0x73, 0xda, 0x18, 0x9e, 0x87, 0xcc, 0xf8, 0xf3, 0xfd, - 0xf4, 0xc6, 0x31, 0x3c, 0x5e, 0xd0, 0x87, 0x0d, 0xb1, 0x9f, 0x9d, 0x10, 0xfb, 0x21, 0x13, 0x5b, - 0xbb, 0x43, 0x3e, 0x0e, 0x53, 0x2c, 0xc2, 0x13, 0xb3, 0x01, 0x17, 0xbe, 0x38, 0x85, 0xd8, 0xce, - 0xf3, 0x66, 0x02, 0x86, 0x53, 0xd8, 0xf6, 0x1f, 0x15, 0x61, 0x88, 0x6f, 0xbf, 0x13, 0x78, 0x13, - 0x3e, 0x03, 0x25, 0xb7, 0xd5, 0xea, 0xf0, 0x1c, 0x2e, 0x83, 0xdc, 0x01, 0x97, 0xce, 0x53, 0x45, - 0x16, 0xe2, 0x18, 0x8e, 0x56, 0x85, 0xc4, 0xb9, 0x4b, 0x10, 0x49, 0xde, 0xf1, 0x85, 0xb2, 0x13, - 0x39, 0x9c, 0xc1, 0x51, 0xf7, 0x6c, 0x2c, 0x9b, 0x46, 0x9f, 0x01, 0x08, 0xa3, 0xc0, 0xf5, 0xb6, - 0x69, 0x99, 0x88, 0x99, 0xfa, 0xc1, 0x2e, 0xd4, 0x6a, 0x0a, 0x99, 0xd3, 0x8c, 0xcf, 0x1c, 0x05, - 0xc0, 0x1a, 0x45, 0xb4, 0x60, 0xdc, 0xf4, 0x73, 0x89, 0xb9, 0x03, 0x4e, 0x35, 0x9e, 0xb3, 0xb9, - 0x8f, 0x40, 0x49, 0x11, 0xef, 0x25, 0x7f, 0x1a, 0xd3, 0xd9, 0xa2, 0x8f, 0xc1, 0x64, 0xa2, 0x6f, - 0x47, 0x12, 0x5f, 0xfd, 0xa2, 0x05, 0x93, 0xbc, 0x33, 0x2b, 0xde, 0x9e, 0xb8, 0x0d, 0xde, 0x86, - 0x53, 0xcd, 0x8c, 0x53, 0x59, 0x4c, 0x7f, 0xff, 0xa7, 0xb8, 0x12, 0x57, 0x65, 0x41, 0x71, 0x66, - 0x1b, 0xe8, 0x32, 0xdd, 0x71, 0xf4, 0xd4, 0x75, 0x9a, 0xc2, 0x1f, 0x77, 0x8c, 0xef, 0x36, 0x5e, - 0x86, 0x15, 0xd4, 0xfe, 0x5d, 0x0b, 0xa6, 0x79, 0xcf, 0x6f, 0x90, 0x7d, 0x75, 0x36, 0x7d, 0x3d, - 0xfb, 0x2e, 0xb2, 0x87, 0x15, 0x72, 0xb2, 0x87, 0xe9, 0x9f, 0x56, 0xec, 0xfa, 0x69, 0x3f, 0x63, - 0x81, 0x58, 0x21, 0x27, 0x20, 0x84, 0xf8, 0x56, 0x53, 0x08, 0x31, 0x97, 0xbf, 0x09, 0x72, 0xa4, - 0x0f, 0x7f, 0x6e, 0xc1, 0x14, 0x47, 0x88, 0xb5, 0xe5, 0x5f, 0xd7, 0x79, 0xe8, 0x27, 0xc7, 0xf0, - 0x0d, 0xb2, 0xbf, 0xe1, 0x57, 0x9d, 0x68, 0x27, 0xfb, 0xa3, 0x8c, 0xc9, 0x1a, 0xe8, 0x3a, 0x59, - 0x0d, 0xb9, 0x81, 0x8e, 0x90, 0xb8, 0xfc, 0xc8, 0xc9, 0x35, 0xec, 0xaf, 0x59, 0x80, 0x78, 0x33, - 0x06, 0xe3, 0x46, 0xd9, 0x21, 0x56, 0xaa, 0x5d, 0x74, 0xf1, 0xd1, 0xa4, 0x20, 0x58, 0xc3, 0x3a, - 0x96, 0xe1, 0x49, 0x98, 0x3c, 0x14, 0x7b, 0x9b, 0x3c, 0x1c, 0x61, 0x44, 0xff, 0xf5, 0x10, 0x24, - 0xbd, 0x7e, 0xd0, 0x1d, 0x18, 0xab, 0x3b, 0x6d, 0x67, 0xd3, 0x6d, 0xba, 0x91, 0x4b, 0xc2, 0x6e, - 0x46, 0x59, 0xcb, 0x1a, 0x9e, 0x50, 0x52, 0x6b, 0x25, 0xd8, 0xa0, 0x83, 0x16, 0x00, 0xda, 0x81, - 0xbb, 0xe7, 0x36, 0xc9, 0x36, 0x93, 0x95, 0xb0, 0x08, 0x00, 0xdc, 0xd2, 0x48, 0x96, 0x62, 0x0d, - 0x23, 0xc3, 0xc5, 0xba, 0xf8, 0x88, 0x5d, 0xac, 0xe1, 0xc4, 0x5c, 0xac, 0x07, 0x8e, 0xe4, 0x62, - 0x3d, 0x72, 0x64, 0x17, 0xeb, 0xc1, 0xbe, 0x5c, 0xac, 0x31, 0x9c, 0x91, 0xbc, 0x27, 0xfd, 0xbf, - 0xea, 0x36, 0x89, 0x78, 0x70, 0xf0, 0xb0, 0x05, 0x73, 0x0f, 0x0e, 0xe6, 0xcf, 0xe0, 0x4c, 0x0c, - 0x9c, 0x53, 0x13, 0x7d, 0x02, 0x66, 0x9d, 0x66, 0xd3, 0xbf, 0xa7, 0x26, 0x75, 0x25, 0xac, 0x3b, - 0x4d, 0xae, 0x84, 0x18, 0x66, 0x54, 0x9f, 0x78, 0x70, 0x30, 0x3f, 0xbb, 0x98, 0x83, 0x83, 0x73, - 0x6b, 0xa3, 0x8f, 0x42, 0xa9, 0x1d, 0xf8, 0xf5, 0x35, 0xcd, 0x35, 0xf1, 0x3c, 0x1d, 0xc0, 0xaa, - 0x2c, 0x3c, 0x3c, 0x98, 0x1f, 0x57, 0x7f, 0xd8, 0x85, 0x1f, 0x57, 0xc8, 0xf0, 0x99, 0x1e, 0x3d, - 0x56, 0x9f, 0xe9, 0x5d, 0x98, 0xa9, 0x91, 0xc0, 0x65, 0x69, 0xce, 0x1b, 0xf1, 0xf9, 0xb4, 0x01, - 0xa5, 0x20, 0x71, 0x22, 0xf7, 0x15, 0xd8, 0x51, 0xcb, 0x72, 0x20, 0x4f, 0xe0, 0x98, 0x90, 0xfd, - 0xbf, 0x2c, 0x18, 0x16, 0x5e, 0x3e, 0x27, 0xc0, 0x35, 0x2e, 0x1a, 0x9a, 0x84, 0xf9, 0xec, 0x01, - 0x63, 0x9d, 0xc9, 0xd5, 0x21, 0x54, 0x12, 0x3a, 0x84, 0x27, 0xbb, 0x11, 0xe9, 0xae, 0x3d, 0xf8, - 0x6b, 0x45, 0xca, 0xbd, 0x1b, 0xfe, 0xa6, 0x8f, 0x7e, 0x08, 0xd6, 0x61, 0x38, 0x14, 0xfe, 0x8e, - 0x85, 0x7c, 0x03, 0xfd, 0xe4, 0x24, 0xc6, 0x76, 0x6c, 0xc2, 0xc3, 0x51, 0x12, 0xc9, 0x74, 0xa4, - 0x2c, 0x3e, 0x42, 0x47, 0xca, 0x5e, 0x1e, 0xb9, 0x03, 0xc7, 0xe1, 0x91, 0x6b, 0x7f, 0x85, 0xdd, - 0x9c, 0x7a, 0xf9, 0x09, 0x30, 0x55, 0xd7, 0xcc, 0x3b, 0xd6, 0xee, 0xb2, 0xb2, 0x44, 0xa7, 0x72, - 0x98, 0xab, 0x9f, 0xb7, 0xe0, 0x5c, 0xc6, 0x57, 0x69, 0x9c, 0xd6, 0xb3, 0x30, 0xe2, 0x74, 0x1a, - 0xae, 0xda, 0xcb, 0x9a, 0x3e, 0x71, 0x51, 0x94, 0x63, 0x85, 0x81, 0x96, 0x61, 0x9a, 0xdc, 0x6f, - 0xbb, 0x5c, 0x95, 0xaa, 0x5b, 0xb5, 0x16, 0xb9, 0x6b, 0xd8, 0x4a, 0x12, 0x88, 0xd3, 0xf8, 0x2a, - 0x0a, 0x4a, 0x31, 0x37, 0x0a, 0xca, 0xdf, 0xb5, 0x60, 0x54, 0x79, 0xfc, 0x3d, 0xf2, 0xd1, 0xfe, - 0xb8, 0x39, 0xda, 0x8f, 0x77, 0x19, 0xed, 0x9c, 0x61, 0xfe, 0xed, 0x82, 0xea, 0x6f, 0xd5, 0x0f, - 0xa2, 0x3e, 0x38, 0xb8, 0x87, 0xb7, 0xc3, 0xbf, 0x0a, 0xa3, 0x4e, 0xbb, 0x2d, 0x01, 0xd2, 0x06, - 0x8d, 0x85, 0xe9, 0x8d, 0x8b, 0xb1, 0x8e, 0xa3, 0xdc, 0x02, 0x8a, 0xb9, 0x6e, 0x01, 0x0d, 0x80, - 0xc8, 0x09, 0xb6, 0x49, 0x44, 0xcb, 0x44, 0xc4, 0xb2, 0xfc, 0xf3, 0xa6, 0x13, 0xb9, 0xcd, 0x05, - 0xd7, 0x8b, 0xc2, 0x28, 0x58, 0xa8, 0x78, 0xd1, 0xad, 0x80, 0x3f, 0x21, 0xb5, 0x90, 0x40, 0x8a, - 0x16, 0xd6, 0xe8, 0x4a, 0xef, 0x76, 0xd6, 0xc6, 0xa0, 0x69, 0xcc, 0xb0, 0x2e, 0xca, 0xb1, 0xc2, - 0xb0, 0x3f, 0xc2, 0x6e, 0x1f, 0x36, 0xa6, 0x47, 0x8b, 0xa1, 0xf3, 0xf7, 0xc7, 0xd4, 0x6c, 0x30, - 0x4d, 0x66, 0x59, 0x8f, 0xd4, 0xd3, 0xfd, 0xb0, 0xa7, 0x0d, 0xeb, 0x4e, 0x6a, 0x71, 0x38, 0x1f, - 0xf4, 0x6d, 0x29, 0x03, 0x95, 0xe7, 0x7a, 0xdc, 0x1a, 0x47, 0x30, 0x49, 0x61, 0x39, 0x3b, 0x58, - 0x46, 0x83, 0x4a, 0x55, 0xec, 0x0b, 0x2d, 0x67, 0x87, 0x00, 0xe0, 0x18, 0x87, 0x32, 0x53, 0xea, - 0x4f, 0x38, 0x8b, 0xe2, 0xd8, 0x95, 0x0a, 0x3b, 0xc4, 0x1a, 0x06, 0xba, 0x22, 0x04, 0x0a, 0x5c, - 0x2f, 0xf0, 0x78, 0x42, 0xa0, 0x20, 0x87, 0x4b, 0x93, 0x02, 0x5d, 0x85, 0x51, 0x95, 0xb6, 0xb7, - 0xca, 0xb3, 0xc1, 0x8a, 0x65, 0xb6, 0x12, 0x17, 0x63, 0x1d, 0x07, 0x6d, 0xc0, 0x64, 0xc8, 0xe5, - 0x6c, 0x2a, 0xa0, 0x30, 0x97, 0x57, 0x7e, 0x50, 0x5a, 0x01, 0xd5, 0x4c, 0xf0, 0x21, 0x2b, 0xe2, - 0xa7, 0x93, 0xf4, 0x40, 0x4f, 0x92, 0x40, 0xaf, 0xc1, 0x44, 0xd3, 0x77, 0x1a, 0x4b, 0x4e, 0xd3, - 0xf1, 0xea, 0x6c, 0x7c, 0x46, 0xcc, 0xec, 0x8f, 0x37, 0x0d, 0x28, 0x4e, 0x60, 0x53, 0xe6, 0x4d, - 0x2f, 0x11, 0x41, 0xb0, 0x1d, 0x6f, 0x9b, 0x84, 0x22, 0x09, 0x2b, 0x63, 0xde, 0x6e, 0xe6, 0xe0, - 0xe0, 0xdc, 0xda, 0xe8, 0x65, 0x18, 0x93, 0x9f, 0xaf, 0x05, 0x6c, 0x88, 0x3d, 0x2c, 0x34, 0x18, - 0x36, 0x30, 0xd1, 0x3d, 0x38, 0x2d, 0xff, 0x6f, 0x04, 0xce, 0xd6, 0x96, 0x5b, 0x17, 0x5e, 0xcc, - 0xdc, 0x15, 0x73, 0x51, 0xfa, 0x0b, 0xae, 0x64, 0x21, 0x1d, 0x1e, 0xcc, 0x5f, 0x10, 0xa3, 0x96, - 0x09, 0x67, 0x93, 0x98, 0x4d, 0x1f, 0xad, 0xc1, 0xcc, 0x0e, 0x71, 0x9a, 0xd1, 0xce, 0xf2, 0x0e, - 0xa9, 0xef, 0xca, 0x4d, 0xc7, 0xc2, 0x40, 0x68, 0x7e, 0x09, 0xd7, 0xd3, 0x28, 0x38, 0xab, 0x1e, - 0x7a, 0x13, 0x66, 0xdb, 0x9d, 0xcd, 0xa6, 0x1b, 0xee, 0xac, 0xfb, 0x11, 0x33, 0x05, 0x52, 0x59, - 0x80, 0x45, 0xbc, 0x08, 0x15, 0x68, 0xa3, 0x9a, 0x83, 0x87, 0x73, 0x29, 0xa0, 0xb7, 0xe1, 0x74, - 0x62, 0x31, 0x08, 0x8f, 0xf9, 0x89, 0xfc, 0x94, 0x02, 0xb5, 0xac, 0x0a, 0x22, 0xf8, 0x44, 0x16, - 0x08, 0x67, 0x37, 0x81, 0x5e, 0x01, 0x70, 0xdb, 0xab, 0x4e, 0xcb, 0x6d, 0xd2, 0xe7, 0xe2, 0x0c, - 0x5b, 0x27, 0xf4, 0xe9, 0x00, 0x95, 0xaa, 0x2c, 0xa5, 0xe7, 0xb3, 0xf8, 0xb7, 0x8f, 0x35, 0x6c, - 0x54, 0x85, 0x09, 0xf1, 0x6f, 0x5f, 0x4c, 0xeb, 0xb4, 0x72, 0x4e, 0x9f, 0x90, 0x35, 0xd4, 0x5c, - 0x22, 0xb3, 0x84, 0xcd, 0x5e, 0xa2, 0x3e, 0xda, 0x86, 0x73, 0x22, 0x61, 0x34, 0xd1, 0xd7, 0xa9, - 0x9c, 0x87, 0x90, 0xc5, 0xf2, 0x1f, 0xe1, 0x6e, 0x0f, 0x8b, 0xdd, 0x10, 0x71, 0x77, 0x3a, 0xf4, - 0x7e, 0xd7, 0x97, 0x3b, 0x77, 0x07, 0x3d, 0xcd, 0xcd, 0x93, 0xe8, 0xfd, 0x7e, 0x33, 0x09, 0xc4, - 0x69, 0x7c, 0x14, 0xc2, 0x69, 0xd7, 0xcb, 0x5a, 0xdd, 0x67, 0x18, 0xa1, 0x8f, 0x71, 0x4f, 0xd8, - 0xee, 0x2b, 0x3b, 0x13, 0xce, 0x57, 0x76, 0x26, 0xed, 0x77, 0x66, 0x85, 0xf7, 0x3b, 0x16, 0xad, - 0xad, 0x71, 0xea, 0xe8, 0xb3, 0x30, 0xa6, 0x7f, 0x98, 0xe0, 0x3a, 0x2e, 0x65, 0x33, 0xb2, 0xda, - 0xf9, 0xc0, 0xf9, 0x7c, 0x75, 0x06, 0xe8, 0x30, 0x6c, 0x50, 0x44, 0xf5, 0x0c, 0x9f, 0xf1, 0x2b, - 0xfd, 0x71, 0x35, 0xfd, 0x1b, 0xa1, 0x11, 0xc8, 0x5e, 0xf6, 0xe8, 0x26, 0x8c, 0xd4, 0x9b, 0x2e, - 0xf1, 0xa2, 0x4a, 0xb5, 0x5b, 0x94, 0xb7, 0x65, 0x81, 0x23, 0xf6, 0x91, 0x08, 0xcd, 0xcf, 0xcb, - 0xb0, 0xa2, 0x60, 0xff, 0x5a, 0x01, 0xe6, 0x7b, 0xe4, 0x79, 0x48, 0xa8, 0xa4, 0xac, 0xbe, 0x54, - 0x52, 0x8b, 0x32, 0xd5, 0xf5, 0x7a, 0x42, 0xda, 0x95, 0x48, 0x63, 0x1d, 0xcb, 0xbc, 0x92, 0xf8, - 0x7d, 0xbb, 0x08, 0xe8, 0x5a, 0xad, 0x81, 0x9e, 0x4e, 0x2e, 0x86, 0x36, 0x7b, 0xb0, 0xff, 0x27, - 0x70, 0xae, 0x66, 0xd2, 0xfe, 0x4a, 0x01, 0x4e, 0xab, 0x21, 0xfc, 0xe6, 0x1d, 0xb8, 0xdb, 0xe9, - 0x81, 0x3b, 0x06, 0xbd, 0xae, 0x7d, 0x0b, 0x86, 0x78, 0xd8, 0xba, 0x3e, 0x58, 0xef, 0x8b, 0x66, - 0x84, 0x57, 0xc5, 0xed, 0x19, 0x51, 0x5e, 0xbf, 0xd7, 0x82, 0xc9, 0x8d, 0xe5, 0x6a, 0xcd, 0xaf, - 0xef, 0x92, 0x68, 0x91, 0x3f, 0x95, 0xb0, 0xe6, 0x5d, 0xfb, 0x30, 0xec, 0x71, 0x16, 0xe3, 0x7d, - 0x01, 0x06, 0x76, 0xfc, 0x30, 0x4a, 0x1a, 0x7d, 0x5c, 0xf7, 0xc3, 0x08, 0x33, 0x88, 0xfd, 0x7b, - 0x16, 0x0c, 0x6e, 0x38, 0xae, 0x17, 0x49, 0x05, 0x81, 0x95, 0xa3, 0x20, 0xe8, 0xe7, 0xbb, 0xd0, - 0x4b, 0x30, 0x44, 0xb6, 0xb6, 0x48, 0x3d, 0x12, 0xb3, 0x2a, 0x43, 0x13, 0x0c, 0xad, 0xb0, 0x52, - 0xca, 0x0b, 0xb2, 0xc6, 0xf8, 0x5f, 0x2c, 0x90, 0xd1, 0x5d, 0x28, 0x45, 0x6e, 0x8b, 0x2c, 0x36, - 0x1a, 0x42, 0x6d, 0xfe, 0x10, 0xe1, 0x15, 0x36, 0x24, 0x01, 0x1c, 0xd3, 0xb2, 0xbf, 0x54, 0x00, - 0x88, 0xe3, 0xfd, 0xf4, 0xfa, 0xc4, 0xa5, 0x94, 0x42, 0xf5, 0x52, 0x86, 0x42, 0x15, 0xc5, 0x04, - 0x33, 0xb4, 0xa9, 0x6a, 0x98, 0x8a, 0x7d, 0x0d, 0xd3, 0xc0, 0x51, 0x86, 0x69, 0x19, 0xa6, 0xe3, - 0x78, 0x45, 0x66, 0xb8, 0x36, 0x76, 0x7d, 0x6e, 0x24, 0x81, 0x38, 0x8d, 0x6f, 0x13, 0xb8, 0xa0, - 0xc2, 0xb6, 0x88, 0x1b, 0x8d, 0x59, 0x65, 0xeb, 0x0a, 0xea, 0x1e, 0xe3, 0x14, 0x6b, 0x8c, 0x0b, - 0xb9, 0x1a, 0xe3, 0x9f, 0xb0, 0xe0, 0x54, 0xb2, 0x1d, 0xe6, 0x8f, 0xfb, 0x45, 0x0b, 0x4e, 0x33, - 0xbd, 0x39, 0x6b, 0x35, 0xad, 0xa5, 0x7f, 0xb1, 0x6b, 0x28, 0x9a, 0x9c, 0x1e, 0xc7, 0x31, 0x30, - 0xd6, 0xb2, 0x48, 0xe3, 0xec, 0x16, 0xed, 0xff, 0x50, 0x80, 0xd9, 0xbc, 0x18, 0x36, 0xcc, 0x69, - 0xc3, 0xb9, 0x5f, 0xdb, 0x25, 0xf7, 0x84, 0x69, 0x7c, 0xec, 0xb4, 0xc1, 0x8b, 0xb1, 0x84, 0x27, - 0x43, 0xf7, 0x17, 0xfa, 0x0c, 0xdd, 0xbf, 0x03, 0xd3, 0xf7, 0x76, 0x88, 0x77, 0xdb, 0x0b, 0x9d, - 0xc8, 0x0d, 0xb7, 0x5c, 0xa6, 0x63, 0xe6, 0xeb, 0xe6, 0x15, 0x69, 0xc0, 0x7e, 0x37, 0x89, 0x70, - 0x78, 0x30, 0x7f, 0xce, 0x28, 0x88, 0xbb, 0xcc, 0x0f, 0x12, 0x9c, 0x26, 0x9a, 0xce, 0x7c, 0x30, - 0xf0, 0x08, 0x33, 0x1f, 0xd8, 0x5f, 0xb4, 0xe0, 0x6c, 0x6e, 0xba, 0x55, 0x74, 0x19, 0x46, 0x9c, - 0xb6, 0xcb, 0xc5, 0xf4, 0xe2, 0x18, 0x65, 0xe2, 0xa0, 0x6a, 0x85, 0x0b, 0xe9, 0x15, 0x54, 0xa5, - 0x81, 0x2f, 0xe4, 0xa6, 0x81, 0xef, 0x99, 0xd5, 0xdd, 0xfe, 0x1e, 0x0b, 0x84, 0xc3, 0x69, 0x1f, - 0x67, 0xf7, 0xa7, 0x60, 0x6c, 0x2f, 0x9d, 0x1d, 0xe9, 0x42, 0xbe, 0x07, 0xae, 0xc8, 0x89, 0xa4, - 0x18, 0x32, 0x23, 0x13, 0x92, 0x41, 0xcb, 0x6e, 0x80, 0x80, 0x96, 0x09, 0x13, 0x42, 0xf7, 0xee, - 0xcd, 0xf3, 0x00, 0x0d, 0x86, 0xab, 0xe5, 0xd2, 0x57, 0x37, 0x73, 0x59, 0x41, 0xb0, 0x86, 0x65, - 0xff, 0xdb, 0x02, 0x8c, 0xca, 0x6c, 0x3c, 0x1d, 0xaf, 0x1f, 0x51, 0xd1, 0x91, 0xd2, 0x73, 0xa2, - 0x2b, 0x50, 0x62, 0xb2, 0xcc, 0x6a, 0x2c, 0x61, 0x53, 0x92, 0x84, 0x35, 0x09, 0xc0, 0x31, 0x0e, - 0xdd, 0x45, 0x61, 0x67, 0x93, 0xa1, 0x27, 0xdc, 0x23, 0x6b, 0xbc, 0x18, 0x4b, 0x38, 0xfa, 0x04, - 0x4c, 0xf1, 0x7a, 0x81, 0xdf, 0x76, 0xb6, 0xb9, 0xfe, 0x63, 0x50, 0x05, 0x50, 0x98, 0x5a, 0x4b, - 0xc0, 0x0e, 0x0f, 0xe6, 0x4f, 0x25, 0xcb, 0x98, 0x62, 0x2f, 0x45, 0x85, 0x99, 0x39, 0xf1, 0x46, - 0xe8, 0xee, 0x4f, 0x59, 0x47, 0xc5, 0x20, 0xac, 0xe3, 0xd9, 0x9f, 0x05, 0x94, 0xce, 0x4b, 0x84, - 0x5e, 0xe7, 0xb6, 0xad, 0x6e, 0x40, 0x1a, 0xdd, 0x14, 0x7d, 0x7a, 0x98, 0x00, 0xe9, 0xd9, 0xc4, - 0x6b, 0x61, 0x55, 0xdf, 0xfe, 0xff, 0x8b, 0x30, 0x95, 0xf4, 0xe5, 0x46, 0xd7, 0x61, 0x88, 0xb3, - 0x1e, 0x82, 0x7c, 0x17, 0x3b, 0x12, 0xcd, 0x03, 0x9c, 0x1d, 0xc2, 0x82, 0x7b, 0x11, 0xf5, 0xd1, - 0x9b, 0x30, 0xda, 0xf0, 0xef, 0x79, 0xf7, 0x9c, 0xa0, 0xb1, 0x58, 0xad, 0x88, 0xe5, 0x9c, 0xf9, - 0xb0, 0x2d, 0xc7, 0x68, 0xba, 0x57, 0x39, 0xd3, 0x99, 0xc6, 0x20, 0xac, 0x93, 0x43, 0x1b, 0x2c, - 0x98, 0xf9, 0x96, 0xbb, 0xbd, 0xe6, 0xb4, 0xbb, 0x39, 0x3a, 0x2c, 0x4b, 0x24, 0x8d, 0xf2, 0xb8, - 0x88, 0x78, 0xce, 0x01, 0x38, 0x26, 0x84, 0x3e, 0x0f, 0x33, 0x61, 0x8e, 0xb8, 0x3d, 0x2f, 0x4d, - 0x5d, 0x37, 0x09, 0xf4, 0xd2, 0x63, 0x0f, 0x0e, 0xe6, 0x67, 0xb2, 0x04, 0xf3, 0x59, 0xcd, 0xd8, - 0x3f, 0x72, 0x0a, 0x8c, 0x4d, 0x6c, 0x64, 0x2d, 0xb5, 0x8e, 0x29, 0x6b, 0x29, 0x86, 0x11, 0xd2, - 0x6a, 0x47, 0xfb, 0x65, 0x37, 0xe8, 0x96, 0xcb, 0x7b, 0x45, 0xe0, 0xa4, 0x69, 0x4a, 0x08, 0x56, - 0x74, 0xb2, 0x53, 0xcb, 0x16, 0xbf, 0x8e, 0xa9, 0x65, 0x07, 0x4e, 0x30, 0xb5, 0xec, 0x3a, 0x0c, - 0x6f, 0xbb, 0x11, 0x26, 0x6d, 0x5f, 0x30, 0xfd, 0x99, 0xeb, 0xf0, 0x1a, 0x47, 0x49, 0x27, 0x31, - 0x14, 0x00, 0x2c, 0x89, 0xa0, 0xd7, 0xd5, 0x0e, 0x1c, 0xca, 0x7f, 0x98, 0xa7, 0x0d, 0x1e, 0x32, - 0xf7, 0xa0, 0x48, 0x20, 0x3b, 0xfc, 0xb0, 0x09, 0x64, 0x57, 0x65, 0xda, 0xd7, 0x91, 0x7c, 0xaf, - 0x24, 0x96, 0xd5, 0xb5, 0x47, 0xb2, 0xd7, 0x3b, 0x7a, 0xaa, 0xdc, 0x52, 0xfe, 0x49, 0xa0, 0xb2, - 0xe0, 0xf6, 0x99, 0x20, 0xf7, 0x7b, 0x2c, 0x38, 0xdd, 0xce, 0xca, 0x1a, 0x2d, 0x6c, 0x03, 0x5e, - 0xea, 0x3b, 0x31, 0xb5, 0xd1, 0x20, 0x93, 0xa9, 0x65, 0xa2, 0xe1, 0xec, 0xe6, 0xe8, 0x40, 0x07, - 0x9b, 0x0d, 0xa1, 0xa3, 0xbe, 0x98, 0x93, 0x69, 0xb7, 0x4b, 0x7e, 0xdd, 0x8d, 0x8c, 0xac, 0xae, - 0xef, 0xcf, 0xcb, 0xea, 0xda, 0x77, 0x2e, 0xd7, 0xd7, 0x55, 0x8e, 0xdd, 0xf1, 0xfc, 0xa5, 0xc4, - 0x33, 0xe8, 0xf6, 0xcc, 0xac, 0xfb, 0xba, 0xca, 0xac, 0xdb, 0x25, 0x52, 0x2d, 0xcf, 0x9b, 0xdb, - 0x33, 0x9f, 0xae, 0x96, 0x13, 0x77, 0xf2, 0x78, 0x72, 0xe2, 0x1a, 0x57, 0x0d, 0x4f, 0xcb, 0xfa, - 0x4c, 0x8f, 0xab, 0xc6, 0xa0, 0xdb, 0xfd, 0xb2, 0xe1, 0xf9, 0x7f, 0xa7, 0x1f, 0x2a, 0xff, 0xef, - 0x1d, 0x3d, 0x9f, 0x2e, 0xea, 0x91, 0x30, 0x96, 0x22, 0xf5, 0x99, 0x45, 0xf7, 0x8e, 0x7e, 0x01, - 0xce, 0xe4, 0xd3, 0x55, 0xf7, 0x5c, 0x9a, 0x6e, 0xe6, 0x15, 0x98, 0xca, 0xce, 0x7b, 0xea, 0x64, - 0xb2, 0xf3, 0x9e, 0x3e, 0xf6, 0xec, 0xbc, 0x67, 0x4e, 0x20, 0x3b, 0xef, 0x63, 0x27, 0x98, 0x9d, - 0xf7, 0x0e, 0x33, 0xa8, 0xe1, 0x61, 0x7b, 0x44, 0x64, 0xdd, 0xec, 0x28, 0xae, 0x59, 0xb1, 0x7d, - 0xf8, 0xc7, 0x29, 0x10, 0x8e, 0x49, 0x65, 0x64, 0xfd, 0x9d, 0x7d, 0x04, 0x59, 0x7f, 0xd7, 0xe3, - 0xac, 0xbf, 0x67, 0xf3, 0xa7, 0x3a, 0xc3, 0x05, 0x23, 0x27, 0xd7, 0xef, 0x1d, 0x3d, 0x47, 0xef, - 0xe3, 0x5d, 0xb4, 0x26, 0x59, 0x82, 0xc7, 0x2e, 0x99, 0x79, 0x5f, 0xe3, 0x99, 0x79, 0x9f, 0xc8, - 0x3f, 0xc9, 0x93, 0xd7, 0x9d, 0x91, 0x8f, 0x97, 0xf6, 0x4b, 0xc5, 0x70, 0x64, 0x31, 0x84, 0x73, - 0xfa, 0xa5, 0x82, 0x40, 0xa6, 0xfb, 0xa5, 0x40, 0x38, 0x26, 0x65, 0x7f, 0x5f, 0x01, 0xce, 0x77, - 0xdf, 0x6f, 0xb1, 0x34, 0xb5, 0x1a, 0x2b, 0x91, 0x13, 0xd2, 0x54, 0xfe, 0x66, 0x8b, 0xb1, 0xfa, - 0x0e, 0x49, 0x77, 0x0d, 0xa6, 0x95, 0xef, 0x46, 0xd3, 0xad, 0xef, 0xaf, 0xc7, 0x2f, 0x5f, 0xe5, - 0xef, 0x5e, 0x4b, 0x22, 0xe0, 0x74, 0x1d, 0xb4, 0x08, 0x93, 0x46, 0x61, 0xa5, 0x2c, 0xde, 0x66, - 0x4a, 0x7c, 0x5b, 0x33, 0xc1, 0x38, 0x89, 0x6f, 0x7f, 0xd9, 0x82, 0xc7, 0x72, 0xd2, 0xda, 0xf5, - 0x1d, 0x71, 0x6d, 0x0b, 0x26, 0xdb, 0x66, 0xd5, 0x1e, 0x41, 0x22, 0x8d, 0xe4, 0x79, 0xaa, 0xaf, - 0x09, 0x00, 0x4e, 0x12, 0xb5, 0x7f, 0xaa, 0x00, 0xe7, 0xba, 0x1a, 0x23, 0x22, 0x0c, 0x67, 0xb6, - 0x5b, 0xa1, 0xb3, 0x1c, 0x90, 0x06, 0xf1, 0x22, 0xd7, 0x69, 0xd6, 0xda, 0xa4, 0xae, 0xc9, 0xc3, - 0x99, 0x55, 0xdf, 0xb5, 0xb5, 0xda, 0x62, 0x1a, 0x03, 0xe7, 0xd4, 0x44, 0xab, 0x80, 0xd2, 0x10, - 0x31, 0xc3, 0x2c, 0x1a, 0x75, 0x9a, 0x1e, 0xce, 0xa8, 0x81, 0x3e, 0x02, 0xe3, 0xca, 0xc8, 0x51, - 0x9b, 0x71, 0x76, 0xb0, 0x63, 0x1d, 0x80, 0x4d, 0x3c, 0x74, 0x95, 0x87, 0x33, 0x17, 0x81, 0xef, - 0x85, 0xf0, 0x7c, 0x52, 0xc6, 0x2a, 0x17, 0xc5, 0x58, 0xc7, 0x59, 0xba, 0xfc, 0x1b, 0x7f, 0x70, - 0xfe, 0x7d, 0xbf, 0xf5, 0x07, 0xe7, 0xdf, 0xf7, 0xbb, 0x7f, 0x70, 0xfe, 0x7d, 0xdf, 0xf1, 0xe0, - 0xbc, 0xf5, 0x1b, 0x0f, 0xce, 0x5b, 0xbf, 0xf5, 0xe0, 0xbc, 0xf5, 0xbb, 0x0f, 0xce, 0x5b, 0xbf, - 0xff, 0xe0, 0xbc, 0xf5, 0xa5, 0x3f, 0x3c, 0xff, 0xbe, 0x4f, 0x15, 0xf6, 0xae, 0xfe, 0xdf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x7a, 0x57, 0x60, 0xaf, 0xc8, 0x03, 0x01, 0x00, + 0xe1, 0x49, 0x4f, 0x95, 0x46, 0xa6, 0x6d, 0x2f, 0xf3, 0x70, 0x2d, 0x2b, 0x22, 0x58, 0x23, 0x88, + 0xb6, 0x60, 0x3c, 0xfe, 0x17, 0xe7, 0x8d, 0x3c, 0x62, 0x0b, 0x4c, 0xee, 0x5d, 0xd6, 0xe9, 0x60, + 0x93, 0xac, 0xfd, 0xa3, 0x03, 0xf0, 0x78, 0x97, 0xb3, 0x18, 0x2d, 0x9a, 0xfa, 0xde, 0x67, 0x92, + 0x8f, 0xf8, 0xb9, 0xcc, 0xca, 0xc6, 0xab, 0x3e, 0xb1, 0xe4, 0x0b, 0xef, 0x78, 0xc9, 0xff, 0x90, + 0xa5, 0x89, 0x57, 0xb8, 0x65, 0xe9, 0xc7, 0x8e, 0x78, 0xc7, 0x1c, 0xa3, 0xbc, 0x65, 0x2b, 0x43, + 0x68, 0xf1, 0x7c, 0xdf, 0xdd, 0xe9, 0x5b, 0x8a, 0x71, 0xb2, 0xd2, 0xe8, 0xdf, 0xb6, 0xe0, 0x5c, + 0xd7, 0xe0, 0x20, 0xdf, 0x84, 0x8c, 0x89, 0xfd, 0x05, 0x0b, 0x9e, 0xcc, 0xac, 0x61, 0x98, 0x33, + 0x5d, 0x81, 0x52, 0x9d, 0x16, 0x6a, 0xde, 0xa0, 0xb1, 0x9b, 0xbc, 0x04, 0xe0, 0x18, 0xc7, 0xb0, + 0x5a, 0x2a, 0xf4, 0xb4, 0x5a, 0xfa, 0x35, 0x0b, 0x52, 0x87, 0xcb, 0x09, 0xdc, 0x72, 0x15, 0xf3, + 0x96, 0x7b, 0x7f, 0x3f, 0xa3, 0x99, 0x73, 0xc1, 0xfd, 0xc9, 0x24, 0x9c, 0xc9, 0xf1, 0x86, 0xda, + 0x83, 0xe9, 0xed, 0x3a, 0x31, 0xfd, 0x6c, 0xbb, 0xc5, 0x9f, 0xe9, 0xea, 0x94, 0xcb, 0x52, 0x84, + 0x4e, 0xa7, 0x50, 0x70, 0xba, 0x09, 0xf4, 0x05, 0x0b, 0x4e, 0x39, 0xf7, 0xc2, 0x15, 0xca, 0xad, + 0xb8, 0xf5, 0xa5, 0xa6, 0x5f, 0xdf, 0xa5, 0x57, 0x81, 0xdc, 0x08, 0x2f, 0x66, 0x4a, 0x90, 0xee, + 0xd6, 0x52, 0xf8, 0x46, 0xf3, 0x2c, 0x67, 0x6a, 0x16, 0x16, 0xce, 0x6c, 0x0b, 0x61, 0x11, 0x48, + 0x9f, 0xbe, 0x85, 0xba, 0x78, 0x82, 0x67, 0xb9, 0xad, 0xf1, 0xeb, 0x57, 0x42, 0xb0, 0xa2, 0x83, + 0x3e, 0x0b, 0xa5, 0x6d, 0xe9, 0x4b, 0x9a, 0x71, 0xbd, 0xc7, 0x03, 0xd9, 0xdd, 0xc3, 0x96, 0xab, + 0x81, 0x15, 0x12, 0x8e, 0x89, 0xa2, 0xd7, 0xa0, 0xe8, 0x6d, 0x85, 0xdd, 0xd2, 0x8e, 0x26, 0xec, + 0xfd, 0x78, 0xbc, 0x85, 0xf5, 0xd5, 0x1a, 0xa6, 0x15, 0xd1, 0x75, 0x28, 0x06, 0x9b, 0x0d, 0x21, + 0xfe, 0xcc, 0xdc, 0xa4, 0x78, 0xa9, 0x9c, 0xd3, 0x2b, 0x46, 0x09, 0x2f, 0x95, 0x31, 0x25, 0x81, + 0xaa, 0x30, 0xc8, 0x5c, 0x88, 0xc4, 0x65, 0x9a, 0xf9, 0x6c, 0xe8, 0xe2, 0x8a, 0xc7, 0x83, 0x32, + 0x30, 0x04, 0xcc, 0x09, 0xa1, 0x0d, 0x18, 0xaa, 0xb3, 0x14, 0x95, 0xe2, 0xf6, 0xfc, 0x50, 0xa6, + 0xa0, 0xb3, 0x4b, 0xee, 0x4e, 0x21, 0xf7, 0x63, 0x18, 0x58, 0xd0, 0x62, 0x54, 0x49, 0x7b, 0x67, + 0x2b, 0x14, 0x29, 0x95, 0xb3, 0xa9, 0x76, 0x49, 0x49, 0x2b, 0xa8, 0x32, 0x0c, 0x2c, 0x68, 0xa1, + 0x57, 0xa0, 0xb0, 0x55, 0x17, 0xee, 0x41, 0x99, 0x12, 0x4f, 0x33, 0x64, 0xc6, 0xd2, 0xd0, 0x83, + 0x83, 0xf9, 0xc2, 0xea, 0x32, 0x2e, 0x6c, 0xd5, 0xd1, 0x3a, 0x0c, 0x6f, 0x71, 0x27, 0x7b, 0x21, + 0xd4, 0x7c, 0x2a, 0xdb, 0xff, 0x3f, 0xe5, 0x87, 0xcf, 0x3d, 0x63, 0x04, 0x00, 0x4b, 0x22, 0x2c, + 0x2e, 0xbd, 0x0a, 0x16, 0x20, 0x62, 0x95, 0x2d, 0x1c, 0x2d, 0xc0, 0x03, 0x67, 0x6e, 0xe2, 0x90, + 0x03, 0x58, 0xa3, 0x48, 0x57, 0xb5, 0x23, 0xf3, 0xda, 0x8b, 0xa0, 0x36, 0x99, 0xab, 0xba, 0x47, + 0xca, 0x7f, 0xbe, 0xaa, 0x15, 0x12, 0x8e, 0x89, 0xa2, 0x5d, 0x18, 0xdf, 0x0b, 0xdb, 0x3b, 0x44, + 0x6e, 0x69, 0x16, 0xe3, 0x26, 0xe7, 0x5e, 0xbe, 0x23, 0x10, 0xdd, 0x20, 0xea, 0x38, 0xcd, 0xd4, + 0x29, 0xc4, 0x78, 0xa8, 0x3b, 0x3a, 0x31, 0x6c, 0xd2, 0xa6, 0xc3, 0xff, 0x56, 0xc7, 0xdf, 0xdc, + 0x8f, 0x88, 0x08, 0x31, 0x96, 0x39, 0xfc, 0x6f, 0x70, 0x94, 0xf4, 0xf0, 0x0b, 0x00, 0x96, 0x44, + 0xd0, 0x1d, 0x31, 0x3c, 0xec, 0xf4, 0x9c, 0xca, 0x8f, 0x03, 0xba, 0x28, 0x91, 0x72, 0x06, 0x85, + 0x9d, 0x96, 0x31, 0x29, 0x76, 0x4a, 0xb6, 0x77, 0xfc, 0xc8, 0xf7, 0x12, 0x27, 0xf4, 0x74, 0xfe, + 0x29, 0x59, 0xcd, 0xc0, 0x4f, 0x9f, 0x92, 0x59, 0x58, 0x38, 0xb3, 0x2d, 0xd4, 0x80, 0x89, 0xb6, + 0x1f, 0x44, 0xf7, 0xfc, 0x40, 0xae, 0x2f, 0xd4, 0x45, 0x28, 0x63, 0x60, 0x8a, 0x16, 0x59, 0xf4, + 0x3e, 0x13, 0x82, 0x13, 0x34, 0xd1, 0x27, 0x60, 0x38, 0xac, 0x3b, 0x4d, 0x52, 0xb9, 0x35, 0x3b, + 0x93, 0x7f, 0xfd, 0xd4, 0x38, 0x4a, 0xce, 0xea, 0xe2, 0x41, 0xec, 0x39, 0x0a, 0x96, 0xe4, 0xd0, + 0x2a, 0x0c, 0xb2, 0xbc, 0x63, 0x2c, 0x1e, 0x5e, 0x4e, 0x38, 0xd3, 0x94, 0xf5, 0x35, 0x3f, 0x9b, + 0x58, 0x31, 0xe6, 0xd5, 0xe9, 0x1e, 0x10, 0x6f, 0x13, 0x3f, 0x9c, 0x3d, 0x9d, 0xbf, 0x07, 0xc4, + 0x93, 0xe6, 0x56, 0xad, 0xdb, 0x1e, 0x50, 0x48, 0x38, 0x26, 0x4a, 0x4f, 0x66, 0x7a, 0x9a, 0x9e, + 0xe9, 0x62, 0x36, 0x94, 0x7b, 0x96, 0xb2, 0x93, 0x99, 0x9e, 0xa4, 0x94, 0x84, 0xfd, 0xfb, 0xc3, + 0x69, 0x9e, 0x85, 0xbd, 0x66, 0xbf, 0xc7, 0x4a, 0x29, 0x3a, 0x3f, 0xdc, 0xaf, 0x70, 0xed, 0x18, + 0x59, 0xf0, 0x2f, 0x58, 0x70, 0xa6, 0x9d, 0xf9, 0x21, 0x82, 0x01, 0xe8, 0x4f, 0x46, 0xc7, 0x3f, + 0x5d, 0xc5, 0x4e, 0xcc, 0x86, 0xe3, 0x9c, 0x96, 0x92, 0xcf, 0x9c, 0xe2, 0x3b, 0x7e, 0xe6, 0xac, + 0xc1, 0x08, 0x63, 0x32, 0x7b, 0xa4, 0x6c, 0x4e, 0xbe, 0xf9, 0x18, 0x2b, 0xb1, 0x2c, 0x2a, 0x62, + 0x45, 0x02, 0xfd, 0xb0, 0x05, 0xe7, 0x92, 0x5d, 0xc7, 0x84, 0x81, 0x45, 0xc0, 0x45, 0xfe, 0x90, + 0x5e, 0x15, 0xdf, 0x9f, 0xe2, 0xff, 0x0d, 0xe4, 0xc3, 0x5e, 0x08, 0xb8, 0x7b, 0x63, 0xa8, 0x9c, + 0xf1, 0x92, 0x1f, 0x32, 0xb5, 0x17, 0x7d, 0xbc, 0xe6, 0x5f, 0x84, 0xb1, 0x96, 0xdf, 0xf1, 0x22, + 0x61, 0x65, 0x24, 0x2c, 0x1e, 0x98, 0xa6, 0x7f, 0x4d, 0x2b, 0xc7, 0x06, 0x56, 0x42, 0x06, 0x30, + 0xf2, 0xd0, 0x32, 0x80, 0x37, 0x61, 0xcc, 0xd3, 0xcc, 0x62, 0x05, 0x3f, 0x70, 0x29, 0x3f, 0x58, + 0xaa, 0x6e, 0x44, 0xcb, 0x7b, 0xa9, 0x97, 0x60, 0x83, 0xda, 0xc9, 0x3e, 0xf8, 0xbe, 0x6c, 0x65, + 0x30, 0xf5, 0x5c, 0x04, 0xf0, 0x51, 0x53, 0x04, 0x70, 0x29, 0x29, 0x02, 0x48, 0x49, 0xae, 0x8d, + 0xd7, 0x7f, 0xff, 0xb9, 0x60, 0xfa, 0x0d, 0xb8, 0x68, 0x37, 0xe1, 0x42, 0xaf, 0x6b, 0x89, 0x99, + 0x9b, 0x35, 0x94, 0x9e, 0x32, 0x36, 0x37, 0x6b, 0x54, 0xca, 0x98, 0x41, 0xfa, 0x0d, 0xe5, 0x63, + 0xff, 0x17, 0x0b, 0x8a, 0x55, 0xbf, 0x71, 0x02, 0x0f, 0xde, 0x8f, 0x19, 0x0f, 0xde, 0xc7, 0xb3, + 0x2f, 0xc4, 0x46, 0xae, 0xdc, 0x7d, 0x25, 0x21, 0x77, 0x3f, 0x97, 0x47, 0xa0, 0xbb, 0x94, 0xfd, + 0xa7, 0x8b, 0x30, 0x5a, 0xf5, 0x1b, 0xca, 0xd6, 0xfb, 0x9f, 0x3d, 0x8c, 0xad, 0x77, 0x6e, 0x46, + 0x03, 0x8d, 0x32, 0xb3, 0x52, 0x93, 0x6e, 0xae, 0xdf, 0x64, 0x26, 0xdf, 0x77, 0x89, 0xbb, 0xbd, + 0x13, 0x91, 0x46, 0xf2, 0x73, 0x4e, 0xce, 0xe4, 0xfb, 0xf7, 0x0b, 0x30, 0x99, 0x68, 0x1d, 0x35, + 0x61, 0xbc, 0xa9, 0x4b, 0x75, 0xc5, 0x3a, 0x7d, 0x28, 0x81, 0xb0, 0x30, 0x99, 0xd5, 0x8a, 0xb0, + 0x49, 0x1c, 0x2d, 0x00, 0x28, 0x35, 0xa7, 0x14, 0xeb, 0x31, 0xae, 0x5f, 0xe9, 0x41, 0x43, 0xac, + 0x61, 0xa0, 0x97, 0x60, 0x34, 0xf2, 0xdb, 0x7e, 0xd3, 0xdf, 0xde, 0xbf, 0x41, 0x64, 0xf0, 0x28, + 0x65, 0x08, 0xb7, 0x11, 0x83, 0xb0, 0x8e, 0x87, 0xee, 0xc3, 0xb4, 0x22, 0x52, 0x3b, 0x06, 0x49, + 0x37, 0x93, 0x2a, 0xac, 0x27, 0x29, 0xe2, 0x74, 0x23, 0xf6, 0xcf, 0x16, 0xf9, 0x10, 0x7b, 0x91, + 0xfb, 0xde, 0x6e, 0x78, 0x77, 0xef, 0x86, 0xaf, 0x59, 0x30, 0x45, 0x5b, 0x67, 0x56, 0x3e, 0xf2, + 0x9a, 0x57, 0xe1, 0x99, 0xad, 0x2e, 0xe1, 0x99, 0x2f, 0xd1, 0x53, 0xb3, 0xe1, 0x77, 0x22, 0x21, + 0xbb, 0xd3, 0x8e, 0x45, 0x5a, 0x8a, 0x05, 0x54, 0xe0, 0x91, 0x20, 0x10, 0x9e, 0x89, 0x3a, 0x1e, + 0x09, 0x02, 0x2c, 0xa0, 0x32, 0x7a, 0xf3, 0x40, 0x76, 0xf4, 0x66, 0x1e, 0x84, 0x53, 0xd8, 0x83, + 0x08, 0x86, 0x4b, 0x0b, 0xc2, 0x29, 0x0d, 0x45, 0x62, 0x1c, 0xfb, 0xe7, 0x8b, 0x30, 0x56, 0xf5, + 0x1b, 0xb1, 0x8a, 0xf3, 0x45, 0x43, 0xc5, 0x79, 0x21, 0xa1, 0xe2, 0x9c, 0xd2, 0x71, 0xdf, 0x53, + 0x68, 0x7e, 0xa3, 0x14, 0x9a, 0xff, 0xd8, 0x62, 0xb3, 0x56, 0x5e, 0xaf, 0x71, 0xa3, 0x31, 0x74, + 0x15, 0x46, 0xd9, 0x01, 0xc3, 0x5c, 0x61, 0xa5, 0xde, 0x8f, 0x65, 0x25, 0x5a, 0x8f, 0x8b, 0xb1, + 0x8e, 0x83, 0x2e, 0xc3, 0x48, 0x48, 0x9c, 0xa0, 0xbe, 0xa3, 0x4e, 0x57, 0xa1, 0xa4, 0xe3, 0x65, + 0x58, 0x41, 0xd1, 0x1b, 0x71, 0xfc, 0xc7, 0x62, 0xbe, 0x6b, 0x9d, 0xde, 0x1f, 0xbe, 0x45, 0xf2, + 0x83, 0x3e, 0xda, 0x77, 0x01, 0xa5, 0xf1, 0xfb, 0x08, 0x7c, 0x36, 0x6f, 0x06, 0x3e, 0x2b, 0xa5, + 0x82, 0x9e, 0xfd, 0xb9, 0x05, 0x13, 0x55, 0xbf, 0x41, 0xb7, 0xee, 0xb7, 0xd2, 0x3e, 0xd5, 0x83, + 0xdf, 0x0e, 0x75, 0x09, 0x7e, 0x7b, 0x11, 0x06, 0xab, 0x7e, 0xa3, 0x52, 0xed, 0xe6, 0xd7, 0x6e, + 0xff, 0x0d, 0x0b, 0x86, 0xab, 0x7e, 0xe3, 0x04, 0xd4, 0x02, 0x1f, 0x35, 0xd5, 0x02, 0x8f, 0xe5, + 0xac, 0x9b, 0x1c, 0x4d, 0xc0, 0x5f, 0x1b, 0x80, 0x71, 0xda, 0x4f, 0x7f, 0x5b, 0x4e, 0xa5, 0x31, + 0x6c, 0x56, 0x1f, 0xc3, 0x46, 0xb9, 0x70, 0xbf, 0xd9, 0xf4, 0xef, 0x25, 0xa7, 0x75, 0x95, 0x95, + 0x62, 0x01, 0x45, 0xcf, 0xc2, 0x48, 0x3b, 0x20, 0x7b, 0xae, 0x2f, 0xd8, 0x5b, 0x4d, 0xc9, 0x52, + 0x15, 0xe5, 0x58, 0x61, 0xd0, 0x67, 0x61, 0xe8, 0x7a, 0xf4, 0x2a, 0xaf, 0xfb, 0x5e, 0x83, 0x4b, + 0xce, 0x8b, 0x22, 0x43, 0x83, 0x56, 0x8e, 0x0d, 0x2c, 0x74, 0x17, 0x4a, 0xec, 0x3f, 0x3b, 0x76, + 0x8e, 0x9e, 0xeb, 0x53, 0xe4, 0x7e, 0x13, 0x04, 0x70, 0x4c, 0x0b, 0x3d, 0x0f, 0x10, 0xc9, 0x28, + 0xe7, 0xa1, 0x08, 0x72, 0xa5, 0x9e, 0x02, 0x2a, 0xfe, 0x79, 0x88, 0x35, 0x2c, 0xf4, 0x0c, 0x94, + 0x22, 0xc7, 0x6d, 0xde, 0x74, 0x3d, 0x12, 0x32, 0x89, 0x78, 0x51, 0xa6, 0x60, 0x13, 0x85, 0x38, + 0x86, 0x53, 0x56, 0x8c, 0x45, 0x80, 0xe0, 0x99, 0x82, 0x47, 0x18, 0x36, 0x63, 0xc5, 0x6e, 0xaa, + 0x52, 0xac, 0x61, 0xa0, 0x1d, 0x78, 0xc2, 0xf5, 0x58, 0x36, 0x03, 0x52, 0xdb, 0x75, 0xdb, 0x1b, + 0x37, 0x6b, 0x77, 0x48, 0xe0, 0x6e, 0xed, 0x2f, 0x39, 0xf5, 0x5d, 0xe2, 0xc9, 0x2c, 0x8e, 0xef, + 0x17, 0x5d, 0x7c, 0xa2, 0xd2, 0x05, 0x17, 0x77, 0xa5, 0x64, 0xbf, 0x0c, 0xa7, 0xab, 0x7e, 0xa3, + 0xea, 0x07, 0xd1, 0xaa, 0x1f, 0xdc, 0x73, 0x82, 0x86, 0x5c, 0x29, 0xf3, 0x32, 0x1a, 0x03, 0x3d, + 0x0a, 0x07, 0xf9, 0x41, 0x61, 0x44, 0x5a, 0x78, 0x81, 0x31, 0x5f, 0x47, 0xf4, 0x21, 0xaa, 0x33, + 0x36, 0x40, 0xa5, 0xf6, 0xb8, 0xe6, 0x44, 0x04, 0xdd, 0x62, 0x29, 0x8b, 0xe3, 0x1b, 0x51, 0x54, + 0x7f, 0x5a, 0x4b, 0x59, 0x1c, 0x03, 0x33, 0xaf, 0x50, 0xb3, 0xbe, 0xfd, 0x5f, 0x07, 0xd9, 0xe1, + 0x98, 0x48, 0x0f, 0x81, 0x3e, 0x03, 0x13, 0x21, 0xb9, 0xe9, 0x7a, 0x9d, 0xfb, 0x52, 0x1a, 0xd1, + 0xc5, 0x0b, 0xac, 0xb6, 0xa2, 0x63, 0x72, 0x99, 0xa6, 0x59, 0x86, 0x13, 0xd4, 0x50, 0x0b, 0x26, + 0xee, 0xb9, 0x5e, 0xc3, 0xbf, 0x17, 0x4a, 0xfa, 0x23, 0xf9, 0xa2, 0xcd, 0xbb, 0x1c, 0x33, 0xd1, + 0x47, 0xa3, 0xb9, 0xbb, 0x06, 0x31, 0x9c, 0x20, 0x4e, 0x17, 0x60, 0xd0, 0xf1, 0x16, 0xc3, 0xdb, + 0x21, 0x09, 0x44, 0xf2, 0x69, 0xb6, 0x00, 0xb1, 0x2c, 0xc4, 0x31, 0x9c, 0x2e, 0x40, 0xf6, 0xe7, + 0x5a, 0xe0, 0x77, 0x78, 0x2e, 0x02, 0xb1, 0x00, 0xb1, 0x2a, 0xc5, 0x1a, 0x06, 0xdd, 0xa0, 0xec, + 0xdf, 0xba, 0xef, 0x61, 0xdf, 0x8f, 0xe4, 0x96, 0x66, 0xe9, 0x4e, 0xb5, 0x72, 0x6c, 0x60, 0xa1, + 0x55, 0x40, 0x61, 0xa7, 0xdd, 0x6e, 0x32, 0xf3, 0x12, 0xa7, 0xc9, 0x48, 0x71, 0x95, 0x7b, 0x91, + 0x87, 0x68, 0xad, 0xa5, 0xa0, 0x38, 0xa3, 0x06, 0x3d, 0xab, 0xb7, 0x44, 0x57, 0x07, 0x59, 0x57, + 0xb9, 0x1a, 0xa4, 0xc6, 0xfb, 0x29, 0x61, 0x68, 0x05, 0x86, 0xc3, 0xfd, 0xb0, 0x1e, 0x89, 0x58, + 0x73, 0x39, 0x19, 0x80, 0x6a, 0x0c, 0x45, 0x4b, 0x40, 0xc7, 0xab, 0x60, 0x59, 0x17, 0xd5, 0x61, + 0x46, 0x50, 0x5c, 0xde, 0x71, 0x3c, 0x95, 0x4f, 0x85, 0x5b, 0xd9, 0x5e, 0x7d, 0x70, 0x30, 0x3f, + 0x23, 0x5a, 0xd6, 0xc1, 0x87, 0x07, 0xf3, 0x67, 0xaa, 0x7e, 0x23, 0x03, 0x82, 0xb3, 0xa8, 0xf1, + 0xc5, 0x57, 0xaf, 0xfb, 0xad, 0x76, 0x35, 0xf0, 0xb7, 0xdc, 0x26, 0xe9, 0xa6, 0x4a, 0xaa, 0x19, + 0x98, 0x62, 0xf1, 0x19, 0x65, 0x38, 0x41, 0xcd, 0xfe, 0x4e, 0xc6, 0xcf, 0xb0, 0x7c, 0xcb, 0x51, + 0x27, 0x20, 0xa8, 0x05, 0xe3, 0x6d, 0xb6, 0x4d, 0x44, 0x86, 0x00, 0xb1, 0xd6, 0x5f, 0xec, 0x53, + 0x24, 0x72, 0x8f, 0x5e, 0x03, 0xa6, 0x99, 0x4a, 0x55, 0x27, 0x87, 0x4d, 0xea, 0xf6, 0x4f, 0x3c, + 0xc6, 0x6e, 0xc4, 0x1a, 0x97, 0x73, 0x0c, 0x0b, 0xa3, 0x7e, 0xf1, 0xb4, 0x9a, 0xcb, 0x17, 0xb8, + 0xc5, 0xd3, 0x22, 0x1c, 0x03, 0xb0, 0xac, 0x8b, 0x3e, 0x0d, 0x13, 0xf4, 0xa5, 0xa2, 0x6e, 0xa5, + 0x70, 0xf6, 0x54, 0x7e, 0xf0, 0x05, 0x85, 0xa5, 0x67, 0x0f, 0xd1, 0x2b, 0xe3, 0x04, 0x31, 0xf4, + 0x06, 0x33, 0x0b, 0x91, 0xa4, 0x0b, 0xfd, 0x90, 0xd6, 0x2d, 0x40, 0x24, 0x59, 0x8d, 0x08, 0xea, + 0xc0, 0x4c, 0x3a, 0xd7, 0x58, 0x38, 0x6b, 0xe7, 0xb3, 0x7c, 0xe9, 0x74, 0x61, 0x71, 0x9a, 0x87, + 0x34, 0x2c, 0xc4, 0x59, 0xf4, 0xd1, 0x4d, 0x18, 0x17, 0x49, 0x87, 0xc5, 0xca, 0x2d, 0x1a, 0x72, + 0xc0, 0x71, 0xac, 0x03, 0x0f, 0x93, 0x05, 0xd8, 0xac, 0x8c, 0xb6, 0xe1, 0x9c, 0x96, 0x04, 0xe8, + 0x5a, 0xe0, 0x30, 0x65, 0xbe, 0xcb, 0x8e, 0x53, 0xed, 0xae, 0x7e, 0xf2, 0xc1, 0xc1, 0xfc, 0xb9, + 0x8d, 0x6e, 0x88, 0xb8, 0x3b, 0x1d, 0x74, 0x0b, 0x4e, 0x73, 0xd7, 0xe1, 0x32, 0x71, 0x1a, 0x4d, + 0xd7, 0x53, 0xcc, 0x00, 0xdf, 0xf2, 0x67, 0x1f, 0x1c, 0xcc, 0x9f, 0x5e, 0xcc, 0x42, 0xc0, 0xd9, + 0xf5, 0xd0, 0x47, 0xa1, 0xd4, 0xf0, 0x42, 0x31, 0x06, 0x43, 0x46, 0x9e, 0xa5, 0x52, 0x79, 0xbd, + 0xa6, 0xbe, 0x3f, 0xfe, 0x83, 0xe3, 0x0a, 0x68, 0x9b, 0xcb, 0x8a, 0x95, 0x04, 0x63, 0x38, 0x15, + 0x3a, 0x29, 0x29, 0xe4, 0x33, 0x9c, 0x07, 0xb9, 0x92, 0x44, 0xd9, 0xd4, 0x1b, 0x7e, 0x85, 0x06, + 0x61, 0xf4, 0x3a, 0x20, 0xfa, 0x82, 0x70, 0xeb, 0x64, 0xb1, 0xce, 0xd2, 0x4f, 0x30, 0xd1, 0xfa, + 0x88, 0xe9, 0xce, 0x56, 0x4b, 0x61, 0xe0, 0x8c, 0x5a, 0xe8, 0x3a, 0x3d, 0x55, 0xf4, 0x52, 0x71, + 0x6a, 0xa9, 0xac, 0x78, 0x65, 0xd2, 0x0e, 0x48, 0xdd, 0x89, 0x48, 0xc3, 0xa4, 0x88, 0x13, 0xf5, + 0x50, 0x03, 0x9e, 0x70, 0x3a, 0x91, 0xcf, 0xc4, 0xf0, 0x26, 0xea, 0x86, 0xbf, 0x4b, 0x3c, 0xa6, + 0x01, 0x1b, 0x59, 0xba, 0x40, 0xb9, 0x8d, 0xc5, 0x2e, 0x78, 0xb8, 0x2b, 0x15, 0xca, 0x25, 0xaa, + 0x34, 0xb8, 0x60, 0x06, 0x84, 0xca, 0x48, 0x85, 0xfb, 0x12, 0x8c, 0xee, 0xf8, 0x61, 0xb4, 0x4e, + 0xa2, 0x7b, 0x7e, 0xb0, 0x2b, 0xe2, 0x7a, 0xc6, 0xb1, 0xa0, 0x63, 0x10, 0xd6, 0xf1, 0xe8, 0x33, + 0x90, 0xd9, 0x67, 0x54, 0xca, 0x4c, 0x35, 0x3e, 0x12, 0x9f, 0x31, 0xd7, 0x79, 0x31, 0x96, 0x70, + 0x89, 0x5a, 0xa9, 0x2e, 0x33, 0x35, 0x77, 0x02, 0xb5, 0x52, 0x5d, 0xc6, 0x12, 0x4e, 0x97, 0x6b, + 0xb8, 0xe3, 0x04, 0xa4, 0x1a, 0xf8, 0x75, 0x12, 0x6a, 0x11, 0xc8, 0x1f, 0xe7, 0x51, 0x4b, 0xe9, + 0x72, 0xad, 0x65, 0x21, 0xe0, 0xec, 0x7a, 0x88, 0xa4, 0x13, 0x60, 0x4d, 0xe4, 0xeb, 0x27, 0xd2, + 0xfc, 0x4c, 0x9f, 0x39, 0xb0, 0x3c, 0x98, 0x52, 0xa9, 0xb7, 0x78, 0x9c, 0xd2, 0x70, 0x76, 0x92, + 0xad, 0xed, 0xfe, 0x83, 0x9c, 0x2a, 0x8d, 0x4f, 0x25, 0x41, 0x09, 0xa7, 0x68, 0x1b, 0x31, 0xbf, + 0xa6, 0x7a, 0xc6, 0xfc, 0xba, 0x02, 0xa5, 0xb0, 0xb3, 0xd9, 0xf0, 0x5b, 0x8e, 0xeb, 0x31, 0x35, + 0xb7, 0xf6, 0x1e, 0xa9, 0x49, 0x00, 0x8e, 0x71, 0xd0, 0x2a, 0x8c, 0x38, 0x52, 0x9d, 0x83, 0xf2, + 0xa3, 0xbc, 0x28, 0x25, 0x0e, 0x0f, 0x7c, 0x20, 0x15, 0x38, 0xaa, 0x2e, 0x7a, 0x15, 0xc6, 0x85, + 0xeb, 0xab, 0xc8, 0xfa, 0x38, 0x63, 0xfa, 0x27, 0xd5, 0x74, 0x20, 0x36, 0x71, 0xd1, 0x6d, 0x18, + 0x8d, 0xfc, 0x26, 0x73, 0xb2, 0xa1, 0x6c, 0xde, 0x99, 0xfc, 0x78, 0x65, 0x1b, 0x0a, 0x4d, 0x97, + 0xa4, 0xaa, 0xaa, 0x58, 0xa7, 0x83, 0x36, 0xf8, 0x7a, 0x67, 0x91, 0xb8, 0x49, 0x38, 0xfb, 0x58, + 0xfe, 0x9d, 0xa4, 0x02, 0x76, 0x9b, 0xdb, 0x41, 0xd4, 0xc4, 0x3a, 0x19, 0x74, 0x0d, 0xa6, 0xdb, + 0x81, 0xeb, 0xb3, 0x35, 0xa1, 0x34, 0x79, 0xb3, 0x66, 0x1a, 0xa0, 0x6a, 0x12, 0x01, 0xa7, 0xeb, + 0x30, 0xcf, 0x65, 0x51, 0x38, 0x7b, 0x96, 0x27, 0x86, 0xe6, 0xcf, 0x3b, 0x5e, 0x86, 0x15, 0x14, + 0xad, 0xb1, 0x93, 0x98, 0x4b, 0x26, 0x66, 0xe7, 0xf2, 0x03, 0xcb, 0xe8, 0x12, 0x0c, 0xce, 0xbc, + 0xaa, 0xbf, 0x38, 0xa6, 0x80, 0x1a, 0x5a, 0x06, 0x41, 0xfa, 0x62, 0x08, 0x67, 0x9f, 0xe8, 0x62, + 0x24, 0x97, 0x78, 0x5e, 0xc4, 0x0c, 0x81, 0x51, 0x1c, 0xe2, 0x04, 0x4d, 0xf4, 0x71, 0x98, 0x12, + 0xe1, 0xf0, 0xe2, 0x61, 0x3a, 0x17, 0x9b, 0x2e, 0xe3, 0x04, 0x0c, 0xa7, 0xb0, 0x79, 0x86, 0x02, + 0x67, 0xb3, 0x49, 0xc4, 0xd1, 0x77, 0xd3, 0xf5, 0x76, 0xc3, 0xd9, 0xf3, 0xec, 0x7c, 0x10, 0x19, + 0x0a, 0x92, 0x50, 0x9c, 0x51, 0x03, 0x6d, 0xc0, 0x54, 0x3b, 0x20, 0xa4, 0xc5, 0x18, 0x7d, 0x71, + 0x9f, 0xcd, 0x73, 0xc7, 0x7d, 0xda, 0x93, 0x6a, 0x02, 0x76, 0x98, 0x51, 0x86, 0x53, 0x14, 0xd0, + 0x3d, 0x18, 0xf1, 0xf7, 0x48, 0xb0, 0x43, 0x9c, 0xc6, 0xec, 0x85, 0x2e, 0xa6, 0xf4, 0xe2, 0x72, + 0xbb, 0x25, 0x70, 0x13, 0xda, 0x7f, 0x59, 0xdc, 0x5b, 0xfb, 0x2f, 0x1b, 0x43, 0x3f, 0x62, 0xc1, + 0x59, 0xa9, 0x30, 0xa8, 0xb5, 0xe9, 0xa8, 0x2f, 0xfb, 0x5e, 0x18, 0x05, 0xdc, 0xd5, 0xfc, 0xc9, + 0x7c, 0xf7, 0xeb, 0x8d, 0x9c, 0x4a, 0x4a, 0x38, 0x7a, 0x36, 0x0f, 0x23, 0xc4, 0xf9, 0x2d, 0xa2, + 0x65, 0x98, 0x0e, 0x49, 0x24, 0x0f, 0xa3, 0xc5, 0x70, 0xf5, 0x8d, 0xf2, 0xfa, 0xec, 0x45, 0xee, + 0x27, 0x4f, 0x37, 0x43, 0x2d, 0x09, 0xc4, 0x69, 0xfc, 0xb9, 0x6f, 0x87, 0xe9, 0xd4, 0xf5, 0x7f, + 0x94, 0xcc, 0x2b, 0x73, 0xbb, 0x30, 0x6e, 0x0c, 0xf1, 0x23, 0xd5, 0x1e, 0xff, 0xcb, 0x61, 0x28, + 0x29, 0xcd, 0x22, 0xba, 0x62, 0x2a, 0x8c, 0xcf, 0x26, 0x15, 0xc6, 0x23, 0xf4, 0x5d, 0xaf, 0xeb, + 0x88, 0x37, 0x32, 0xa2, 0x83, 0xe5, 0x6d, 0xe8, 0xfe, 0xdd, 0xbe, 0x35, 0x71, 0x6d, 0xb1, 0x6f, + 0xcd, 0xf3, 0x40, 0x57, 0x09, 0xf0, 0x35, 0x98, 0xf6, 0x7c, 0xc6, 0x73, 0x92, 0x86, 0x64, 0x28, + 0x18, 0xdf, 0x50, 0xd2, 0xc3, 0x6d, 0x24, 0x10, 0x70, 0xba, 0x0e, 0x6d, 0x90, 0x5f, 0xfc, 0x49, + 0x91, 0x33, 0xe7, 0x0b, 0xb0, 0x80, 0xa2, 0x8b, 0x30, 0xd8, 0xf6, 0x1b, 0x95, 0xaa, 0xe0, 0x37, + 0xb5, 0x98, 0x94, 0x8d, 0x4a, 0x15, 0x73, 0x18, 0x5a, 0x84, 0x21, 0xf6, 0x23, 0x9c, 0x1d, 0xcb, + 0x8f, 0xab, 0xc0, 0x6a, 0x68, 0x79, 0x6d, 0x58, 0x05, 0x2c, 0x2a, 0x32, 0xd1, 0x17, 0x65, 0xd2, + 0x99, 0xe8, 0x6b, 0xf8, 0x21, 0x45, 0x5f, 0x92, 0x00, 0x8e, 0x69, 0xa1, 0xfb, 0x70, 0xda, 0x78, + 0x18, 0xf1, 0x25, 0x42, 0x42, 0xe1, 0xdb, 0x7d, 0xb1, 0xeb, 0x8b, 0x48, 0x68, 0xaa, 0xcf, 0x89, + 0x4e, 0x9f, 0xae, 0x64, 0x51, 0xc2, 0xd9, 0x0d, 0xa0, 0x26, 0x4c, 0xd7, 0x53, 0xad, 0x8e, 0xf4, + 0xdf, 0xaa, 0x9a, 0xd0, 0x74, 0x8b, 0x69, 0xc2, 0xe8, 0x55, 0x18, 0x79, 0xcb, 0x0f, 0xd9, 0x59, + 0x2d, 0x78, 0x64, 0xe9, 0x18, 0x3c, 0xf2, 0xc6, 0xad, 0x1a, 0x2b, 0x3f, 0x3c, 0x98, 0x1f, 0xad, + 0xfa, 0x0d, 0xf9, 0x17, 0xab, 0x0a, 0xe8, 0xfb, 0x2d, 0x98, 0x4b, 0xbf, 0xbc, 0x54, 0xa7, 0xc7, + 0xfb, 0xef, 0xb4, 0x2d, 0x1a, 0x9d, 0x5b, 0xc9, 0x25, 0x87, 0xbb, 0x34, 0x65, 0xff, 0x8a, 0xc5, + 0xa4, 0x6e, 0x42, 0x03, 0x44, 0xc2, 0x4e, 0xf3, 0x24, 0xd2, 0x79, 0xae, 0x18, 0xca, 0xa9, 0x87, + 0xb6, 0x5c, 0xf8, 0xa7, 0x16, 0xb3, 0x5c, 0x38, 0x41, 0x17, 0x85, 0x37, 0x60, 0x24, 0x92, 0x69, + 0x56, 0xbb, 0x64, 0x20, 0xd5, 0x3a, 0xc5, 0xac, 0x37, 0x14, 0xc7, 0xaa, 0x32, 0xaa, 0x2a, 0x32, + 0xf6, 0x3f, 0xe0, 0x33, 0x20, 0x21, 0x27, 0xa0, 0x03, 0x28, 0x9b, 0x3a, 0x80, 0xf9, 0x1e, 0x5f, + 0x90, 0xa3, 0x0b, 0xf8, 0xfb, 0x66, 0xbf, 0x99, 0xa4, 0xe6, 0xdd, 0x6e, 0x32, 0x63, 0x7f, 0xd1, + 0x02, 0x88, 0x43, 0xfe, 0x32, 0xf9, 0xb2, 0x1f, 0xc8, 0x5c, 0x8e, 0x59, 0x59, 0x8b, 0x5e, 0xa6, + 0x3c, 0xaa, 0x1f, 0xf9, 0x75, 0xbf, 0x29, 0x34, 0x5c, 0x4f, 0xc4, 0x6a, 0x08, 0x5e, 0x7e, 0xa8, + 0xfd, 0xc6, 0x0a, 0x1b, 0xcd, 0xcb, 0x00, 0x63, 0xc5, 0x58, 0x31, 0x66, 0x04, 0x17, 0xfb, 0x31, + 0x0b, 0x4e, 0x65, 0xd9, 0xbb, 0xd2, 0x17, 0x0f, 0x97, 0x59, 0x29, 0x73, 0x26, 0x35, 0x9b, 0x77, + 0x44, 0x39, 0x56, 0x18, 0x7d, 0x67, 0x28, 0x3b, 0x5a, 0xac, 0xdd, 0x5b, 0x30, 0x5e, 0x0d, 0x88, + 0x76, 0xb9, 0xbe, 0xc6, 0x9d, 0xd6, 0x79, 0x7f, 0x9e, 0x3d, 0xb2, 0xc3, 0xba, 0xfd, 0x95, 0x02, + 0x9c, 0xe2, 0x56, 0x01, 0x8b, 0x7b, 0xbe, 0xdb, 0xa8, 0xfa, 0x0d, 0x91, 0x5d, 0xee, 0x53, 0x30, + 0xd6, 0xd6, 0x04, 0x8d, 0xdd, 0xe2, 0x46, 0xea, 0x02, 0xc9, 0x58, 0x34, 0xa2, 0x97, 0x62, 0x83, + 0x16, 0x6a, 0xc0, 0x18, 0xd9, 0x73, 0xeb, 0x4a, 0xb5, 0x5c, 0x38, 0xf2, 0x45, 0xa7, 0x5a, 0x59, + 0xd1, 0xe8, 0x60, 0x83, 0xea, 0x23, 0xc8, 0x1b, 0x6c, 0xff, 0xb8, 0x05, 0x8f, 0xe5, 0x44, 0x99, + 0xa4, 0xcd, 0xdd, 0x63, 0xf6, 0x17, 0x62, 0xd9, 0xaa, 0xe6, 0xb8, 0x55, 0x06, 0x16, 0x50, 0xf4, + 0x09, 0x00, 0x6e, 0x55, 0x41, 0x9f, 0xdc, 0xbd, 0xc2, 0xf1, 0x19, 0x91, 0xc4, 0xb4, 0xa0, 0x50, + 0xb2, 0x3e, 0xd6, 0x68, 0xd9, 0x5f, 0x1a, 0x80, 0x41, 0x9e, 0xe3, 0x7c, 0x15, 0x86, 0x77, 0x78, + 0xce, 0x8d, 0x7e, 0xd2, 0x7b, 0xc4, 0xc2, 0x10, 0x5e, 0x80, 0x65, 0x65, 0xb4, 0x06, 0x33, 0x3c, + 0x67, 0x49, 0xb3, 0x4c, 0x9a, 0xce, 0xbe, 0x94, 0xdc, 0xf1, 0x7c, 0x9f, 0x4a, 0x82, 0x59, 0x49, + 0xa3, 0xe0, 0xac, 0x7a, 0xe8, 0x35, 0x98, 0xa0, 0x2f, 0x29, 0xbf, 0x13, 0x49, 0x4a, 0x3c, 0x5b, + 0x89, 0x7a, 0xba, 0x6d, 0x18, 0x50, 0x9c, 0xc0, 0xa6, 0x8f, 0xf9, 0x76, 0x4a, 0x46, 0x39, 0x18, + 0x3f, 0xe6, 0x4d, 0xb9, 0xa4, 0x89, 0xcb, 0x0c, 0x5d, 0x3b, 0xcc, 0xac, 0x77, 0x63, 0x27, 0x20, + 0xe1, 0x8e, 0xdf, 0x6c, 0x30, 0xa6, 0x6f, 0x50, 0x33, 0x74, 0x4d, 0xc0, 0x71, 0xaa, 0x06, 0xa5, + 0xb2, 0xe5, 0xb8, 0xcd, 0x4e, 0x40, 0x62, 0x2a, 0x43, 0x26, 0x95, 0xd5, 0x04, 0x1c, 0xa7, 0x6a, + 0xf4, 0x16, 0xbe, 0x0e, 0x1f, 0x8f, 0xf0, 0x95, 0x2e, 0xd8, 0xd3, 0xd5, 0xc0, 0xa7, 0x27, 0xb6, + 0x8c, 0xd1, 0xa3, 0xcc, 0xa4, 0x87, 0xa5, 0x3b, 0x71, 0x97, 0x68, 0x76, 0xc2, 0x90, 0x94, 0x53, + 0x30, 0x2c, 0x15, 0x6a, 0xc2, 0x91, 0x58, 0x52, 0x41, 0x57, 0x61, 0x54, 0xa4, 0xbc, 0x60, 0xd6, + 0xbc, 0x7c, 0x8d, 0x30, 0xcb, 0x8a, 0x72, 0x5c, 0x8c, 0x75, 0x1c, 0xfb, 0x07, 0x0a, 0x30, 0x93, + 0xe1, 0x8e, 0xc1, 0xcf, 0xc4, 0x6d, 0x37, 0x8c, 0x54, 0xf2, 0x44, 0xed, 0x4c, 0xe4, 0xe5, 0x58, + 0x61, 0xd0, 0x8d, 0xc7, 0x4f, 0xdd, 0xe4, 0x49, 0x2b, 0xcc, 0x9d, 0x05, 0xf4, 0x88, 0x69, 0x08, + 0x2f, 0xc0, 0x40, 0x27, 0x24, 0x32, 0x0e, 0xa5, 0xba, 0x83, 0x98, 0xc2, 0x8d, 0x41, 0xe8, 0x9b, + 0x60, 0x5b, 0xe9, 0xae, 0xb4, 0x37, 0x01, 0xd7, 0x5e, 0x71, 0x18, 0xed, 0x5c, 0x44, 0x3c, 0xc7, + 0x8b, 0xc4, 0xcb, 0x21, 0x0e, 0xa8, 0xc6, 0x4a, 0xb1, 0x80, 0xda, 0x5f, 0x2a, 0xc2, 0xd9, 0x5c, + 0x07, 0x2d, 0xda, 0xf5, 0x96, 0xef, 0xb9, 0x91, 0xaf, 0x4c, 0x56, 0x78, 0x10, 0x35, 0xd2, 0xde, + 0x59, 0x13, 0xe5, 0x58, 0x61, 0xa0, 0x4b, 0x30, 0xc8, 0xc4, 0x75, 0xa9, 0x34, 0x92, 0x4b, 0x65, + 0x1e, 0x55, 0x87, 0x83, 0xfb, 0x4e, 0xd1, 0x7b, 0x91, 0x5e, 0xc7, 0x7e, 0x33, 0x79, 0x3a, 0xd2, + 0xee, 0xfa, 0x7e, 0x13, 0x33, 0x20, 0xfa, 0x80, 0x18, 0xaf, 0x84, 0x8d, 0x06, 0x76, 0x1a, 0x7e, + 0xa8, 0x0d, 0xda, 0xd3, 0x30, 0xbc, 0x4b, 0xf6, 0x03, 0xd7, 0xdb, 0x4e, 0xda, 0xee, 0xdc, 0xe0, + 0xc5, 0x58, 0xc2, 0xcd, 0x8c, 0x60, 0xc3, 0xc7, 0x9d, 0x5b, 0x77, 0xa4, 0xe7, 0x5d, 0xfb, 0x43, + 0x45, 0x98, 0xc4, 0x4b, 0xe5, 0xf7, 0x26, 0xe2, 0x76, 0x7a, 0x22, 0x8e, 0x3b, 0xb7, 0x6e, 0xef, + 0xd9, 0xf8, 0x45, 0x0b, 0x26, 0x59, 0xe2, 0x0d, 0x11, 0x7e, 0xcb, 0xf5, 0xbd, 0x13, 0xe0, 0x6b, + 0x2f, 0xc2, 0x60, 0x40, 0x1b, 0x4d, 0xe6, 0x8f, 0x64, 0x3d, 0xc1, 0x1c, 0x86, 0x9e, 0x80, 0x01, + 0xd6, 0x05, 0x3a, 0x79, 0x63, 0x3c, 0xf5, 0x56, 0xd9, 0x89, 0x1c, 0xcc, 0x4a, 0x59, 0x4c, 0x19, + 0x4c, 0xda, 0x4d, 0x97, 0x77, 0x3a, 0x56, 0xa6, 0xbe, 0x3b, 0x5c, 0xb7, 0x33, 0xbb, 0xf6, 0xce, + 0x62, 0xca, 0x64, 0x93, 0xec, 0xfe, 0x66, 0xfc, 0xe3, 0x02, 0x9c, 0xcf, 0xac, 0xd7, 0x77, 0x4c, + 0x99, 0xee, 0xb5, 0x1f, 0x65, 0x6a, 0x85, 0xe2, 0x09, 0x5a, 0x46, 0x0e, 0xf4, 0xcb, 0xca, 0x0e, + 0xf6, 0x11, 0xea, 0x25, 0x73, 0xc8, 0xde, 0x25, 0xa1, 0x5e, 0x32, 0xfb, 0x96, 0xf3, 0xe6, 0xfd, + 0x8b, 0x42, 0xce, 0xb7, 0xb0, 0xd7, 0xef, 0x65, 0x7a, 0xce, 0x30, 0x60, 0x28, 0x5f, 0x94, 0xfc, + 0x8c, 0xe1, 0x65, 0x58, 0x41, 0xd1, 0x22, 0x4c, 0xb6, 0x5c, 0x8f, 0x1e, 0x3e, 0xfb, 0x26, 0x87, + 0xa9, 0x22, 0x71, 0xad, 0x99, 0x60, 0x9c, 0xc4, 0x47, 0xae, 0x16, 0x06, 0xa6, 0x90, 0x9f, 0x91, + 0x3d, 0xb7, 0xb7, 0x0b, 0xa6, 0xa2, 0x59, 0x8d, 0x62, 0x46, 0x48, 0x98, 0x35, 0x4d, 0xe8, 0x51, + 0xec, 0x5f, 0xe8, 0x31, 0x96, 0x2d, 0xf0, 0x98, 0x7b, 0x15, 0xc6, 0x1f, 0x5a, 0xca, 0x6d, 0x7f, + 0xad, 0x08, 0x8f, 0x77, 0xd9, 0xf6, 0xfc, 0xac, 0x37, 0xe6, 0x40, 0x3b, 0xeb, 0x53, 0xf3, 0x50, + 0x85, 0x53, 0x5b, 0x9d, 0x66, 0x73, 0x9f, 0x39, 0x0c, 0x90, 0x86, 0xc4, 0x10, 0x3c, 0xa5, 0x7c, + 0xe9, 0x9f, 0x5a, 0xcd, 0xc0, 0xc1, 0x99, 0x35, 0xe9, 0xcb, 0x81, 0xde, 0x24, 0xfb, 0x8a, 0x54, + 0xe2, 0xe5, 0x80, 0x75, 0x20, 0x36, 0x71, 0xd1, 0x35, 0x98, 0x76, 0xf6, 0x1c, 0x97, 0xc7, 0xd2, + 0x95, 0x04, 0xf8, 0xd3, 0x41, 0x09, 0x27, 0x17, 0x93, 0x08, 0x38, 0x5d, 0x07, 0xbd, 0x0e, 0xc8, + 0xdf, 0x64, 0x66, 0xc5, 0x8d, 0x6b, 0xc4, 0x13, 0xfa, 0x40, 0x36, 0x77, 0xc5, 0xf8, 0x48, 0xb8, + 0x95, 0xc2, 0xc0, 0x19, 0xb5, 0x12, 0xe1, 0x4e, 0x86, 0xf2, 0xc3, 0x9d, 0x74, 0x3f, 0x17, 0x7b, + 0x66, 0xf5, 0xf8, 0x8f, 0x16, 0xbd, 0xbe, 0x38, 0x93, 0x6f, 0x46, 0x07, 0x7c, 0x95, 0xd9, 0xf3, + 0x71, 0xc1, 0xa5, 0x16, 0xa4, 0xe3, 0xb4, 0x66, 0xcf, 0x17, 0x03, 0xb1, 0x89, 0xcb, 0x17, 0x44, + 0x18, 0xfb, 0x86, 0x1a, 0x2c, 0xbe, 0x08, 0x61, 0xa4, 0x30, 0xd0, 0x27, 0x61, 0xb8, 0xe1, 0xee, + 0xb9, 0xa1, 0x10, 0xdb, 0x1c, 0x59, 0x47, 0x12, 0x9f, 0x83, 0x65, 0x4e, 0x06, 0x4b, 0x7a, 0xf6, + 0x0f, 0x15, 0x60, 0x5c, 0xb6, 0xf8, 0x46, 0xc7, 0x8f, 0x9c, 0x13, 0xb8, 0x96, 0xaf, 0x19, 0xd7, + 0xf2, 0x07, 0xba, 0xc5, 0x71, 0x62, 0x5d, 0xca, 0xbd, 0x8e, 0x6f, 0x25, 0xae, 0xe3, 0xa7, 0x7a, + 0x93, 0xea, 0x7e, 0x0d, 0xff, 0x43, 0x0b, 0xa6, 0x0d, 0xfc, 0x13, 0xb8, 0x0d, 0x56, 0xcd, 0xdb, + 0xe0, 0xc9, 0x9e, 0xdf, 0x90, 0x73, 0x0b, 0x7c, 0x6f, 0x31, 0xd1, 0x77, 0x76, 0xfa, 0xbf, 0x05, + 0x03, 0x3b, 0x4e, 0xd0, 0xe8, 0x16, 0xb7, 0x3e, 0x55, 0x69, 0xe1, 0xba, 0x13, 0x08, 0x85, 0xe8, + 0xb3, 0x2a, 0x21, 0xba, 0x13, 0xf4, 0x56, 0x86, 0xb2, 0xa6, 0xd0, 0xcb, 0x30, 0x14, 0xd6, 0xfd, + 0xb6, 0x72, 0x17, 0xb8, 0xc0, 0x93, 0xa5, 0xd3, 0x92, 0xc3, 0x83, 0x79, 0x64, 0x36, 0x47, 0x8b, + 0xb1, 0xc0, 0x47, 0x9f, 0x82, 0x71, 0xf6, 0x4b, 0x59, 0x27, 0x15, 0xf3, 0x73, 0x5c, 0xd5, 0x74, + 0x44, 0x6e, 0xba, 0x67, 0x14, 0x61, 0x93, 0xd4, 0xdc, 0x36, 0x94, 0xd4, 0x67, 0x3d, 0x52, 0x25, + 0xe4, 0xbf, 0x2b, 0xc2, 0x4c, 0xc6, 0x9a, 0x43, 0xa1, 0x31, 0x13, 0x57, 0xfb, 0x5c, 0xaa, 0xef, + 0x70, 0x2e, 0x42, 0xf6, 0x1a, 0x6a, 0x88, 0xb5, 0xd5, 0x77, 0xa3, 0xb7, 0x43, 0x92, 0x6c, 0x94, + 0x16, 0xf5, 0x6e, 0x94, 0x36, 0x76, 0x62, 0x43, 0x4d, 0x1b, 0x52, 0x3d, 0x7d, 0xa4, 0x73, 0xfa, + 0x67, 0x45, 0x38, 0x95, 0x15, 0x5a, 0x0e, 0x7d, 0x3e, 0x91, 0x35, 0xf1, 0xc5, 0x7e, 0x83, 0xd2, + 0xf1, 0x54, 0x8a, 0x5c, 0xd8, 0xbc, 0xb4, 0x60, 0xe6, 0x51, 0xec, 0x39, 0xcc, 0xa2, 0x4d, 0x16, + 0xf7, 0x20, 0xe0, 0xd9, 0x2e, 0xe5, 0xf1, 0xf1, 0xe1, 0xbe, 0x3b, 0x20, 0xd2, 0x64, 0x86, 0x09, + 0xcb, 0x07, 0x59, 0xdc, 0xdb, 0xf2, 0x41, 0xb6, 0x3c, 0xe7, 0xc2, 0xa8, 0xf6, 0x35, 0x8f, 0x74, + 0xc6, 0x77, 0xe9, 0x6d, 0xa5, 0xf5, 0xfb, 0x91, 0xce, 0xfa, 0x8f, 0x5b, 0x90, 0x30, 0x86, 0x57, + 0x62, 0x31, 0x2b, 0x57, 0x2c, 0x76, 0x01, 0x06, 0x02, 0xbf, 0x49, 0x92, 0xe9, 0x05, 0xb1, 0xdf, + 0x24, 0x98, 0x41, 0x28, 0x46, 0x14, 0x0b, 0x3b, 0xc6, 0xf4, 0x87, 0x9c, 0x78, 0xa2, 0x5d, 0x84, + 0xc1, 0x26, 0xd9, 0x23, 0xcd, 0x64, 0x16, 0x98, 0x9b, 0xb4, 0x10, 0x73, 0x98, 0xfd, 0x8b, 0x03, + 0x70, 0xae, 0x6b, 0xe4, 0x10, 0xfa, 0x1c, 0xda, 0x76, 0x22, 0x72, 0xcf, 0xd9, 0x4f, 0xa6, 0x6b, + 0xb8, 0xc6, 0x8b, 0xb1, 0x84, 0x33, 0x77, 0x25, 0x1e, 0x75, 0x39, 0x21, 0x44, 0x14, 0xc1, 0x96, + 0x05, 0xd4, 0x14, 0x4a, 0x15, 0x8f, 0x43, 0x28, 0xf5, 0x3c, 0x40, 0x18, 0x36, 0xb9, 0xc9, 0x50, + 0x43, 0xf8, 0x41, 0xc5, 0xd1, 0xb9, 0x6b, 0x37, 0x05, 0x04, 0x6b, 0x58, 0xa8, 0x0c, 0x53, 0xed, + 0xc0, 0x8f, 0xb8, 0x4c, 0xb6, 0xcc, 0xad, 0xea, 0x06, 0xcd, 0xa0, 0x0d, 0xd5, 0x04, 0x1c, 0xa7, + 0x6a, 0xa0, 0x97, 0x60, 0x54, 0x04, 0x72, 0xa8, 0xfa, 0x7e, 0x53, 0x88, 0x81, 0x94, 0xa1, 0x59, + 0x2d, 0x06, 0x61, 0x1d, 0x4f, 0xab, 0xc6, 0x04, 0xbd, 0xc3, 0x99, 0xd5, 0xb8, 0xb0, 0x57, 0xc3, + 0x4b, 0x84, 0x99, 0x1c, 0xe9, 0x2b, 0xcc, 0x64, 0x2c, 0x18, 0x2b, 0xf5, 0xad, 0x44, 0x83, 0x9e, + 0xa2, 0xa4, 0x9f, 0x1b, 0x80, 0x19, 0xb1, 0x70, 0x1e, 0xf5, 0x72, 0xb9, 0x9d, 0x5e, 0x2e, 0xc7, + 0x21, 0x3a, 0x7b, 0x6f, 0xcd, 0x9c, 0xf4, 0x9a, 0xf9, 0x61, 0x0b, 0x4c, 0xf6, 0x0a, 0xfd, 0x5f, + 0xb9, 0xf9, 0x6e, 0x5e, 0xca, 0x65, 0xd7, 0x1a, 0xf2, 0x02, 0x79, 0x87, 0x99, 0x6f, 0xec, 0xff, + 0x60, 0xc1, 0x93, 0x3d, 0x29, 0xa2, 0x15, 0x28, 0x31, 0x1e, 0x50, 0x7b, 0x9d, 0x3d, 0xa5, 0xac, + 0x6e, 0x25, 0x20, 0x87, 0x25, 0x8d, 0x6b, 0xa2, 0x95, 0x54, 0x62, 0xa1, 0xa7, 0x33, 0x12, 0x0b, + 0x9d, 0x36, 0x86, 0xe7, 0x21, 0x33, 0x0b, 0xfd, 0x20, 0xbd, 0x71, 0x0c, 0x8f, 0x17, 0xf4, 0x61, + 0x43, 0xec, 0x67, 0x27, 0xc4, 0x7e, 0xc8, 0xc4, 0xd6, 0xee, 0x90, 0x8f, 0xc3, 0x14, 0x8b, 0xf0, + 0xc4, 0x6c, 0xc0, 0x85, 0x2f, 0x4e, 0x21, 0xb6, 0xf3, 0xbc, 0x99, 0x80, 0xe1, 0x14, 0xb6, 0xfd, + 0x47, 0x45, 0x18, 0xe2, 0xdb, 0xef, 0x04, 0xde, 0x84, 0xcf, 0x40, 0xc9, 0x6d, 0xb5, 0x3a, 0x3c, + 0x57, 0xcc, 0x20, 0x77, 0xc0, 0xa5, 0xf3, 0x54, 0x91, 0x85, 0x38, 0x86, 0xa3, 0x55, 0x21, 0x71, + 0xee, 0x12, 0x44, 0x92, 0x77, 0x7c, 0xa1, 0xec, 0x44, 0x0e, 0x67, 0x70, 0xd4, 0x3d, 0x1b, 0xcb, + 0xa6, 0xd1, 0x67, 0x00, 0xc2, 0x28, 0x70, 0xbd, 0x6d, 0x5a, 0x26, 0x62, 0xa6, 0x7e, 0xb0, 0x0b, + 0xb5, 0x9a, 0x42, 0xe6, 0x34, 0xe3, 0x33, 0x47, 0x01, 0xb0, 0x46, 0x11, 0x2d, 0x18, 0x37, 0xfd, + 0x5c, 0x62, 0xee, 0x80, 0x53, 0x8d, 0xe7, 0x6c, 0xee, 0x23, 0x50, 0x52, 0xc4, 0x7b, 0xc9, 0x9f, + 0xc6, 0x74, 0xb6, 0xe8, 0x63, 0x30, 0x99, 0xe8, 0xdb, 0x91, 0xc4, 0x57, 0xbf, 0x64, 0xc1, 0x24, + 0xef, 0xcc, 0x8a, 0xb7, 0x27, 0x6e, 0x83, 0xb7, 0xe1, 0x54, 0x33, 0xe3, 0x54, 0x16, 0xd3, 0xdf, + 0xff, 0x29, 0xae, 0xc4, 0x55, 0x59, 0x50, 0x9c, 0xd9, 0x06, 0xba, 0x4c, 0x77, 0x1c, 0x3d, 0x75, + 0x9d, 0xa6, 0xf0, 0xc7, 0x1d, 0xe3, 0xbb, 0x8d, 0x97, 0x61, 0x05, 0xb5, 0x7f, 0xd7, 0x82, 0x69, + 0xde, 0xf3, 0x1b, 0x64, 0x5f, 0x9d, 0x4d, 0xdf, 0xc8, 0xbe, 0x8b, 0x2c, 0x65, 0x85, 0x9c, 0x2c, + 0x65, 0xfa, 0xa7, 0x15, 0xbb, 0x7e, 0xda, 0x57, 0x2c, 0x10, 0x2b, 0xe4, 0x04, 0x84, 0x10, 0xdf, + 0x6e, 0x0a, 0x21, 0xe6, 0xf2, 0x37, 0x41, 0x8e, 0xf4, 0xe1, 0xcf, 0x2d, 0x98, 0xe2, 0x08, 0xb1, + 0xb6, 0xfc, 0x1b, 0x3a, 0x0f, 0xfd, 0xe4, 0x32, 0xbe, 0x41, 0xf6, 0x37, 0xfc, 0xaa, 0x13, 0xed, + 0x64, 0x7f, 0x94, 0x31, 0x59, 0x03, 0x5d, 0x27, 0xab, 0x21, 0x37, 0xd0, 0x11, 0x12, 0xa4, 0x1f, + 0x39, 0x89, 0x87, 0xfd, 0x75, 0x0b, 0x10, 0x6f, 0xc6, 0x60, 0xdc, 0x28, 0x3b, 0xc4, 0x4a, 0xb5, + 0x8b, 0x2e, 0x3e, 0x9a, 0x14, 0x04, 0x6b, 0x58, 0xc7, 0x32, 0x3c, 0x09, 0x93, 0x87, 0x62, 0x6f, + 0x93, 0x87, 0x23, 0x8c, 0xe8, 0xbf, 0x1a, 0x82, 0xa4, 0xd7, 0x0f, 0xba, 0x03, 0x63, 0x75, 0xa7, + 0xed, 0x6c, 0xba, 0x4d, 0x37, 0x72, 0x49, 0xd8, 0xcd, 0x28, 0x6b, 0x59, 0xc3, 0x13, 0x4a, 0x6a, + 0xad, 0x04, 0x1b, 0x74, 0xd0, 0x02, 0x40, 0x3b, 0x70, 0xf7, 0xdc, 0x26, 0xd9, 0x66, 0xb2, 0x12, + 0x16, 0x01, 0x80, 0x5b, 0x1a, 0xc9, 0x52, 0xac, 0x61, 0x64, 0xb8, 0x58, 0x17, 0x1f, 0xb1, 0x8b, + 0x35, 0x9c, 0x98, 0x8b, 0xf5, 0xc0, 0x91, 0x5c, 0xac, 0x47, 0x8e, 0xec, 0x62, 0x3d, 0xd8, 0x97, + 0x8b, 0x35, 0x86, 0x33, 0x92, 0xf7, 0xa4, 0xff, 0x57, 0xdd, 0x26, 0x11, 0x0f, 0x0e, 0x1e, 0xb6, + 0x60, 0xee, 0xc1, 0xc1, 0xfc, 0x19, 0x9c, 0x89, 0x81, 0x73, 0x6a, 0xa2, 0x4f, 0xc0, 0xac, 0xd3, + 0x6c, 0xfa, 0xf7, 0xd4, 0xa4, 0xae, 0x84, 0x75, 0xa7, 0xc9, 0x95, 0x10, 0xc3, 0x8c, 0xea, 0x13, + 0x0f, 0x0e, 0xe6, 0x67, 0x17, 0x73, 0x70, 0x70, 0x6e, 0x6d, 0xf4, 0x51, 0x28, 0xb5, 0x03, 0xbf, + 0xbe, 0xa6, 0xb9, 0x26, 0x9e, 0xa7, 0x03, 0x58, 0x95, 0x85, 0x87, 0x07, 0xf3, 0xe3, 0xea, 0x0f, + 0xbb, 0xf0, 0xe3, 0x0a, 0x19, 0x3e, 0xd3, 0xa3, 0xc7, 0xea, 0x33, 0xbd, 0x0b, 0x33, 0x35, 0x12, + 0xb8, 0x2c, 0x9d, 0x7a, 0x23, 0x3e, 0x9f, 0x36, 0xa0, 0x14, 0x24, 0x4e, 0xe4, 0xbe, 0x02, 0x3b, + 0x6a, 0xd9, 0x14, 0xe4, 0x09, 0x1c, 0x13, 0xb2, 0xff, 0xa7, 0x05, 0xc3, 0xc2, 0xcb, 0xe7, 0x04, + 0xb8, 0xc6, 0x45, 0x43, 0x93, 0x30, 0x9f, 0x3d, 0x60, 0xac, 0x33, 0xb9, 0x3a, 0x84, 0x4a, 0x42, + 0x87, 0xf0, 0x64, 0x37, 0x22, 0xdd, 0xb5, 0x07, 0x7f, 0xa5, 0x48, 0xb9, 0x77, 0xc3, 0xdf, 0xf4, + 0xd1, 0x0f, 0xc1, 0x3a, 0x0c, 0x87, 0xc2, 0xdf, 0xb1, 0x90, 0x6f, 0xa0, 0x9f, 0x9c, 0xc4, 0xd8, + 0x8e, 0x4d, 0x78, 0x38, 0x4a, 0x22, 0x99, 0x8e, 0x94, 0xc5, 0x47, 0xe8, 0x48, 0xd9, 0xcb, 0x23, + 0x77, 0xe0, 0x38, 0x3c, 0x72, 0xed, 0xaf, 0xb2, 0x9b, 0x53, 0x2f, 0x3f, 0x01, 0xa6, 0xea, 0x9a, + 0x79, 0xc7, 0xda, 0x5d, 0x56, 0x96, 0xe8, 0x54, 0x0e, 0x73, 0xf5, 0x0b, 0x16, 0x9c, 0xcb, 0xf8, + 0x2a, 0x8d, 0xd3, 0x7a, 0x16, 0x46, 0x9c, 0x4e, 0xc3, 0x55, 0x7b, 0x59, 0xd3, 0x27, 0x2e, 0x8a, + 0x72, 0xac, 0x30, 0xd0, 0x32, 0x4c, 0x93, 0xfb, 0x6d, 0x97, 0xab, 0x52, 0x75, 0xab, 0xd6, 0x22, + 0x77, 0x0d, 0x5b, 0x49, 0x02, 0x71, 0x1a, 0x5f, 0x45, 0x41, 0x29, 0xe6, 0x46, 0x41, 0xf9, 0xdb, + 0x16, 0x8c, 0x2a, 0x8f, 0xbf, 0x47, 0x3e, 0xda, 0x1f, 0x37, 0x47, 0xfb, 0xf1, 0x2e, 0xa3, 0x9d, + 0x33, 0xcc, 0xbf, 0x5d, 0x50, 0xfd, 0xad, 0xfa, 0x41, 0xd4, 0x07, 0x07, 0xf7, 0xf0, 0x76, 0xf8, + 0x57, 0x61, 0xd4, 0x69, 0xb7, 0x25, 0x40, 0xda, 0xa0, 0xb1, 0x30, 0xbd, 0x71, 0x31, 0xd6, 0x71, + 0x94, 0x5b, 0x40, 0x31, 0xd7, 0x2d, 0xa0, 0x01, 0x10, 0x39, 0xc1, 0x36, 0x89, 0x68, 0x99, 0x88, + 0x58, 0x96, 0x7f, 0xde, 0x74, 0x22, 0xb7, 0xb9, 0xe0, 0x7a, 0x51, 0x18, 0x05, 0x0b, 0x15, 0x2f, + 0xba, 0x15, 0xf0, 0x27, 0xa4, 0x16, 0x12, 0x48, 0xd1, 0xc2, 0x1a, 0x5d, 0xe9, 0xdd, 0xce, 0xda, + 0x18, 0x34, 0x8d, 0x19, 0xd6, 0x45, 0x39, 0x56, 0x18, 0xf6, 0x47, 0xd8, 0xed, 0xc3, 0xc6, 0xf4, + 0x68, 0x31, 0x74, 0xfe, 0xee, 0x98, 0x9a, 0x0d, 0xa6, 0xc9, 0x2c, 0xeb, 0x91, 0x7a, 0xba, 0x1f, + 0xf6, 0xb4, 0x61, 0xdd, 0x49, 0x2d, 0x0e, 0xe7, 0x83, 0xbe, 0x23, 0x65, 0xa0, 0xf2, 0x5c, 0x8f, + 0x5b, 0xe3, 0x08, 0x26, 0x29, 0x2c, 0x67, 0x07, 0xcb, 0x68, 0x50, 0xa9, 0x8a, 0x7d, 0xa1, 0xe5, + 0xec, 0x10, 0x00, 0x1c, 0xe3, 0x50, 0x66, 0x4a, 0xfd, 0x09, 0x67, 0x51, 0x1c, 0xbb, 0x52, 0x61, + 0x87, 0x58, 0xc3, 0x40, 0x57, 0x84, 0x40, 0x81, 0xeb, 0x05, 0x1e, 0x4f, 0x08, 0x14, 0xe4, 0x70, + 0x69, 0x52, 0xa0, 0xab, 0x30, 0xaa, 0xd2, 0x03, 0x57, 0x79, 0xd6, 0x59, 0xb1, 0xcc, 0x56, 0xe2, + 0x62, 0xac, 0xe3, 0xa0, 0x0d, 0x98, 0x0c, 0xb9, 0x9c, 0x4d, 0x05, 0x14, 0xe6, 0xf2, 0xca, 0x0f, + 0x4a, 0x2b, 0xa0, 0x9a, 0x09, 0x3e, 0x64, 0x45, 0xfc, 0x74, 0x92, 0x1e, 0xe8, 0x49, 0x12, 0xe8, + 0x35, 0x98, 0x68, 0xfa, 0x4e, 0x63, 0xc9, 0x69, 0x3a, 0x5e, 0x9d, 0x8d, 0xcf, 0x88, 0x99, 0x65, + 0xf2, 0xa6, 0x01, 0xc5, 0x09, 0x6c, 0xca, 0xbc, 0xe9, 0x25, 0x22, 0x08, 0xb6, 0xe3, 0x6d, 0x93, + 0x50, 0x24, 0x7b, 0x65, 0xcc, 0xdb, 0xcd, 0x1c, 0x1c, 0x9c, 0x5b, 0x1b, 0xbd, 0x0c, 0x63, 0xf2, + 0xf3, 0xb5, 0x80, 0x0d, 0xb1, 0x87, 0x85, 0x06, 0xc3, 0x06, 0x26, 0xba, 0x07, 0xa7, 0xe5, 0xff, + 0x8d, 0xc0, 0xd9, 0xda, 0x72, 0xeb, 0xc2, 0x8b, 0x99, 0xbb, 0x62, 0x2e, 0x4a, 0x7f, 0xc1, 0x95, + 0x2c, 0xa4, 0xc3, 0x83, 0xf9, 0x0b, 0x62, 0xd4, 0x32, 0xe1, 0x6c, 0x12, 0xb3, 0xe9, 0xa3, 0x35, + 0x98, 0xd9, 0x21, 0x4e, 0x33, 0xda, 0x59, 0xde, 0x21, 0xf5, 0x5d, 0xb9, 0xe9, 0x58, 0x18, 0x08, + 0xcd, 0x2f, 0xe1, 0x7a, 0x1a, 0x05, 0x67, 0xd5, 0x43, 0x6f, 0xc2, 0x6c, 0xbb, 0xb3, 0xd9, 0x74, + 0xc3, 0x9d, 0x75, 0x3f, 0x62, 0xa6, 0x40, 0x2a, 0xdb, 0xb0, 0x88, 0x17, 0xa1, 0x02, 0x6d, 0x54, + 0x73, 0xf0, 0x70, 0x2e, 0x05, 0xf4, 0x36, 0x9c, 0x4e, 0x2c, 0x06, 0xe1, 0x31, 0x3f, 0x91, 0x9f, + 0x52, 0xa0, 0x96, 0x55, 0x41, 0x04, 0x9f, 0xc8, 0x02, 0xe1, 0xec, 0x26, 0xd0, 0x2b, 0x00, 0x6e, + 0x7b, 0xd5, 0x69, 0xb9, 0x4d, 0xfa, 0x5c, 0x9c, 0x61, 0xeb, 0x84, 0x3e, 0x1d, 0xa0, 0x52, 0x95, + 0xa5, 0xf4, 0x7c, 0x16, 0xff, 0xf6, 0xb1, 0x86, 0x8d, 0xaa, 0x30, 0x21, 0xfe, 0xed, 0x8b, 0x69, + 0x9d, 0x56, 0xce, 0xe9, 0x13, 0xb2, 0x86, 0x9a, 0x4b, 0x64, 0x96, 0xb0, 0xd9, 0x4b, 0xd4, 0x47, + 0xdb, 0x70, 0x4e, 0x24, 0xa6, 0x26, 0xfa, 0x3a, 0x95, 0xf3, 0x10, 0xb2, 0x58, 0xfe, 0x23, 0xdc, + 0xed, 0x61, 0xb1, 0x1b, 0x22, 0xee, 0x4e, 0x87, 0xde, 0xef, 0xfa, 0x72, 0xe7, 0xee, 0xa0, 0xa7, + 0xb9, 0x79, 0x12, 0xbd, 0xdf, 0x6f, 0x26, 0x81, 0x38, 0x8d, 0x8f, 0x42, 0x38, 0xed, 0x7a, 0x59, + 0xab, 0xfb, 0x0c, 0x23, 0xf4, 0x31, 0xee, 0x09, 0xdb, 0x7d, 0x65, 0x67, 0xc2, 0xf9, 0xca, 0xce, + 0xa4, 0xfd, 0xce, 0xac, 0xf0, 0x7e, 0xc7, 0xa2, 0xb5, 0x35, 0x4e, 0x1d, 0x7d, 0x16, 0xc6, 0xf4, + 0x0f, 0x13, 0x5c, 0xc7, 0xa5, 0x6c, 0x46, 0x56, 0x3b, 0x1f, 0x38, 0x9f, 0xaf, 0xce, 0x00, 0x1d, + 0x86, 0x0d, 0x8a, 0xa8, 0x9e, 0xe1, 0x33, 0x7e, 0xa5, 0x3f, 0xae, 0xa6, 0x7f, 0x23, 0x34, 0x02, + 0xd9, 0xcb, 0x1e, 0xdd, 0x84, 0x91, 0x7a, 0xd3, 0x25, 0x5e, 0x54, 0xa9, 0x76, 0x8b, 0xf2, 0xb6, + 0x2c, 0x70, 0xc4, 0x3e, 0x12, 0xa1, 0xf9, 0x79, 0x19, 0x56, 0x14, 0xec, 0x5f, 0x2f, 0xc0, 0x7c, + 0x8f, 0x3c, 0x0f, 0x09, 0x95, 0x94, 0xd5, 0x97, 0x4a, 0x6a, 0x51, 0xa6, 0xd4, 0x5e, 0x4f, 0x48, + 0xbb, 0x12, 0xe9, 0xb2, 0x63, 0x99, 0x57, 0x12, 0xbf, 0x6f, 0x17, 0x01, 0x5d, 0xab, 0x35, 0xd0, + 0xd3, 0xc9, 0xc5, 0xd0, 0x66, 0x0f, 0xf6, 0xff, 0x04, 0xce, 0xd5, 0x4c, 0xda, 0x5f, 0x2d, 0xc0, + 0x69, 0x35, 0x84, 0xdf, 0xba, 0x03, 0x77, 0x3b, 0x3d, 0x70, 0xc7, 0xa0, 0xd7, 0xb5, 0x6f, 0xc1, + 0x10, 0x0f, 0x5b, 0xd7, 0x07, 0xeb, 0x7d, 0xd1, 0x8c, 0xf0, 0xaa, 0xb8, 0x3d, 0x23, 0xca, 0xeb, + 0xf7, 0x5b, 0x30, 0xb9, 0xb1, 0x5c, 0xad, 0xf9, 0xf5, 0x5d, 0x12, 0x2d, 0xf2, 0xa7, 0x12, 0xd6, + 0xbc, 0x6b, 0x1f, 0x86, 0x3d, 0xce, 0x62, 0xbc, 0x2f, 0xc0, 0xc0, 0x8e, 0x1f, 0x46, 0x49, 0xa3, + 0x8f, 0xeb, 0x7e, 0x18, 0x61, 0x06, 0xb1, 0x7f, 0xcf, 0x82, 0xc1, 0x0d, 0xc7, 0xf5, 0x22, 0xa9, + 0x20, 0xb0, 0x72, 0x14, 0x04, 0xfd, 0x7c, 0x17, 0x7a, 0x09, 0x86, 0xc8, 0xd6, 0x16, 0xa9, 0x47, + 0x62, 0x56, 0x65, 0x68, 0x82, 0xa1, 0x15, 0x56, 0x4a, 0x79, 0x41, 0xd6, 0x18, 0xff, 0x8b, 0x05, + 0x32, 0xba, 0x0b, 0xa5, 0xc8, 0x6d, 0x91, 0xc5, 0x46, 0x43, 0xa8, 0xcd, 0x1f, 0x22, 0xbc, 0xc2, + 0x86, 0x24, 0x80, 0x63, 0x5a, 0xf6, 0x97, 0x0a, 0x00, 0x71, 0xbc, 0x9f, 0x5e, 0x9f, 0xb8, 0x94, + 0x52, 0xa8, 0x5e, 0xca, 0x50, 0xa8, 0xa2, 0x98, 0x60, 0x86, 0x36, 0x55, 0x0d, 0x53, 0xb1, 0xaf, + 0x61, 0x1a, 0x38, 0xca, 0x30, 0x2d, 0xc3, 0x74, 0x1c, 0xaf, 0xc8, 0x0c, 0xd7, 0xc6, 0xae, 0xcf, + 0x8d, 0x24, 0x10, 0xa7, 0xf1, 0x6d, 0x02, 0x17, 0x54, 0xd8, 0x16, 0x71, 0xa3, 0x31, 0xab, 0x6c, + 0x5d, 0x41, 0xdd, 0x63, 0x9c, 0x62, 0x8d, 0x71, 0x21, 0x57, 0x63, 0xfc, 0x53, 0x16, 0x9c, 0x4a, + 0xb6, 0xc3, 0xfc, 0x71, 0xbf, 0x68, 0xc1, 0x69, 0xa6, 0x37, 0x67, 0xad, 0xa6, 0xb5, 0xf4, 0x2f, + 0x76, 0x0d, 0x45, 0x93, 0xd3, 0xe3, 0x38, 0x06, 0xc6, 0x5a, 0x16, 0x69, 0x9c, 0xdd, 0xa2, 0xfd, + 0xef, 0x0b, 0x30, 0x9b, 0x17, 0xc3, 0x86, 0x39, 0x6d, 0x38, 0xf7, 0x6b, 0xbb, 0xe4, 0x9e, 0x30, + 0x8d, 0x8f, 0x9d, 0x36, 0x78, 0x31, 0x96, 0xf0, 0x64, 0xe8, 0xfe, 0x42, 0x9f, 0xa1, 0xfb, 0x77, + 0x60, 0xfa, 0xde, 0x0e, 0xf1, 0x6e, 0x7b, 0xa1, 0x13, 0xb9, 0xe1, 0x96, 0xcb, 0x74, 0xcc, 0x7c, + 0xdd, 0xbc, 0x22, 0x0d, 0xd8, 0xef, 0x26, 0x11, 0x0e, 0x0f, 0xe6, 0xcf, 0x19, 0x05, 0x71, 0x97, + 0xf9, 0x41, 0x82, 0xd3, 0x44, 0xd3, 0x99, 0x0f, 0x06, 0x1e, 0x61, 0xe6, 0x03, 0xfb, 0x8b, 0x16, + 0x9c, 0xcd, 0x4d, 0xba, 0x8a, 0x2e, 0xc3, 0x88, 0xd3, 0x76, 0xb9, 0x98, 0x5e, 0x1c, 0xa3, 0x4c, + 0x1c, 0x54, 0xad, 0x70, 0x21, 0xbd, 0x82, 0xaa, 0x74, 0xf3, 0x85, 0xdc, 0x74, 0xf3, 0x3d, 0xb3, + 0xc7, 0xdb, 0xdf, 0x67, 0x81, 0x70, 0x38, 0xed, 0xe3, 0xec, 0xfe, 0x14, 0x8c, 0xed, 0xa5, 0xb3, + 0x23, 0x5d, 0xc8, 0xf7, 0xc0, 0x15, 0x39, 0x91, 0x14, 0x43, 0x66, 0x64, 0x42, 0x32, 0x68, 0xd9, + 0x0d, 0x10, 0xd0, 0x32, 0x61, 0x42, 0xe8, 0xde, 0xbd, 0x79, 0x1e, 0xa0, 0xc1, 0x70, 0xb5, 0x9c, + 0xfd, 0xea, 0x66, 0x2e, 0x2b, 0x08, 0xd6, 0xb0, 0xec, 0x7f, 0x53, 0x80, 0x51, 0x99, 0x8d, 0xa7, + 0xe3, 0xf5, 0x23, 0x2a, 0x3a, 0x52, 0x7a, 0x4e, 0x74, 0x05, 0x4a, 0x4c, 0x96, 0x59, 0x8d, 0x25, + 0x6c, 0x4a, 0x92, 0xb0, 0x26, 0x01, 0x38, 0xc6, 0xa1, 0xbb, 0x28, 0xec, 0x6c, 0x32, 0xf4, 0x84, + 0x7b, 0x64, 0x8d, 0x17, 0x63, 0x09, 0x47, 0x9f, 0x80, 0x29, 0x5e, 0x2f, 0xf0, 0xdb, 0xce, 0x36, + 0xd7, 0x7f, 0x0c, 0xaa, 0x00, 0x0a, 0x53, 0x6b, 0x09, 0xd8, 0xe1, 0xc1, 0xfc, 0xa9, 0x64, 0x19, + 0x53, 0xec, 0xa5, 0xa8, 0x30, 0x33, 0x27, 0xde, 0x08, 0xdd, 0xfd, 0x29, 0xeb, 0xa8, 0x18, 0x84, + 0x75, 0x3c, 0xfb, 0xb3, 0x80, 0xd2, 0x79, 0x89, 0xd0, 0xeb, 0xdc, 0xb6, 0xd5, 0x0d, 0x48, 0xa3, + 0x9b, 0xa2, 0x4f, 0x0f, 0x13, 0x20, 0x3d, 0x9b, 0x78, 0x2d, 0xac, 0xea, 0xdb, 0xff, 0x6f, 0x11, + 0xa6, 0x92, 0xbe, 0xdc, 0xe8, 0x3a, 0x0c, 0x71, 0xd6, 0x43, 0x90, 0xef, 0x62, 0x47, 0xa2, 0x79, + 0x80, 0xb3, 0x43, 0x58, 0x70, 0x2f, 0xa2, 0x3e, 0x7a, 0x13, 0x46, 0x1b, 0xfe, 0x3d, 0xef, 0x9e, + 0x13, 0x34, 0x16, 0xab, 0x15, 0xb1, 0x9c, 0x33, 0x1f, 0xb6, 0xe5, 0x18, 0x4d, 0xf7, 0x2a, 0x67, + 0x3a, 0xd3, 0x18, 0x84, 0x75, 0x72, 0x68, 0x83, 0x05, 0x33, 0xdf, 0x72, 0xb7, 0xd7, 0x9c, 0x76, + 0x37, 0x47, 0x87, 0x65, 0x89, 0xa4, 0x51, 0x1e, 0x17, 0x11, 0xcf, 0x39, 0x00, 0xc7, 0x84, 0xd0, + 0xe7, 0x61, 0x26, 0xcc, 0x11, 0xb7, 0xe7, 0xa5, 0xa9, 0xeb, 0x26, 0x81, 0x5e, 0x7a, 0xec, 0xc1, + 0xc1, 0xfc, 0x4c, 0x96, 0x60, 0x3e, 0xab, 0x19, 0xfb, 0xc7, 0x4e, 0x81, 0xb1, 0x89, 0x8d, 0xac, + 0xa5, 0xd6, 0x31, 0x65, 0x2d, 0xc5, 0x30, 0x42, 0x5a, 0xed, 0x68, 0xbf, 0xec, 0x06, 0xdd, 0x72, + 0x86, 0xaf, 0x08, 0x9c, 0x34, 0x4d, 0x09, 0xc1, 0x8a, 0x4e, 0x76, 0x6a, 0xd9, 0xe2, 0x37, 0x30, + 0xb5, 0xec, 0xc0, 0x09, 0xa6, 0x96, 0x5d, 0x87, 0xe1, 0x6d, 0x37, 0xc2, 0xa4, 0xed, 0x0b, 0xa6, + 0x3f, 0x73, 0x1d, 0x5e, 0xe3, 0x28, 0xe9, 0x24, 0x86, 0x02, 0x80, 0x25, 0x11, 0xf4, 0xba, 0xda, + 0x81, 0x43, 0xf9, 0x0f, 0xf3, 0xb4, 0xc1, 0x43, 0xe6, 0x1e, 0x14, 0x09, 0x64, 0x87, 0x1f, 0x36, + 0x81, 0xec, 0xaa, 0x4c, 0xfb, 0x3a, 0x92, 0xef, 0x95, 0xc4, 0xb2, 0xba, 0xf6, 0x48, 0xf6, 0x7a, + 0x47, 0x4f, 0x95, 0x5b, 0xca, 0x3f, 0x09, 0x54, 0x16, 0xdc, 0x3e, 0x13, 0xe4, 0x7e, 0x9f, 0x05, + 0xa7, 0xdb, 0x59, 0x59, 0xa3, 0x85, 0x6d, 0xc0, 0x4b, 0x7d, 0x27, 0xa6, 0x36, 0x1a, 0x64, 0x32, + 0xb5, 0x4c, 0x34, 0x9c, 0xdd, 0x1c, 0x1d, 0xe8, 0x60, 0xb3, 0x21, 0x74, 0xd4, 0x17, 0x73, 0x32, + 0xed, 0x76, 0xc9, 0xaf, 0xbb, 0x91, 0x91, 0xd5, 0xf5, 0xfd, 0x79, 0x59, 0x5d, 0xfb, 0xce, 0xe5, + 0xfa, 0xba, 0xca, 0xb1, 0x3b, 0x9e, 0xbf, 0x94, 0x78, 0x06, 0xdd, 0x9e, 0x99, 0x75, 0x5f, 0x57, + 0x99, 0x75, 0xbb, 0x44, 0xaa, 0xe5, 0x79, 0x73, 0x7b, 0xe6, 0xd3, 0xd5, 0x72, 0xe2, 0x4e, 0x1e, + 0x4f, 0x4e, 0x5c, 0xe3, 0xaa, 0xe1, 0x69, 0x59, 0x9f, 0xe9, 0x71, 0xd5, 0x18, 0x74, 0xbb, 0x5f, + 0x36, 0x3c, 0xff, 0xef, 0xf4, 0x43, 0xe5, 0xff, 0xbd, 0xa3, 0xe7, 0xd3, 0x45, 0x3d, 0x12, 0xc6, + 0x52, 0xa4, 0x3e, 0xb3, 0xe8, 0xde, 0xd1, 0x2f, 0xc0, 0x99, 0x7c, 0xba, 0xea, 0x9e, 0x4b, 0xd3, + 0xcd, 0xbc, 0x02, 0x53, 0xd9, 0x79, 0x4f, 0x9d, 0x4c, 0x76, 0xde, 0xd3, 0xc7, 0x9e, 0x9d, 0xf7, + 0xcc, 0x09, 0x64, 0xe7, 0x7d, 0xec, 0x04, 0xb3, 0xf3, 0xde, 0x61, 0x06, 0x35, 0x3c, 0x6c, 0x8f, + 0x88, 0xac, 0x9b, 0x1d, 0xc5, 0x35, 0x2b, 0xb6, 0x0f, 0xff, 0x38, 0x05, 0xc2, 0x31, 0xa9, 0x8c, + 0xac, 0xbf, 0xb3, 0x8f, 0x20, 0xeb, 0xef, 0x7a, 0x9c, 0xf5, 0xf7, 0x6c, 0xfe, 0x54, 0x67, 0xb8, + 0x60, 0xe4, 0xe4, 0xfa, 0xbd, 0xa3, 0xe7, 0xe8, 0x7d, 0xbc, 0x8b, 0xd6, 0x24, 0x4b, 0xf0, 0xd8, + 0x25, 0x33, 0xef, 0x6b, 0x3c, 0x33, 0xef, 0x13, 0xf9, 0x27, 0x79, 0xf2, 0xba, 0x33, 0xf2, 0xf1, + 0xd2, 0x7e, 0xa9, 0x18, 0x8e, 0x2c, 0x86, 0x70, 0x4e, 0xbf, 0x54, 0x10, 0xc8, 0x74, 0xbf, 0x14, + 0x08, 0xc7, 0xa4, 0xec, 0x1f, 0x28, 0xc0, 0xf9, 0xee, 0xfb, 0x2d, 0x96, 0xa6, 0x56, 0x63, 0x25, + 0x72, 0x42, 0x9a, 0xca, 0xdf, 0x6c, 0x31, 0x56, 0xdf, 0x21, 0xe9, 0xae, 0xc1, 0xb4, 0xf2, 0xdd, + 0x68, 0xba, 0xf5, 0xfd, 0xf5, 0xf8, 0xe5, 0xab, 0xfc, 0xdd, 0x6b, 0x49, 0x04, 0x9c, 0xae, 0x83, + 0x16, 0x61, 0xd2, 0x28, 0xac, 0x94, 0xc5, 0xdb, 0x4c, 0x89, 0x6f, 0x6b, 0x26, 0x18, 0x27, 0xf1, + 0xed, 0x2f, 0x5b, 0xf0, 0x58, 0x4e, 0x5a, 0xbb, 0xbe, 0x23, 0xae, 0x6d, 0xc1, 0x64, 0xdb, 0xac, + 0xda, 0x23, 0x48, 0xa4, 0x91, 0x3c, 0x4f, 0xf5, 0x35, 0x01, 0xc0, 0x49, 0xa2, 0xf6, 0xcf, 0x14, + 0xe0, 0x5c, 0x57, 0x63, 0x44, 0x84, 0xe1, 0xcc, 0x76, 0x2b, 0x74, 0x96, 0x03, 0xd2, 0x20, 0x5e, + 0xe4, 0x3a, 0xcd, 0x5a, 0x9b, 0xd4, 0x35, 0x79, 0x38, 0xb3, 0xea, 0xbb, 0xb6, 0x56, 0x5b, 0x4c, + 0x63, 0xe0, 0x9c, 0x9a, 0x68, 0x15, 0x50, 0x1a, 0x22, 0x66, 0x98, 0x45, 0xa3, 0x4e, 0xd3, 0xc3, + 0x19, 0x35, 0xd0, 0x47, 0x60, 0x5c, 0x19, 0x39, 0x6a, 0x33, 0xce, 0x0e, 0x76, 0xac, 0x03, 0xb0, + 0x89, 0x87, 0xae, 0xf2, 0x70, 0xe6, 0x22, 0xf0, 0xbd, 0x10, 0x9e, 0x4f, 0xca, 0x58, 0xe5, 0xa2, + 0x18, 0xeb, 0x38, 0x4b, 0x97, 0x7f, 0xe3, 0x0f, 0xce, 0xbf, 0xef, 0xb7, 0xfe, 0xe0, 0xfc, 0xfb, + 0x7e, 0xf7, 0x0f, 0xce, 0xbf, 0xef, 0xbb, 0x1e, 0x9c, 0xb7, 0x7e, 0xe3, 0xc1, 0x79, 0xeb, 0xb7, + 0x1e, 0x9c, 0xb7, 0x7e, 0xf7, 0xc1, 0x79, 0xeb, 0xf7, 0x1f, 0x9c, 0xb7, 0xbe, 0xf4, 0x87, 0xe7, + 0xdf, 0xf7, 0xa9, 0xc2, 0xde, 0xd5, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0x11, 0xbd, 0x2b, 0x2b, + 0x30, 0x04, 0x01, 0x00, } func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) { @@ -13152,6 +13154,18 @@ func (m *PersistentVolumeClaimSpec) MarshalToSizedBuffer(dAtA []byte) (int, erro _ = i var l int _ = l + if m.DataSourceRef != nil { + { + size, err := m.DataSourceRef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + } if m.DataSource != nil { { size, err := m.DataSource.MarshalToSizedBuffer(dAtA[:i]) @@ -21742,6 +21756,10 @@ func (m *PersistentVolumeClaimSpec) Size() (n int) { l = m.DataSource.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.DataSourceRef != nil { + l = m.DataSourceRef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -25770,6 +25788,7 @@ func (this *PersistentVolumeClaimSpec) String() string { `StorageClassName:` + valueToStringGenerated(this.StorageClassName) + `,`, `VolumeMode:` + valueToStringGenerated(this.VolumeMode) + `,`, `DataSource:` + strings.Replace(this.DataSource.String(), "TypedLocalObjectReference", "TypedLocalObjectReference", 1) + `,`, + `DataSourceRef:` + strings.Replace(this.DataSourceRef.String(), "TypedLocalObjectReference", "TypedLocalObjectReference", 1) + `,`, `}`, }, "") return s @@ -47409,6 +47428,42 @@ func (m *PersistentVolumeClaimSpec) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DataSourceRef", 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.DataSourceRef == nil { + m.DataSourceRef = &TypedLocalObjectReference{} + } + if err := m.DataSourceRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index c2f66dd2196..87c0ab6290c 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -2679,13 +2679,32 @@ message PersistentVolumeClaimSpec { // This field can be used to specify either: // * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) // * An existing PVC (PersistentVolumeClaim) - // * An existing custom resource that implements data population (Alpha) - // In order to use custom resource types that implement data population, - // the AnyVolumeDataSource feature gate must be enabled. // If the provisioner or an external controller can support the specified data source, // it will create a new volume based on the contents of the specified data source. + // If the AnyVolumeDataSource feature gate is enabled, this field will always have + // the same contents as the DataSourceRef field. // +optional optional TypedLocalObjectReference dataSource = 7; + + // Specifies the object from which to populate the volume with data, if a non-empty + // volume is desired. This may be any local object from a non-empty API group (non + // core object) or a PersistentVolumeClaim object. + // When this field is specified, volume binding will only succeed if the type of + // the specified object matches some installed volume populator or dynamic + // provisioner. + // This field will replace the functionality of the DataSource field and as such + // if both fields are non-empty, they must have the same value. For backwards + // compatibility, both fields (DataSource and DataSourceRef) will be set to the same + // value automatically if one of them is empty and the other is non-empty. + // There are two important differences between DataSource and DataSourceRef: + // * While DataSource only allows two specific types of objects, DataSourceRef + // allows any non-core object, as well as PersistentVolumeClaim objects. + // * While DataSource ignores disallowed values (dropping them), DataSourceRef + // preserves all values, and generates an error if a disallowed value is + // specified. + // (Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + // +optional + optional TypedLocalObjectReference dataSourceRef = 8; } // PersistentVolumeClaimStatus is the current status of a persistent volume claim. diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 3f6a6211b21..1a30849b322 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -492,13 +492,31 @@ type PersistentVolumeClaimSpec struct { // This field can be used to specify either: // * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) // * An existing PVC (PersistentVolumeClaim) - // * An existing custom resource that implements data population (Alpha) - // In order to use custom resource types that implement data population, - // the AnyVolumeDataSource feature gate must be enabled. // If the provisioner or an external controller can support the specified data source, // it will create a new volume based on the contents of the specified data source. + // If the AnyVolumeDataSource feature gate is enabled, this field will always have + // the same contents as the DataSourceRef field. // +optional DataSource *TypedLocalObjectReference `json:"dataSource,omitempty" protobuf:"bytes,7,opt,name=dataSource"` + // Specifies the object from which to populate the volume with data, if a non-empty + // volume is desired. This may be any local object from a non-empty API group (non + // core object) or a PersistentVolumeClaim object. + // When this field is specified, volume binding will only succeed if the type of + // the specified object matches some installed volume populator or dynamic + // provisioner. + // This field will replace the functionality of the DataSource field and as such + // if both fields are non-empty, they must have the same value. For backwards + // compatibility, both fields (DataSource and DataSourceRef) will be set to the same + // value automatically if one of them is empty and the other is non-empty. + // There are two important differences between DataSource and DataSourceRef: + // * While DataSource only allows two specific types of objects, DataSourceRef + // allows any non-core object, as well as PersistentVolumeClaim objects. + // * While DataSource ignores disallowed values (dropping them), DataSourceRef + // preserves all values, and generates an error if a disallowed value is + // specified. + // (Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + // +optional + DataSourceRef *TypedLocalObjectReference `json:"dataSourceRef,omitempty" protobuf:"bytes,8,opt,name=dataSourceRef"` } // PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go index f29297985f8..4df8e1299a7 100644 --- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go @@ -1301,7 +1301,8 @@ var map_PersistentVolumeClaimSpec = map[string]string{ "volumeName": "VolumeName is the binding reference to the PersistentVolume backing this claim.", "storageClassName": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", "volumeMode": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", - "dataSource": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.", + "dataSource": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the AnyVolumeDataSource feature gate is enabled, this field will always have the same contents as the DataSourceRef field.", + "dataSourceRef": "Specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any local object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the DataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, both fields (DataSource and DataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. There are two important differences between DataSource and DataSourceRef: * While DataSource only allows two specific types of objects, DataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While DataSource ignores disallowed values (dropping them), DataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n(Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled.", } func (PersistentVolumeClaimSpec) SwaggerDoc() map[string]string { diff --git a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go index 7cc563171c5..ff660ae2758 100644 --- a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go +++ b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go @@ -2934,6 +2934,11 @@ func (in *PersistentVolumeClaimSpec) DeepCopyInto(out *PersistentVolumeClaimSpec *out = new(TypedLocalObjectReference) (*in).DeepCopyInto(*out) } + if in.DataSourceRef != nil { + in, out := &in.DataSourceRef, &out.DataSourceRef + *out = new(TypedLocalObjectReference) + (*in).DeepCopyInto(*out) + } return } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json index 7d952f77cd1..05243a0eb26 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,59 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": -1981710234, - "containerPort": -1109619518, - "protocol": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "hostIP": "184" + "name": "186", + "hostPort": 852780575, + "containerPort": -1252938503, + "protocol": "Opwǩ曬逴褜1ØœȠƬQg鄠", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true + "name": "190", + "optional": false } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "617" + "containerName": "195", + "resource": "196", + "divisor": "139" }, "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": false + "name": "197", + "key": "198", + "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", + "name": "199", + "key": "200", "optional": false } } @@ -510,255 +515,254 @@ ], "resources": { "limits": { - "朷Ǝ膯ljVX1虊谇": "279" + "LĹ]佱¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊": "807" }, "requests": { - "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀": "918" + "嚧ʣq埄": "936" } }, "volumeMounts": [ { - "name": "198", - "mountPath": "199", - "subPath": "200", - "mountPropagation": "ó藢xɮĵȑ6L*", - "subPathExpr": "201" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "202", - "devicePath": "203" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "204" + "207" ] }, "httpGet": { - "path": "205", - "port": "206", - "host": "207", - "scheme": "fʀļ腩墺Ò媁荭gw忊", + "path": "208", + "port": "209", + "host": "210", + "scheme": "u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ", "httpHeaders": [ { - "name": "208", - "value": "209" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -1761398388, - "host": "210" + "port": 1714588921, + "host": "213" }, - "initialDelaySeconds": -1532958330, - "timeoutSeconds": -438588982, - "periodSeconds": 1004325340, - "successThreshold": -1313320434, - "failureThreshold": 14304392, - "terminationGracePeriodSeconds": 2001337664780390084 + "initialDelaySeconds": -1246371817, + "timeoutSeconds": 617318981, + "periodSeconds": 432291364, + "successThreshold": 676578360, + "failureThreshold": -552281772, + "terminationGracePeriodSeconds": -2910346974754087949 }, "readinessProbe": { "exec": { "command": [ - "211" + "214" ] }, "httpGet": { - "path": "212", - "port": -614161319, - "host": "213", - "scheme": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "path": "215", + "port": 656200799, + "host": "216", "httpHeaders": [ { - "name": "214", - "value": "215" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": "216", - "host": "217" + "port": "219", + "host": "220" }, - "initialDelaySeconds": 233282513, - "timeoutSeconds": -518330919, - "periodSeconds": 1313273370, - "successThreshold": -1296830577, - "failureThreshold": -1314967760, - "terminationGracePeriodSeconds": 5043322816247327651 + "initialDelaySeconds": -2165496, + "timeoutSeconds": -1778952574, + "periodSeconds": 1386255869, + "successThreshold": -778272981, + "failureThreshold": 2056774277, + "terminationGracePeriodSeconds": -9219895030215397584 }, "startupProbe": { "exec": { "command": [ - "218" + "221" ] }, "httpGet": { - "path": "219", - "port": "220", - "host": "221", - "scheme": "队偯J僳徥淳4揻", + "path": "222", + "port": "223", + "host": "224", + "scheme": "鬶l獕;跣Hǝcw", "httpHeaders": [ { - "name": "222", - "value": "223" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": 878005329, - "host": "224" + "port": -374766088, + "host": "227" }, - "initialDelaySeconds": -1244119841, - "timeoutSeconds": 1235694147, - "periodSeconds": 348370746, - "successThreshold": 468369166, - "failureThreshold": 1909548849, - "terminationGracePeriodSeconds": 6410850623145248813 + "initialDelaySeconds": -736151561, + "timeoutSeconds": -1515369804, + "periodSeconds": -1856061695, + "successThreshold": 1868683352, + "failureThreshold": -1137436579, + "terminationGracePeriodSeconds": 8876559635423161004 }, "lifecycle": { "postStart": { "exec": { "command": [ - "225" + "228" ] }, "httpGet": { - "path": "226", - "port": "227", - "host": "228", - "scheme": "鰔澝qV訆ƎżŧL²sNƗ¸", + "path": "229", + "port": "230", + "host": "231", + "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", "httpHeaders": [ { - "name": "229", - "value": "230" + "name": "232", + "value": "233" } ] }, "tcpSocket": { - "port": "231", - "host": "232" + "port": 1993268896, + "host": "234" } }, "preStop": { "exec": { "command": [ - "233" + "235" ] }, "httpGet": { - "path": "234", - "port": "235", - "host": "236", - "scheme": "δ摖", + "path": "236", + "port": "237", + "host": "238", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "237", - "value": "238" + "name": "239", + "value": "240" } ] }, "tcpSocket": { - "port": "239", - "host": "240" + "port": "241", + "host": "242" } } }, - "terminationMessagePath": "241", - "terminationMessagePolicy": "_\u003cǬëJ橈'琕鶫:顇ə娯Ȱ", - "imagePullPolicy": "ǵɐ鰥Z", + "terminationMessagePath": "243", + "terminationMessagePolicy": "6Ɖ飴ɎiǨź'", + "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ", "securityContext": { "capabilities": { "add": [ - "DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ" + ";Nŕ璻Jih亏yƕ丆録²Ŏ" ], "drop": [ - "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6" + "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "242", - "role": "243", - "type": "244", - "level": "245" + "user": "244", + "role": "245", + "type": "246", + "level": "247" }, "windowsOptions": { - "gmsaCredentialSpecName": "246", - "gmsaCredentialSpec": "247", - "runAsUserName": "248", + "gmsaCredentialSpecName": "248", + "gmsaCredentialSpec": "249", + "runAsUserName": "250", "hostProcess": true }, - "runAsUser": -7299434051955863644, - "runAsGroup": 4041264710404335706, - "runAsNonRoot": false, + "runAsUser": 4041264710404335706, + "runAsGroup": 6453802934472477147, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ȹ均i绝5哇芆斩ìh4Ɋ", + "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ", "seccompProfile": { - "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "localhostProfile": "249" + "type": "V擭銆j", + "localhostProfile": "251" } } } ], "containers": [ { - "name": "250", - "image": "251", + "name": "252", + "image": "253", "command": [ - "252" + "254" ], "args": [ - "253" + "255" ], - "workingDir": "254", + "workingDir": "256", "ports": [ { - "name": "255", - "hostPort": 1540899353, - "containerPort": -1330095135, - "protocol": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", - "hostIP": "256" + "name": "257", + "hostPort": -1408385387, + "containerPort": -1225881740, + "protocol": "撑¼蠾8餑噭", + "hostIP": "258" } ], "envFrom": [ { - "prefix": "257", + "prefix": "259", "configMapRef": { - "name": "258", - "optional": false + "name": "260", + "optional": true }, "secretRef": { - "name": "259", + "name": "261", "optional": false } } ], "env": [ { - "name": "260", - "value": "261", + "name": "262", + "value": "263", "valueFrom": { "fieldRef": { - "apiVersion": "262", - "fieldPath": "263" + "apiVersion": "264", + "fieldPath": "265" }, "resourceFieldRef": { - "containerName": "264", - "resource": "265", - "divisor": "293" + "containerName": "266", + "resource": "267", + "divisor": "834" }, "configMapKeyRef": { - "name": "266", - "key": "267", + "name": "268", + "key": "269", "optional": true }, "secretKeyRef": { - "name": "268", - "key": "269", + "name": "270", + "key": "271", "optional": false } } @@ -766,514 +770,512 @@ ], "resources": { "limits": { - "9崍": "210" + "n(fǂǢ曣ŋayåe躒訙Ǫ": "12" }, "requests": { - ")ǂť嗆u8晲T[irȎ3Ĕ\\ɢX鰨松": "775" + "(娕uE增猍": "264" } }, "volumeMounts": [ { - "name": "270", - "readOnly": true, - "mountPath": "271", - "subPath": "272", - "mountPropagation": "ʠɜ瞍阎lğ Ņ", - "subPathExpr": "273" + "name": "272", + "mountPath": "273", + "subPath": "274", + "mountPropagation": "irȎ3Ĕ\\ɢX鰨松", + "subPathExpr": "275" } ], "volumeDevices": [ { - "name": "274", - "devicePath": "275" + "name": "276", + "devicePath": "277" } ], "livenessProbe": { "exec": { "command": [ - "276" + "278" ] }, "httpGet": { - "path": "277", - "port": 1866529638, - "host": "278", - "scheme": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", + "path": "279", + "port": "280", + "host": "281", + "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "282", + "value": "283" } ] }, "tcpSocket": { - "port": 638012651, - "host": "281" + "port": 317211081, + "host": "284" }, - "initialDelaySeconds": -1161185537, - "timeoutSeconds": 1928937303, - "periodSeconds": 1611386356, - "successThreshold": 821341581, - "failureThreshold": 240657401, - "terminationGracePeriodSeconds": 7806703309589874498 + "initialDelaySeconds": -1934305215, + "timeoutSeconds": -655359985, + "periodSeconds": 875971520, + "successThreshold": 161338049, + "failureThreshold": 65094252, + "terminationGracePeriodSeconds": -6831592407095063988 }, "readinessProbe": { "exec": { "command": [ - "282" + "285" ] }, "httpGet": { - "path": "283", - "port": "284", - "host": "285", - "scheme": "Ik(dŊiɢzĮ蛋I", + "path": "286", + "port": -2126891601, + "host": "287", + "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "288", + "value": "289" } ] }, "tcpSocket": { - "port": "288", - "host": "289" + "port": "290", + "host": "291" }, - "initialDelaySeconds": 571693619, - "timeoutSeconds": 1643238856, - "periodSeconds": -2028546276, - "successThreshold": -2128305760, - "failureThreshold": 1605974497, - "terminationGracePeriodSeconds": 2002344837004307079 + "initialDelaySeconds": 1660454722, + "timeoutSeconds": -1317234078, + "periodSeconds": -1347045470, + "successThreshold": 1169580662, + "failureThreshold": 404234347, + "terminationGracePeriodSeconds": 8560122250231719622 }, "startupProbe": { "exec": { "command": [ - "290" + "292" ] }, "httpGet": { - "path": "291", - "port": "292", - "host": "293", - "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", + "path": "293", + "port": "294", + "host": "295", + "scheme": "ǚŜEuEy竬ʆɞ", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": -1894647727, - "host": "296" + "port": "298", + "host": "299" }, - "initialDelaySeconds": 235623869, - "timeoutSeconds": 564558594, - "periodSeconds": -505848936, - "successThreshold": -1819021257, - "failureThreshold": 1447314009, - "terminationGracePeriodSeconds": -7637760856622746738 + "initialDelaySeconds": 336252010, + "timeoutSeconds": 677650619, + "periodSeconds": 930785927, + "successThreshold": 1624098740, + "failureThreshold": 1419787816, + "terminationGracePeriodSeconds": -506227444233847191 }, "lifecycle": { "postStart": { "exec": { "command": [ - "297" + "300" ] }, "httpGet": { - "path": "298", - "port": 466267060, - "host": "299", - "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", + "path": "301", + "port": "302", + "host": "303", + "scheme": "ĝ®EĨǔvÄÚ×p鬷", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "304", + "value": "305" } ] }, "tcpSocket": { - "port": "302", - "host": "303" + "port": 1673908530, + "host": "306" } }, "preStop": { "exec": { "command": [ - "304" + "307" ] }, "httpGet": { - "path": "305", - "port": "306", - "host": "307", - "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", + "path": "308", + "port": "309", + "host": "310", + "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", "httpHeaders": [ { - "name": "308", - "value": "309" + "name": "311", + "value": "312" } ] }, "tcpSocket": { - "port": "310", - "host": "311" + "port": -1912967242, + "host": "313" } } }, - "terminationMessagePath": "312", - "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", - "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", + "terminationMessagePath": "314", + "terminationMessagePolicy": "漤ŗ坟", + "imagePullPolicy": "-紑浘牬釼aTGÒ鵌", "securityContext": { "capabilities": { "add": [ - "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" + "Nh×DJɶ羹ƞʓ%ʝ`ǭ" ], "drop": [ - "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" + "ñ?卶滿筇ȟP:/a" ] }, "privileged": false, "seLinuxOptions": { - "user": "313", - "role": "314", - "type": "315", - "level": "316" + "user": "315", + "role": "316", + "type": "317", + "level": "318" }, "windowsOptions": { - "gmsaCredentialSpecName": "317", - "gmsaCredentialSpec": "318", - "runAsUserName": "319", - "hostProcess": true + "gmsaCredentialSpecName": "319", + "gmsaCredentialSpec": "320", + "runAsUserName": "321", + "hostProcess": false }, - "runAsUser": -1286199491017539507, - "runAsGroup": -6292316479661489180, + "runAsUser": 308757565294839546, + "runAsGroup": 5797412715505520759, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "cx赮ǒđ\u003e*劶?j", + "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", "seccompProfile": { - "type": "ĭ¥#ƱÁR", - "localhostProfile": "320" + "type": "繽敮ǰ詀ǿ忀oɎƺ", + "localhostProfile": "322" } }, - "stdin": true, "tty": true } ], "ephemeralContainers": [ { - "name": "321", - "image": "322", + "name": "323", + "image": "324", "command": [ - "323" + "325" ], "args": [ - "324" + "326" ], - "workingDir": "325", + "workingDir": "327", "ports": [ { - "name": "326", - "hostPort": 2032588794, - "containerPort": -1371690155, - "protocol": "G昧牱fsǕT衩kƒK07曳wœj堑", - "hostIP": "327" + "name": "328", + "hostPort": 788093377, + "containerPort": -557687916, + "protocol": "_敕", + "hostIP": "329" } ], "envFrom": [ { - "prefix": "328", + "prefix": "330", "configMapRef": { - "name": "329", + "name": "331", "optional": true }, "secretRef": { - "name": "330", + "name": "332", "optional": false } } ], "env": [ { - "name": "331", - "value": "332", + "name": "333", + "value": "334", "valueFrom": { "fieldRef": { - "apiVersion": "333", - "fieldPath": "334" + "apiVersion": "335", + "fieldPath": "336" }, "resourceFieldRef": { - "containerName": "335", - "resource": "336", - "divisor": "473" + "containerName": "337", + "resource": "338", + "divisor": "971" }, "configMapKeyRef": { - "name": "337", - "key": "338", - "optional": false - }, - "secretKeyRef": { "name": "339", "key": "340", "optional": true + }, + "secretKeyRef": { + "name": "341", + "key": "342", + "optional": true } } } ], "resources": { "limits": { - "盌3+Œ": "752" + "湷D谹気Ƀ秮òƬɸĻo:{": "523" }, "requests": { - ")Zq=歍þ": "759" + "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929" } }, "volumeMounts": [ { - "name": "341", - "mountPath": "342", - "subPath": "343", - "mountPropagation": "讅缔m葰賦迾娙ƴ4虵p", - "subPathExpr": "344" + "name": "343", + "readOnly": true, + "mountPath": "344", + "subPath": "345", + "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃", + "subPathExpr": "346" } ], "volumeDevices": [ { - "name": "345", - "devicePath": "346" + "name": "347", + "devicePath": "348" } ], "livenessProbe": { "exec": { "command": [ - "347" + "349" ] }, "httpGet": { - "path": "348", - "port": 1034835933, - "host": "349", - "scheme": "O虀^背遻堣灭ƴɦ燻踸陴", + "path": "350", + "port": "351", + "host": "352", + "scheme": "07曳wœj堑ūM鈱ɖ'蠨", "httpHeaders": [ { - "name": "350", - "value": "351" + "name": "353", + "value": "354" } ] }, "tcpSocket": { - "port": -1744546613, - "host": "352" + "port": "355", + "host": "356" }, - "initialDelaySeconds": 650448405, - "timeoutSeconds": 1943254244, - "periodSeconds": -168773629, - "successThreshold": 2068592383, - "failureThreshold": 1566765016, - "terminationGracePeriodSeconds": -1112599546012453731 + "initialDelaySeconds": -242798806, + "timeoutSeconds": -1940800545, + "periodSeconds": 681004793, + "successThreshold": 2002666266, + "failureThreshold": -2033879721, + "terminationGracePeriodSeconds": -4409241678312226730 }, "readinessProbe": { "exec": { "command": [ - "353" + "357" ] }, "httpGet": { - "path": "354", - "port": "355", - "host": "356", - "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", + "path": "358", + "port": 279062028, + "host": "359", + "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": -943058206, + "host": "362" }, - "initialDelaySeconds": 636493142, - "timeoutSeconds": -192358697, - "periodSeconds": 420595064, - "successThreshold": 1195176401, - "failureThreshold": 902204699, - "terminationGracePeriodSeconds": 9196919020604133323 + "initialDelaySeconds": 725557531, + "timeoutSeconds": -703127031, + "periodSeconds": 741667779, + "successThreshold": -381344241, + "failureThreshold": -2122876628, + "terminationGracePeriodSeconds": 2700145646260085226 }, "startupProbe": { "exec": { "command": [ - "361" + "363" ] }, "httpGet": { - "path": "362", - "port": "363", - "host": "364", - "scheme": "y#t(ȗŜŲ\u0026", + "path": "364", + "port": "365", + "host": "366", + "scheme": "thp像-", "httpHeaders": [ { - "name": "365", - "value": "366" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": 1387858949, - "host": "367" + "port": "369", + "host": "370" }, - "initialDelaySeconds": 156368232, - "timeoutSeconds": -815239246, - "periodSeconds": 44612600, - "successThreshold": -688929182, - "failureThreshold": -1222486879, - "terminationGracePeriodSeconds": 6543873941346781273 + "initialDelaySeconds": 1589417286, + "timeoutSeconds": 445878206, + "periodSeconds": 1874051321, + "successThreshold": -500012714, + "failureThreshold": 1762917570, + "terminationGracePeriodSeconds": 4794571970514469019 }, "lifecycle": { "postStart": { "exec": { "command": [ - "368" + "371" ] }, "httpGet": { - "path": "369", - "port": 1176168596, - "host": "370", - "scheme": "轪d覉;Ĕ", + "path": "372", + "port": "373", + "host": "374", + "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", "httpHeaders": [ { - "name": "371", - "value": "372" + "name": "375", + "value": "376" } ] }, "tcpSocket": { - "port": "373", - "host": "374" + "port": "377", + "host": "378" } }, "preStop": { "exec": { "command": [ - "375" + "379" ] }, "httpGet": { - "path": "376", - "port": "377", - "host": "378", - "scheme": "ʦŊĊ娮", + "path": "380", + "port": -1743587482, + "host": "381", "httpHeaders": [ { - "name": "379", - "value": "380" + "name": "382", + "value": "383" } ] }, "tcpSocket": { - "port": "381", - "host": "382" + "port": 858034123, + "host": "384" } } }, - "terminationMessagePath": "383", - "terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", - "imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", + "terminationMessagePath": "385", + "terminationMessagePolicy": "喾@潷", + "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l", "securityContext": { "capabilities": { "add": [ - "蓋Cȗä2 ɲ±m嵘厶sȰÖ" + "ɻŶJ詢" ], "drop": [ - "ÆɰŞ襵" + "ǾɁ鍻G鯇ɀ魒Ð扬=惍E" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "384", - "role": "385", - "type": "386", - "level": "387" + "user": "386", + "role": "387", + "type": "388", + "level": "389" }, "windowsOptions": { - "gmsaCredentialSpecName": "388", - "gmsaCredentialSpec": "389", - "runAsUserName": "390", + "gmsaCredentialSpecName": "390", + "gmsaCredentialSpec": "391", + "runAsUserName": "392", "hostProcess": false }, - "runAsUser": -5519662252699559890, - "runAsGroup": -1624551961163368198, + "runAsUser": -5071790362153704411, + "runAsGroup": -2841141127223294729, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "阫Ƈʥ椹ý", + "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ", "seccompProfile": { - "type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷", - "localhostProfile": "391" + "type": "郡ɑ鮽ǍJB膾扉A­1襏櫯³", + "localhostProfile": "393" } }, - "stdin": true, "stdinOnce": true, - "targetContainerName": "392" + "targetContainerName": "394" } ], - "restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI", - "terminationGracePeriodSeconds": 3296766428578159624, - "activeDeadlineSeconds": -8925090445844634303, - "dnsPolicy": "q沷¾!", + "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉", + "terminationGracePeriodSeconds": -1390311149947249535, + "activeDeadlineSeconds": 2684251781701131156, + "dnsPolicy": "厶s", "nodeSelector": { - "393": "394" + "395": "396" }, - "serviceAccountName": "395", - "serviceAccount": "396", + "serviceAccountName": "397", + "serviceAccount": "398", "automountServiceAccountToken": true, - "nodeName": "397", + "nodeName": "399", + "hostPID": true, "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "398", - "role": "399", - "type": "400", - "level": "401" + "user": "400", + "role": "401", + "type": "402", + "level": "403" }, "windowsOptions": { - "gmsaCredentialSpecName": "402", - "gmsaCredentialSpec": "403", - "runAsUserName": "404", + "gmsaCredentialSpecName": "404", + "gmsaCredentialSpec": "405", + "runAsUserName": "406", "hostProcess": true }, - "runAsUser": -3496040522639830925, - "runAsGroup": 2960114664726223450, - "runAsNonRoot": false, + "runAsUser": -3184085461588437523, + "runAsGroup": -2037509302018919599, + "runAsNonRoot": true, "supplementalGroups": [ - 2402603282459663167 + -885564056413671854 ], - "fsGroup": 3564097949592109139, + "fsGroup": 4301352137345790658, "sysctls": [ { - "name": "405", - "value": "406" + "name": "407", + "value": "408" } ], - "fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6", + "fsGroupChangePolicy": "柱栦阫Ƈʥ椹", "seccompProfile": { - "type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ", - "localhostProfile": "407" + "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i", + "localhostProfile": "409" } }, "imagePullSecrets": [ { - "name": "408" + "name": "410" } ], - "hostname": "409", - "subdomain": "410", + "hostname": "411", + "subdomain": "412", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1283,19 @@ { "matchExpressions": [ { - "key": "411", - "operator": "Üɉ愂,wa纝佯fɞ", + "key": "413", + "operator": "șƷK*ƌ驔瓊'", "values": [ - "412" + "414" ] } ], "matchFields": [ { - "key": "413", - "operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;", + "key": "415", + "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧", "values": [ - "414" + "416" ] } ] @@ -1302,23 +1304,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1690937616, + "weight": 836045166, "preference": { "matchExpressions": [ { - "key": "415", - "operator": "襉{遠", + "key": "417", + "operator": "ȋ灋槊盘", "values": [ - "416" + "418" ] } ], "matchFields": [ { - "key": "417", - "operator": "诰ðÈ娒Ġ滔xvŗÑ\"", + "key": "419", + "operator": "牬庘颮6(", "values": [ - "418" + "420" ] } ] @@ -1331,27 +1333,30 @@ { "labelSelector": { "matchLabels": { - "lx..w": "t-_.5.40w" + "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B" }, "matchExpressions": [ { - "key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0", - "operator": "DoesNotExist" + "key": "z_o_2.--4Z7__i1T.miw_a", + "operator": "NotIn", + "values": [ + "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t" + ] } ] }, "namespaces": [ - "425" + "427" ], - "topologyKey": "426", + "topologyKey": "428", "namespaceSelector": { "matchLabels": { - "8V": "3sn-03" + "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B" }, "matchExpressions": [ { - "key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3", - "operator": "Exists" + "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh", + "operator": "DoesNotExist" } ] } @@ -1359,34 +1364,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -947725955, + "weight": -585767440, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e" + "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0" }, "matchExpressions": [ { - "key": "3--_9QW2JkU27_.-4T-I.-..K.2", - "operator": "In", + "key": "n", + "operator": "NotIn", "values": [ - "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8" + "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP" ] } ] }, "namespaces": [ - "439" + "441" ], - "topologyKey": "440", + "topologyKey": "442", "namespaceSelector": { "matchLabels": { - "7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz" + "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e" }, "matchExpressions": [ { - "key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6", - "operator": "DoesNotExist" + "key": "34G._--u.._.105-4_ed-0-H", + "operator": "NotIn", + "values": [ + "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q" + ] } ] } @@ -1399,27 +1407,27 @@ { "labelSelector": { "matchLabels": { - "uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": "" + "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27" }, "matchExpressions": [ { - "key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1", - "operator": "Exists" + "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "453" + "455" ], - "topologyKey": "454", + "topologyKey": "456", "namespaceSelector": { "matchLabels": { - "d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z" + "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR" }, "matchExpressions": [ { - "key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT", - "operator": "Exists" + "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7", + "operator": "DoesNotExist" } ] } @@ -1427,34 +1435,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1819321475, + "weight": 339079271, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7" + "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV" }, "matchExpressions": [ { - "key": "62o787-7lk2/L.--4P--_q-.9", + "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", "operator": "Exists" } ] }, "namespaces": [ - "467" + "469" ], - "topologyKey": "468", + "topologyKey": "470", "namespaceSelector": { "matchLabels": { - "j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e" + "E35H__.B_E": "U..u8gwbk" }, "matchExpressions": [ { - "key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8", - "operator": "In", - "values": [ - "x3___-..f5-6x-_-o_6O_If-5_-_.F" - ] + "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", + "operator": "Exists" } ] } @@ -1463,102 +1468,101 @@ ] } }, - "schedulerName": "475", + "schedulerName": "477", "tolerations": [ { - "key": "476", - "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", - "value": "477", - "effect": "慰x:", - "tolerationSeconds": 3362400521064014157 + "key": "478", + "operator": "ŭʔb'?舍ȃʥx臥]å摞", + "value": "479", + "tolerationSeconds": 3053978290188957517 } ], "hostAliases": [ { - "ip": "478", + "ip": "480", "hostnames": [ - "479" + "481" ] } ], - "priorityClassName": "480", - "priority": 743241089, + "priorityClassName": "482", + "priority": -340583156, "dnsConfig": { "nameservers": [ - "481" + "483" ], "searches": [ - "482" + "484" ], "options": [ { - "name": "483", - "value": "484" + "name": "485", + "value": "486" } ] }, "readinessGates": [ { - "conditionType": "0yVA嬂刲;牆詒ĸąs" + "conditionType": "țc£PAÎǨȨ栋" } ], - "runtimeClassName": "485", + "runtimeClassName": "487", "enableServiceLinks": false, - "preemptionPolicy": "Iƭij韺ʧ\u003e", + "preemptionPolicy": "n{鳻", "overhead": { - "D傕Ɠ栊闔虝巒瀦ŕ": "124" + "隅DžbİEMǶɼ`|褞": "229" }, "topologySpreadConstraints": [ { - "maxSkew": -174245111, - "topologyKey": "486", - "whenUnsatisfiable": "", + "maxSkew": 1486667065, + "topologyKey": "488", + "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", "labelSelector": { "matchLabels": { - "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" + "H_55..--E3_2D-1DW__o_-.k": "7" }, "matchExpressions": [ { - "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", - "operator": "In", + "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", + "operator": "NotIn", "values": [ - "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + "H1z..j_.r3--T" ] } ] } } ], - "setHostnameAsFQDN": true + "setHostnameAsFQDN": false } }, "updateStrategy": { - "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", + "type": "șa汸\u003cƋlɋN磋镮ȺPÈ", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 1559072561, - "revisionHistoryLimit": -629510776 + "minReadySeconds": 1750503412, + "revisionHistoryLimit": 128240007 }, "status": { - "currentNumberScheduled": -69450448, - "numberMisscheduled": -212409426, - "desiredNumberScheduled": 17761427, - "numberReady": 1329525670, - "observedGeneration": -721999650192865404, - "updatedNumberScheduled": 1162680985, - "numberAvailable": 171558604, - "numberUnavailable": -161888815, - "collisionCount": 1714841371, + "currentNumberScheduled": -900194589, + "numberMisscheduled": 295177820, + "desiredNumberScheduled": 1576197985, + "numberReady": -702578810, + "observedGeneration": -1989254568785172688, + "updatedNumberScheduled": -855944448, + "numberAvailable": -1556190810, + "numberUnavailable": -487001726, + "collisionCount": -2081947001, "conditions": [ { - "type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ", - "status": "", - "lastTransitionTime": "2124-10-20T09:17:54Z", - "reason": "493", - "message": "494" + "type": "薑Ȣ#闬輙怀¹bCũw¼ ǫ", + "status": ":$", + "lastTransitionTime": "2082-11-07T20:44:23Z", + "reason": "495", + "message": "496" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb index 8276b4fa0a1..cbce71e46f6 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml index 3198cc75f7f..b308b57fef7 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml @@ -31,8 +31,8 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 1559072561 - revisionHistoryLimit: -629510776 + minReadySeconds: 1750503412 + revisionHistoryLimit: 128240007 selector: 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 @@ -73,728 +73,726 @@ spec: selfLink: "29" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -8925090445844634303 + activeDeadlineSeconds: 2684251781701131156 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "415" - operator: 襉{遠 - values: - - "416" - matchFields: - key: "417" - operator: 诰ðÈ娒Ġ滔xvŗÑ" + operator: ȋ灋槊盘 values: - "418" - weight: 1690937616 + matchFields: + - key: "419" + operator: 牬庘颮6( + values: + - "420" + weight: 836045166 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "411" - operator: Üɉ愂,wa纝佯fɞ - values: - - "412" - matchFields: - key: "413" - operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣; + operator: șƷK*ƌ驔瓊' values: - "414" + matchFields: + - key: "415" + operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧 + values: + - "416" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3--_9QW2JkU27_.-4T-I.-..K.2 - operator: In + - key: "n" + operator: NotIn values: - - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8 + - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP matchLabels: - E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e + I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0 namespaceSelector: matchExpressions: - - key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6 - operator: DoesNotExist + - key: 34G._--u.._.105-4_ed-0-H + operator: NotIn + values: + - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q matchLabels: - 7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz + tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e namespaces: - - "439" - topologyKey: "440" - weight: -947725955 + - "441" + topologyKey: "442" + weight: -585767440 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0 - operator: DoesNotExist + - key: z_o_2.--4Z7__i1T.miw_a + operator: NotIn + values: + - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t matchLabels: - lx..w: t-_.5.40w + 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B namespaceSelector: matchExpressions: - - key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3 - operator: Exists + - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh + operator: DoesNotExist matchLabels: - 8V: 3sn-03 + 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B namespaces: - - "425" - topologyKey: "426" + - "427" + topologyKey: "428" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 62o787-7lk2/L.--4P--_q-.9 + - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5 operator: Exists matchLabels: - i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7 + ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV namespaceSelector: matchExpressions: - - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8 - operator: In - values: - - x3___-..f5-6x-_-o_6O_If-5_-_.F + - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i + operator: Exists matchLabels: - j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e + E35H__.B_E: U..u8gwbk namespaces: - - "467" - topologyKey: "468" - weight: 1819321475 + - "469" + topologyKey: "470" + weight: 339079271 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1 - operator: Exists + - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + operator: DoesNotExist matchLabels: - uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: "" + 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27 namespaceSelector: matchExpressions: - - key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT - operator: Exists + - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7 + operator: DoesNotExist matchLabels: - d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z + "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR namespaces: - - "453" - topologyKey: "454" + - "455" + topologyKey: "456" automountServiceAccountToken: true containers: - args: - - "253" + - "255" command: - - "252" + - "254" env: - - name: "260" - value: "261" + - name: "262" + value: "263" valueFrom: configMapKeyRef: - key: "267" - name: "266" - optional: true - fieldRef: - apiVersion: "262" - fieldPath: "263" - resourceFieldRef: - containerName: "264" - divisor: "293" - resource: "265" - secretKeyRef: key: "269" name: "268" + optional: true + fieldRef: + apiVersion: "264" + fieldPath: "265" + resourceFieldRef: + containerName: "266" + divisor: "834" + resource: "267" + secretKeyRef: + key: "271" + name: "270" optional: false envFrom: - configMapRef: - name: "258" - optional: false - prefix: "257" + name: "260" + optional: true + prefix: "259" secretRef: - name: "259" + name: "261" optional: false - image: "251" - imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 + image: "253" + imagePullPolicy: -紑浘牬釼aTGÒ鵌 lifecycle: postStart: exec: command: - - "297" + - "300" httpGet: - host: "299" - httpHeaders: - - name: "300" - value: "301" - path: "298" - port: 466267060 - scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?j - readOnlyRootFilesystem: false - runAsGroup: -6292316479661489180 + procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY + readOnlyRootFilesystem: true + runAsGroup: 5797412715505520759 runAsNonRoot: false - runAsUser: -1286199491017539507 + runAsUser: 308757565294839546 seLinuxOptions: - level: "316" - role: "314" - type: "315" - user: "313" + level: "318" + role: "316" + type: "317" + user: "315" seccompProfile: - localhostProfile: "320" - type: ĭ¥#ƱÁR + localhostProfile: "322" + type: 繽敮ǰ詀ǿ忀oɎƺ windowsOptions: - gmsaCredentialSpec: "318" - gmsaCredentialSpecName: "317" - hostProcess: true - runAsUserName: "319" + gmsaCredentialSpec: "320" + gmsaCredentialSpecName: "319" + hostProcess: false + runAsUserName: "321" startupProbe: exec: command: - - "290" - failureThreshold: 1447314009 + - "292" + failureThreshold: 1419787816 httpGet: - host: "293" + host: "295" httpHeaders: - - name: "294" - value: "295" - path: "291" - port: "292" - scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 - initialDelaySeconds: 235623869 - periodSeconds: -505848936 - successThreshold: -1819021257 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: ǚŜEuEy竬ʆɞ + initialDelaySeconds: 336252010 + periodSeconds: 930785927 + successThreshold: 1624098740 tcpSocket: - host: "296" - port: -1894647727 - terminationGracePeriodSeconds: -7637760856622746738 - timeoutSeconds: 564558594 - stdin: true - terminationMessagePath: "312" - terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a + host: "299" + port: "298" + terminationGracePeriodSeconds: -506227444233847191 + timeoutSeconds: 677650619 + terminationMessagePath: "314" + terminationMessagePolicy: 漤ŗ坟 tty: true volumeDevices: - - devicePath: "275" - name: "274" + - devicePath: "277" + name: "276" volumeMounts: - - mountPath: "271" - mountPropagation: ʠɜ瞍阎lğ Ņ - name: "270" - readOnly: true - subPath: "272" - subPathExpr: "273" - workingDir: "254" + - mountPath: "273" + mountPropagation: irȎ3Ĕ\ɢX鰨松 + name: "272" + subPath: "274" + subPathExpr: "275" + workingDir: "256" dnsConfig: nameservers: - - "481" + - "483" options: - - name: "483" - value: "484" + - name: "485" + value: "486" searches: - - "482" - dnsPolicy: q沷¾! + - "484" + dnsPolicy: 厶s enableServiceLinks: false ephemeralContainers: - args: - - "324" + - "326" command: - - "323" + - "325" env: - - name: "331" - value: "332" + - name: "333" + value: "334" valueFrom: configMapKeyRef: - key: "338" - name: "337" - optional: false - fieldRef: - apiVersion: "333" - fieldPath: "334" - resourceFieldRef: - containerName: "335" - divisor: "473" - resource: "336" - secretKeyRef: key: "340" name: "339" optional: true + fieldRef: + apiVersion: "335" + fieldPath: "336" + resourceFieldRef: + containerName: "337" + divisor: "971" + resource: "338" + secretKeyRef: + key: "342" + name: "341" + optional: true envFrom: - configMapRef: - name: "329" + name: "331" optional: true - prefix: "328" + prefix: "330" secretRef: - name: "330" + name: "332" optional: false - image: "322" - imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj + image: "324" + imagePullPolicy: '#t(ȗŜŲ&洪y儕l' lifecycle: postStart: exec: command: - - "368" + - "371" httpGet: - host: "370" - httpHeaders: - - name: "371" - value: "372" - path: "369" - port: 1176168596 - scheme: 轪d覉;Ĕ - tcpSocket: host: "374" + httpHeaders: + - name: "375" + value: "376" + path: "372" port: "373" + scheme: b轫ʓ滨ĖRh}颉hȱɷȰW + tcpSocket: + host: "378" + port: "377" preStop: exec: command: - - "375" + - "379" httpGet: - host: "378" + host: "381" httpHeaders: - - name: "379" - value: "380" - path: "376" - port: "377" - scheme: ʦŊĊ娮 + - name: "382" + value: "383" + path: "380" + port: -1743587482 tcpSocket: - host: "382" - port: "381" + host: "384" + port: 858034123 livenessProbe: exec: command: - - "347" - failureThreshold: 1566765016 + - "349" + failureThreshold: -2033879721 httpGet: - host: "349" - httpHeaders: - - name: "350" - value: "351" - path: "348" - port: 1034835933 - scheme: O虀^背遻堣灭ƴɦ燻踸陴 - initialDelaySeconds: 650448405 - periodSeconds: -168773629 - successThreshold: 2068592383 - tcpSocket: host: "352" - port: -1744546613 - terminationGracePeriodSeconds: -1112599546012453731 - timeoutSeconds: 1943254244 - name: "321" + httpHeaders: + - name: "353" + value: "354" + path: "350" + port: "351" + scheme: 07曳wœj堑ūM鈱ɖ'蠨 + initialDelaySeconds: -242798806 + periodSeconds: 681004793 + successThreshold: 2002666266 + tcpSocket: + host: "356" + port: "355" + terminationGracePeriodSeconds: -4409241678312226730 + timeoutSeconds: -1940800545 + name: "323" ports: - - containerPort: -1371690155 - hostIP: "327" - hostPort: 2032588794 - name: "326" - protocol: G昧牱fsǕT衩kƒK07曳wœj堑 + - containerPort: -557687916 + hostIP: "329" + hostPort: 788093377 + name: "328" + protocol: _敕 readinessProbe: exec: command: - - "353" - failureThreshold: 902204699 + - "357" + failureThreshold: -2122876628 httpGet: - host: "356" + host: "359" httpHeaders: - - name: "357" - value: "358" - path: "354" - port: "355" - scheme: b轫ʓ滨ĖRh}颉hȱɷȰW - initialDelaySeconds: 636493142 - periodSeconds: 420595064 - successThreshold: 1195176401 + - name: "360" + value: "361" + path: "358" + port: 279062028 + scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p + initialDelaySeconds: 725557531 + periodSeconds: 741667779 + successThreshold: -381344241 tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: 9196919020604133323 - timeoutSeconds: -192358697 + host: "362" + port: -943058206 + terminationGracePeriodSeconds: 2700145646260085226 + timeoutSeconds: -703127031 resources: limits: - 盌3+Œ: "752" + 湷D谹気Ƀ秮òƬɸĻo:{: "523" requests: - )Zq=歍þ: "759" + 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 蓋Cȗä2 ɲ±m嵘厶sȰÖ + - ɻŶJ詢 drop: - - ÆɰŞ襵 - privileged: true - procMount: 阫Ƈʥ椹ý + - ǾɁ鍻G鯇ɀ魒Ð扬=惍E + privileged: false + procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ readOnlyRootFilesystem: false - runAsGroup: -1624551961163368198 + runAsGroup: -2841141127223294729 runAsNonRoot: false - runAsUser: -5519662252699559890 + runAsUser: -5071790362153704411 seLinuxOptions: - level: "387" - role: "385" - type: "386" - user: "384" + level: "389" + role: "387" + type: "388" + user: "386" seccompProfile: - localhostProfile: "391" - type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷ + localhostProfile: "393" + type: 郡ɑ鮽ǍJB膾扉A­1襏櫯³ windowsOptions: - gmsaCredentialSpec: "389" - gmsaCredentialSpecName: "388" + gmsaCredentialSpec: "391" + gmsaCredentialSpecName: "390" hostProcess: false - runAsUserName: "390" + runAsUserName: "392" startupProbe: exec: command: - - "361" - failureThreshold: -1222486879 + - "363" + failureThreshold: 1762917570 httpGet: - host: "364" + host: "366" httpHeaders: - - name: "365" - value: "366" - path: "362" - port: "363" - scheme: y#t(ȗŜŲ& - initialDelaySeconds: 156368232 - periodSeconds: 44612600 - successThreshold: -688929182 + - name: "367" + value: "368" + path: "364" + port: "365" + scheme: thp像- + initialDelaySeconds: 1589417286 + periodSeconds: 1874051321 + successThreshold: -500012714 tcpSocket: - host: "367" - port: 1387858949 - terminationGracePeriodSeconds: 6543873941346781273 - timeoutSeconds: -815239246 - stdin: true + host: "370" + port: "369" + terminationGracePeriodSeconds: 4794571970514469019 + timeoutSeconds: 445878206 stdinOnce: true - targetContainerName: "392" - terminationMessagePath: "383" - terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 + targetContainerName: "394" + terminationMessagePath: "385" + terminationMessagePolicy: 喾@潷 volumeDevices: - - devicePath: "346" - name: "345" + - devicePath: "348" + name: "347" volumeMounts: - - mountPath: "342" - mountPropagation: 讅缔m葰賦迾娙ƴ4虵p - name: "341" - subPath: "343" - subPathExpr: "344" - workingDir: "325" + - mountPath: "344" + mountPropagation: '|ǓÓ敆OɈÏ 瞍髃' + name: "343" + readOnly: true + subPath: "345" + subPathExpr: "346" + workingDir: "327" hostAliases: - hostnames: - - "479" - ip: "478" + - "481" + ip: "480" hostIPC: true - hostname: "409" + hostPID: true + hostname: "411" imagePullSecrets: - - name: "408" + - name: "410" initContainers: - args: - - "181" + - "184" command: - - "180" + - "183" env: - - name: "188" - value: "189" + - name: "191" + value: "192" valueFrom: configMapKeyRef: - key: "195" - name: "194" - optional: false + key: "198" + name: "197" + optional: true fieldRef: - apiVersion: "190" - fieldPath: "191" + apiVersion: "193" + fieldPath: "194" resourceFieldRef: - containerName: "192" - divisor: "617" - resource: "193" + containerName: "195" + divisor: "139" + resource: "196" secretKeyRef: - key: "197" - name: "196" + key: "200" + name: "199" optional: false envFrom: - configMapRef: - name: "186" - optional: true - prefix: "185" + name: "189" + optional: false + prefix: "188" secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: ǵɐ鰥Z + name: "190" + optional: false + image: "182" + imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ' lifecycle: postStart: exec: command: - - "225" + - "228" httpGet: - host: "228" + host: "231" httpHeaders: - - name: "229" - value: "230" - path: "226" - port: "227" - scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ + - name: "232" + value: "233" + path: "229" + port: "230" + scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ tcpSocket: - host: "232" - port: "231" + host: "234" + port: 1993268896 preStop: exec: command: - - "233" + - "235" httpGet: - host: "236" + host: "238" httpHeaders: - - name: "237" - value: "238" - path: "234" - port: "235" - scheme: δ摖 + - name: "239" + value: "240" + path: "236" + port: "237" + scheme: 'ƿ頀"冓鍓贯澔 ' tcpSocket: - host: "240" - port: "239" + host: "242" + port: "241" livenessProbe: exec: command: - - "204" - failureThreshold: 14304392 + - "207" + failureThreshold: -552281772 httpGet: - host: "207" - httpHeaders: - - name: "208" - value: "209" - path: "205" - port: "206" - scheme: fʀļ腩墺Ò媁荭gw忊 - initialDelaySeconds: -1532958330 - periodSeconds: 1004325340 - successThreshold: -1313320434 - tcpSocket: host: "210" - port: -1761398388 - terminationGracePeriodSeconds: 2001337664780390084 - timeoutSeconds: -438588982 - name: "178" + httpHeaders: + - name: "211" + value: "212" + path: "208" + port: "209" + scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ + initialDelaySeconds: -1246371817 + periodSeconds: 432291364 + successThreshold: 676578360 + tcpSocket: + host: "213" + port: 1714588921 + terminationGracePeriodSeconds: -2910346974754087949 + timeoutSeconds: 617318981 + name: "181" ports: - - containerPort: -1109619518 - hostIP: "184" - hostPort: -1981710234 - name: "183" - protocol: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 + - containerPort: -1252938503 + hostIP: "187" + hostPort: 852780575 + name: "186" + protocol: Opwǩ曬逴褜1ØœȠƬQg鄠 readinessProbe: exec: command: - - "211" - failureThreshold: -1314967760 + - "214" + failureThreshold: 2056774277 httpGet: - host: "213" + host: "216" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -614161319 - scheme: Ȩ<6鄰簳°Ļǟi& - initialDelaySeconds: 233282513 - periodSeconds: 1313273370 - successThreshold: -1296830577 + - name: "217" + value: "218" + path: "215" + port: 656200799 + initialDelaySeconds: -2165496 + periodSeconds: 1386255869 + successThreshold: -778272981 tcpSocket: - host: "217" - port: "216" - terminationGracePeriodSeconds: 5043322816247327651 - timeoutSeconds: -518330919 + host: "220" + port: "219" + terminationGracePeriodSeconds: -9219895030215397584 + timeoutSeconds: -1778952574 resources: limits: - 朷Ǝ膯ljVX1虊谇: "279" + LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807" requests: - 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀: "918" + 嚧ʣq埄: "936" securityContext: allowPrivilegeEscalation: true capabilities: add: - - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ + - ;Nŕ璻Jih亏yƕ丆録²Ŏ drop: - - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - privileged: false - procMount: ȹ均i绝5哇芆斩ìh4Ɋ + - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫 + privileged: true + procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ readOnlyRootFilesystem: true - runAsGroup: 4041264710404335706 - runAsNonRoot: false - runAsUser: -7299434051955863644 + runAsGroup: 6453802934472477147 + runAsNonRoot: true + runAsUser: 4041264710404335706 seLinuxOptions: - level: "245" - role: "243" - type: "244" - user: "242" + level: "247" + role: "245" + type: "246" + user: "244" seccompProfile: - localhostProfile: "249" - type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 + localhostProfile: "251" + type: V擭銆j windowsOptions: - gmsaCredentialSpec: "247" - gmsaCredentialSpecName: "246" + gmsaCredentialSpec: "249" + gmsaCredentialSpecName: "248" hostProcess: true - runAsUserName: "248" + runAsUserName: "250" startupProbe: exec: command: - - "218" - failureThreshold: 1909548849 + - "221" + failureThreshold: -1137436579 httpGet: - host: "221" - httpHeaders: - - name: "222" - value: "223" - path: "219" - port: "220" - scheme: 队偯J僳徥淳4揻 - initialDelaySeconds: -1244119841 - periodSeconds: 348370746 - successThreshold: 468369166 - tcpSocket: host: "224" - port: 878005329 - terminationGracePeriodSeconds: 6410850623145248813 - timeoutSeconds: 1235694147 - terminationMessagePath: "241" - terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: 鬶l獕;跣Hǝcw + initialDelaySeconds: -736151561 + periodSeconds: -1856061695 + successThreshold: 1868683352 + tcpSocket: + host: "227" + port: -374766088 + terminationGracePeriodSeconds: 8876559635423161004 + timeoutSeconds: -1515369804 + terminationMessagePath: "243" + terminationMessagePolicy: 6Ɖ飴ɎiǨź' volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "206" + name: "205" volumeMounts: - - mountPath: "199" - mountPropagation: ó藢xɮĵȑ6L* - name: "198" - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "397" + - mountPath: "202" + mountPropagation: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "399" nodeSelector: - "393": "394" + "395": "396" overhead: - D傕Ɠ栊闔虝巒瀦ŕ: "124" - preemptionPolicy: Iƭij韺ʧ> - priority: 743241089 - priorityClassName: "480" + 隅DžbİEMǶɼ`|褞: "229" + preemptionPolicy: n{鳻 + priority: -340583156 + priorityClassName: "482" readinessGates: - - conditionType: 0yVA嬂刲;牆詒ĸąs - restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI - runtimeClassName: "485" - schedulerName: "475" + - conditionType: țc£PAÎǨȨ栋 + restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉 + runtimeClassName: "487" + schedulerName: "477" securityContext: - fsGroup: 3564097949592109139 - fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6 - runAsGroup: 2960114664726223450 - runAsNonRoot: false - runAsUser: -3496040522639830925 + fsGroup: 4301352137345790658 + fsGroupChangePolicy: 柱栦阫Ƈʥ椹 + runAsGroup: -2037509302018919599 + runAsNonRoot: true + runAsUser: -3184085461588437523 seLinuxOptions: - level: "401" - role: "399" - type: "400" - user: "398" + level: "403" + role: "401" + type: "402" + user: "400" seccompProfile: - localhostProfile: "407" - type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ + localhostProfile: "409" + type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i supplementalGroups: - - 2402603282459663167 + - -885564056413671854 sysctls: - - name: "405" - value: "406" + - name: "407" + value: "408" windowsOptions: - gmsaCredentialSpec: "403" - gmsaCredentialSpecName: "402" + gmsaCredentialSpec: "405" + gmsaCredentialSpecName: "404" hostProcess: true - runAsUserName: "404" - serviceAccount: "396" - serviceAccountName: "395" - setHostnameAsFQDN: true + runAsUserName: "406" + serviceAccount: "398" + serviceAccountName: "397" + setHostnameAsFQDN: false shareProcessNamespace: true - subdomain: "410" - terminationGracePeriodSeconds: 3296766428578159624 + subdomain: "412" + terminationGracePeriodSeconds: -1390311149947249535 tolerations: - - effect: '慰x:' - key: "476" - operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ - tolerationSeconds: 3362400521064014157 - value: "477" + - key: "478" + operator: ŭʔb'?舍ȃʥx臥]å摞 + tolerationSeconds: 3053978290188957517 + value: "479" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - operator: In + - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b + operator: NotIn values: - - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe + - H1z..j_.r3--T matchLabels: - 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a - maxSkew: -174245111 - topologyKey: "486" - whenUnsatisfiable: "" + H_55..--E3_2D-1DW__o_-.k: "7" + maxSkew: 1486667065 + topologyKey: "488" + whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 volumes: - awsElasticBlockStore: fsType: "49" @@ -894,6 +892,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: 'âĺɗŹ倗S晒嶗UÐ_ƮA攤/ɸɎ ': "648" @@ -1051,20 +1053,20 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& + type: șa汸<ƋlɋN磋镮ȺPÈ status: - collisionCount: 1714841371 + collisionCount: -2081947001 conditions: - - lastTransitionTime: "2124-10-20T09:17:54Z" - message: "494" - reason: "493" - status: "" - type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ - currentNumberScheduled: -69450448 - desiredNumberScheduled: 17761427 - numberAvailable: 171558604 - numberMisscheduled: -212409426 - numberReady: 1329525670 - numberUnavailable: -161888815 - observedGeneration: -721999650192865404 - updatedNumberScheduled: 1162680985 + - lastTransitionTime: "2082-11-07T20:44:23Z" + message: "496" + reason: "495" + status: :$ + type: 薑Ȣ#闬輙怀¹bCũw¼ ǫ + currentNumberScheduled: -900194589 + desiredNumberScheduled: 1576197985 + numberAvailable: -1556190810 + numberMisscheduled: 295177820 + numberReady: -702578810 + numberUnavailable: -487001726 + observedGeneration: -1989254568785172688 + updatedNumberScheduled: -855944448 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 401a32cf2c7..7f7b990bf13 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1536,34 +1541,33 @@ } }, "strategy": { - "type": "卍睊", + "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -212999359, - "revisionHistoryLimit": -866496758, - "paused": true, - "progressDeadlineSeconds": 1499408621 + "minReadySeconds": 2115665292, + "revisionHistoryLimit": 237456757, + "progressDeadlineSeconds": -1402499324 }, "status": { - "observedGeneration": 4061426462677728903, - "replicas": 208086661, - "updatedReplicas": 1598926042, - "readyReplicas": -1813284990, - "availableReplicas": 1659111388, - "unavailableReplicas": -717288184, + "observedGeneration": -8619941635428506201, + "replicas": -380889943, + "updatedReplicas": 466048730, + "readyReplicas": -601845829, + "availableReplicas": 426527089, + "unavailableReplicas": -1890403855, "conditions": [ { - "type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ", - "status": "嘯龡班悦ʀ臺穔", - "lastUpdateTime": "2294-09-29T07:15:12Z", - "lastTransitionTime": "2196-06-26T01:09:43Z", - "reason": "484", - "message": "485" + "type": "绰爪qĖĖȠ姓ȇ\u003e尪璎妽", + "status": "ĈȖ董缞濪葷cŲ", + "lastUpdateTime": "1999-05-06T18:42:43Z", + "lastTransitionTime": "2109-09-25T13:37:56Z", + "reason": "491", + "message": "492" } ], - "collisionCount": 16994744 + "collisionCount": -2046786896 } } \ 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 84c5610d39b..31efb844076 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml index 592fcf818d8..59abf43459e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml @@ -31,11 +31,10 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -212999359 - paused: true - progressDeadlineSeconds: 1499408621 + minReadySeconds: 2115665292 + progressDeadlineSeconds: -1402499324 replicas: 896585016 - revisionHistoryLimit: -866496758 + revisionHistoryLimit: 237456757 selector: matchExpressions: - 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 @@ -46,7 +45,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 卍睊 + type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj template: metadata: annotations: @@ -79,730 +78,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů尪璎妽 + observedGeneration: -8619941635428506201 + readyReplicas: -601845829 + replicas: -380889943 + unavailableReplicas: -1890403855 + updatedReplicas: 466048730 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 ee71197b060..eb54d883944 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 @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,317 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 424236719, - "containerPort": -2031266553, - "protocol": "呝TG;邪", - "hostIP": "184" + "name": "186", + "hostPort": 747521320, + "containerPort": 859639931, + "protocol": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", + "name": "189", "optional": true }, "secretRef": { - "name": "187", + "name": "190", "optional": true } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "486" + "containerName": "195", + "resource": "196", + "divisor": "663" }, "configMapKeyRef": { - "name": "194", - "key": "195", + "name": "197", + "key": "198", "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩": "47" - }, - "requests": { - "榜VƋZ1": "932" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": 2035347577, - "host": "206", - "scheme": "姣\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": -1498229293, - "host": "209" - }, - "initialDelaySeconds": -1155992025, - "timeoutSeconds": -194343002, - "periodSeconds": -850069363, - "successThreshold": 918929368, - "failureThreshold": 1016277253, - "terminationGracePeriodSeconds": -8520337362162976488 - }, - "readinessProbe": { - "exec": { - "command": [ - "210" - ] - }, - "httpGet": { - "path": "211", - "port": "212", - "host": "213", - "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 538852927, - "host": "216" - }, - "initialDelaySeconds": -407545915, - "timeoutSeconds": 902535764, - "periodSeconds": 716842280, - "successThreshold": 1479266199, - "failureThreshold": 163512962, - "terminationGracePeriodSeconds": -8521017368802772029 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": 1623772781, - "host": "219", - "scheme": "UÐ_ƮA攤/ɸɎ", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": "222", - "host": "223" - }, - "initialDelaySeconds": 1054858106, - "timeoutSeconds": 232569106, - "periodSeconds": -1150474479, - "successThreshold": 744319626, - "failureThreshold": -2107743490, - "terminationGracePeriodSeconds": 8569885835306406695 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "224" - ] - }, - "httpGet": { - "path": "225", - "port": 896430536, - "host": "226", - "scheme": "罴ņ螡źȰ", - "httpHeaders": [ - { - "name": "227", - "value": "228" - } - ] - }, - "tcpSocket": { - "port": 513341278, - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 1451056156, - "host": "232", - "scheme": "uʎȺ眖R#", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": "235", - "host": "236" - } - } - }, - "terminationMessagePath": "237", - "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", - "imagePullPolicy": "1ØœȠƬQg鄠", - "securityContext": { - "capabilities": { - "add": [ - "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" - ], - "drop": [ - "W:ĸ輦唊#v" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "238", - "role": "239", - "type": "240", - "level": "241" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "242", - "gmsaCredentialSpec": "243", - "runAsUserName": "244", - "hostProcess": true - }, - "runAsUser": 7510677649797968740, - "runAsGroup": -1629447906545846003, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "8T 苧yñKJɐ扵Gƚ绤fʀ", - "seccompProfile": { - "type": "腩墺Ò媁荭gw忊|E剒蔞|表徶", - "localhostProfile": "245" - } - }, - "stdin": true - } - ], - "containers": [ - { - "name": "246", - "image": "247", - "command": [ - "248" - ], - "args": [ - "249" - ], - "workingDir": "250", - "ports": [ - { - "name": "251", - "hostPort": 59244165, - "containerPort": -614161319, - "protocol": "Ȩ\u003c6鄰簳°Ļǟi\u0026", - "hostIP": "252" - } - ], - "envFrom": [ - { - "prefix": "253", - "configMapRef": { - "name": "254", - "optional": false - }, - "secretRef": { - "name": "255", - "optional": false - } - } - ], - "env": [ - { - "name": "256", - "value": "257", - "valueFrom": { - "fieldRef": { - "apiVersion": "258", - "fieldPath": "259" - }, - "resourceFieldRef": { - "containerName": "260", - "resource": "261", - "divisor": "861" - }, - "configMapKeyRef": { - "name": "262", - "key": "263", - "optional": true - }, - "secretKeyRef": { - "name": "264", - "key": "265", + "name": "199", + "key": "200", "optional": false } } @@ -768,512 +515,769 @@ ], "resources": { "limits": { - "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ": "178" + "ſ盷": "532" }, "requests": { - "Ö闊 鰔澝qV": "752" + "[Řż丩": "47" } }, "volumeMounts": [ { - "name": "266", - "readOnly": true, - "mountPath": "267", - "subPath": "268", - "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", - "subPathExpr": "269" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "VƋZ1Ůđ眊ľǎɳ,ǿ飏", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "270", - "devicePath": "271" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "272" + "207" ] }, "httpGet": { - "path": "273", - "port": "274", - "host": "275", - "scheme": "冓鍓贯", + "path": "208", + "port": 1214895765, + "host": "209", + "scheme": "悖ȩ0Ƹ[Ęİ榌U", "httpHeaders": [ { - "name": "276", - "value": "277" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "278", - "host": "279" + "port": -187060941, + "host": "212" }, - "initialDelaySeconds": 1290950685, - "timeoutSeconds": 12533543, - "periodSeconds": 1058960779, - "successThreshold": -2133441986, - "failureThreshold": 472742933, - "terminationGracePeriodSeconds": 217739466937954194 + "initialDelaySeconds": -442393168, + "timeoutSeconds": -307373517, + "periodSeconds": 1109079597, + "successThreshold": -646728130, + "failureThreshold": 1684643131, + "terminationGracePeriodSeconds": 5055443896475056676 }, "readinessProbe": { "exec": { "command": [ - "280" + "213" ] }, "httpGet": { - "path": "281", - "port": 1401790459, - "host": "282", - "scheme": "ǵɐ鰥Z", + "path": "214", + "port": "215", + "host": "216", + "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨", "httpHeaders": [ { - "name": "283", - "value": "284" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -1103045151, - "host": "285" + "port": "219", + "host": "220" }, - "initialDelaySeconds": -614098868, - "timeoutSeconds": 234253676, - "periodSeconds": 846286700, - "successThreshold": 1080545253, - "failureThreshold": 1843491416, - "terminationGracePeriodSeconds": -5175286970144973961 + "initialDelaySeconds": 1885896895, + "timeoutSeconds": -1232888129, + "periodSeconds": -1682044542, + "successThreshold": 1182477686, + "failureThreshold": -503805926, + "terminationGracePeriodSeconds": 332054723335023688 }, "startupProbe": { "exec": { "command": [ - "286" + "221" ] }, "httpGet": { - "path": "287", - "port": "288", - "host": "289", - "scheme": "芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj", + "path": "222", + "port": "223", + "host": "224", + "scheme": "«丯Ƙ枛牐ɺ皚", "httpHeaders": [ { - "name": "290", - "value": "291" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": -560238386, - "host": "292" + "port": -1934111455, + "host": "227" }, - "initialDelaySeconds": 1658749995, - "timeoutSeconds": -938421813, - "periodSeconds": 809683205, - "successThreshold": -1615316902, - "failureThreshold": -793616601, - "terminationGracePeriodSeconds": -2242897509815578930 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438, + "terminationGracePeriodSeconds": 4116652091516790056 }, "lifecycle": { "postStart": { "exec": { "command": [ - "293" + "228" ] }, "httpGet": { - "path": "294", - "port": -1699531929, - "host": "295", - "scheme": "Z涬P­蜷ɔ幩šeS", + "path": "229", + "port": -1196874390, + "host": "230", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "296", - "value": "297" + "name": "231", + "value": "232" } ] }, "tcpSocket": { - "port": 155090390, - "host": "298" + "port": -498930176, + "host": "233" } }, "preStop": { "exec": { "command": [ - "299" + "234" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "235", + "port": "236", + "host": "237", + "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "238", + "value": "239" } ] }, "tcpSocket": { - "port": -727263154, - "host": "305" + "port": "240", + "host": "241" } } }, - "terminationMessagePath": "306", - "terminationMessagePolicy": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "imagePullPolicy": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "terminationMessagePath": "242", + "terminationMessagePolicy": "?$矡ȶ网棊ʢ", + "imagePullPolicy": "ʎȺ眖R#", "securityContext": { "capabilities": { "add": [ - ")DŽ髐njʉBn(fǂ" + "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ" ], "drop": [ - "曣ŋayåe躒訙" + "" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "307", - "role": "308", - "type": "309", - "level": "310" + "user": "243", + "role": "244", + "type": "245", + "level": "246" }, "windowsOptions": { - "gmsaCredentialSpecName": "311", - "gmsaCredentialSpec": "312", - "runAsUserName": "313", - "hostProcess": true + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": false }, - "runAsUser": 1083662227773909466, - "runAsGroup": 6245571390016329382, + "runAsUser": -2529737859863639391, + "runAsGroup": 7694930383795602762, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "allowPrivilegeEscalation": true, + "procMount": "\u003e郵[+扴ȨŮ", "seccompProfile": { - "type": "|蕎'佉賞ǧ", - "localhostProfile": "314" + "type": "朷Ǝ膯ljVX1虊谇", + "localhostProfile": "250" } }, - "stdin": true + "stdin": true, + "tty": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "315", - "image": "316", + "name": "251", + "image": "252", "command": [ - "317" + "253" ], "args": [ - "318" + "254" ], - "workingDir": "319", + "workingDir": "255", "ports": [ { - "name": "320", - "hostPort": -1920304485, - "containerPort": -1842062977, - "protocol": "輔3璾ėȜv1b繐汚磉反-n覦", - "hostIP": "321" + "name": "256", + "hostPort": 1381579966, + "containerPort": -1418092595, + "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x", + "hostIP": "257" } ], "envFrom": [ { - "prefix": "322", + "prefix": "258", "configMapRef": { - "name": "323", + "name": "259", "optional": true }, "secretRef": { - "name": "324", + "name": "260", "optional": true } } ], "env": [ { - "name": "325", - "value": "326", + "name": "261", + "value": "262", "valueFrom": { "fieldRef": { - "apiVersion": "327", - "fieldPath": "328" + "apiVersion": "263", + "fieldPath": "264" }, "resourceFieldRef": { - "containerName": "329", - "resource": "330", - "divisor": "992" + "containerName": "265", + "resource": "266", + "divisor": "894" }, "configMapKeyRef": { - "name": "331", - "key": "332", + "name": "267", + "key": "268", "optional": true }, "secretKeyRef": { - "name": "333", - "key": "334", - "optional": true + "name": "269", + "key": "270", + "optional": false } } } ], "resources": { "limits": { - "ʨIk(dŊiɢzĮ蛋I滞": "394" + "W\u003c敄lu|榝$î.Ȏ": "546" }, "requests": { - "ɞȥ}礤铟怖ý萜Ǖ": "305" + "剒蔞|表": "379" } }, "volumeMounts": [ { - "name": "335", + "name": "271", "readOnly": true, - "mountPath": "336", - "subPath": "337", - "mountPropagation": "Ƒĝ®EĨǔvÄÚ×p鬷m", - "subPathExpr": "338" + "mountPath": "272", + "subPath": "273", + "mountPropagation": "朦 wƯ貾坢'跩", + "subPathExpr": "274" } ], "volumeDevices": [ { - "name": "339", - "devicePath": "340" + "name": "275", + "devicePath": "276" } ], "livenessProbe": { "exec": { "command": [ - "341" + "277" ] }, "httpGet": { - "path": "342", - "port": 1529027685, - "host": "343", - "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", + "path": "278", + "port": -1471289102, + "host": "279", + "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "280", + "value": "281" } ] }, "tcpSocket": { - "port": -1912967242, - "host": "346" + "port": 113873869, + "host": "282" }, - "initialDelaySeconds": -2106399359, - "timeoutSeconds": 1443270783, - "periodSeconds": -1038975198, - "successThreshold": 1821835340, - "failureThreshold": 2046765799, - "terminationGracePeriodSeconds": -6946775447206795219 + "initialDelaySeconds": -1421951296, + "timeoutSeconds": 878005329, + "periodSeconds": -1244119841, + "successThreshold": 1235694147, + "failureThreshold": 348370746, + "terminationGracePeriodSeconds": 2011630253582325853 }, "readinessProbe": { "exec": { "command": [ - "347" + "283" ] }, "httpGet": { - "path": "348", - "port": "349", - "host": "350", - "scheme": "Ƒ[澔", + "path": "284", + "port": 1907998540, + "host": "285", + "scheme": ",ŕ", "httpHeaders": [ { - "name": "351", - "value": "352" + "name": "286", + "value": "287" } ] }, "tcpSocket": { - "port": 1288391156, - "host": "353" + "port": "288", + "host": "289" }, - "initialDelaySeconds": -952255430, - "timeoutSeconds": 1568034275, - "periodSeconds": -824007302, - "successThreshold": -359713104, - "failureThreshold": 1671084780, - "terminationGracePeriodSeconds": 1571605531283019612 + "initialDelaySeconds": -253326525, + "timeoutSeconds": 567263590, + "periodSeconds": 887319241, + "successThreshold": 1559618829, + "failureThreshold": 1156888068, + "terminationGracePeriodSeconds": -5566612115749133989 }, "startupProbe": { "exec": { "command": [ - "354" + "290" ] }, "httpGet": { - "path": "355", - "port": -514169648, - "host": "356", - "scheme": "\u0026疀", + "path": "291", + "port": 1315054653, + "host": "292", + "scheme": "蚃ɣľ)酊龨δ摖ȱ", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": "295", + "host": "296" }, - "initialDelaySeconds": -39292476, - "timeoutSeconds": 801902541, - "periodSeconds": -1312249623, - "successThreshold": -1089435479, - "failureThreshold": -1031303729, - "terminationGracePeriodSeconds": -7317946572666008364 + "initialDelaySeconds": 1905181464, + "timeoutSeconds": -1730959016, + "periodSeconds": 1272940694, + "successThreshold": -385597677, + "failureThreshold": 422133388, + "terminationGracePeriodSeconds": 8385745044578923915 }, "lifecycle": { "postStart": { "exec": { "command": [ - "361" + "297" ] }, "httpGet": { - "path": "362", - "port": 1445923603, - "host": "363", - "scheme": "殆诵H玲鑠ĭ$#卛8ð仁Q", + "path": "298", + "port": "299", + "host": "300", + "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", "httpHeaders": [ { - "name": "364", - "value": "365" + "name": "301", + "value": "302" } ] }, "tcpSocket": { - "port": "366", - "host": "367" + "port": 802134138, + "host": "303" } }, "preStop": { "exec": { "command": [ - "368" + "304" ] }, "httpGet": { - "path": "369", - "port": "370", - "host": "371", - "scheme": "杧ż鯀1'", + "path": "305", + "port": -126958936, + "host": "306", + "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "httpHeaders": [ { - "name": "372", - "value": "373" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": 1297979953, - "host": "374" + "port": "309", + "host": "310" } } }, - "terminationMessagePath": "375", - "terminationMessagePolicy": "ǘ炙", - "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", + "terminationMessagePath": "311", + "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮", "securityContext": { "capabilities": { "add": [ - "鬬$矐_敕ű嵞嬯t{Eɾ" + "嘢4ʗN,丽饾| 鞤ɱďW賁" ], "drop": [ - "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" + "ɭɪǹ0衷," ] }, "privileged": true, "seLinuxOptions": { - "user": "376", - "role": "377", - "type": "378", - "level": "379" + "user": "312", + "role": "313", + "type": "314", + "level": "315" }, "windowsOptions": { - "gmsaCredentialSpecName": "380", - "gmsaCredentialSpec": "381", - "runAsUserName": "382", + "gmsaCredentialSpecName": "316", + "gmsaCredentialSpec": "317", + "runAsUserName": "318", "hostProcess": true }, - "runAsUser": 4224635496843945227, - "runAsGroup": 73764735411458498, + "runAsUser": -1119183212148951030, + "runAsGroup": -7146044409185304665, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "s44矕Ƈè", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "w妕眵笭/9崍h趭(娕", "seccompProfile": { - "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", - "localhostProfile": "383" + "type": "E增猍", + "localhostProfile": "319" + } + } + } + ], + "ephemeralContainers": [ + { + "name": "320", + "image": "321", + "command": [ + "322" + ], + "args": [ + "323" + ], + "workingDir": "324", + "ports": [ + { + "name": "325", + "hostPort": 601942575, + "containerPort": -1320027474, + "protocol": "Ƶf", + "hostIP": "326" + } + ], + "envFrom": [ + { + "prefix": "327", + "configMapRef": { + "name": "328", + "optional": true + }, + "secretRef": { + "name": "329", + "optional": true + } + } + ], + "env": [ + { + "name": "330", + "value": "331", + "valueFrom": { + "fieldRef": { + "apiVersion": "332", + "fieldPath": "333" + }, + "resourceFieldRef": { + "containerName": "334", + "resource": "335", + "divisor": "179" + }, + "configMapKeyRef": { + "name": "336", + "key": "337", + "optional": false + }, + "secretKeyRef": { + "name": "338", + "key": "339", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "阎l": "464" + }, + "requests": { + "'佉": "633" + } + }, + "volumeMounts": [ + { + "name": "340", + "mountPath": "341", + "subPath": "342", + "mountPropagation": "(ť1ùfŭƽ", + "subPathExpr": "343" + } + ], + "volumeDevices": [ + { + "name": "344", + "devicePath": "345" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "346" + ] + }, + "httpGet": { + "path": "347", + "port": -684167223, + "host": "348", + "scheme": "1b", + "httpHeaders": [ + { + "name": "349", + "value": "350" + } + ] + }, + "tcpSocket": { + "port": "351", + "host": "352" + }, + "initialDelaySeconds": -47594442, + "timeoutSeconds": -2064284357, + "periodSeconds": 725624946, + "successThreshold": -34803208, + "failureThreshold": -313085430, + "terminationGracePeriodSeconds": -7686796864837350582 + }, + "readinessProbe": { + "exec": { + "command": [ + "353" + ] + }, + "httpGet": { + "path": "354", + "port": 1611386356, + "host": "355", + "scheme": "ɼ搳ǭ濑箨ʨIk(", + "httpHeaders": [ + { + "name": "356", + "value": "357" + } + ] + }, + "tcpSocket": { + "port": 2115799218, + "host": "358" + }, + "initialDelaySeconds": 1984241264, + "timeoutSeconds": -758033170, + "periodSeconds": -487434422, + "successThreshold": -370404018, + "failureThreshold": -1844150067, + "terminationGracePeriodSeconds": 1778358283914418699 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "焬CQm坊柩", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": "365", + "host": "366" + }, + "initialDelaySeconds": -135823101, + "timeoutSeconds": -1345219897, + "periodSeconds": 1141812777, + "successThreshold": -1830926023, + "failureThreshold": -320410537, + "terminationGracePeriodSeconds": 8766190045617353809 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "367" + ] + }, + "httpGet": { + "path": "368", + "port": "369", + "host": "370", + "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj", + "httpHeaders": [ + { + "name": "371", + "value": "372" + } + ] + }, + "tcpSocket": { + "port": 1333166203, + "host": "373" + } + }, + "preStop": { + "exec": { + "command": [ + "374" + ] + }, + "httpGet": { + "path": "375", + "port": 758604605, + "host": "376", + "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" + } + } + }, + "terminationMessagePath": "381", + "terminationMessagePolicy": "釼aTGÒ鵌", + "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ", + "securityContext": { + "capabilities": { + "add": [ + "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á" + ], + "drop": [ + "tl敷斢杧ż鯀" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "382", + "role": "383", + "type": "384", + "level": "385" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true + }, + "runAsUser": -3379825899840103887, + "runAsGroup": -6950412587983829837, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "seccompProfile": { + "type": "咑耖p^鏋蛹Ƚȿ醏g", + "localhostProfile": "389" } }, "tty": true, - "targetContainerName": "384" + "targetContainerName": "390" } ], - "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", - "terminationGracePeriodSeconds": -8335674866227004872, - "activeDeadlineSeconds": 3305070661619041050, - "dnsPolicy": "+Œ9两", + "restartPolicy": "飂廤Ƌʙcx", + "terminationGracePeriodSeconds": -4767735291842597991, + "activeDeadlineSeconds": -7888525810745339742, + "dnsPolicy": "h`職铳s44矕Ƈ", "nodeSelector": { - "385": "386" + "391": "392" }, - "serviceAccountName": "387", - "serviceAccount": "388", - "automountServiceAccountToken": false, - "nodeName": "389", - "hostPID": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": true, + "nodeName": "395", + "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "390", - "role": "391", - "type": "392", - "level": "393" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "394", - "gmsaCredentialSpec": "395", - "runAsUserName": "396", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": 3438266910774132295, - "runAsGroup": 3230705132538051674, - "runAsNonRoot": true, + "runAsUser": 5422399684456852309, + "runAsGroup": -4636770370363077377, + "runAsNonRoot": false, "supplementalGroups": [ - -1600417733583164525 + -5728960352366086876 ], - "fsGroup": -3964669311891901178, + "fsGroup": 1712752437570220896, "sysctls": [ { - "name": "397", - "value": "398" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "ƴ4虵p", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "沥7uPƒw©ɴĶ烷Ľthp", - "localhostProfile": "399" + "type": "#", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "400" + "name": "406" } ], - "hostname": "401", - "subdomain": "402", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1285,19 @@ { "matchExpressions": [ { - "key": "403", - "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", + "key": "409", + "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3", "values": [ - "404" + "410" ] } ], "matchFields": [ { - "key": "405", - "operator": " ", + "key": "411", + "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", "values": [ - "406" + "412" ] } ] @@ -1302,23 +1306,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -5241849, + "weight": 687140791, "preference": { "matchExpressions": [ { - "key": "407", - "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "key": "413", + "operator": "ļǹʅŚO虀", "values": [ - "408" + "414" ] } ], "matchFields": [ { - "key": "409", - "operator": "[y#t(", + "key": "415", + "operator": "ɴĶ烷Ľthp像-觗裓6Ř", "values": [ - "410" + "416" ] } ] @@ -1331,30 +1335,30 @@ { "labelSelector": { "matchLabels": { - "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "417" + "423" ], - "topologyKey": "418", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" + "4eq5": "" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", - "operator": "DoesNotExist" + "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", + "operator": "Exists" } ] } @@ -1362,31 +1366,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -234140, + "weight": 888976270, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" + "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" }, "matchExpressions": [ { - "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", - "operator": "Exists" + "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0", + "operator": "In", + "values": [ + "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ" + ] } ] }, "namespaces": [ - "431" + "437" ], - "topologyKey": "432", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" + "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R" }, "matchExpressions": [ { - "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", - "operator": "DoesNotExist" + "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V", + "operator": "In", + "values": [ + "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7" + ] } ] } @@ -1399,32 +1409,29 @@ { "labelSelector": { "matchLabels": { - "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" + "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr" }, "matchExpressions": [ { - "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", - "operator": "In", - "values": [ - "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" - ] + "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", + "operator": "Exists" } ] }, "namespaces": [ - "445" + "451" ], - "topologyKey": "446", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" + "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" }, "matchExpressions": [ { - "key": "N7.81_-._-_8_.._._a9", + "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", "operator": "In", "values": [ - "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" ] } ] @@ -1433,31 +1440,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1276377114, + "weight": -1668452490, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" + "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t" }, "matchExpressions": [ { - "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", - "operator": "DoesNotExist" + "key": "6W74-R_Z_Tz.a3_Ho", + "operator": "Exists" } ] }, "namespaces": [ - "459" + "465" ], - "topologyKey": "460", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", - "operator": "DoesNotExist" + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", + "values": [ + "x3___-..f5-6x-_-o_6O_If-5_-_.F" + ] } ] } @@ -1466,89 +1476,89 @@ ] } }, - "schedulerName": "467", + "schedulerName": "473", "tolerations": [ { - "key": "468", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "469", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "474", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "475", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "470", + "ip": "476", "hostnames": [ - "471" + "477" ] } ], - "priorityClassName": "472", - "priority": 347613368, + "priorityClassName": "478", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "473" + "479" ], "searches": [ - "474" + "480" ], "options": [ { - "name": "475", - "value": "476" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "477", + "runtimeClassName": "483", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "478", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "484", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", - "operator": "NotIn", + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", "values": [ - "h.v._5.vB-.-7-.6Jv-86___3" + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } } }, "status": { - "replicas": 2106170541, - "fullyLabeledReplicas": 415168801, - "readyReplicas": 1448332644, - "availableReplicas": -2060941196, - "observedGeneration": 7426283174216567769, + "replicas": 1205668420, + "fullyLabeledReplicas": -1754098513, + "readyReplicas": -877836536, + "availableReplicas": 138992869, + "observedGeneration": -7169014491472696647, "conditions": [ { - "type": "犓`ɜɅco\\穜T睭憲Ħ焵i,ŋŨN", - "status": "\u003c暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ\u003e尪璎", - "lastTransitionTime": "2597-11-21T15:14:16Z", - "reason": "485", - "message": "486" + "type": "零șPî壣V礆á¤拈tY圻醆锛[", + "status": "嬜Š\u0026?鳢.ǀŭ瘢颦z疵", + "lastTransitionTime": "2455-07-16T22:37:15Z", + "reason": "491", + "message": "492" } ] } 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 02aa2d59449..d50b7631054 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb differ 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 f7f01f3daba..7d7421bb35a 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 @@ -73,731 +73,733 @@ spec: selfLink: "29" uid: ʬ spec: - activeDeadlineSeconds: 3305070661619041050 + activeDeadlineSeconds: -7888525810745339742 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "407" - operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' + - key: "413" + operator: ļǹʅŚO虀 values: - - "408" + - "414" matchFields: - - key: "409" - operator: '[y#t(' + - key: "415" + operator: ɴĶ烷Ľthp像-觗裓6Ř values: - - "410" - weight: -5241849 + - "416" + weight: 687140791 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "403" - operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 + - key: "409" + operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3 values: - - "404" + - "410" matchFields: - - key: "405" - operator: ' ' + - key: "411" + operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿' values: - - "406" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s - operator: Exists + - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0 + operator: In + values: + - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ matchLabels: - 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n namespaceSelector: matchExpressions: - - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np - operator: DoesNotExist + - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V + operator: In + values: + - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7 matchLabels: - Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E + vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R namespaces: - - "431" - topologyKey: "432" - weight: -234140 + - "437" + topologyKey: "438" + weight: 888976270 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 namespaceSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr - operator: DoesNotExist + - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z + operator: Exists matchLabels: - 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g + 4eq5: "" namespaces: - - "417" - topologyKey: "418" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h - operator: DoesNotExist + - key: 6W74-R_Z_Tz.a3_Ho + operator: Exists matchLabels: - 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t namespaceSelector: matchExpressions: - - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 - operator: DoesNotExist + - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV + operator: In + values: + - x3___-..f5-6x-_-o_6O_If-5_-_.F matchLabels: - ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 - : I-._g_.._-hKc.OB_F_--.._m_-9 + h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i namespaces: - - "459" - topologyKey: "460" - weight: 1276377114 + - "465" + topologyKey: "466" + weight: -1668452490 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 - operator: In - values: - - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 + - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8 + operator: Exists matchLabels: - n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" + 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr namespaceSelector: matchExpressions: - - key: N7.81_-._-_8_.._._a9 + - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s operator: In values: - - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh + - V._qN__A_f_-B3_U__L.KH6K.RwsfI2 matchLabels: - m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT + u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E namespaces: - - "445" - topologyKey: "446" - automountServiceAccountToken: false + - "451" + topologyKey: "452" + automountServiceAccountToken: true containers: - args: - - "249" + - "254" command: - - "248" + - "253" env: - - name: "256" - value: "257" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "263" - name: "262" + key: "268" + name: "267" optional: true fieldRef: - apiVersion: "258" - fieldPath: "259" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "260" - divisor: "861" - resource: "261" + containerName: "265" + divisor: "894" + resource: "266" secretKeyRef: - key: "265" - name: "264" + key: "270" + name: "269" optional: false envFrom: - configMapRef: - name: "254" - optional: false - prefix: "253" + name: "259" + optional: true + prefix: "258" secretRef: - name: "255" - optional: false - image: "247" - imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ + name: "260" + optional: true + image: "252" + imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮 lifecycle: postStart: exec: command: - - "293" + - "297" httpGet: - host: "295" + host: "300" httpHeaders: - - name: "296" - value: "297" - path: "294" - port: -1699531929 - scheme: Z涬P­蜷ɔ幩šeS + - name: "301" + value: "302" + path: "298" + port: "299" + scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ tcpSocket: - host: "298" - port: 155090390 + host: "303" + port: 802134138 preStop: exec: command: - - "299" + - "304" httpGet: - host: "302" + host: "306" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "307" + value: "308" + path: "305" + port: -126958936 + scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 tcpSocket: - host: "305" - port: -727263154 + host: "310" + port: "309" livenessProbe: exec: command: - - "272" - failureThreshold: 472742933 + - "277" + failureThreshold: 348370746 httpGet: - host: "275" - httpHeaders: - - name: "276" - value: "277" - path: "273" - port: "274" - scheme: 冓鍓贯 - initialDelaySeconds: 1290950685 - periodSeconds: 1058960779 - successThreshold: -2133441986 - tcpSocket: host: "279" - port: "278" - terminationGracePeriodSeconds: 217739466937954194 - timeoutSeconds: 12533543 - name: "246" - ports: - - containerPort: -614161319 - hostIP: "252" - hostPort: 59244165 - name: "251" - protocol: Ȩ<6鄰簳°Ļǟi& - readinessProbe: - exec: - command: - - "280" - failureThreshold: 1843491416 - httpGet: + httpHeaders: + - name: "280" + value: "281" + path: "278" + port: -1471289102 + scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳 + initialDelaySeconds: -1421951296 + periodSeconds: -1244119841 + successThreshold: 1235694147 + tcpSocket: host: "282" - httpHeaders: - - name: "283" - value: "284" - path: "281" - port: 1401790459 - scheme: ǵɐ鰥Z - initialDelaySeconds: -614098868 - periodSeconds: 846286700 - successThreshold: 1080545253 - tcpSocket: + port: 113873869 + terminationGracePeriodSeconds: 2011630253582325853 + timeoutSeconds: 878005329 + name: "251" + ports: + - containerPort: -1418092595 + hostIP: "257" + hostPort: 1381579966 + name: "256" + protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x + readinessProbe: + exec: + command: + - "283" + failureThreshold: 1156888068 + httpGet: host: "285" - port: -1103045151 - terminationGracePeriodSeconds: -5175286970144973961 - timeoutSeconds: 234253676 - resources: - limits: - ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178" - requests: - Ö闊 鰔澝qV: "752" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - )DŽ髐njʉBn(fǂ - drop: - - 曣ŋayåe躒訙 - privileged: false - procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' - readOnlyRootFilesystem: false - runAsGroup: 6245571390016329382 - runAsNonRoot: true - runAsUser: 1083662227773909466 - seLinuxOptions: - level: "310" - role: "308" - type: "309" - user: "307" - seccompProfile: - localhostProfile: "314" - type: '|蕎''佉賞ǧ' - windowsOptions: - gmsaCredentialSpec: "312" - gmsaCredentialSpecName: "311" - hostProcess: true - runAsUserName: "313" - startupProbe: - exec: - command: - - "286" - failureThreshold: -793616601 - httpGet: + httpHeaders: + - name: "286" + value: "287" + path: "284" + port: 1907998540 + scheme: ',ŕ' + initialDelaySeconds: -253326525 + periodSeconds: 887319241 + successThreshold: 1559618829 + tcpSocket: host: "289" - httpHeaders: - - name: "290" - value: "291" - path: "287" port: "288" - scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj - initialDelaySeconds: 1658749995 - periodSeconds: 809683205 - successThreshold: -1615316902 - tcpSocket: - host: "292" - port: -560238386 - terminationGracePeriodSeconds: -2242897509815578930 - timeoutSeconds: -938421813 - stdin: true - terminationMessagePath: "306" - terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - volumeDevices: - - devicePath: "271" - name: "270" - volumeMounts: - - mountPath: "267" - mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î - name: "266" - readOnly: true - subPath: "268" - subPathExpr: "269" - workingDir: "250" - dnsConfig: - nameservers: - - "473" - options: - - name: "475" - value: "476" - searches: - - "474" - dnsPolicy: +Œ9两 - enableServiceLinks: false - ephemeralContainers: - - args: - - "318" - command: - - "317" - env: - - name: "325" - value: "326" - valueFrom: - configMapKeyRef: - key: "332" - name: "331" - optional: true - fieldRef: - apiVersion: "327" - fieldPath: "328" - resourceFieldRef: - containerName: "329" - divisor: "992" - resource: "330" - secretKeyRef: - key: "334" - name: "333" - optional: true - envFrom: - - configMapRef: - name: "323" - optional: true - prefix: "322" - secretRef: - name: "324" - optional: true - image: "316" - imagePullPolicy: ǰ詀ǿ忀oɎƺL - lifecycle: - postStart: - exec: - command: - - "361" - httpGet: - host: "363" - httpHeaders: - - name: "364" - value: "365" - path: "362" - port: 1445923603 - scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q - tcpSocket: - host: "367" - port: "366" - preStop: - exec: - command: - - "368" - httpGet: - host: "371" - httpHeaders: - - name: "372" - value: "373" - path: "369" - port: "370" - scheme: 杧ż鯀1' - tcpSocket: - host: "374" - port: 1297979953 - livenessProbe: - exec: - command: - - "341" - failureThreshold: 2046765799 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "342" - port: 1529027685 - scheme: żLj捲攻xƂ9阠$嬏wy¶熀 - initialDelaySeconds: -2106399359 - periodSeconds: -1038975198 - successThreshold: 1821835340 - tcpSocket: - host: "346" - port: -1912967242 - terminationGracePeriodSeconds: -6946775447206795219 - timeoutSeconds: 1443270783 - name: "315" - ports: - - containerPort: -1842062977 - hostIP: "321" - hostPort: -1920304485 - name: "320" - protocol: 輔3璾ėȜv1b繐汚磉反-n覦 - readinessProbe: - exec: - command: - - "347" - failureThreshold: 1671084780 - httpGet: - host: "350" - httpHeaders: - - name: "351" - value: "352" - path: "348" - port: "349" - scheme: Ƒ[澔 - initialDelaySeconds: -952255430 - periodSeconds: -824007302 - successThreshold: -359713104 - tcpSocket: - host: "353" - port: 1288391156 - terminationGracePeriodSeconds: 1571605531283019612 - timeoutSeconds: 1568034275 + terminationGracePeriodSeconds: -5566612115749133989 + timeoutSeconds: 567263590 resources: limits: - ʨIk(dŊiɢzĮ蛋I滞: "394" + W<敄lu|榝$î.Ȏ: "546" requests: - ɞȥ}礤铟怖ý萜Ǖ: "305" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 鬬$矐_敕ű嵞嬯t{Eɾ - drop: - - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - privileged: true - procMount: s44矕Ƈè - readOnlyRootFilesystem: false - runAsGroup: 73764735411458498 - runAsNonRoot: false - runAsUser: 4224635496843945227 - seLinuxOptions: - level: "379" - role: "377" - type: "378" - user: "376" - seccompProfile: - localhostProfile: "383" - type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 - windowsOptions: - gmsaCredentialSpec: "381" - gmsaCredentialSpecName: "380" - hostProcess: true - runAsUserName: "382" - startupProbe: - exec: - command: - - "354" - failureThreshold: -1031303729 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -514169648 - scheme: '&疀' - initialDelaySeconds: -39292476 - periodSeconds: -1312249623 - successThreshold: -1089435479 - tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: -7317946572666008364 - timeoutSeconds: 801902541 - targetContainerName: "384" - terminationMessagePath: "375" - terminationMessagePolicy: ǘ炙 - tty: true - volumeDevices: - - devicePath: "340" - name: "339" - volumeMounts: - - mountPath: "336" - mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m - name: "335" - readOnly: true - subPath: "337" - subPathExpr: "338" - workingDir: "319" - hostAliases: - - hostnames: - - "471" - ip: "470" - hostPID: true - hostname: "401" - imagePullSecrets: - - name: "400" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "486" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: true - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: 1ØœȠƬQg鄠 - lifecycle: - postStart: - exec: - command: - - "224" - httpGet: - host: "226" - httpHeaders: - - name: "227" - value: "228" - path: "225" - port: 896430536 - scheme: 罴ņ螡źȰ - tcpSocket: - host: "229" - port: 513341278 - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 1451056156 - scheme: uʎȺ眖R# - tcpSocket: - host: "236" - port: "235" - livenessProbe: - exec: - command: - - "204" - failureThreshold: 1016277253 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2035347577 - scheme: 姣>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾 - initialDelaySeconds: -1155992025 - periodSeconds: -850069363 - successThreshold: 918929368 - tcpSocket: - host: "209" - port: -1498229293 - terminationGracePeriodSeconds: -8520337362162976488 - timeoutSeconds: -194343002 - name: "178" - ports: - - containerPort: -2031266553 - hostIP: "184" - hostPort: 424236719 - name: "183" - protocol: 呝TG;邪 - readinessProbe: - exec: - command: - - "210" - failureThreshold: 163512962 - httpGet: - host: "213" - httpHeaders: - - name: "214" - value: "215" - path: "211" - port: "212" - scheme: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p - initialDelaySeconds: -407545915 - periodSeconds: 716842280 - successThreshold: 1479266199 - tcpSocket: - host: "216" - port: 538852927 - terminationGracePeriodSeconds: -8521017368802772029 - timeoutSeconds: 902535764 - resources: - limits: - 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩: "47" - requests: - 榜VƋZ1: "932" + 剒蔞|表: "379" securityContext: allowPrivilegeEscalation: true capabilities: add: - - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + - 嘢4ʗN,丽饾| 鞤ɱďW賁 drop: - - W:ĸ輦唊#v - privileged: false - procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ + - ɭɪǹ0衷, + privileged: true + procMount: w妕眵笭/9崍h趭(娕 readOnlyRootFilesystem: true - runAsGroup: -1629447906545846003 - runAsNonRoot: true - runAsUser: 7510677649797968740 + runAsGroup: -7146044409185304665 + runAsNonRoot: false + runAsUser: -1119183212148951030 seLinuxOptions: - level: "241" - role: "239" - type: "240" - user: "238" + level: "315" + role: "313" + type: "314" + user: "312" seccompProfile: - localhostProfile: "245" - type: 腩墺Ò媁荭gw忊|E剒蔞|表徶 + localhostProfile: "319" + type: E增猍 windowsOptions: - gmsaCredentialSpec: "243" - gmsaCredentialSpecName: "242" + gmsaCredentialSpec: "317" + gmsaCredentialSpecName: "316" hostProcess: true - runAsUserName: "244" + runAsUserName: "318" startupProbe: exec: command: - - "217" - failureThreshold: -2107743490 + - "290" + failureThreshold: 422133388 httpGet: - host: "219" + host: "292" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: 1623772781 - scheme: UÐ_ƮA攤/ɸɎ - initialDelaySeconds: 1054858106 - periodSeconds: -1150474479 - successThreshold: 744319626 + - name: "293" + value: "294" + path: "291" + port: 1315054653 + scheme: 蚃ɣľ)酊龨δ摖ȱ + initialDelaySeconds: 1905181464 + periodSeconds: 1272940694 + successThreshold: -385597677 tcpSocket: - host: "223" - port: "222" - terminationGracePeriodSeconds: 8569885835306406695 - timeoutSeconds: 232569106 - stdin: true - terminationMessagePath: "237" - terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + host: "296" + port: "295" + terminationGracePeriodSeconds: 8385745044578923915 + timeoutSeconds: -1730959016 + terminationMessagePath: "311" + terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "199" - mountPropagation: 瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę - name: "198" + - mountPath: "272" + mountPropagation: 朦 wƯ貾坢'跩 + name: "271" readOnly: true - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "389" + subPath: "273" + subPathExpr: "274" + workingDir: "255" + dnsConfig: + nameservers: + - "479" + options: + - name: "481" + value: "482" + searches: + - "480" + dnsPolicy: h`職铳s44矕Ƈ + enableServiceLinks: false + ephemeralContainers: + - args: + - "323" + command: + - "322" + env: + - name: "330" + value: "331" + valueFrom: + configMapKeyRef: + key: "337" + name: "336" + optional: false + fieldRef: + apiVersion: "332" + fieldPath: "333" + resourceFieldRef: + containerName: "334" + divisor: "179" + resource: "335" + secretKeyRef: + key: "339" + name: "338" + optional: false + envFrom: + - configMapRef: + name: "328" + optional: true + prefix: "327" + secretRef: + name: "329" + optional: true + image: "321" + imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ + lifecycle: + postStart: + exec: + command: + - "367" + httpGet: + host: "370" + httpHeaders: + - name: "371" + value: "372" + path: "368" + port: "369" + scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj' + tcpSocket: + host: "373" + port: 1333166203 + preStop: + exec: + command: + - "374" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "375" + port: 758604605 + scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 + tcpSocket: + host: "380" + port: "379" + livenessProbe: + exec: + command: + - "346" + failureThreshold: -313085430 + httpGet: + host: "348" + httpHeaders: + - name: "349" + value: "350" + path: "347" + port: -684167223 + scheme: 1b + initialDelaySeconds: -47594442 + periodSeconds: 725624946 + successThreshold: -34803208 + tcpSocket: + host: "352" + port: "351" + terminationGracePeriodSeconds: -7686796864837350582 + timeoutSeconds: -2064284357 + name: "320" + ports: + - containerPort: -1320027474 + hostIP: "326" + hostPort: 601942575 + name: "325" + protocol: Ƶf + readinessProbe: + exec: + command: + - "353" + failureThreshold: -1844150067 + httpGet: + host: "355" + httpHeaders: + - name: "356" + value: "357" + path: "354" + port: 1611386356 + scheme: ɼ搳ǭ濑箨ʨIk( + initialDelaySeconds: 1984241264 + periodSeconds: -487434422 + successThreshold: -370404018 + tcpSocket: + host: "358" + port: 2115799218 + terminationGracePeriodSeconds: 1778358283914418699 + timeoutSeconds: -758033170 + resources: + limits: + 阎l: "464" + requests: + '''佉': "633" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á + drop: + - tl敷斢杧ż鯀 + privileged: true + procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰 + readOnlyRootFilesystem: false + runAsGroup: -6950412587983829837 + runAsNonRoot: true + runAsUser: -3379825899840103887 + seLinuxOptions: + level: "385" + role: "383" + type: "384" + user: "382" + seccompProfile: + localhostProfile: "389" + type: 咑耖p^鏋蛹Ƚȿ醏g + windowsOptions: + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" + startupProbe: + exec: + command: + - "359" + failureThreshold: -320410537 + httpGet: + host: "362" + httpHeaders: + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: 焬CQm坊柩 + initialDelaySeconds: -135823101 + periodSeconds: 1141812777 + successThreshold: -1830926023 + tcpSocket: + host: "366" + port: "365" + terminationGracePeriodSeconds: 8766190045617353809 + timeoutSeconds: -1345219897 + targetContainerName: "390" + terminationMessagePath: "381" + terminationMessagePolicy: 釼aTGÒ鵌 + tty: true + volumeDevices: + - devicePath: "345" + name: "344" + volumeMounts: + - mountPath: "341" + mountPropagation: (ť1ùfŭƽ + name: "340" + subPath: "342" + subPathExpr: "343" + workingDir: "324" + hostAliases: + - hostnames: + - "477" + ip: "476" + hostIPC: true + hostname: "407" + imagePullSecrets: + - name: "406" + initContainers: + - args: + - "184" + command: + - "183" + env: + - name: "191" + value: "192" + valueFrom: + configMapKeyRef: + key: "198" + name: "197" + optional: true + fieldRef: + apiVersion: "193" + fieldPath: "194" + resourceFieldRef: + containerName: "195" + divisor: "663" + resource: "196" + secretKeyRef: + key: "200" + name: "199" + optional: false + envFrom: + - configMapRef: + name: "189" + optional: true + prefix: "188" + secretRef: + name: "190" + optional: true + image: "182" + imagePullPolicy: ʎȺ眖R# + lifecycle: + postStart: + exec: + command: + - "228" + httpGet: + host: "230" + httpHeaders: + - name: "231" + value: "232" + path: "229" + port: -1196874390 + scheme: S晒嶗UÐ_ƮA攤 + tcpSocket: + host: "233" + port: -498930176 + preStop: + exec: + command: + - "234" + httpGet: + host: "237" + httpHeaders: + - name: "238" + value: "239" + path: "235" + port: "236" + scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡 + tcpSocket: + host: "241" + port: "240" + livenessProbe: + exec: + command: + - "207" + failureThreshold: 1684643131 + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "208" + port: 1214895765 + scheme: 悖ȩ0Ƹ[Ęİ榌U + initialDelaySeconds: -442393168 + periodSeconds: 1109079597 + successThreshold: -646728130 + tcpSocket: + host: "212" + port: -187060941 + terminationGracePeriodSeconds: 5055443896475056676 + timeoutSeconds: -307373517 + name: "181" + ports: + - containerPort: 859639931 + hostIP: "187" + hostPort: 747521320 + name: "186" + protocol: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + readinessProbe: + exec: + command: + - "213" + failureThreshold: -503805926 + httpGet: + host: "216" + httpHeaders: + - name: "217" + value: "218" + path: "214" + port: "215" + scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨 + initialDelaySeconds: 1885896895 + periodSeconds: -1682044542 + successThreshold: 1182477686 + tcpSocket: + host: "220" + port: "219" + terminationGracePeriodSeconds: 332054723335023688 + timeoutSeconds: -1232888129 + resources: + limits: + ſ盷: "532" + requests: + '[Řż丩': "47" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + drop: + - "" + privileged: true + procMount: '>郵[+扴ȨŮ' + readOnlyRootFilesystem: false + runAsGroup: 7694930383795602762 + runAsNonRoot: true + runAsUser: -2529737859863639391 + seLinuxOptions: + level: "246" + role: "244" + type: "245" + user: "243" + seccompProfile: + localhostProfile: "250" + type: 朷Ǝ膯ljVX1虊谇 + windowsOptions: + gmsaCredentialSpec: "248" + gmsaCredentialSpecName: "247" + hostProcess: false + runAsUserName: "249" + startupProbe: + exec: + command: + - "221" + failureThreshold: 59664438 + httpGet: + host: "224" + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: «丯Ƙ枛牐ɺ皚 + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 + tcpSocket: + host: "227" + port: -1934111455 + terminationGracePeriodSeconds: 4116652091516790056 + timeoutSeconds: 1146016612 + stdin: true + terminationMessagePath: "242" + terminationMessagePolicy: ?$矡ȶ网棊ʢ + tty: true + volumeDevices: + - devicePath: "206" + name: "205" + volumeMounts: + - mountPath: "202" + mountPropagation: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "395" nodeSelector: - "385": "386" + "391": "392" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "472" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "478" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn - runtimeClassName: "477" - schedulerName: "467" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 飂廤Ƌʙcx + runtimeClassName: "483" + schedulerName: "473" securityContext: - fsGroup: -3964669311891901178 - fsGroupChangePolicy: ƴ4虵p - runAsGroup: 3230705132538051674 - runAsNonRoot: true - runAsUser: 3438266910774132295 + fsGroup: 1712752437570220896 + fsGroupChangePolicy: "" + runAsGroup: -4636770370363077377 + runAsNonRoot: false + runAsUser: 5422399684456852309 seLinuxOptions: - level: "393" - role: "391" - type: "392" - user: "390" + level: "399" + role: "397" + type: "398" + user: "396" seccompProfile: - localhostProfile: "399" - type: 沥7uPƒw©ɴĶ烷Ľthp + localhostProfile: "405" + type: '#' supplementalGroups: - - -1600417733583164525 + - -5728960352366086876 sysctls: - - name: "397" - value: "398" + - name: "403" + value: "404" windowsOptions: - gmsaCredentialSpec: "395" - gmsaCredentialSpecName: "394" + gmsaCredentialSpec: "401" + gmsaCredentialSpecName: "400" hostProcess: false - runAsUserName: "396" - serviceAccount: "388" - serviceAccountName: "387" - setHostnameAsFQDN: false + runAsUserName: "402" + serviceAccount: "394" + serviceAccountName: "393" + setHostnameAsFQDN: true shareProcessNamespace: true - subdomain: "402" - terminationGracePeriodSeconds: -8335674866227004872 + subdomain: "408" + terminationGracePeriodSeconds: -4767735291842597991 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "468" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "469" + - effect: '慰x:' + key: "474" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "475" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52 - operator: NotIn + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In values: - - h.v._5.vB-.-7-.6Jv-86___3 + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb - maxSkew: -484382570 - topologyKey: "478" - whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 + topologyKey: "484" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "49" @@ -896,6 +898,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: ŴĿ: "377" @@ -1049,14 +1055,14 @@ spec: storagePolicyName: "105" volumePath: "103" status: - availableReplicas: -2060941196 + availableReplicas: 138992869 conditions: - - lastTransitionTime: "2597-11-21T15:14:16Z" - message: "486" - reason: "485" - status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎 - type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN - fullyLabeledReplicas: 415168801 - observedGeneration: 7426283174216567769 - readyReplicas: 1448332644 - replicas: 2106170541 + - lastTransitionTime: "2455-07-16T22:37:15Z" + message: "492" + reason: "491" + status: 嬜Š&?鳢.ǀŭ瘢颦z疵 + type: 零șPî壣V礆á¤拈tY圻醆锛[ + fullyLabeledReplicas: -1754098513 + observedGeneration: -7169014491472696647 + readyReplicas: -877836536 + replicas: 1205668420 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 d9244fb4f18..ac6fc0a78d8 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1538,131 +1543,136 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "484", - "generateName": "485", - "namespace": "486", - "selfLink": "487", - "uid": "ʬÇ[輚趞ț@", - "resourceVersion": "17306677052996382890", - "generation": -7348861935573569087, - "creationTimestamp": "1982-10-30T18:37:00Z", - "deletionGracePeriodSeconds": -7914036355585221334, + "name": "491", + "generateName": "492", + "namespace": "493", + "selfLink": "494", + "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", + "resourceVersion": "932117408350471144", + "generation": 4446917721686139397, + "creationTimestamp": "2013-04-06T12:27:00Z", + "deletionGracePeriodSeconds": -2948232978388571762, "labels": { - "489": "490" + "496": "497" }, "annotations": { - "491": "492" + "498": "499" }, "ownerReferences": [ { - "apiVersion": "493", - "kind": "494", - "name": "495", - "uid": "\u003e泔Eëæ:\u003c堸眺舐嘯龡班悦ʀ臺穔", - "controller": true, - "blockOwnerDeletion": true + "apiVersion": "500", + "kind": "501", + "name": "502", + "uid": "憲Ħ焵i,ŋ", + "controller": false, + "blockOwnerDeletion": false } ], "finalizers": [ - "496" + "503" ], - "clusterName": "497", + "clusterName": "504", "managedFields": [ { - "manager": "498", - "operation": "ƥm粝ôD齆O#ȞM\u003c²彾Ǟʈɐ碓", - "apiVersion": "499", - "fieldsType": "500", - "subresource": "501" + "manager": "505", + "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", + "apiVersion": "506", + "fieldsType": "507", + "subresource": "508" } ] }, "spec": { "accessModes": [ - "uȒ\u003cȕ碭ȡ,簓\u0026禑Ŏ瑁鑕婙蓫椧蒭諎漎" + "Is{豘ñ澀j劎笜釼鮭Ɯ" ], "selector": { "matchLabels": { - "3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6": "9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a" + "789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22": "E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X" }, "matchExpressions": [ { - "key": "c59x3oo2/a4-___..1.N_l..-8", - "operator": "DoesNotExist" + "key": "R_-U7-F34-6.-_-O-F__h9", + "operator": "Exists" } ] }, "resources": { "limits": { - "": "736" + "獪霛圦Ƶ": "159" }, "requests": { - "DÓǶɟ汩b隊曻:Bȗ轊": "278" + "-劺b": "142" } }, - "volumeName": "508", - "storageClassName": "509", - "volumeMode": "ɋb賝łų$Q郔惻¬\\ơ^", + "volumeName": "515", + "storageClassName": "516", + "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", "dataSource": { - "apiGroup": "510", - "kind": "511", - "name": "512" + "apiGroup": "517", + "kind": "518", + "name": "519" + }, + "dataSourceRef": { + "apiGroup": "520", + "kind": "521", + "name": "522" } }, "status": { - "phase": "VǕ酈t史C\u003c镼ƶƭ", + "phase": "h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț", "accessModes": [ - "" + "\u003e7u?=ȳ皆Cds壋" ], "capacity": { - "蟀贑!ǃȥ瓤骁ȩ": "486" + "H%": "764" }, "conditions": [ { - "type": "儲ȃ\u003cDŽ噻ȁ隞ĻȀ拞抵\u003c躁ĄȐ煷叺", - "status": "貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ", - "lastProbeTime": "2002-10-17T05:21:34Z", - "lastTransitionTime": "2090-08-02T09:40:31Z", - "reason": "513", - "message": "514" + "type": "A麭T棞詢¡ɅǏõxġ疾ɇ", + "status": "=击S", + "lastProbeTime": "2806-03-31T09:12:56Z", + "lastTransitionTime": "2430-10-28T09:53:06Z", + "reason": "523", + "message": "524" } ] } } ], - "serviceName": "515", - "podManagementPolicy": "(DǺM變ǣƆ鄾篏q鴥络@", + "serviceName": "525", + "podManagementPolicy": "軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\\`ĝňY", "updateStrategy": { - "type": "撇Ȥ寭ƉɫDžXSgƈɿ1", + "type": "Ä嚕uʟ膠ĉ班康%m忣àÂƺ琰Ȃ", "rollingUpdate": { - "partition": -578791744 + "partition": 804652982 } }, - "revisionHistoryLimit": 1747963012, - "minReadySeconds": 227754708, + "revisionHistoryLimit": -827620894, + "minReadySeconds": -619299042, "persistentVolumeClaimRetentionPolicy": { - "whenDeleted": "牦[闤ŬNĻ", - "whenScaled": "ĕ" + "whenDeleted": "弞þƔ剛Ʃ°qgWǰ绿络a", + "whenScaled": "7ɞŶJŖ)j{驟ʦcȃ/I" } }, "status": { - "observedGeneration": 6686533762378407166, - "replicas": -506660990, - "readyReplicas": 504213151, - "currentReplicas": -1264206794, - "updatedReplicas": -691647199, - "currentRevision": "516", - "updateRevision": "517", - "collisionCount": -1994313473, + "observedGeneration": -3509397394862257066, + "replicas": -1343766220, + "readyReplicas": -346713296, + "currentReplicas": 282379690, + "updatedReplicas": -554064621, + "currentRevision": "526", + "updateRevision": "527", + "collisionCount": 974374726, "conditions": [ { - "type": "龌帲笁銭1ÂơHđ\"-劺b", - "status": "Dê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘ", - "lastTransitionTime": "2624-04-25T00:24:24Z", - "reason": "518", - "message": "519" + "type": "劾ůk`磾ƃ妹浓ª", + "status": "痞濥鐳VDɝÔȗ$", + "lastTransitionTime": "2141-07-05T00:48:21Z", + "reason": "528", + "message": "529" } ], - "availableReplicas": 2082714834 + "availableReplicas": -1350782402 } } \ No newline at end of file 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 ff1cfd16da2..3bc2c122beb 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb differ 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 268ae356991..ac57c613386 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 @@ -31,20 +31,20 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 227754708 + minReadySeconds: -619299042 persistentVolumeClaimRetentionPolicy: - whenDeleted: 牦[闤ŬNĻ - whenScaled: ĕ - podManagementPolicy: (DǺM變ǣƆ鄾篏q鴥络@ + whenDeleted: 弞þƔ剛Ʃ°qgWǰ绿络a + whenScaled: 7ɞŶJŖ)j{驟ʦcȃ/I + podManagementPolicy: 軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\`ĝňY replicas: 896585016 - revisionHistoryLimit: 1747963012 + revisionHistoryLimit: -827620894 selector: matchExpressions: - 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: 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: "515" + serviceName: "525" template: metadata: annotations: @@ -77,730 +77,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů泔Eëæ:<堸眺舐嘯龡班悦ʀ臺穔' - resourceVersion: "17306677052996382890" - selfLink: "487" - uid: ʬÇ[輚趞ț@ + - apiVersion: "500" + blockOwnerDeletion: false + controller: false + kind: "501" + name: "502" + uid: 憲Ħ焵i,ŋ + resourceVersion: "932117408350471144" + selfLink: "494" + uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} spec: accessModes: - - uȒ<ȕ碭ȡ,簓&禑Ŏ瑁鑕婙蓫椧蒭諎漎 + - Is{豘ñ澀j劎笜釼鮭Ɯ dataSource: - apiGroup: "510" - kind: "511" - name: "512" + apiGroup: "517" + kind: "518" + name: "519" + dataSourceRef: + apiGroup: "520" + kind: "521" + name: "522" resources: limits: - "": "736" + 獪霛圦Ƶ: "159" requests: - DÓǶɟ汩b隊曻:Bȗ轊: "278" + -劺b: "142" selector: matchExpressions: - - key: c59x3oo2/a4-___..1.N_l..-8 - operator: DoesNotExist + - key: R_-U7-F34-6.-_-O-F__h9 + operator: Exists matchLabels: - 3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6: 9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a - storageClassName: "509" - volumeMode: ɋb賝łų$Q郔惻¬\ơ^ - volumeName: "508" + 789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22: E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X + storageClassName: "516" + volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ + volumeName: "515" status: accessModes: - - "" + - '>7u?=ȳ皆Cds壋' capacity: - 蟀贑!ǃȥ瓤骁ȩ: "486" + H%: "764" conditions: - - lastProbeTime: "2002-10-17T05:21:34Z" - lastTransitionTime: "2090-08-02T09:40:31Z" - message: "514" - reason: "513" - status: 貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ - type: 儲ȃ<DŽ噻ȁ隞ĻȀ拞抵<躁ĄȐ煷叺 - phase: VǕ酈t史C<镼ƶƭ + - lastProbeTime: "2806-03-31T09:12:56Z" + lastTransitionTime: "2430-10-28T09:53:06Z" + message: "524" + reason: "523" + status: =击S + type: A麭T棞詢¡ɅǏõxġ疾ɇ + phase: h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț status: - availableReplicas: 2082714834 - collisionCount: -1994313473 + availableReplicas: -1350782402 + collisionCount: 974374726 conditions: - - lastTransitionTime: "2624-04-25T00:24:24Z" - message: "519" - reason: "518" - status: Dê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘ - type: 龌帲笁銭1ÂơHđ"-劺b - currentReplicas: -1264206794 - currentRevision: "516" - observedGeneration: 6686533762378407166 - readyReplicas: 504213151 - replicas: -506660990 - updateRevision: "517" - updatedReplicas: -691647199 + - lastTransitionTime: "2141-07-05T00:48:21Z" + message: "529" + reason: "528" + status: 痞濥鐳VDɝÔȗ$ + type: 劾ůk`磾ƃ妹浓ª + currentReplicas: 282379690 + currentRevision: "526" + observedGeneration: -3509397394862257066 + readyReplicas: -346713296 + replicas: -1343766220 + updateRevision: "527" + updatedReplicas: -554064621 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 cb1894d41ad..996b6d53a93 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1536,37 +1541,36 @@ } }, "strategy": { - "type": "卍睊", + "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -212999359, - "revisionHistoryLimit": -866496758, - "paused": true, + "minReadySeconds": 2115665292, + "revisionHistoryLimit": 237456757, "rollbackTo": { - "revision": 5409045697701816557 + "revision": 1498428055681994500 }, - "progressDeadlineSeconds": -1491990975 + "progressDeadlineSeconds": -164140734 }, "status": { - "observedGeneration": 893725404715704439, - "replicas": -611078700, - "updatedReplicas": -280135412, - "readyReplicas": 143932221, - "availableReplicas": 845369726, - "unavailableReplicas": 1757097428, + "observedGeneration": -1635909846206320942, + "replicas": -253906853, + "updatedReplicas": -602665165, + "readyReplicas": -859094691, + "availableReplicas": -1624946983, + "unavailableReplicas": -779806398, "conditions": [ { - "type": ",R譏K", - "status": "埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$\u003cʖ欢", - "lastUpdateTime": "2587-03-02T15:57:31Z", - "lastTransitionTime": "2127-02-15T04:53:58Z", - "reason": "484", - "message": "485" + "type": "mv看ƜZ", + "status": "ȇ\u003e尪璎妽4LM桵Ţ宧ʜ", + "lastUpdateTime": "2322-02-12T18:39:07Z", + "lastTransitionTime": "2398-05-12T06:43:28Z", + "reason": "491", + "message": "492" } ], - "collisionCount": 2000058265 + "collisionCount": 165914268 } } \ 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 3e2efed74d7..3bbd2581916 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb differ 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 d3f3e922f73..49136a7a2e9 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 @@ -31,13 +31,12 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -212999359 - paused: true - progressDeadlineSeconds: -1491990975 + minReadySeconds: 2115665292 + progressDeadlineSeconds: -164140734 replicas: 896585016 - revisionHistoryLimit: -866496758 + revisionHistoryLimit: 237456757 rollbackTo: - revision: 5409045697701816557 + revision: 1498428055681994500 selector: matchExpressions: - 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 @@ -48,7 +47,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 卍睊 + type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj template: metadata: annotations: @@ -81,730 +80,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů尪璎妽4LM桵Ţ宧ʜ + type: mv看ƜZ + observedGeneration: -1635909846206320942 + readyReplicas: -859094691 + replicas: -253906853 + unavailableReplicas: -779806398 + updatedReplicas: -602665165 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 21de0a7122a..683ccdc1747 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1538,131 +1543,136 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "484", - "generateName": "485", - "namespace": "486", - "selfLink": "487", - "uid": "ʬÇ[輚趞ț@", - "resourceVersion": "17306677052996382890", - "generation": -7348861935573569087, - "creationTimestamp": "1982-10-30T18:37:00Z", - "deletionGracePeriodSeconds": -7914036355585221334, + "name": "491", + "generateName": "492", + "namespace": "493", + "selfLink": "494", + "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", + "resourceVersion": "932117408350471144", + "generation": 4446917721686139397, + "creationTimestamp": "2013-04-06T12:27:00Z", + "deletionGracePeriodSeconds": -2948232978388571762, "labels": { - "489": "490" + "496": "497" }, "annotations": { - "491": "492" + "498": "499" }, "ownerReferences": [ { - "apiVersion": "493", - "kind": "494", - "name": "495", - "uid": "\u003e泔Eëæ:\u003c堸眺舐嘯龡班悦ʀ臺穔", - "controller": true, - "blockOwnerDeletion": true + "apiVersion": "500", + "kind": "501", + "name": "502", + "uid": "憲Ħ焵i,ŋ", + "controller": false, + "blockOwnerDeletion": false } ], "finalizers": [ - "496" + "503" ], - "clusterName": "497", + "clusterName": "504", "managedFields": [ { - "manager": "498", - "operation": "ƥm粝ôD齆O#ȞM\u003c²彾Ǟʈɐ碓", - "apiVersion": "499", - "fieldsType": "500", - "subresource": "501" + "manager": "505", + "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", + "apiVersion": "506", + "fieldsType": "507", + "subresource": "508" } ] }, "spec": { "accessModes": [ - "uȒ\u003cȕ碭ȡ,簓\u0026禑Ŏ瑁鑕婙蓫椧蒭諎漎" + "Is{豘ñ澀j劎笜釼鮭Ɯ" ], "selector": { "matchLabels": { - "3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6": "9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a" + "789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22": "E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X" }, "matchExpressions": [ { - "key": "c59x3oo2/a4-___..1.N_l..-8", - "operator": "DoesNotExist" + "key": "R_-U7-F34-6.-_-O-F__h9", + "operator": "Exists" } ] }, "resources": { "limits": { - "": "736" + "獪霛圦Ƶ": "159" }, "requests": { - "DÓǶɟ汩b隊曻:Bȗ轊": "278" + "-劺b": "142" } }, - "volumeName": "508", - "storageClassName": "509", - "volumeMode": "ɋb賝łų$Q郔惻¬\\ơ^", + "volumeName": "515", + "storageClassName": "516", + "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", "dataSource": { - "apiGroup": "510", - "kind": "511", - "name": "512" + "apiGroup": "517", + "kind": "518", + "name": "519" + }, + "dataSourceRef": { + "apiGroup": "520", + "kind": "521", + "name": "522" } }, "status": { - "phase": "VǕ酈t史C\u003c镼ƶƭ", + "phase": "h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț", "accessModes": [ - "" + "\u003e7u?=ȳ皆Cds壋" ], "capacity": { - "蟀贑!ǃȥ瓤骁ȩ": "486" + "H%": "764" }, "conditions": [ { - "type": "儲ȃ\u003cDŽ噻ȁ隞ĻȀ拞抵\u003c躁ĄȐ煷叺", - "status": "貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ", - "lastProbeTime": "2002-10-17T05:21:34Z", - "lastTransitionTime": "2090-08-02T09:40:31Z", - "reason": "513", - "message": "514" + "type": "A麭T棞詢¡ɅǏõxġ疾ɇ", + "status": "=击S", + "lastProbeTime": "2806-03-31T09:12:56Z", + "lastTransitionTime": "2430-10-28T09:53:06Z", + "reason": "523", + "message": "524" } ] } } ], - "serviceName": "515", - "podManagementPolicy": "(DǺM變ǣƆ鄾篏q鴥络@", + "serviceName": "525", + "podManagementPolicy": "軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\\`ĝňY", "updateStrategy": { - "type": "撇Ȥ寭ƉɫDžXSgƈɿ1", + "type": "Ä嚕uʟ膠ĉ班康%m忣àÂƺ琰Ȃ", "rollingUpdate": { - "partition": -578791744 + "partition": 804652982 } }, - "revisionHistoryLimit": 1747963012, - "minReadySeconds": 227754708, + "revisionHistoryLimit": -827620894, + "minReadySeconds": -619299042, "persistentVolumeClaimRetentionPolicy": { - "whenDeleted": "牦[闤ŬNĻ", - "whenScaled": "ĕ" + "whenDeleted": "弞þƔ剛Ʃ°qgWǰ绿络a", + "whenScaled": "7ɞŶJŖ)j{驟ʦcȃ/I" } }, "status": { - "observedGeneration": -5388384335248450956, - "replicas": 184101100, - "readyReplicas": -1742186708, - "currentReplicas": 428141081, - "updatedReplicas": -705407478, - "currentRevision": "516", - "updateRevision": "517", - "collisionCount": 1808522007, + "observedGeneration": -5220291719109120281, + "replicas": -1497706631, + "readyReplicas": -1313274125, + "currentReplicas": -281508057, + "updatedReplicas": 222952727, + "currentRevision": "526", + "updateRevision": "527", + "collisionCount": -696643813, "conditions": [ { - "type": "ʟ]mʦ獪霛圦Ƶ胐N砽§", - "status": "Y伂滹Ǽ颠Nc5ɚnX", - "lastTransitionTime": "2709-09-26T10:19:04Z", - "reason": "518", - "message": "519" + "type": "", + "status": "ůk`磾ƃ妹浓ª斈2婵=ǻ4 ʙ但Ǭ", + "lastTransitionTime": "2522-06-10T02:30:22Z", + "reason": "528", + "message": "529" } ], - "availableReplicas": 499586111 + "availableReplicas": 1369790557 } } \ No newline at end of file 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 115b176e9c3..fde5bf5eca9 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb differ 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 8b0db98b06a..b36e7832c9c 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 @@ -31,20 +31,20 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 227754708 + minReadySeconds: -619299042 persistentVolumeClaimRetentionPolicy: - whenDeleted: 牦[闤ŬNĻ - whenScaled: ĕ - podManagementPolicy: (DǺM變ǣƆ鄾篏q鴥络@ + whenDeleted: 弞þƔ剛Ʃ°qgWǰ绿络a + whenScaled: 7ɞŶJŖ)j{驟ʦcȃ/I + podManagementPolicy: 軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\`ĝňY replicas: 896585016 - revisionHistoryLimit: 1747963012 + revisionHistoryLimit: -827620894 selector: matchExpressions: - 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: 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: "515" + serviceName: "525" template: metadata: annotations: @@ -77,730 +77,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů泔Eëæ:<堸眺舐嘯龡班悦ʀ臺穔' - resourceVersion: "17306677052996382890" - selfLink: "487" - uid: ʬÇ[輚趞ț@ + - apiVersion: "500" + blockOwnerDeletion: false + controller: false + kind: "501" + name: "502" + uid: 憲Ħ焵i,ŋ + resourceVersion: "932117408350471144" + selfLink: "494" + uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} spec: accessModes: - - uȒ<ȕ碭ȡ,簓&禑Ŏ瑁鑕婙蓫椧蒭諎漎 + - Is{豘ñ澀j劎笜釼鮭Ɯ dataSource: - apiGroup: "510" - kind: "511" - name: "512" + apiGroup: "517" + kind: "518" + name: "519" + dataSourceRef: + apiGroup: "520" + kind: "521" + name: "522" resources: limits: - "": "736" + 獪霛圦Ƶ: "159" requests: - DÓǶɟ汩b隊曻:Bȗ轊: "278" + -劺b: "142" selector: matchExpressions: - - key: c59x3oo2/a4-___..1.N_l..-8 - operator: DoesNotExist + - key: R_-U7-F34-6.-_-O-F__h9 + operator: Exists matchLabels: - 3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6: 9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a - storageClassName: "509" - volumeMode: ɋb賝łų$Q郔惻¬\ơ^ - volumeName: "508" + 789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22: E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X + storageClassName: "516" + volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ + volumeName: "515" status: accessModes: - - "" + - '>7u?=ȳ皆Cds壋' capacity: - 蟀贑!ǃȥ瓤骁ȩ: "486" + H%: "764" conditions: - - lastProbeTime: "2002-10-17T05:21:34Z" - lastTransitionTime: "2090-08-02T09:40:31Z" - message: "514" - reason: "513" - status: 貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ - type: 儲ȃ<DŽ噻ȁ隞ĻȀ拞抵<躁ĄȐ煷叺 - phase: VǕ酈t史C<镼ƶƭ + - lastProbeTime: "2806-03-31T09:12:56Z" + lastTransitionTime: "2430-10-28T09:53:06Z" + message: "524" + reason: "523" + status: =击S + type: A麭T棞詢¡ɅǏõxġ疾ɇ + phase: h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț status: - availableReplicas: 499586111 - collisionCount: 1808522007 + availableReplicas: 1369790557 + collisionCount: -696643813 conditions: - - lastTransitionTime: "2709-09-26T10:19:04Z" - message: "519" - reason: "518" - status: Y伂滹Ǽ颠Nc5ɚnX - type: ʟ]mʦ獪霛圦Ƶ胐N砽§ - currentReplicas: 428141081 - currentRevision: "516" - observedGeneration: -5388384335248450956 - readyReplicas: -1742186708 - replicas: 184101100 - updateRevision: "517" - updatedReplicas: -705407478 + - lastTransitionTime: "2522-06-10T02:30:22Z" + message: "529" + reason: "528" + status: ůk`磾ƃ妹浓ª斈2婵=ǻ4 ʙ但Ǭ + type: "" + currentReplicas: -281508057 + currentRevision: "526" + observedGeneration: -5220291719109120281 + readyReplicas: -1313274125 + replicas: -1497706631 + updateRevision: "527" + updatedReplicas: 222952727 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 620a19856be..4bb2f6cb8dc 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 @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,59 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": -1981710234, - "containerPort": -1109619518, - "protocol": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "hostIP": "184" + "name": "186", + "hostPort": 852780575, + "containerPort": -1252938503, + "protocol": "Opwǩ曬逴褜1ØœȠƬQg鄠", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true + "name": "190", + "optional": false } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "617" + "containerName": "195", + "resource": "196", + "divisor": "139" }, "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": false + "name": "197", + "key": "198", + "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", + "name": "199", + "key": "200", "optional": false } } @@ -510,255 +515,254 @@ ], "resources": { "limits": { - "朷Ǝ膯ljVX1虊谇": "279" + "LĹ]佱¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊": "807" }, "requests": { - "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀": "918" + "嚧ʣq埄": "936" } }, "volumeMounts": [ { - "name": "198", - "mountPath": "199", - "subPath": "200", - "mountPropagation": "ó藢xɮĵȑ6L*", - "subPathExpr": "201" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "202", - "devicePath": "203" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "204" + "207" ] }, "httpGet": { - "path": "205", - "port": "206", - "host": "207", - "scheme": "fʀļ腩墺Ò媁荭gw忊", + "path": "208", + "port": "209", + "host": "210", + "scheme": "u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ", "httpHeaders": [ { - "name": "208", - "value": "209" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -1761398388, - "host": "210" + "port": 1714588921, + "host": "213" }, - "initialDelaySeconds": -1532958330, - "timeoutSeconds": -438588982, - "periodSeconds": 1004325340, - "successThreshold": -1313320434, - "failureThreshold": 14304392, - "terminationGracePeriodSeconds": 2001337664780390084 + "initialDelaySeconds": -1246371817, + "timeoutSeconds": 617318981, + "periodSeconds": 432291364, + "successThreshold": 676578360, + "failureThreshold": -552281772, + "terminationGracePeriodSeconds": -2910346974754087949 }, "readinessProbe": { "exec": { "command": [ - "211" + "214" ] }, "httpGet": { - "path": "212", - "port": -614161319, - "host": "213", - "scheme": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "path": "215", + "port": 656200799, + "host": "216", "httpHeaders": [ { - "name": "214", - "value": "215" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": "216", - "host": "217" + "port": "219", + "host": "220" }, - "initialDelaySeconds": 233282513, - "timeoutSeconds": -518330919, - "periodSeconds": 1313273370, - "successThreshold": -1296830577, - "failureThreshold": -1314967760, - "terminationGracePeriodSeconds": 5043322816247327651 + "initialDelaySeconds": -2165496, + "timeoutSeconds": -1778952574, + "periodSeconds": 1386255869, + "successThreshold": -778272981, + "failureThreshold": 2056774277, + "terminationGracePeriodSeconds": -9219895030215397584 }, "startupProbe": { "exec": { "command": [ - "218" + "221" ] }, "httpGet": { - "path": "219", - "port": "220", - "host": "221", - "scheme": "队偯J僳徥淳4揻", + "path": "222", + "port": "223", + "host": "224", + "scheme": "鬶l獕;跣Hǝcw", "httpHeaders": [ { - "name": "222", - "value": "223" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": 878005329, - "host": "224" + "port": -374766088, + "host": "227" }, - "initialDelaySeconds": -1244119841, - "timeoutSeconds": 1235694147, - "periodSeconds": 348370746, - "successThreshold": 468369166, - "failureThreshold": 1909548849, - "terminationGracePeriodSeconds": 6410850623145248813 + "initialDelaySeconds": -736151561, + "timeoutSeconds": -1515369804, + "periodSeconds": -1856061695, + "successThreshold": 1868683352, + "failureThreshold": -1137436579, + "terminationGracePeriodSeconds": 8876559635423161004 }, "lifecycle": { "postStart": { "exec": { "command": [ - "225" + "228" ] }, "httpGet": { - "path": "226", - "port": "227", - "host": "228", - "scheme": "鰔澝qV訆ƎżŧL²sNƗ¸", + "path": "229", + "port": "230", + "host": "231", + "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", "httpHeaders": [ { - "name": "229", - "value": "230" + "name": "232", + "value": "233" } ] }, "tcpSocket": { - "port": "231", - "host": "232" + "port": 1993268896, + "host": "234" } }, "preStop": { "exec": { "command": [ - "233" + "235" ] }, "httpGet": { - "path": "234", - "port": "235", - "host": "236", - "scheme": "δ摖", + "path": "236", + "port": "237", + "host": "238", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "237", - "value": "238" + "name": "239", + "value": "240" } ] }, "tcpSocket": { - "port": "239", - "host": "240" + "port": "241", + "host": "242" } } }, - "terminationMessagePath": "241", - "terminationMessagePolicy": "_\u003cǬëJ橈'琕鶫:顇ə娯Ȱ", - "imagePullPolicy": "ǵɐ鰥Z", + "terminationMessagePath": "243", + "terminationMessagePolicy": "6Ɖ飴ɎiǨź'", + "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ", "securityContext": { "capabilities": { "add": [ - "DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ" + ";Nŕ璻Jih亏yƕ丆録²Ŏ" ], "drop": [ - "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6" + "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "242", - "role": "243", - "type": "244", - "level": "245" + "user": "244", + "role": "245", + "type": "246", + "level": "247" }, "windowsOptions": { - "gmsaCredentialSpecName": "246", - "gmsaCredentialSpec": "247", - "runAsUserName": "248", + "gmsaCredentialSpecName": "248", + "gmsaCredentialSpec": "249", + "runAsUserName": "250", "hostProcess": true }, - "runAsUser": -7299434051955863644, - "runAsGroup": 4041264710404335706, - "runAsNonRoot": false, + "runAsUser": 4041264710404335706, + "runAsGroup": 6453802934472477147, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ȹ均i绝5哇芆斩ìh4Ɋ", + "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ", "seccompProfile": { - "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "localhostProfile": "249" + "type": "V擭銆j", + "localhostProfile": "251" } } } ], "containers": [ { - "name": "250", - "image": "251", + "name": "252", + "image": "253", "command": [ - "252" + "254" ], "args": [ - "253" + "255" ], - "workingDir": "254", + "workingDir": "256", "ports": [ { - "name": "255", - "hostPort": 1540899353, - "containerPort": -1330095135, - "protocol": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", - "hostIP": "256" + "name": "257", + "hostPort": -1408385387, + "containerPort": -1225881740, + "protocol": "撑¼蠾8餑噭", + "hostIP": "258" } ], "envFrom": [ { - "prefix": "257", + "prefix": "259", "configMapRef": { - "name": "258", - "optional": false + "name": "260", + "optional": true }, "secretRef": { - "name": "259", + "name": "261", "optional": false } } ], "env": [ { - "name": "260", - "value": "261", + "name": "262", + "value": "263", "valueFrom": { "fieldRef": { - "apiVersion": "262", - "fieldPath": "263" + "apiVersion": "264", + "fieldPath": "265" }, "resourceFieldRef": { - "containerName": "264", - "resource": "265", - "divisor": "293" + "containerName": "266", + "resource": "267", + "divisor": "834" }, "configMapKeyRef": { - "name": "266", - "key": "267", + "name": "268", + "key": "269", "optional": true }, "secretKeyRef": { - "name": "268", - "key": "269", + "name": "270", + "key": "271", "optional": false } } @@ -766,514 +770,512 @@ ], "resources": { "limits": { - "9崍": "210" + "n(fǂǢ曣ŋayåe躒訙Ǫ": "12" }, "requests": { - ")ǂť嗆u8晲T[irȎ3Ĕ\\ɢX鰨松": "775" + "(娕uE增猍": "264" } }, "volumeMounts": [ { - "name": "270", - "readOnly": true, - "mountPath": "271", - "subPath": "272", - "mountPropagation": "ʠɜ瞍阎lğ Ņ", - "subPathExpr": "273" + "name": "272", + "mountPath": "273", + "subPath": "274", + "mountPropagation": "irȎ3Ĕ\\ɢX鰨松", + "subPathExpr": "275" } ], "volumeDevices": [ { - "name": "274", - "devicePath": "275" + "name": "276", + "devicePath": "277" } ], "livenessProbe": { "exec": { "command": [ - "276" + "278" ] }, "httpGet": { - "path": "277", - "port": 1866529638, - "host": "278", - "scheme": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", + "path": "279", + "port": "280", + "host": "281", + "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "282", + "value": "283" } ] }, "tcpSocket": { - "port": 638012651, - "host": "281" + "port": 317211081, + "host": "284" }, - "initialDelaySeconds": -1161185537, - "timeoutSeconds": 1928937303, - "periodSeconds": 1611386356, - "successThreshold": 821341581, - "failureThreshold": 240657401, - "terminationGracePeriodSeconds": 7806703309589874498 + "initialDelaySeconds": -1934305215, + "timeoutSeconds": -655359985, + "periodSeconds": 875971520, + "successThreshold": 161338049, + "failureThreshold": 65094252, + "terminationGracePeriodSeconds": -6831592407095063988 }, "readinessProbe": { "exec": { "command": [ - "282" + "285" ] }, "httpGet": { - "path": "283", - "port": "284", - "host": "285", - "scheme": "Ik(dŊiɢzĮ蛋I", + "path": "286", + "port": -2126891601, + "host": "287", + "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "288", + "value": "289" } ] }, "tcpSocket": { - "port": "288", - "host": "289" + "port": "290", + "host": "291" }, - "initialDelaySeconds": 571693619, - "timeoutSeconds": 1643238856, - "periodSeconds": -2028546276, - "successThreshold": -2128305760, - "failureThreshold": 1605974497, - "terminationGracePeriodSeconds": 2002344837004307079 + "initialDelaySeconds": 1660454722, + "timeoutSeconds": -1317234078, + "periodSeconds": -1347045470, + "successThreshold": 1169580662, + "failureThreshold": 404234347, + "terminationGracePeriodSeconds": 8560122250231719622 }, "startupProbe": { "exec": { "command": [ - "290" + "292" ] }, "httpGet": { - "path": "291", - "port": "292", - "host": "293", - "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", + "path": "293", + "port": "294", + "host": "295", + "scheme": "ǚŜEuEy竬ʆɞ", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": -1894647727, - "host": "296" + "port": "298", + "host": "299" }, - "initialDelaySeconds": 235623869, - "timeoutSeconds": 564558594, - "periodSeconds": -505848936, - "successThreshold": -1819021257, - "failureThreshold": 1447314009, - "terminationGracePeriodSeconds": -7637760856622746738 + "initialDelaySeconds": 336252010, + "timeoutSeconds": 677650619, + "periodSeconds": 930785927, + "successThreshold": 1624098740, + "failureThreshold": 1419787816, + "terminationGracePeriodSeconds": -506227444233847191 }, "lifecycle": { "postStart": { "exec": { "command": [ - "297" + "300" ] }, "httpGet": { - "path": "298", - "port": 466267060, - "host": "299", - "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", + "path": "301", + "port": "302", + "host": "303", + "scheme": "ĝ®EĨǔvÄÚ×p鬷", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "304", + "value": "305" } ] }, "tcpSocket": { - "port": "302", - "host": "303" + "port": 1673908530, + "host": "306" } }, "preStop": { "exec": { "command": [ - "304" + "307" ] }, "httpGet": { - "path": "305", - "port": "306", - "host": "307", - "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", + "path": "308", + "port": "309", + "host": "310", + "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", "httpHeaders": [ { - "name": "308", - "value": "309" + "name": "311", + "value": "312" } ] }, "tcpSocket": { - "port": "310", - "host": "311" + "port": -1912967242, + "host": "313" } } }, - "terminationMessagePath": "312", - "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", - "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", + "terminationMessagePath": "314", + "terminationMessagePolicy": "漤ŗ坟", + "imagePullPolicy": "-紑浘牬釼aTGÒ鵌", "securityContext": { "capabilities": { "add": [ - "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" + "Nh×DJɶ羹ƞʓ%ʝ`ǭ" ], "drop": [ - "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" + "ñ?卶滿筇ȟP:/a" ] }, "privileged": false, "seLinuxOptions": { - "user": "313", - "role": "314", - "type": "315", - "level": "316" + "user": "315", + "role": "316", + "type": "317", + "level": "318" }, "windowsOptions": { - "gmsaCredentialSpecName": "317", - "gmsaCredentialSpec": "318", - "runAsUserName": "319", - "hostProcess": true + "gmsaCredentialSpecName": "319", + "gmsaCredentialSpec": "320", + "runAsUserName": "321", + "hostProcess": false }, - "runAsUser": -1286199491017539507, - "runAsGroup": -6292316479661489180, + "runAsUser": 308757565294839546, + "runAsGroup": 5797412715505520759, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "cx赮ǒđ\u003e*劶?j", + "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", "seccompProfile": { - "type": "ĭ¥#ƱÁR", - "localhostProfile": "320" + "type": "繽敮ǰ詀ǿ忀oɎƺ", + "localhostProfile": "322" } }, - "stdin": true, "tty": true } ], "ephemeralContainers": [ { - "name": "321", - "image": "322", + "name": "323", + "image": "324", "command": [ - "323" + "325" ], "args": [ - "324" + "326" ], - "workingDir": "325", + "workingDir": "327", "ports": [ { - "name": "326", - "hostPort": 2032588794, - "containerPort": -1371690155, - "protocol": "G昧牱fsǕT衩kƒK07曳wœj堑", - "hostIP": "327" + "name": "328", + "hostPort": 788093377, + "containerPort": -557687916, + "protocol": "_敕", + "hostIP": "329" } ], "envFrom": [ { - "prefix": "328", + "prefix": "330", "configMapRef": { - "name": "329", + "name": "331", "optional": true }, "secretRef": { - "name": "330", + "name": "332", "optional": false } } ], "env": [ { - "name": "331", - "value": "332", + "name": "333", + "value": "334", "valueFrom": { "fieldRef": { - "apiVersion": "333", - "fieldPath": "334" + "apiVersion": "335", + "fieldPath": "336" }, "resourceFieldRef": { - "containerName": "335", - "resource": "336", - "divisor": "473" + "containerName": "337", + "resource": "338", + "divisor": "971" }, "configMapKeyRef": { - "name": "337", - "key": "338", - "optional": false - }, - "secretKeyRef": { "name": "339", "key": "340", "optional": true + }, + "secretKeyRef": { + "name": "341", + "key": "342", + "optional": true } } } ], "resources": { "limits": { - "盌3+Œ": "752" + "湷D谹気Ƀ秮òƬɸĻo:{": "523" }, "requests": { - ")Zq=歍þ": "759" + "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929" } }, "volumeMounts": [ { - "name": "341", - "mountPath": "342", - "subPath": "343", - "mountPropagation": "讅缔m葰賦迾娙ƴ4虵p", - "subPathExpr": "344" + "name": "343", + "readOnly": true, + "mountPath": "344", + "subPath": "345", + "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃", + "subPathExpr": "346" } ], "volumeDevices": [ { - "name": "345", - "devicePath": "346" + "name": "347", + "devicePath": "348" } ], "livenessProbe": { "exec": { "command": [ - "347" + "349" ] }, "httpGet": { - "path": "348", - "port": 1034835933, - "host": "349", - "scheme": "O虀^背遻堣灭ƴɦ燻踸陴", + "path": "350", + "port": "351", + "host": "352", + "scheme": "07曳wœj堑ūM鈱ɖ'蠨", "httpHeaders": [ { - "name": "350", - "value": "351" + "name": "353", + "value": "354" } ] }, "tcpSocket": { - "port": -1744546613, - "host": "352" + "port": "355", + "host": "356" }, - "initialDelaySeconds": 650448405, - "timeoutSeconds": 1943254244, - "periodSeconds": -168773629, - "successThreshold": 2068592383, - "failureThreshold": 1566765016, - "terminationGracePeriodSeconds": -1112599546012453731 + "initialDelaySeconds": -242798806, + "timeoutSeconds": -1940800545, + "periodSeconds": 681004793, + "successThreshold": 2002666266, + "failureThreshold": -2033879721, + "terminationGracePeriodSeconds": -4409241678312226730 }, "readinessProbe": { "exec": { "command": [ - "353" + "357" ] }, "httpGet": { - "path": "354", - "port": "355", - "host": "356", - "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", + "path": "358", + "port": 279062028, + "host": "359", + "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": -943058206, + "host": "362" }, - "initialDelaySeconds": 636493142, - "timeoutSeconds": -192358697, - "periodSeconds": 420595064, - "successThreshold": 1195176401, - "failureThreshold": 902204699, - "terminationGracePeriodSeconds": 9196919020604133323 + "initialDelaySeconds": 725557531, + "timeoutSeconds": -703127031, + "periodSeconds": 741667779, + "successThreshold": -381344241, + "failureThreshold": -2122876628, + "terminationGracePeriodSeconds": 2700145646260085226 }, "startupProbe": { "exec": { "command": [ - "361" + "363" ] }, "httpGet": { - "path": "362", - "port": "363", - "host": "364", - "scheme": "y#t(ȗŜŲ\u0026", + "path": "364", + "port": "365", + "host": "366", + "scheme": "thp像-", "httpHeaders": [ { - "name": "365", - "value": "366" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": 1387858949, - "host": "367" + "port": "369", + "host": "370" }, - "initialDelaySeconds": 156368232, - "timeoutSeconds": -815239246, - "periodSeconds": 44612600, - "successThreshold": -688929182, - "failureThreshold": -1222486879, - "terminationGracePeriodSeconds": 6543873941346781273 + "initialDelaySeconds": 1589417286, + "timeoutSeconds": 445878206, + "periodSeconds": 1874051321, + "successThreshold": -500012714, + "failureThreshold": 1762917570, + "terminationGracePeriodSeconds": 4794571970514469019 }, "lifecycle": { "postStart": { "exec": { "command": [ - "368" + "371" ] }, "httpGet": { - "path": "369", - "port": 1176168596, - "host": "370", - "scheme": "轪d覉;Ĕ", + "path": "372", + "port": "373", + "host": "374", + "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", "httpHeaders": [ { - "name": "371", - "value": "372" + "name": "375", + "value": "376" } ] }, "tcpSocket": { - "port": "373", - "host": "374" + "port": "377", + "host": "378" } }, "preStop": { "exec": { "command": [ - "375" + "379" ] }, "httpGet": { - "path": "376", - "port": "377", - "host": "378", - "scheme": "ʦŊĊ娮", + "path": "380", + "port": -1743587482, + "host": "381", "httpHeaders": [ { - "name": "379", - "value": "380" + "name": "382", + "value": "383" } ] }, "tcpSocket": { - "port": "381", - "host": "382" + "port": 858034123, + "host": "384" } } }, - "terminationMessagePath": "383", - "terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", - "imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", + "terminationMessagePath": "385", + "terminationMessagePolicy": "喾@潷", + "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l", "securityContext": { "capabilities": { "add": [ - "蓋Cȗä2 ɲ±m嵘厶sȰÖ" + "ɻŶJ詢" ], "drop": [ - "ÆɰŞ襵" + "ǾɁ鍻G鯇ɀ魒Ð扬=惍E" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "384", - "role": "385", - "type": "386", - "level": "387" + "user": "386", + "role": "387", + "type": "388", + "level": "389" }, "windowsOptions": { - "gmsaCredentialSpecName": "388", - "gmsaCredentialSpec": "389", - "runAsUserName": "390", + "gmsaCredentialSpecName": "390", + "gmsaCredentialSpec": "391", + "runAsUserName": "392", "hostProcess": false }, - "runAsUser": -5519662252699559890, - "runAsGroup": -1624551961163368198, + "runAsUser": -5071790362153704411, + "runAsGroup": -2841141127223294729, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "阫Ƈʥ椹ý", + "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ", "seccompProfile": { - "type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷", - "localhostProfile": "391" + "type": "郡ɑ鮽ǍJB膾扉A­1襏櫯³", + "localhostProfile": "393" } }, - "stdin": true, "stdinOnce": true, - "targetContainerName": "392" + "targetContainerName": "394" } ], - "restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI", - "terminationGracePeriodSeconds": 3296766428578159624, - "activeDeadlineSeconds": -8925090445844634303, - "dnsPolicy": "q沷¾!", + "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉", + "terminationGracePeriodSeconds": -1390311149947249535, + "activeDeadlineSeconds": 2684251781701131156, + "dnsPolicy": "厶s", "nodeSelector": { - "393": "394" + "395": "396" }, - "serviceAccountName": "395", - "serviceAccount": "396", + "serviceAccountName": "397", + "serviceAccount": "398", "automountServiceAccountToken": true, - "nodeName": "397", + "nodeName": "399", + "hostPID": true, "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "398", - "role": "399", - "type": "400", - "level": "401" + "user": "400", + "role": "401", + "type": "402", + "level": "403" }, "windowsOptions": { - "gmsaCredentialSpecName": "402", - "gmsaCredentialSpec": "403", - "runAsUserName": "404", + "gmsaCredentialSpecName": "404", + "gmsaCredentialSpec": "405", + "runAsUserName": "406", "hostProcess": true }, - "runAsUser": -3496040522639830925, - "runAsGroup": 2960114664726223450, - "runAsNonRoot": false, + "runAsUser": -3184085461588437523, + "runAsGroup": -2037509302018919599, + "runAsNonRoot": true, "supplementalGroups": [ - 2402603282459663167 + -885564056413671854 ], - "fsGroup": 3564097949592109139, + "fsGroup": 4301352137345790658, "sysctls": [ { - "name": "405", - "value": "406" + "name": "407", + "value": "408" } ], - "fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6", + "fsGroupChangePolicy": "柱栦阫Ƈʥ椹", "seccompProfile": { - "type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ", - "localhostProfile": "407" + "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i", + "localhostProfile": "409" } }, "imagePullSecrets": [ { - "name": "408" + "name": "410" } ], - "hostname": "409", - "subdomain": "410", + "hostname": "411", + "subdomain": "412", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1283,19 @@ { "matchExpressions": [ { - "key": "411", - "operator": "Üɉ愂,wa纝佯fɞ", + "key": "413", + "operator": "șƷK*ƌ驔瓊'", "values": [ - "412" + "414" ] } ], "matchFields": [ { - "key": "413", - "operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;", + "key": "415", + "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧", "values": [ - "414" + "416" ] } ] @@ -1302,23 +1304,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1690937616, + "weight": 836045166, "preference": { "matchExpressions": [ { - "key": "415", - "operator": "襉{遠", + "key": "417", + "operator": "ȋ灋槊盘", "values": [ - "416" + "418" ] } ], "matchFields": [ { - "key": "417", - "operator": "诰ðÈ娒Ġ滔xvŗÑ\"", + "key": "419", + "operator": "牬庘颮6(", "values": [ - "418" + "420" ] } ] @@ -1331,27 +1333,30 @@ { "labelSelector": { "matchLabels": { - "lx..w": "t-_.5.40w" + "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B" }, "matchExpressions": [ { - "key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0", - "operator": "DoesNotExist" + "key": "z_o_2.--4Z7__i1T.miw_a", + "operator": "NotIn", + "values": [ + "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t" + ] } ] }, "namespaces": [ - "425" + "427" ], - "topologyKey": "426", + "topologyKey": "428", "namespaceSelector": { "matchLabels": { - "8V": "3sn-03" + "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B" }, "matchExpressions": [ { - "key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3", - "operator": "Exists" + "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh", + "operator": "DoesNotExist" } ] } @@ -1359,34 +1364,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -947725955, + "weight": -585767440, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e" + "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0" }, "matchExpressions": [ { - "key": "3--_9QW2JkU27_.-4T-I.-..K.2", - "operator": "In", + "key": "n", + "operator": "NotIn", "values": [ - "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8" + "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP" ] } ] }, "namespaces": [ - "439" + "441" ], - "topologyKey": "440", + "topologyKey": "442", "namespaceSelector": { "matchLabels": { - "7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz" + "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e" }, "matchExpressions": [ { - "key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6", - "operator": "DoesNotExist" + "key": "34G._--u.._.105-4_ed-0-H", + "operator": "NotIn", + "values": [ + "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q" + ] } ] } @@ -1399,27 +1407,27 @@ { "labelSelector": { "matchLabels": { - "uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": "" + "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27" }, "matchExpressions": [ { - "key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1", - "operator": "Exists" + "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "453" + "455" ], - "topologyKey": "454", + "topologyKey": "456", "namespaceSelector": { "matchLabels": { - "d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z" + "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR" }, "matchExpressions": [ { - "key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT", - "operator": "Exists" + "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7", + "operator": "DoesNotExist" } ] } @@ -1427,34 +1435,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1819321475, + "weight": 339079271, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7" + "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV" }, "matchExpressions": [ { - "key": "62o787-7lk2/L.--4P--_q-.9", + "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", "operator": "Exists" } ] }, "namespaces": [ - "467" + "469" ], - "topologyKey": "468", + "topologyKey": "470", "namespaceSelector": { "matchLabels": { - "j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e" + "E35H__.B_E": "U..u8gwbk" }, "matchExpressions": [ { - "key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8", - "operator": "In", - "values": [ - "x3___-..f5-6x-_-o_6O_If-5_-_.F" - ] + "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", + "operator": "Exists" } ] } @@ -1463,102 +1468,101 @@ ] } }, - "schedulerName": "475", + "schedulerName": "477", "tolerations": [ { - "key": "476", - "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", - "value": "477", - "effect": "慰x:", - "tolerationSeconds": 3362400521064014157 + "key": "478", + "operator": "ŭʔb'?舍ȃʥx臥]å摞", + "value": "479", + "tolerationSeconds": 3053978290188957517 } ], "hostAliases": [ { - "ip": "478", + "ip": "480", "hostnames": [ - "479" + "481" ] } ], - "priorityClassName": "480", - "priority": 743241089, + "priorityClassName": "482", + "priority": -340583156, "dnsConfig": { "nameservers": [ - "481" + "483" ], "searches": [ - "482" + "484" ], "options": [ { - "name": "483", - "value": "484" + "name": "485", + "value": "486" } ] }, "readinessGates": [ { - "conditionType": "0yVA嬂刲;牆詒ĸąs" + "conditionType": "țc£PAÎǨȨ栋" } ], - "runtimeClassName": "485", + "runtimeClassName": "487", "enableServiceLinks": false, - "preemptionPolicy": "Iƭij韺ʧ\u003e", + "preemptionPolicy": "n{鳻", "overhead": { - "D傕Ɠ栊闔虝巒瀦ŕ": "124" + "隅DžbİEMǶɼ`|褞": "229" }, "topologySpreadConstraints": [ { - "maxSkew": -174245111, - "topologyKey": "486", - "whenUnsatisfiable": "", + "maxSkew": 1486667065, + "topologyKey": "488", + "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", "labelSelector": { "matchLabels": { - "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" + "H_55..--E3_2D-1DW__o_-.k": "7" }, "matchExpressions": [ { - "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", - "operator": "In", + "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", + "operator": "NotIn", "values": [ - "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + "H1z..j_.r3--T" ] } ] } } ], - "setHostnameAsFQDN": true + "setHostnameAsFQDN": false } }, "updateStrategy": { - "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", + "type": "șa汸\u003cƋlɋN磋镮ȺPÈ", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 1559072561, - "revisionHistoryLimit": -629510776 + "minReadySeconds": 1750503412, + "revisionHistoryLimit": 128240007 }, "status": { - "currentNumberScheduled": -69450448, - "numberMisscheduled": -212409426, - "desiredNumberScheduled": 17761427, - "numberReady": 1329525670, - "observedGeneration": -721999650192865404, - "updatedNumberScheduled": 1162680985, - "numberAvailable": 171558604, - "numberUnavailable": -161888815, - "collisionCount": 1714841371, + "currentNumberScheduled": -900194589, + "numberMisscheduled": 295177820, + "desiredNumberScheduled": 1576197985, + "numberReady": -702578810, + "observedGeneration": -1989254568785172688, + "updatedNumberScheduled": -855944448, + "numberAvailable": -1556190810, + "numberUnavailable": -487001726, + "collisionCount": -2081947001, "conditions": [ { - "type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ", - "status": "", - "lastTransitionTime": "2124-10-20T09:17:54Z", - "reason": "493", - "message": "494" + "type": "薑Ȣ#闬輙怀¹bCũw¼ ǫ", + "status": ":$", + "lastTransitionTime": "2082-11-07T20:44:23Z", + "reason": "495", + "message": "496" } ] } 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 61a51c453f7..6b0a087d989 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb differ 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 206ce1223a4..5577e3ad744 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 @@ -31,8 +31,8 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 1559072561 - revisionHistoryLimit: -629510776 + minReadySeconds: 1750503412 + revisionHistoryLimit: 128240007 selector: 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 @@ -73,728 +73,726 @@ spec: selfLink: "29" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -8925090445844634303 + activeDeadlineSeconds: 2684251781701131156 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "415" - operator: 襉{遠 - values: - - "416" - matchFields: - key: "417" - operator: 诰ðÈ娒Ġ滔xvŗÑ" + operator: ȋ灋槊盘 values: - "418" - weight: 1690937616 + matchFields: + - key: "419" + operator: 牬庘颮6( + values: + - "420" + weight: 836045166 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "411" - operator: Üɉ愂,wa纝佯fɞ - values: - - "412" - matchFields: - key: "413" - operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣; + operator: șƷK*ƌ驔瓊' values: - "414" + matchFields: + - key: "415" + operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧 + values: + - "416" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3--_9QW2JkU27_.-4T-I.-..K.2 - operator: In + - key: "n" + operator: NotIn values: - - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8 + - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP matchLabels: - E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e + I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0 namespaceSelector: matchExpressions: - - key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6 - operator: DoesNotExist + - key: 34G._--u.._.105-4_ed-0-H + operator: NotIn + values: + - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q matchLabels: - 7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz + tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e namespaces: - - "439" - topologyKey: "440" - weight: -947725955 + - "441" + topologyKey: "442" + weight: -585767440 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0 - operator: DoesNotExist + - key: z_o_2.--4Z7__i1T.miw_a + operator: NotIn + values: + - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t matchLabels: - lx..w: t-_.5.40w + 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B namespaceSelector: matchExpressions: - - key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3 - operator: Exists + - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh + operator: DoesNotExist matchLabels: - 8V: 3sn-03 + 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B namespaces: - - "425" - topologyKey: "426" + - "427" + topologyKey: "428" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 62o787-7lk2/L.--4P--_q-.9 + - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5 operator: Exists matchLabels: - i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7 + ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV namespaceSelector: matchExpressions: - - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8 - operator: In - values: - - x3___-..f5-6x-_-o_6O_If-5_-_.F + - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i + operator: Exists matchLabels: - j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e + E35H__.B_E: U..u8gwbk namespaces: - - "467" - topologyKey: "468" - weight: 1819321475 + - "469" + topologyKey: "470" + weight: 339079271 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1 - operator: Exists + - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + operator: DoesNotExist matchLabels: - uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: "" + 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27 namespaceSelector: matchExpressions: - - key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT - operator: Exists + - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7 + operator: DoesNotExist matchLabels: - d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z + "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR namespaces: - - "453" - topologyKey: "454" + - "455" + topologyKey: "456" automountServiceAccountToken: true containers: - args: - - "253" + - "255" command: - - "252" + - "254" env: - - name: "260" - value: "261" + - name: "262" + value: "263" valueFrom: configMapKeyRef: - key: "267" - name: "266" - optional: true - fieldRef: - apiVersion: "262" - fieldPath: "263" - resourceFieldRef: - containerName: "264" - divisor: "293" - resource: "265" - secretKeyRef: key: "269" name: "268" + optional: true + fieldRef: + apiVersion: "264" + fieldPath: "265" + resourceFieldRef: + containerName: "266" + divisor: "834" + resource: "267" + secretKeyRef: + key: "271" + name: "270" optional: false envFrom: - configMapRef: - name: "258" - optional: false - prefix: "257" + name: "260" + optional: true + prefix: "259" secretRef: - name: "259" + name: "261" optional: false - image: "251" - imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 + image: "253" + imagePullPolicy: -紑浘牬釼aTGÒ鵌 lifecycle: postStart: exec: command: - - "297" + - "300" httpGet: - host: "299" - httpHeaders: - - name: "300" - value: "301" - path: "298" - port: 466267060 - scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?j - readOnlyRootFilesystem: false - runAsGroup: -6292316479661489180 + procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY + readOnlyRootFilesystem: true + runAsGroup: 5797412715505520759 runAsNonRoot: false - runAsUser: -1286199491017539507 + runAsUser: 308757565294839546 seLinuxOptions: - level: "316" - role: "314" - type: "315" - user: "313" + level: "318" + role: "316" + type: "317" + user: "315" seccompProfile: - localhostProfile: "320" - type: ĭ¥#ƱÁR + localhostProfile: "322" + type: 繽敮ǰ詀ǿ忀oɎƺ windowsOptions: - gmsaCredentialSpec: "318" - gmsaCredentialSpecName: "317" - hostProcess: true - runAsUserName: "319" + gmsaCredentialSpec: "320" + gmsaCredentialSpecName: "319" + hostProcess: false + runAsUserName: "321" startupProbe: exec: command: - - "290" - failureThreshold: 1447314009 + - "292" + failureThreshold: 1419787816 httpGet: - host: "293" + host: "295" httpHeaders: - - name: "294" - value: "295" - path: "291" - port: "292" - scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 - initialDelaySeconds: 235623869 - periodSeconds: -505848936 - successThreshold: -1819021257 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: ǚŜEuEy竬ʆɞ + initialDelaySeconds: 336252010 + periodSeconds: 930785927 + successThreshold: 1624098740 tcpSocket: - host: "296" - port: -1894647727 - terminationGracePeriodSeconds: -7637760856622746738 - timeoutSeconds: 564558594 - stdin: true - terminationMessagePath: "312" - terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a + host: "299" + port: "298" + terminationGracePeriodSeconds: -506227444233847191 + timeoutSeconds: 677650619 + terminationMessagePath: "314" + terminationMessagePolicy: 漤ŗ坟 tty: true volumeDevices: - - devicePath: "275" - name: "274" + - devicePath: "277" + name: "276" volumeMounts: - - mountPath: "271" - mountPropagation: ʠɜ瞍阎lğ Ņ - name: "270" - readOnly: true - subPath: "272" - subPathExpr: "273" - workingDir: "254" + - mountPath: "273" + mountPropagation: irȎ3Ĕ\ɢX鰨松 + name: "272" + subPath: "274" + subPathExpr: "275" + workingDir: "256" dnsConfig: nameservers: - - "481" + - "483" options: - - name: "483" - value: "484" + - name: "485" + value: "486" searches: - - "482" - dnsPolicy: q沷¾! + - "484" + dnsPolicy: 厶s enableServiceLinks: false ephemeralContainers: - args: - - "324" + - "326" command: - - "323" + - "325" env: - - name: "331" - value: "332" + - name: "333" + value: "334" valueFrom: configMapKeyRef: - key: "338" - name: "337" - optional: false - fieldRef: - apiVersion: "333" - fieldPath: "334" - resourceFieldRef: - containerName: "335" - divisor: "473" - resource: "336" - secretKeyRef: key: "340" name: "339" optional: true + fieldRef: + apiVersion: "335" + fieldPath: "336" + resourceFieldRef: + containerName: "337" + divisor: "971" + resource: "338" + secretKeyRef: + key: "342" + name: "341" + optional: true envFrom: - configMapRef: - name: "329" + name: "331" optional: true - prefix: "328" + prefix: "330" secretRef: - name: "330" + name: "332" optional: false - image: "322" - imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj + image: "324" + imagePullPolicy: '#t(ȗŜŲ&洪y儕l' lifecycle: postStart: exec: command: - - "368" + - "371" httpGet: - host: "370" - httpHeaders: - - name: "371" - value: "372" - path: "369" - port: 1176168596 - scheme: 轪d覉;Ĕ - tcpSocket: host: "374" + httpHeaders: + - name: "375" + value: "376" + path: "372" port: "373" + scheme: b轫ʓ滨ĖRh}颉hȱɷȰW + tcpSocket: + host: "378" + port: "377" preStop: exec: command: - - "375" + - "379" httpGet: - host: "378" + host: "381" httpHeaders: - - name: "379" - value: "380" - path: "376" - port: "377" - scheme: ʦŊĊ娮 + - name: "382" + value: "383" + path: "380" + port: -1743587482 tcpSocket: - host: "382" - port: "381" + host: "384" + port: 858034123 livenessProbe: exec: command: - - "347" - failureThreshold: 1566765016 + - "349" + failureThreshold: -2033879721 httpGet: - host: "349" - httpHeaders: - - name: "350" - value: "351" - path: "348" - port: 1034835933 - scheme: O虀^背遻堣灭ƴɦ燻踸陴 - initialDelaySeconds: 650448405 - periodSeconds: -168773629 - successThreshold: 2068592383 - tcpSocket: host: "352" - port: -1744546613 - terminationGracePeriodSeconds: -1112599546012453731 - timeoutSeconds: 1943254244 - name: "321" + httpHeaders: + - name: "353" + value: "354" + path: "350" + port: "351" + scheme: 07曳wœj堑ūM鈱ɖ'蠨 + initialDelaySeconds: -242798806 + periodSeconds: 681004793 + successThreshold: 2002666266 + tcpSocket: + host: "356" + port: "355" + terminationGracePeriodSeconds: -4409241678312226730 + timeoutSeconds: -1940800545 + name: "323" ports: - - containerPort: -1371690155 - hostIP: "327" - hostPort: 2032588794 - name: "326" - protocol: G昧牱fsǕT衩kƒK07曳wœj堑 + - containerPort: -557687916 + hostIP: "329" + hostPort: 788093377 + name: "328" + protocol: _敕 readinessProbe: exec: command: - - "353" - failureThreshold: 902204699 + - "357" + failureThreshold: -2122876628 httpGet: - host: "356" + host: "359" httpHeaders: - - name: "357" - value: "358" - path: "354" - port: "355" - scheme: b轫ʓ滨ĖRh}颉hȱɷȰW - initialDelaySeconds: 636493142 - periodSeconds: 420595064 - successThreshold: 1195176401 + - name: "360" + value: "361" + path: "358" + port: 279062028 + scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p + initialDelaySeconds: 725557531 + periodSeconds: 741667779 + successThreshold: -381344241 tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: 9196919020604133323 - timeoutSeconds: -192358697 + host: "362" + port: -943058206 + terminationGracePeriodSeconds: 2700145646260085226 + timeoutSeconds: -703127031 resources: limits: - 盌3+Œ: "752" + 湷D谹気Ƀ秮òƬɸĻo:{: "523" requests: - )Zq=歍þ: "759" + 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 蓋Cȗä2 ɲ±m嵘厶sȰÖ + - ɻŶJ詢 drop: - - ÆɰŞ襵 - privileged: true - procMount: 阫Ƈʥ椹ý + - ǾɁ鍻G鯇ɀ魒Ð扬=惍E + privileged: false + procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ readOnlyRootFilesystem: false - runAsGroup: -1624551961163368198 + runAsGroup: -2841141127223294729 runAsNonRoot: false - runAsUser: -5519662252699559890 + runAsUser: -5071790362153704411 seLinuxOptions: - level: "387" - role: "385" - type: "386" - user: "384" + level: "389" + role: "387" + type: "388" + user: "386" seccompProfile: - localhostProfile: "391" - type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷ + localhostProfile: "393" + type: 郡ɑ鮽ǍJB膾扉A­1襏櫯³ windowsOptions: - gmsaCredentialSpec: "389" - gmsaCredentialSpecName: "388" + gmsaCredentialSpec: "391" + gmsaCredentialSpecName: "390" hostProcess: false - runAsUserName: "390" + runAsUserName: "392" startupProbe: exec: command: - - "361" - failureThreshold: -1222486879 + - "363" + failureThreshold: 1762917570 httpGet: - host: "364" + host: "366" httpHeaders: - - name: "365" - value: "366" - path: "362" - port: "363" - scheme: y#t(ȗŜŲ& - initialDelaySeconds: 156368232 - periodSeconds: 44612600 - successThreshold: -688929182 + - name: "367" + value: "368" + path: "364" + port: "365" + scheme: thp像- + initialDelaySeconds: 1589417286 + periodSeconds: 1874051321 + successThreshold: -500012714 tcpSocket: - host: "367" - port: 1387858949 - terminationGracePeriodSeconds: 6543873941346781273 - timeoutSeconds: -815239246 - stdin: true + host: "370" + port: "369" + terminationGracePeriodSeconds: 4794571970514469019 + timeoutSeconds: 445878206 stdinOnce: true - targetContainerName: "392" - terminationMessagePath: "383" - terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 + targetContainerName: "394" + terminationMessagePath: "385" + terminationMessagePolicy: 喾@潷 volumeDevices: - - devicePath: "346" - name: "345" + - devicePath: "348" + name: "347" volumeMounts: - - mountPath: "342" - mountPropagation: 讅缔m葰賦迾娙ƴ4虵p - name: "341" - subPath: "343" - subPathExpr: "344" - workingDir: "325" + - mountPath: "344" + mountPropagation: '|ǓÓ敆OɈÏ 瞍髃' + name: "343" + readOnly: true + subPath: "345" + subPathExpr: "346" + workingDir: "327" hostAliases: - hostnames: - - "479" - ip: "478" + - "481" + ip: "480" hostIPC: true - hostname: "409" + hostPID: true + hostname: "411" imagePullSecrets: - - name: "408" + - name: "410" initContainers: - args: - - "181" + - "184" command: - - "180" + - "183" env: - - name: "188" - value: "189" + - name: "191" + value: "192" valueFrom: configMapKeyRef: - key: "195" - name: "194" - optional: false + key: "198" + name: "197" + optional: true fieldRef: - apiVersion: "190" - fieldPath: "191" + apiVersion: "193" + fieldPath: "194" resourceFieldRef: - containerName: "192" - divisor: "617" - resource: "193" + containerName: "195" + divisor: "139" + resource: "196" secretKeyRef: - key: "197" - name: "196" + key: "200" + name: "199" optional: false envFrom: - configMapRef: - name: "186" - optional: true - prefix: "185" + name: "189" + optional: false + prefix: "188" secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: ǵɐ鰥Z + name: "190" + optional: false + image: "182" + imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ' lifecycle: postStart: exec: command: - - "225" + - "228" httpGet: - host: "228" + host: "231" httpHeaders: - - name: "229" - value: "230" - path: "226" - port: "227" - scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ + - name: "232" + value: "233" + path: "229" + port: "230" + scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ tcpSocket: - host: "232" - port: "231" + host: "234" + port: 1993268896 preStop: exec: command: - - "233" + - "235" httpGet: - host: "236" + host: "238" httpHeaders: - - name: "237" - value: "238" - path: "234" - port: "235" - scheme: δ摖 + - name: "239" + value: "240" + path: "236" + port: "237" + scheme: 'ƿ頀"冓鍓贯澔 ' tcpSocket: - host: "240" - port: "239" + host: "242" + port: "241" livenessProbe: exec: command: - - "204" - failureThreshold: 14304392 + - "207" + failureThreshold: -552281772 httpGet: - host: "207" - httpHeaders: - - name: "208" - value: "209" - path: "205" - port: "206" - scheme: fʀļ腩墺Ò媁荭gw忊 - initialDelaySeconds: -1532958330 - periodSeconds: 1004325340 - successThreshold: -1313320434 - tcpSocket: host: "210" - port: -1761398388 - terminationGracePeriodSeconds: 2001337664780390084 - timeoutSeconds: -438588982 - name: "178" + httpHeaders: + - name: "211" + value: "212" + path: "208" + port: "209" + scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ + initialDelaySeconds: -1246371817 + periodSeconds: 432291364 + successThreshold: 676578360 + tcpSocket: + host: "213" + port: 1714588921 + terminationGracePeriodSeconds: -2910346974754087949 + timeoutSeconds: 617318981 + name: "181" ports: - - containerPort: -1109619518 - hostIP: "184" - hostPort: -1981710234 - name: "183" - protocol: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 + - containerPort: -1252938503 + hostIP: "187" + hostPort: 852780575 + name: "186" + protocol: Opwǩ曬逴褜1ØœȠƬQg鄠 readinessProbe: exec: command: - - "211" - failureThreshold: -1314967760 + - "214" + failureThreshold: 2056774277 httpGet: - host: "213" + host: "216" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -614161319 - scheme: Ȩ<6鄰簳°Ļǟi& - initialDelaySeconds: 233282513 - periodSeconds: 1313273370 - successThreshold: -1296830577 + - name: "217" + value: "218" + path: "215" + port: 656200799 + initialDelaySeconds: -2165496 + periodSeconds: 1386255869 + successThreshold: -778272981 tcpSocket: - host: "217" - port: "216" - terminationGracePeriodSeconds: 5043322816247327651 - timeoutSeconds: -518330919 + host: "220" + port: "219" + terminationGracePeriodSeconds: -9219895030215397584 + timeoutSeconds: -1778952574 resources: limits: - 朷Ǝ膯ljVX1虊谇: "279" + LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807" requests: - 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀: "918" + 嚧ʣq埄: "936" securityContext: allowPrivilegeEscalation: true capabilities: add: - - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ + - ;Nŕ璻Jih亏yƕ丆録²Ŏ drop: - - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - privileged: false - procMount: ȹ均i绝5哇芆斩ìh4Ɋ + - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫 + privileged: true + procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ readOnlyRootFilesystem: true - runAsGroup: 4041264710404335706 - runAsNonRoot: false - runAsUser: -7299434051955863644 + runAsGroup: 6453802934472477147 + runAsNonRoot: true + runAsUser: 4041264710404335706 seLinuxOptions: - level: "245" - role: "243" - type: "244" - user: "242" + level: "247" + role: "245" + type: "246" + user: "244" seccompProfile: - localhostProfile: "249" - type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 + localhostProfile: "251" + type: V擭銆j windowsOptions: - gmsaCredentialSpec: "247" - gmsaCredentialSpecName: "246" + gmsaCredentialSpec: "249" + gmsaCredentialSpecName: "248" hostProcess: true - runAsUserName: "248" + runAsUserName: "250" startupProbe: exec: command: - - "218" - failureThreshold: 1909548849 + - "221" + failureThreshold: -1137436579 httpGet: - host: "221" - httpHeaders: - - name: "222" - value: "223" - path: "219" - port: "220" - scheme: 队偯J僳徥淳4揻 - initialDelaySeconds: -1244119841 - periodSeconds: 348370746 - successThreshold: 468369166 - tcpSocket: host: "224" - port: 878005329 - terminationGracePeriodSeconds: 6410850623145248813 - timeoutSeconds: 1235694147 - terminationMessagePath: "241" - terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: 鬶l獕;跣Hǝcw + initialDelaySeconds: -736151561 + periodSeconds: -1856061695 + successThreshold: 1868683352 + tcpSocket: + host: "227" + port: -374766088 + terminationGracePeriodSeconds: 8876559635423161004 + timeoutSeconds: -1515369804 + terminationMessagePath: "243" + terminationMessagePolicy: 6Ɖ飴ɎiǨź' volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "206" + name: "205" volumeMounts: - - mountPath: "199" - mountPropagation: ó藢xɮĵȑ6L* - name: "198" - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "397" + - mountPath: "202" + mountPropagation: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "399" nodeSelector: - "393": "394" + "395": "396" overhead: - D傕Ɠ栊闔虝巒瀦ŕ: "124" - preemptionPolicy: Iƭij韺ʧ> - priority: 743241089 - priorityClassName: "480" + 隅DžbİEMǶɼ`|褞: "229" + preemptionPolicy: n{鳻 + priority: -340583156 + priorityClassName: "482" readinessGates: - - conditionType: 0yVA嬂刲;牆詒ĸąs - restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI - runtimeClassName: "485" - schedulerName: "475" + - conditionType: țc£PAÎǨȨ栋 + restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉 + runtimeClassName: "487" + schedulerName: "477" securityContext: - fsGroup: 3564097949592109139 - fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6 - runAsGroup: 2960114664726223450 - runAsNonRoot: false - runAsUser: -3496040522639830925 + fsGroup: 4301352137345790658 + fsGroupChangePolicy: 柱栦阫Ƈʥ椹 + runAsGroup: -2037509302018919599 + runAsNonRoot: true + runAsUser: -3184085461588437523 seLinuxOptions: - level: "401" - role: "399" - type: "400" - user: "398" + level: "403" + role: "401" + type: "402" + user: "400" seccompProfile: - localhostProfile: "407" - type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ + localhostProfile: "409" + type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i supplementalGroups: - - 2402603282459663167 + - -885564056413671854 sysctls: - - name: "405" - value: "406" + - name: "407" + value: "408" windowsOptions: - gmsaCredentialSpec: "403" - gmsaCredentialSpecName: "402" + gmsaCredentialSpec: "405" + gmsaCredentialSpecName: "404" hostProcess: true - runAsUserName: "404" - serviceAccount: "396" - serviceAccountName: "395" - setHostnameAsFQDN: true + runAsUserName: "406" + serviceAccount: "398" + serviceAccountName: "397" + setHostnameAsFQDN: false shareProcessNamespace: true - subdomain: "410" - terminationGracePeriodSeconds: 3296766428578159624 + subdomain: "412" + terminationGracePeriodSeconds: -1390311149947249535 tolerations: - - effect: '慰x:' - key: "476" - operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ - tolerationSeconds: 3362400521064014157 - value: "477" + - key: "478" + operator: ŭʔb'?舍ȃʥx臥]å摞 + tolerationSeconds: 3053978290188957517 + value: "479" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - operator: In + - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b + operator: NotIn values: - - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe + - H1z..j_.r3--T matchLabels: - 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a - maxSkew: -174245111 - topologyKey: "486" - whenUnsatisfiable: "" + H_55..--E3_2D-1DW__o_-.k: "7" + maxSkew: 1486667065 + topologyKey: "488" + whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 volumes: - awsElasticBlockStore: fsType: "49" @@ -894,6 +892,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: 'âĺɗŹ倗S晒嶗UÐ_ƮA攤/ɸɎ ': "648" @@ -1051,20 +1053,20 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& + type: șa汸<ƋlɋN磋镮ȺPÈ status: - collisionCount: 1714841371 + collisionCount: -2081947001 conditions: - - lastTransitionTime: "2124-10-20T09:17:54Z" - message: "494" - reason: "493" - status: "" - type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ - currentNumberScheduled: -69450448 - desiredNumberScheduled: 17761427 - numberAvailable: 171558604 - numberMisscheduled: -212409426 - numberReady: 1329525670 - numberUnavailable: -161888815 - observedGeneration: -721999650192865404 - updatedNumberScheduled: 1162680985 + - lastTransitionTime: "2082-11-07T20:44:23Z" + message: "496" + reason: "495" + status: :$ + type: 薑Ȣ#闬輙怀¹bCũw¼ ǫ + currentNumberScheduled: -900194589 + desiredNumberScheduled: 1576197985 + numberAvailable: -1556190810 + numberMisscheduled: 295177820 + numberReady: -702578810 + numberUnavailable: -487001726 + observedGeneration: -1989254568785172688 + updatedNumberScheduled: -855944448 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 283ac64273c..f0d6e901260 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1536,34 +1541,33 @@ } }, "strategy": { - "type": "卍睊", + "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -212999359, - "revisionHistoryLimit": -866496758, - "paused": true, - "progressDeadlineSeconds": 1499408621 + "minReadySeconds": 2115665292, + "revisionHistoryLimit": 237456757, + "progressDeadlineSeconds": -1402499324 }, "status": { - "observedGeneration": 4061426462677728903, - "replicas": 208086661, - "updatedReplicas": 1598926042, - "readyReplicas": -1813284990, - "availableReplicas": 1659111388, - "unavailableReplicas": -717288184, + "observedGeneration": -8619941635428506201, + "replicas": -380889943, + "updatedReplicas": 466048730, + "readyReplicas": -601845829, + "availableReplicas": 426527089, + "unavailableReplicas": -1890403855, "conditions": [ { - "type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ", - "status": "嘯龡班悦ʀ臺穔", - "lastUpdateTime": "2294-09-29T07:15:12Z", - "lastTransitionTime": "2196-06-26T01:09:43Z", - "reason": "484", - "message": "485" + "type": "绰爪qĖĖȠ姓ȇ\u003e尪璎妽", + "status": "ĈȖ董缞濪葷cŲ", + "lastUpdateTime": "1999-05-06T18:42:43Z", + "lastTransitionTime": "2109-09-25T13:37:56Z", + "reason": "491", + "message": "492" } ], - "collisionCount": 16994744 + "collisionCount": -2046786896 } } \ 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 a0a702161ad..34e44f87601 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb differ 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 a94db877bb3..12c3e335e08 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 @@ -31,11 +31,10 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -212999359 - paused: true - progressDeadlineSeconds: 1499408621 + minReadySeconds: 2115665292 + progressDeadlineSeconds: -1402499324 replicas: 896585016 - revisionHistoryLimit: -866496758 + revisionHistoryLimit: 237456757 selector: matchExpressions: - 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 @@ -46,7 +45,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 卍睊 + type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj template: metadata: annotations: @@ -79,730 +78,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů尪璎妽 + observedGeneration: -8619941635428506201 + readyReplicas: -601845829 + replicas: -380889943 + unavailableReplicas: -1890403855 + updatedReplicas: 466048730 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 8ad2a97cb67..0befb531a03 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 @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,317 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 424236719, - "containerPort": -2031266553, - "protocol": "呝TG;邪", - "hostIP": "184" + "name": "186", + "hostPort": 747521320, + "containerPort": 859639931, + "protocol": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", + "name": "189", "optional": true }, "secretRef": { - "name": "187", + "name": "190", "optional": true } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "486" + "containerName": "195", + "resource": "196", + "divisor": "663" }, "configMapKeyRef": { - "name": "194", - "key": "195", + "name": "197", + "key": "198", "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩": "47" - }, - "requests": { - "榜VƋZ1": "932" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": 2035347577, - "host": "206", - "scheme": "姣\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": -1498229293, - "host": "209" - }, - "initialDelaySeconds": -1155992025, - "timeoutSeconds": -194343002, - "periodSeconds": -850069363, - "successThreshold": 918929368, - "failureThreshold": 1016277253, - "terminationGracePeriodSeconds": -8520337362162976488 - }, - "readinessProbe": { - "exec": { - "command": [ - "210" - ] - }, - "httpGet": { - "path": "211", - "port": "212", - "host": "213", - "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 538852927, - "host": "216" - }, - "initialDelaySeconds": -407545915, - "timeoutSeconds": 902535764, - "periodSeconds": 716842280, - "successThreshold": 1479266199, - "failureThreshold": 163512962, - "terminationGracePeriodSeconds": -8521017368802772029 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": 1623772781, - "host": "219", - "scheme": "UÐ_ƮA攤/ɸɎ", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": "222", - "host": "223" - }, - "initialDelaySeconds": 1054858106, - "timeoutSeconds": 232569106, - "periodSeconds": -1150474479, - "successThreshold": 744319626, - "failureThreshold": -2107743490, - "terminationGracePeriodSeconds": 8569885835306406695 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "224" - ] - }, - "httpGet": { - "path": "225", - "port": 896430536, - "host": "226", - "scheme": "罴ņ螡źȰ", - "httpHeaders": [ - { - "name": "227", - "value": "228" - } - ] - }, - "tcpSocket": { - "port": 513341278, - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 1451056156, - "host": "232", - "scheme": "uʎȺ眖R#", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": "235", - "host": "236" - } - } - }, - "terminationMessagePath": "237", - "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", - "imagePullPolicy": "1ØœȠƬQg鄠", - "securityContext": { - "capabilities": { - "add": [ - "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" - ], - "drop": [ - "W:ĸ輦唊#v" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "238", - "role": "239", - "type": "240", - "level": "241" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "242", - "gmsaCredentialSpec": "243", - "runAsUserName": "244", - "hostProcess": true - }, - "runAsUser": 7510677649797968740, - "runAsGroup": -1629447906545846003, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "8T 苧yñKJɐ扵Gƚ绤fʀ", - "seccompProfile": { - "type": "腩墺Ò媁荭gw忊|E剒蔞|表徶", - "localhostProfile": "245" - } - }, - "stdin": true - } - ], - "containers": [ - { - "name": "246", - "image": "247", - "command": [ - "248" - ], - "args": [ - "249" - ], - "workingDir": "250", - "ports": [ - { - "name": "251", - "hostPort": 59244165, - "containerPort": -614161319, - "protocol": "Ȩ\u003c6鄰簳°Ļǟi\u0026", - "hostIP": "252" - } - ], - "envFrom": [ - { - "prefix": "253", - "configMapRef": { - "name": "254", - "optional": false - }, - "secretRef": { - "name": "255", - "optional": false - } - } - ], - "env": [ - { - "name": "256", - "value": "257", - "valueFrom": { - "fieldRef": { - "apiVersion": "258", - "fieldPath": "259" - }, - "resourceFieldRef": { - "containerName": "260", - "resource": "261", - "divisor": "861" - }, - "configMapKeyRef": { - "name": "262", - "key": "263", - "optional": true - }, - "secretKeyRef": { - "name": "264", - "key": "265", + "name": "199", + "key": "200", "optional": false } } @@ -768,512 +515,769 @@ ], "resources": { "limits": { - "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ": "178" + "ſ盷": "532" }, "requests": { - "Ö闊 鰔澝qV": "752" + "[Řż丩": "47" } }, "volumeMounts": [ { - "name": "266", - "readOnly": true, - "mountPath": "267", - "subPath": "268", - "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", - "subPathExpr": "269" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "VƋZ1Ůđ眊ľǎɳ,ǿ飏", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "270", - "devicePath": "271" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "272" + "207" ] }, "httpGet": { - "path": "273", - "port": "274", - "host": "275", - "scheme": "冓鍓贯", + "path": "208", + "port": 1214895765, + "host": "209", + "scheme": "悖ȩ0Ƹ[Ęİ榌U", "httpHeaders": [ { - "name": "276", - "value": "277" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "278", - "host": "279" + "port": -187060941, + "host": "212" }, - "initialDelaySeconds": 1290950685, - "timeoutSeconds": 12533543, - "periodSeconds": 1058960779, - "successThreshold": -2133441986, - "failureThreshold": 472742933, - "terminationGracePeriodSeconds": 217739466937954194 + "initialDelaySeconds": -442393168, + "timeoutSeconds": -307373517, + "periodSeconds": 1109079597, + "successThreshold": -646728130, + "failureThreshold": 1684643131, + "terminationGracePeriodSeconds": 5055443896475056676 }, "readinessProbe": { "exec": { "command": [ - "280" + "213" ] }, "httpGet": { - "path": "281", - "port": 1401790459, - "host": "282", - "scheme": "ǵɐ鰥Z", + "path": "214", + "port": "215", + "host": "216", + "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨", "httpHeaders": [ { - "name": "283", - "value": "284" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -1103045151, - "host": "285" + "port": "219", + "host": "220" }, - "initialDelaySeconds": -614098868, - "timeoutSeconds": 234253676, - "periodSeconds": 846286700, - "successThreshold": 1080545253, - "failureThreshold": 1843491416, - "terminationGracePeriodSeconds": -5175286970144973961 + "initialDelaySeconds": 1885896895, + "timeoutSeconds": -1232888129, + "periodSeconds": -1682044542, + "successThreshold": 1182477686, + "failureThreshold": -503805926, + "terminationGracePeriodSeconds": 332054723335023688 }, "startupProbe": { "exec": { "command": [ - "286" + "221" ] }, "httpGet": { - "path": "287", - "port": "288", - "host": "289", - "scheme": "芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj", + "path": "222", + "port": "223", + "host": "224", + "scheme": "«丯Ƙ枛牐ɺ皚", "httpHeaders": [ { - "name": "290", - "value": "291" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": -560238386, - "host": "292" + "port": -1934111455, + "host": "227" }, - "initialDelaySeconds": 1658749995, - "timeoutSeconds": -938421813, - "periodSeconds": 809683205, - "successThreshold": -1615316902, - "failureThreshold": -793616601, - "terminationGracePeriodSeconds": -2242897509815578930 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438, + "terminationGracePeriodSeconds": 4116652091516790056 }, "lifecycle": { "postStart": { "exec": { "command": [ - "293" + "228" ] }, "httpGet": { - "path": "294", - "port": -1699531929, - "host": "295", - "scheme": "Z涬P­蜷ɔ幩šeS", + "path": "229", + "port": -1196874390, + "host": "230", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "296", - "value": "297" + "name": "231", + "value": "232" } ] }, "tcpSocket": { - "port": 155090390, - "host": "298" + "port": -498930176, + "host": "233" } }, "preStop": { "exec": { "command": [ - "299" + "234" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "235", + "port": "236", + "host": "237", + "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "238", + "value": "239" } ] }, "tcpSocket": { - "port": -727263154, - "host": "305" + "port": "240", + "host": "241" } } }, - "terminationMessagePath": "306", - "terminationMessagePolicy": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "imagePullPolicy": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "terminationMessagePath": "242", + "terminationMessagePolicy": "?$矡ȶ网棊ʢ", + "imagePullPolicy": "ʎȺ眖R#", "securityContext": { "capabilities": { "add": [ - ")DŽ髐njʉBn(fǂ" + "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ" ], "drop": [ - "曣ŋayåe躒訙" + "" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "307", - "role": "308", - "type": "309", - "level": "310" + "user": "243", + "role": "244", + "type": "245", + "level": "246" }, "windowsOptions": { - "gmsaCredentialSpecName": "311", - "gmsaCredentialSpec": "312", - "runAsUserName": "313", - "hostProcess": true + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": false }, - "runAsUser": 1083662227773909466, - "runAsGroup": 6245571390016329382, + "runAsUser": -2529737859863639391, + "runAsGroup": 7694930383795602762, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "allowPrivilegeEscalation": true, + "procMount": "\u003e郵[+扴ȨŮ", "seccompProfile": { - "type": "|蕎'佉賞ǧ", - "localhostProfile": "314" + "type": "朷Ǝ膯ljVX1虊谇", + "localhostProfile": "250" } }, - "stdin": true + "stdin": true, + "tty": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "315", - "image": "316", + "name": "251", + "image": "252", "command": [ - "317" + "253" ], "args": [ - "318" + "254" ], - "workingDir": "319", + "workingDir": "255", "ports": [ { - "name": "320", - "hostPort": -1920304485, - "containerPort": -1842062977, - "protocol": "輔3璾ėȜv1b繐汚磉反-n覦", - "hostIP": "321" + "name": "256", + "hostPort": 1381579966, + "containerPort": -1418092595, + "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x", + "hostIP": "257" } ], "envFrom": [ { - "prefix": "322", + "prefix": "258", "configMapRef": { - "name": "323", + "name": "259", "optional": true }, "secretRef": { - "name": "324", + "name": "260", "optional": true } } ], "env": [ { - "name": "325", - "value": "326", + "name": "261", + "value": "262", "valueFrom": { "fieldRef": { - "apiVersion": "327", - "fieldPath": "328" + "apiVersion": "263", + "fieldPath": "264" }, "resourceFieldRef": { - "containerName": "329", - "resource": "330", - "divisor": "992" + "containerName": "265", + "resource": "266", + "divisor": "894" }, "configMapKeyRef": { - "name": "331", - "key": "332", + "name": "267", + "key": "268", "optional": true }, "secretKeyRef": { - "name": "333", - "key": "334", - "optional": true + "name": "269", + "key": "270", + "optional": false } } } ], "resources": { "limits": { - "ʨIk(dŊiɢzĮ蛋I滞": "394" + "W\u003c敄lu|榝$î.Ȏ": "546" }, "requests": { - "ɞȥ}礤铟怖ý萜Ǖ": "305" + "剒蔞|表": "379" } }, "volumeMounts": [ { - "name": "335", + "name": "271", "readOnly": true, - "mountPath": "336", - "subPath": "337", - "mountPropagation": "Ƒĝ®EĨǔvÄÚ×p鬷m", - "subPathExpr": "338" + "mountPath": "272", + "subPath": "273", + "mountPropagation": "朦 wƯ貾坢'跩", + "subPathExpr": "274" } ], "volumeDevices": [ { - "name": "339", - "devicePath": "340" + "name": "275", + "devicePath": "276" } ], "livenessProbe": { "exec": { "command": [ - "341" + "277" ] }, "httpGet": { - "path": "342", - "port": 1529027685, - "host": "343", - "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", + "path": "278", + "port": -1471289102, + "host": "279", + "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "280", + "value": "281" } ] }, "tcpSocket": { - "port": -1912967242, - "host": "346" + "port": 113873869, + "host": "282" }, - "initialDelaySeconds": -2106399359, - "timeoutSeconds": 1443270783, - "periodSeconds": -1038975198, - "successThreshold": 1821835340, - "failureThreshold": 2046765799, - "terminationGracePeriodSeconds": -6946775447206795219 + "initialDelaySeconds": -1421951296, + "timeoutSeconds": 878005329, + "periodSeconds": -1244119841, + "successThreshold": 1235694147, + "failureThreshold": 348370746, + "terminationGracePeriodSeconds": 2011630253582325853 }, "readinessProbe": { "exec": { "command": [ - "347" + "283" ] }, "httpGet": { - "path": "348", - "port": "349", - "host": "350", - "scheme": "Ƒ[澔", + "path": "284", + "port": 1907998540, + "host": "285", + "scheme": ",ŕ", "httpHeaders": [ { - "name": "351", - "value": "352" + "name": "286", + "value": "287" } ] }, "tcpSocket": { - "port": 1288391156, - "host": "353" + "port": "288", + "host": "289" }, - "initialDelaySeconds": -952255430, - "timeoutSeconds": 1568034275, - "periodSeconds": -824007302, - "successThreshold": -359713104, - "failureThreshold": 1671084780, - "terminationGracePeriodSeconds": 1571605531283019612 + "initialDelaySeconds": -253326525, + "timeoutSeconds": 567263590, + "periodSeconds": 887319241, + "successThreshold": 1559618829, + "failureThreshold": 1156888068, + "terminationGracePeriodSeconds": -5566612115749133989 }, "startupProbe": { "exec": { "command": [ - "354" + "290" ] }, "httpGet": { - "path": "355", - "port": -514169648, - "host": "356", - "scheme": "\u0026疀", + "path": "291", + "port": 1315054653, + "host": "292", + "scheme": "蚃ɣľ)酊龨δ摖ȱ", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": "295", + "host": "296" }, - "initialDelaySeconds": -39292476, - "timeoutSeconds": 801902541, - "periodSeconds": -1312249623, - "successThreshold": -1089435479, - "failureThreshold": -1031303729, - "terminationGracePeriodSeconds": -7317946572666008364 + "initialDelaySeconds": 1905181464, + "timeoutSeconds": -1730959016, + "periodSeconds": 1272940694, + "successThreshold": -385597677, + "failureThreshold": 422133388, + "terminationGracePeriodSeconds": 8385745044578923915 }, "lifecycle": { "postStart": { "exec": { "command": [ - "361" + "297" ] }, "httpGet": { - "path": "362", - "port": 1445923603, - "host": "363", - "scheme": "殆诵H玲鑠ĭ$#卛8ð仁Q", + "path": "298", + "port": "299", + "host": "300", + "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", "httpHeaders": [ { - "name": "364", - "value": "365" + "name": "301", + "value": "302" } ] }, "tcpSocket": { - "port": "366", - "host": "367" + "port": 802134138, + "host": "303" } }, "preStop": { "exec": { "command": [ - "368" + "304" ] }, "httpGet": { - "path": "369", - "port": "370", - "host": "371", - "scheme": "杧ż鯀1'", + "path": "305", + "port": -126958936, + "host": "306", + "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "httpHeaders": [ { - "name": "372", - "value": "373" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": 1297979953, - "host": "374" + "port": "309", + "host": "310" } } }, - "terminationMessagePath": "375", - "terminationMessagePolicy": "ǘ炙", - "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", + "terminationMessagePath": "311", + "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮", "securityContext": { "capabilities": { "add": [ - "鬬$矐_敕ű嵞嬯t{Eɾ" + "嘢4ʗN,丽饾| 鞤ɱďW賁" ], "drop": [ - "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" + "ɭɪǹ0衷," ] }, "privileged": true, "seLinuxOptions": { - "user": "376", - "role": "377", - "type": "378", - "level": "379" + "user": "312", + "role": "313", + "type": "314", + "level": "315" }, "windowsOptions": { - "gmsaCredentialSpecName": "380", - "gmsaCredentialSpec": "381", - "runAsUserName": "382", + "gmsaCredentialSpecName": "316", + "gmsaCredentialSpec": "317", + "runAsUserName": "318", "hostProcess": true }, - "runAsUser": 4224635496843945227, - "runAsGroup": 73764735411458498, + "runAsUser": -1119183212148951030, + "runAsGroup": -7146044409185304665, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "s44矕Ƈè", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "w妕眵笭/9崍h趭(娕", "seccompProfile": { - "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", - "localhostProfile": "383" + "type": "E增猍", + "localhostProfile": "319" + } + } + } + ], + "ephemeralContainers": [ + { + "name": "320", + "image": "321", + "command": [ + "322" + ], + "args": [ + "323" + ], + "workingDir": "324", + "ports": [ + { + "name": "325", + "hostPort": 601942575, + "containerPort": -1320027474, + "protocol": "Ƶf", + "hostIP": "326" + } + ], + "envFrom": [ + { + "prefix": "327", + "configMapRef": { + "name": "328", + "optional": true + }, + "secretRef": { + "name": "329", + "optional": true + } + } + ], + "env": [ + { + "name": "330", + "value": "331", + "valueFrom": { + "fieldRef": { + "apiVersion": "332", + "fieldPath": "333" + }, + "resourceFieldRef": { + "containerName": "334", + "resource": "335", + "divisor": "179" + }, + "configMapKeyRef": { + "name": "336", + "key": "337", + "optional": false + }, + "secretKeyRef": { + "name": "338", + "key": "339", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "阎l": "464" + }, + "requests": { + "'佉": "633" + } + }, + "volumeMounts": [ + { + "name": "340", + "mountPath": "341", + "subPath": "342", + "mountPropagation": "(ť1ùfŭƽ", + "subPathExpr": "343" + } + ], + "volumeDevices": [ + { + "name": "344", + "devicePath": "345" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "346" + ] + }, + "httpGet": { + "path": "347", + "port": -684167223, + "host": "348", + "scheme": "1b", + "httpHeaders": [ + { + "name": "349", + "value": "350" + } + ] + }, + "tcpSocket": { + "port": "351", + "host": "352" + }, + "initialDelaySeconds": -47594442, + "timeoutSeconds": -2064284357, + "periodSeconds": 725624946, + "successThreshold": -34803208, + "failureThreshold": -313085430, + "terminationGracePeriodSeconds": -7686796864837350582 + }, + "readinessProbe": { + "exec": { + "command": [ + "353" + ] + }, + "httpGet": { + "path": "354", + "port": 1611386356, + "host": "355", + "scheme": "ɼ搳ǭ濑箨ʨIk(", + "httpHeaders": [ + { + "name": "356", + "value": "357" + } + ] + }, + "tcpSocket": { + "port": 2115799218, + "host": "358" + }, + "initialDelaySeconds": 1984241264, + "timeoutSeconds": -758033170, + "periodSeconds": -487434422, + "successThreshold": -370404018, + "failureThreshold": -1844150067, + "terminationGracePeriodSeconds": 1778358283914418699 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "焬CQm坊柩", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": "365", + "host": "366" + }, + "initialDelaySeconds": -135823101, + "timeoutSeconds": -1345219897, + "periodSeconds": 1141812777, + "successThreshold": -1830926023, + "failureThreshold": -320410537, + "terminationGracePeriodSeconds": 8766190045617353809 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "367" + ] + }, + "httpGet": { + "path": "368", + "port": "369", + "host": "370", + "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj", + "httpHeaders": [ + { + "name": "371", + "value": "372" + } + ] + }, + "tcpSocket": { + "port": 1333166203, + "host": "373" + } + }, + "preStop": { + "exec": { + "command": [ + "374" + ] + }, + "httpGet": { + "path": "375", + "port": 758604605, + "host": "376", + "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" + } + } + }, + "terminationMessagePath": "381", + "terminationMessagePolicy": "釼aTGÒ鵌", + "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ", + "securityContext": { + "capabilities": { + "add": [ + "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á" + ], + "drop": [ + "tl敷斢杧ż鯀" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "382", + "role": "383", + "type": "384", + "level": "385" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true + }, + "runAsUser": -3379825899840103887, + "runAsGroup": -6950412587983829837, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "seccompProfile": { + "type": "咑耖p^鏋蛹Ƚȿ醏g", + "localhostProfile": "389" } }, "tty": true, - "targetContainerName": "384" + "targetContainerName": "390" } ], - "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", - "terminationGracePeriodSeconds": -8335674866227004872, - "activeDeadlineSeconds": 3305070661619041050, - "dnsPolicy": "+Œ9两", + "restartPolicy": "飂廤Ƌʙcx", + "terminationGracePeriodSeconds": -4767735291842597991, + "activeDeadlineSeconds": -7888525810745339742, + "dnsPolicy": "h`職铳s44矕Ƈ", "nodeSelector": { - "385": "386" + "391": "392" }, - "serviceAccountName": "387", - "serviceAccount": "388", - "automountServiceAccountToken": false, - "nodeName": "389", - "hostPID": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": true, + "nodeName": "395", + "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "390", - "role": "391", - "type": "392", - "level": "393" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "394", - "gmsaCredentialSpec": "395", - "runAsUserName": "396", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": 3438266910774132295, - "runAsGroup": 3230705132538051674, - "runAsNonRoot": true, + "runAsUser": 5422399684456852309, + "runAsGroup": -4636770370363077377, + "runAsNonRoot": false, "supplementalGroups": [ - -1600417733583164525 + -5728960352366086876 ], - "fsGroup": -3964669311891901178, + "fsGroup": 1712752437570220896, "sysctls": [ { - "name": "397", - "value": "398" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "ƴ4虵p", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "沥7uPƒw©ɴĶ烷Ľthp", - "localhostProfile": "399" + "type": "#", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "400" + "name": "406" } ], - "hostname": "401", - "subdomain": "402", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1285,19 @@ { "matchExpressions": [ { - "key": "403", - "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", + "key": "409", + "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3", "values": [ - "404" + "410" ] } ], "matchFields": [ { - "key": "405", - "operator": " ", + "key": "411", + "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", "values": [ - "406" + "412" ] } ] @@ -1302,23 +1306,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -5241849, + "weight": 687140791, "preference": { "matchExpressions": [ { - "key": "407", - "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "key": "413", + "operator": "ļǹʅŚO虀", "values": [ - "408" + "414" ] } ], "matchFields": [ { - "key": "409", - "operator": "[y#t(", + "key": "415", + "operator": "ɴĶ烷Ľthp像-觗裓6Ř", "values": [ - "410" + "416" ] } ] @@ -1331,30 +1335,30 @@ { "labelSelector": { "matchLabels": { - "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "417" + "423" ], - "topologyKey": "418", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" + "4eq5": "" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", - "operator": "DoesNotExist" + "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", + "operator": "Exists" } ] } @@ -1362,31 +1366,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -234140, + "weight": 888976270, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" + "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" }, "matchExpressions": [ { - "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", - "operator": "Exists" + "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0", + "operator": "In", + "values": [ + "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ" + ] } ] }, "namespaces": [ - "431" + "437" ], - "topologyKey": "432", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" + "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R" }, "matchExpressions": [ { - "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", - "operator": "DoesNotExist" + "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V", + "operator": "In", + "values": [ + "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7" + ] } ] } @@ -1399,32 +1409,29 @@ { "labelSelector": { "matchLabels": { - "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" + "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr" }, "matchExpressions": [ { - "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", - "operator": "In", - "values": [ - "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" - ] + "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", + "operator": "Exists" } ] }, "namespaces": [ - "445" + "451" ], - "topologyKey": "446", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" + "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" }, "matchExpressions": [ { - "key": "N7.81_-._-_8_.._._a9", + "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", "operator": "In", "values": [ - "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" ] } ] @@ -1433,31 +1440,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1276377114, + "weight": -1668452490, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" + "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t" }, "matchExpressions": [ { - "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", - "operator": "DoesNotExist" + "key": "6W74-R_Z_Tz.a3_Ho", + "operator": "Exists" } ] }, "namespaces": [ - "459" + "465" ], - "topologyKey": "460", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", - "operator": "DoesNotExist" + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", + "values": [ + "x3___-..f5-6x-_-o_6O_If-5_-_.F" + ] } ] } @@ -1466,89 +1476,89 @@ ] } }, - "schedulerName": "467", + "schedulerName": "473", "tolerations": [ { - "key": "468", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "469", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "474", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "475", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "470", + "ip": "476", "hostnames": [ - "471" + "477" ] } ], - "priorityClassName": "472", - "priority": 347613368, + "priorityClassName": "478", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "473" + "479" ], "searches": [ - "474" + "480" ], "options": [ { - "name": "475", - "value": "476" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "477", + "runtimeClassName": "483", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "478", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "484", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", - "operator": "NotIn", + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", "values": [ - "h.v._5.vB-.-7-.6Jv-86___3" + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } } }, "status": { - "replicas": 2106170541, - "fullyLabeledReplicas": 415168801, - "readyReplicas": 1448332644, - "availableReplicas": -2060941196, - "observedGeneration": 7426283174216567769, + "replicas": 1205668420, + "fullyLabeledReplicas": -1754098513, + "readyReplicas": -877836536, + "availableReplicas": 138992869, + "observedGeneration": -7169014491472696647, "conditions": [ { - "type": "犓`ɜɅco\\穜T睭憲Ħ焵i,ŋŨN", - "status": "\u003c暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ\u003e尪璎", - "lastTransitionTime": "2597-11-21T15:14:16Z", - "reason": "485", - "message": "486" + "type": "零șPî壣V礆á¤拈tY圻醆锛[", + "status": "嬜Š\u0026?鳢.ǀŭ瘢颦z疵", + "lastTransitionTime": "2455-07-16T22:37:15Z", + "reason": "491", + "message": "492" } ] } 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 e5a1ebe5a90..f74e9638f6f 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb differ 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 0fe545b38d6..be480ef7939 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 @@ -73,731 +73,733 @@ spec: selfLink: "29" uid: ʬ spec: - activeDeadlineSeconds: 3305070661619041050 + activeDeadlineSeconds: -7888525810745339742 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "407" - operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' + - key: "413" + operator: ļǹʅŚO虀 values: - - "408" + - "414" matchFields: - - key: "409" - operator: '[y#t(' + - key: "415" + operator: ɴĶ烷Ľthp像-觗裓6Ř values: - - "410" - weight: -5241849 + - "416" + weight: 687140791 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "403" - operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 + - key: "409" + operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3 values: - - "404" + - "410" matchFields: - - key: "405" - operator: ' ' + - key: "411" + operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿' values: - - "406" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s - operator: Exists + - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0 + operator: In + values: + - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ matchLabels: - 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n namespaceSelector: matchExpressions: - - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np - operator: DoesNotExist + - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V + operator: In + values: + - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7 matchLabels: - Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E + vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R namespaces: - - "431" - topologyKey: "432" - weight: -234140 + - "437" + topologyKey: "438" + weight: 888976270 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 namespaceSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr - operator: DoesNotExist + - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z + operator: Exists matchLabels: - 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g + 4eq5: "" namespaces: - - "417" - topologyKey: "418" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h - operator: DoesNotExist + - key: 6W74-R_Z_Tz.a3_Ho + operator: Exists matchLabels: - 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t namespaceSelector: matchExpressions: - - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 - operator: DoesNotExist + - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV + operator: In + values: + - x3___-..f5-6x-_-o_6O_If-5_-_.F matchLabels: - ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 - : I-._g_.._-hKc.OB_F_--.._m_-9 + h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i namespaces: - - "459" - topologyKey: "460" - weight: 1276377114 + - "465" + topologyKey: "466" + weight: -1668452490 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 - operator: In - values: - - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 + - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8 + operator: Exists matchLabels: - n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" + 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr namespaceSelector: matchExpressions: - - key: N7.81_-._-_8_.._._a9 + - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s operator: In values: - - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh + - V._qN__A_f_-B3_U__L.KH6K.RwsfI2 matchLabels: - m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT + u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E namespaces: - - "445" - topologyKey: "446" - automountServiceAccountToken: false + - "451" + topologyKey: "452" + automountServiceAccountToken: true containers: - args: - - "249" + - "254" command: - - "248" + - "253" env: - - name: "256" - value: "257" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "263" - name: "262" + key: "268" + name: "267" optional: true fieldRef: - apiVersion: "258" - fieldPath: "259" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "260" - divisor: "861" - resource: "261" + containerName: "265" + divisor: "894" + resource: "266" secretKeyRef: - key: "265" - name: "264" + key: "270" + name: "269" optional: false envFrom: - configMapRef: - name: "254" - optional: false - prefix: "253" + name: "259" + optional: true + prefix: "258" secretRef: - name: "255" - optional: false - image: "247" - imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ + name: "260" + optional: true + image: "252" + imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮 lifecycle: postStart: exec: command: - - "293" + - "297" httpGet: - host: "295" + host: "300" httpHeaders: - - name: "296" - value: "297" - path: "294" - port: -1699531929 - scheme: Z涬P­蜷ɔ幩šeS + - name: "301" + value: "302" + path: "298" + port: "299" + scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ tcpSocket: - host: "298" - port: 155090390 + host: "303" + port: 802134138 preStop: exec: command: - - "299" + - "304" httpGet: - host: "302" + host: "306" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "307" + value: "308" + path: "305" + port: -126958936 + scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 tcpSocket: - host: "305" - port: -727263154 + host: "310" + port: "309" livenessProbe: exec: command: - - "272" - failureThreshold: 472742933 + - "277" + failureThreshold: 348370746 httpGet: - host: "275" - httpHeaders: - - name: "276" - value: "277" - path: "273" - port: "274" - scheme: 冓鍓贯 - initialDelaySeconds: 1290950685 - periodSeconds: 1058960779 - successThreshold: -2133441986 - tcpSocket: host: "279" - port: "278" - terminationGracePeriodSeconds: 217739466937954194 - timeoutSeconds: 12533543 - name: "246" - ports: - - containerPort: -614161319 - hostIP: "252" - hostPort: 59244165 - name: "251" - protocol: Ȩ<6鄰簳°Ļǟi& - readinessProbe: - exec: - command: - - "280" - failureThreshold: 1843491416 - httpGet: + httpHeaders: + - name: "280" + value: "281" + path: "278" + port: -1471289102 + scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳 + initialDelaySeconds: -1421951296 + periodSeconds: -1244119841 + successThreshold: 1235694147 + tcpSocket: host: "282" - httpHeaders: - - name: "283" - value: "284" - path: "281" - port: 1401790459 - scheme: ǵɐ鰥Z - initialDelaySeconds: -614098868 - periodSeconds: 846286700 - successThreshold: 1080545253 - tcpSocket: + port: 113873869 + terminationGracePeriodSeconds: 2011630253582325853 + timeoutSeconds: 878005329 + name: "251" + ports: + - containerPort: -1418092595 + hostIP: "257" + hostPort: 1381579966 + name: "256" + protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x + readinessProbe: + exec: + command: + - "283" + failureThreshold: 1156888068 + httpGet: host: "285" - port: -1103045151 - terminationGracePeriodSeconds: -5175286970144973961 - timeoutSeconds: 234253676 - resources: - limits: - ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178" - requests: - Ö闊 鰔澝qV: "752" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - )DŽ髐njʉBn(fǂ - drop: - - 曣ŋayåe躒訙 - privileged: false - procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' - readOnlyRootFilesystem: false - runAsGroup: 6245571390016329382 - runAsNonRoot: true - runAsUser: 1083662227773909466 - seLinuxOptions: - level: "310" - role: "308" - type: "309" - user: "307" - seccompProfile: - localhostProfile: "314" - type: '|蕎''佉賞ǧ' - windowsOptions: - gmsaCredentialSpec: "312" - gmsaCredentialSpecName: "311" - hostProcess: true - runAsUserName: "313" - startupProbe: - exec: - command: - - "286" - failureThreshold: -793616601 - httpGet: + httpHeaders: + - name: "286" + value: "287" + path: "284" + port: 1907998540 + scheme: ',ŕ' + initialDelaySeconds: -253326525 + periodSeconds: 887319241 + successThreshold: 1559618829 + tcpSocket: host: "289" - httpHeaders: - - name: "290" - value: "291" - path: "287" port: "288" - scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj - initialDelaySeconds: 1658749995 - periodSeconds: 809683205 - successThreshold: -1615316902 - tcpSocket: - host: "292" - port: -560238386 - terminationGracePeriodSeconds: -2242897509815578930 - timeoutSeconds: -938421813 - stdin: true - terminationMessagePath: "306" - terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - volumeDevices: - - devicePath: "271" - name: "270" - volumeMounts: - - mountPath: "267" - mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î - name: "266" - readOnly: true - subPath: "268" - subPathExpr: "269" - workingDir: "250" - dnsConfig: - nameservers: - - "473" - options: - - name: "475" - value: "476" - searches: - - "474" - dnsPolicy: +Œ9两 - enableServiceLinks: false - ephemeralContainers: - - args: - - "318" - command: - - "317" - env: - - name: "325" - value: "326" - valueFrom: - configMapKeyRef: - key: "332" - name: "331" - optional: true - fieldRef: - apiVersion: "327" - fieldPath: "328" - resourceFieldRef: - containerName: "329" - divisor: "992" - resource: "330" - secretKeyRef: - key: "334" - name: "333" - optional: true - envFrom: - - configMapRef: - name: "323" - optional: true - prefix: "322" - secretRef: - name: "324" - optional: true - image: "316" - imagePullPolicy: ǰ詀ǿ忀oɎƺL - lifecycle: - postStart: - exec: - command: - - "361" - httpGet: - host: "363" - httpHeaders: - - name: "364" - value: "365" - path: "362" - port: 1445923603 - scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q - tcpSocket: - host: "367" - port: "366" - preStop: - exec: - command: - - "368" - httpGet: - host: "371" - httpHeaders: - - name: "372" - value: "373" - path: "369" - port: "370" - scheme: 杧ż鯀1' - tcpSocket: - host: "374" - port: 1297979953 - livenessProbe: - exec: - command: - - "341" - failureThreshold: 2046765799 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "342" - port: 1529027685 - scheme: żLj捲攻xƂ9阠$嬏wy¶熀 - initialDelaySeconds: -2106399359 - periodSeconds: -1038975198 - successThreshold: 1821835340 - tcpSocket: - host: "346" - port: -1912967242 - terminationGracePeriodSeconds: -6946775447206795219 - timeoutSeconds: 1443270783 - name: "315" - ports: - - containerPort: -1842062977 - hostIP: "321" - hostPort: -1920304485 - name: "320" - protocol: 輔3璾ėȜv1b繐汚磉反-n覦 - readinessProbe: - exec: - command: - - "347" - failureThreshold: 1671084780 - httpGet: - host: "350" - httpHeaders: - - name: "351" - value: "352" - path: "348" - port: "349" - scheme: Ƒ[澔 - initialDelaySeconds: -952255430 - periodSeconds: -824007302 - successThreshold: -359713104 - tcpSocket: - host: "353" - port: 1288391156 - terminationGracePeriodSeconds: 1571605531283019612 - timeoutSeconds: 1568034275 + terminationGracePeriodSeconds: -5566612115749133989 + timeoutSeconds: 567263590 resources: limits: - ʨIk(dŊiɢzĮ蛋I滞: "394" + W<敄lu|榝$î.Ȏ: "546" requests: - ɞȥ}礤铟怖ý萜Ǖ: "305" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 鬬$矐_敕ű嵞嬯t{Eɾ - drop: - - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - privileged: true - procMount: s44矕Ƈè - readOnlyRootFilesystem: false - runAsGroup: 73764735411458498 - runAsNonRoot: false - runAsUser: 4224635496843945227 - seLinuxOptions: - level: "379" - role: "377" - type: "378" - user: "376" - seccompProfile: - localhostProfile: "383" - type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 - windowsOptions: - gmsaCredentialSpec: "381" - gmsaCredentialSpecName: "380" - hostProcess: true - runAsUserName: "382" - startupProbe: - exec: - command: - - "354" - failureThreshold: -1031303729 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -514169648 - scheme: '&疀' - initialDelaySeconds: -39292476 - periodSeconds: -1312249623 - successThreshold: -1089435479 - tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: -7317946572666008364 - timeoutSeconds: 801902541 - targetContainerName: "384" - terminationMessagePath: "375" - terminationMessagePolicy: ǘ炙 - tty: true - volumeDevices: - - devicePath: "340" - name: "339" - volumeMounts: - - mountPath: "336" - mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m - name: "335" - readOnly: true - subPath: "337" - subPathExpr: "338" - workingDir: "319" - hostAliases: - - hostnames: - - "471" - ip: "470" - hostPID: true - hostname: "401" - imagePullSecrets: - - name: "400" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "486" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: true - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: 1ØœȠƬQg鄠 - lifecycle: - postStart: - exec: - command: - - "224" - httpGet: - host: "226" - httpHeaders: - - name: "227" - value: "228" - path: "225" - port: 896430536 - scheme: 罴ņ螡źȰ - tcpSocket: - host: "229" - port: 513341278 - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 1451056156 - scheme: uʎȺ眖R# - tcpSocket: - host: "236" - port: "235" - livenessProbe: - exec: - command: - - "204" - failureThreshold: 1016277253 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2035347577 - scheme: 姣>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾 - initialDelaySeconds: -1155992025 - periodSeconds: -850069363 - successThreshold: 918929368 - tcpSocket: - host: "209" - port: -1498229293 - terminationGracePeriodSeconds: -8520337362162976488 - timeoutSeconds: -194343002 - name: "178" - ports: - - containerPort: -2031266553 - hostIP: "184" - hostPort: 424236719 - name: "183" - protocol: 呝TG;邪 - readinessProbe: - exec: - command: - - "210" - failureThreshold: 163512962 - httpGet: - host: "213" - httpHeaders: - - name: "214" - value: "215" - path: "211" - port: "212" - scheme: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p - initialDelaySeconds: -407545915 - periodSeconds: 716842280 - successThreshold: 1479266199 - tcpSocket: - host: "216" - port: 538852927 - terminationGracePeriodSeconds: -8521017368802772029 - timeoutSeconds: 902535764 - resources: - limits: - 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩: "47" - requests: - 榜VƋZ1: "932" + 剒蔞|表: "379" securityContext: allowPrivilegeEscalation: true capabilities: add: - - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + - 嘢4ʗN,丽饾| 鞤ɱďW賁 drop: - - W:ĸ輦唊#v - privileged: false - procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ + - ɭɪǹ0衷, + privileged: true + procMount: w妕眵笭/9崍h趭(娕 readOnlyRootFilesystem: true - runAsGroup: -1629447906545846003 - runAsNonRoot: true - runAsUser: 7510677649797968740 + runAsGroup: -7146044409185304665 + runAsNonRoot: false + runAsUser: -1119183212148951030 seLinuxOptions: - level: "241" - role: "239" - type: "240" - user: "238" + level: "315" + role: "313" + type: "314" + user: "312" seccompProfile: - localhostProfile: "245" - type: 腩墺Ò媁荭gw忊|E剒蔞|表徶 + localhostProfile: "319" + type: E增猍 windowsOptions: - gmsaCredentialSpec: "243" - gmsaCredentialSpecName: "242" + gmsaCredentialSpec: "317" + gmsaCredentialSpecName: "316" hostProcess: true - runAsUserName: "244" + runAsUserName: "318" startupProbe: exec: command: - - "217" - failureThreshold: -2107743490 + - "290" + failureThreshold: 422133388 httpGet: - host: "219" + host: "292" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: 1623772781 - scheme: UÐ_ƮA攤/ɸɎ - initialDelaySeconds: 1054858106 - periodSeconds: -1150474479 - successThreshold: 744319626 + - name: "293" + value: "294" + path: "291" + port: 1315054653 + scheme: 蚃ɣľ)酊龨δ摖ȱ + initialDelaySeconds: 1905181464 + periodSeconds: 1272940694 + successThreshold: -385597677 tcpSocket: - host: "223" - port: "222" - terminationGracePeriodSeconds: 8569885835306406695 - timeoutSeconds: 232569106 - stdin: true - terminationMessagePath: "237" - terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + host: "296" + port: "295" + terminationGracePeriodSeconds: 8385745044578923915 + timeoutSeconds: -1730959016 + terminationMessagePath: "311" + terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "199" - mountPropagation: 瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę - name: "198" + - mountPath: "272" + mountPropagation: 朦 wƯ貾坢'跩 + name: "271" readOnly: true - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "389" + subPath: "273" + subPathExpr: "274" + workingDir: "255" + dnsConfig: + nameservers: + - "479" + options: + - name: "481" + value: "482" + searches: + - "480" + dnsPolicy: h`職铳s44矕Ƈ + enableServiceLinks: false + ephemeralContainers: + - args: + - "323" + command: + - "322" + env: + - name: "330" + value: "331" + valueFrom: + configMapKeyRef: + key: "337" + name: "336" + optional: false + fieldRef: + apiVersion: "332" + fieldPath: "333" + resourceFieldRef: + containerName: "334" + divisor: "179" + resource: "335" + secretKeyRef: + key: "339" + name: "338" + optional: false + envFrom: + - configMapRef: + name: "328" + optional: true + prefix: "327" + secretRef: + name: "329" + optional: true + image: "321" + imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ + lifecycle: + postStart: + exec: + command: + - "367" + httpGet: + host: "370" + httpHeaders: + - name: "371" + value: "372" + path: "368" + port: "369" + scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj' + tcpSocket: + host: "373" + port: 1333166203 + preStop: + exec: + command: + - "374" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "375" + port: 758604605 + scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 + tcpSocket: + host: "380" + port: "379" + livenessProbe: + exec: + command: + - "346" + failureThreshold: -313085430 + httpGet: + host: "348" + httpHeaders: + - name: "349" + value: "350" + path: "347" + port: -684167223 + scheme: 1b + initialDelaySeconds: -47594442 + periodSeconds: 725624946 + successThreshold: -34803208 + tcpSocket: + host: "352" + port: "351" + terminationGracePeriodSeconds: -7686796864837350582 + timeoutSeconds: -2064284357 + name: "320" + ports: + - containerPort: -1320027474 + hostIP: "326" + hostPort: 601942575 + name: "325" + protocol: Ƶf + readinessProbe: + exec: + command: + - "353" + failureThreshold: -1844150067 + httpGet: + host: "355" + httpHeaders: + - name: "356" + value: "357" + path: "354" + port: 1611386356 + scheme: ɼ搳ǭ濑箨ʨIk( + initialDelaySeconds: 1984241264 + periodSeconds: -487434422 + successThreshold: -370404018 + tcpSocket: + host: "358" + port: 2115799218 + terminationGracePeriodSeconds: 1778358283914418699 + timeoutSeconds: -758033170 + resources: + limits: + 阎l: "464" + requests: + '''佉': "633" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á + drop: + - tl敷斢杧ż鯀 + privileged: true + procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰 + readOnlyRootFilesystem: false + runAsGroup: -6950412587983829837 + runAsNonRoot: true + runAsUser: -3379825899840103887 + seLinuxOptions: + level: "385" + role: "383" + type: "384" + user: "382" + seccompProfile: + localhostProfile: "389" + type: 咑耖p^鏋蛹Ƚȿ醏g + windowsOptions: + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" + startupProbe: + exec: + command: + - "359" + failureThreshold: -320410537 + httpGet: + host: "362" + httpHeaders: + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: 焬CQm坊柩 + initialDelaySeconds: -135823101 + periodSeconds: 1141812777 + successThreshold: -1830926023 + tcpSocket: + host: "366" + port: "365" + terminationGracePeriodSeconds: 8766190045617353809 + timeoutSeconds: -1345219897 + targetContainerName: "390" + terminationMessagePath: "381" + terminationMessagePolicy: 釼aTGÒ鵌 + tty: true + volumeDevices: + - devicePath: "345" + name: "344" + volumeMounts: + - mountPath: "341" + mountPropagation: (ť1ùfŭƽ + name: "340" + subPath: "342" + subPathExpr: "343" + workingDir: "324" + hostAliases: + - hostnames: + - "477" + ip: "476" + hostIPC: true + hostname: "407" + imagePullSecrets: + - name: "406" + initContainers: + - args: + - "184" + command: + - "183" + env: + - name: "191" + value: "192" + valueFrom: + configMapKeyRef: + key: "198" + name: "197" + optional: true + fieldRef: + apiVersion: "193" + fieldPath: "194" + resourceFieldRef: + containerName: "195" + divisor: "663" + resource: "196" + secretKeyRef: + key: "200" + name: "199" + optional: false + envFrom: + - configMapRef: + name: "189" + optional: true + prefix: "188" + secretRef: + name: "190" + optional: true + image: "182" + imagePullPolicy: ʎȺ眖R# + lifecycle: + postStart: + exec: + command: + - "228" + httpGet: + host: "230" + httpHeaders: + - name: "231" + value: "232" + path: "229" + port: -1196874390 + scheme: S晒嶗UÐ_ƮA攤 + tcpSocket: + host: "233" + port: -498930176 + preStop: + exec: + command: + - "234" + httpGet: + host: "237" + httpHeaders: + - name: "238" + value: "239" + path: "235" + port: "236" + scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡 + tcpSocket: + host: "241" + port: "240" + livenessProbe: + exec: + command: + - "207" + failureThreshold: 1684643131 + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "208" + port: 1214895765 + scheme: 悖ȩ0Ƹ[Ęİ榌U + initialDelaySeconds: -442393168 + periodSeconds: 1109079597 + successThreshold: -646728130 + tcpSocket: + host: "212" + port: -187060941 + terminationGracePeriodSeconds: 5055443896475056676 + timeoutSeconds: -307373517 + name: "181" + ports: + - containerPort: 859639931 + hostIP: "187" + hostPort: 747521320 + name: "186" + protocol: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + readinessProbe: + exec: + command: + - "213" + failureThreshold: -503805926 + httpGet: + host: "216" + httpHeaders: + - name: "217" + value: "218" + path: "214" + port: "215" + scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨 + initialDelaySeconds: 1885896895 + periodSeconds: -1682044542 + successThreshold: 1182477686 + tcpSocket: + host: "220" + port: "219" + terminationGracePeriodSeconds: 332054723335023688 + timeoutSeconds: -1232888129 + resources: + limits: + ſ盷: "532" + requests: + '[Řż丩': "47" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + drop: + - "" + privileged: true + procMount: '>郵[+扴ȨŮ' + readOnlyRootFilesystem: false + runAsGroup: 7694930383795602762 + runAsNonRoot: true + runAsUser: -2529737859863639391 + seLinuxOptions: + level: "246" + role: "244" + type: "245" + user: "243" + seccompProfile: + localhostProfile: "250" + type: 朷Ǝ膯ljVX1虊谇 + windowsOptions: + gmsaCredentialSpec: "248" + gmsaCredentialSpecName: "247" + hostProcess: false + runAsUserName: "249" + startupProbe: + exec: + command: + - "221" + failureThreshold: 59664438 + httpGet: + host: "224" + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: «丯Ƙ枛牐ɺ皚 + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 + tcpSocket: + host: "227" + port: -1934111455 + terminationGracePeriodSeconds: 4116652091516790056 + timeoutSeconds: 1146016612 + stdin: true + terminationMessagePath: "242" + terminationMessagePolicy: ?$矡ȶ网棊ʢ + tty: true + volumeDevices: + - devicePath: "206" + name: "205" + volumeMounts: + - mountPath: "202" + mountPropagation: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "395" nodeSelector: - "385": "386" + "391": "392" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "472" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "478" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn - runtimeClassName: "477" - schedulerName: "467" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 飂廤Ƌʙcx + runtimeClassName: "483" + schedulerName: "473" securityContext: - fsGroup: -3964669311891901178 - fsGroupChangePolicy: ƴ4虵p - runAsGroup: 3230705132538051674 - runAsNonRoot: true - runAsUser: 3438266910774132295 + fsGroup: 1712752437570220896 + fsGroupChangePolicy: "" + runAsGroup: -4636770370363077377 + runAsNonRoot: false + runAsUser: 5422399684456852309 seLinuxOptions: - level: "393" - role: "391" - type: "392" - user: "390" + level: "399" + role: "397" + type: "398" + user: "396" seccompProfile: - localhostProfile: "399" - type: 沥7uPƒw©ɴĶ烷Ľthp + localhostProfile: "405" + type: '#' supplementalGroups: - - -1600417733583164525 + - -5728960352366086876 sysctls: - - name: "397" - value: "398" + - name: "403" + value: "404" windowsOptions: - gmsaCredentialSpec: "395" - gmsaCredentialSpecName: "394" + gmsaCredentialSpec: "401" + gmsaCredentialSpecName: "400" hostProcess: false - runAsUserName: "396" - serviceAccount: "388" - serviceAccountName: "387" - setHostnameAsFQDN: false + runAsUserName: "402" + serviceAccount: "394" + serviceAccountName: "393" + setHostnameAsFQDN: true shareProcessNamespace: true - subdomain: "402" - terminationGracePeriodSeconds: -8335674866227004872 + subdomain: "408" + terminationGracePeriodSeconds: -4767735291842597991 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "468" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "469" + - effect: '慰x:' + key: "474" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "475" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52 - operator: NotIn + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In values: - - h.v._5.vB-.-7-.6Jv-86___3 + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb - maxSkew: -484382570 - topologyKey: "478" - whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 + topologyKey: "484" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "49" @@ -896,6 +898,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: ŴĿ: "377" @@ -1049,14 +1055,14 @@ spec: storagePolicyName: "105" volumePath: "103" status: - availableReplicas: -2060941196 + availableReplicas: 138992869 conditions: - - lastTransitionTime: "2597-11-21T15:14:16Z" - message: "486" - reason: "485" - status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎 - type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN - fullyLabeledReplicas: 415168801 - observedGeneration: 7426283174216567769 - readyReplicas: 1448332644 - replicas: 2106170541 + - lastTransitionTime: "2455-07-16T22:37:15Z" + message: "492" + reason: "491" + status: 嬜Š&?鳢.ǀŭ瘢颦z疵 + type: 零șPî壣V礆á¤拈tY圻醆锛[ + fullyLabeledReplicas: -1754098513 + observedGeneration: -7169014491472696647 + readyReplicas: -877836536 + replicas: 1205668420 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 a103ccccd74..779f8e13d56 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1538,131 +1543,136 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "484", - "generateName": "485", - "namespace": "486", - "selfLink": "487", - "uid": "ʬÇ[輚趞ț@", - "resourceVersion": "17306677052996382890", - "generation": -7348861935573569087, - "creationTimestamp": "1982-10-30T18:37:00Z", - "deletionGracePeriodSeconds": -7914036355585221334, + "name": "491", + "generateName": "492", + "namespace": "493", + "selfLink": "494", + "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", + "resourceVersion": "932117408350471144", + "generation": 4446917721686139397, + "creationTimestamp": "2013-04-06T12:27:00Z", + "deletionGracePeriodSeconds": -2948232978388571762, "labels": { - "489": "490" + "496": "497" }, "annotations": { - "491": "492" + "498": "499" }, "ownerReferences": [ { - "apiVersion": "493", - "kind": "494", - "name": "495", - "uid": "\u003e泔Eëæ:\u003c堸眺舐嘯龡班悦ʀ臺穔", - "controller": true, - "blockOwnerDeletion": true + "apiVersion": "500", + "kind": "501", + "name": "502", + "uid": "憲Ħ焵i,ŋ", + "controller": false, + "blockOwnerDeletion": false } ], "finalizers": [ - "496" + "503" ], - "clusterName": "497", + "clusterName": "504", "managedFields": [ { - "manager": "498", - "operation": "ƥm粝ôD齆O#ȞM\u003c²彾Ǟʈɐ碓", - "apiVersion": "499", - "fieldsType": "500", - "subresource": "501" + "manager": "505", + "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", + "apiVersion": "506", + "fieldsType": "507", + "subresource": "508" } ] }, "spec": { "accessModes": [ - "uȒ\u003cȕ碭ȡ,簓\u0026禑Ŏ瑁鑕婙蓫椧蒭諎漎" + "Is{豘ñ澀j劎笜釼鮭Ɯ" ], "selector": { "matchLabels": { - "3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6": "9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a" + "789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22": "E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X" }, "matchExpressions": [ { - "key": "c59x3oo2/a4-___..1.N_l..-8", - "operator": "DoesNotExist" + "key": "R_-U7-F34-6.-_-O-F__h9", + "operator": "Exists" } ] }, "resources": { "limits": { - "": "736" + "獪霛圦Ƶ": "159" }, "requests": { - "DÓǶɟ汩b隊曻:Bȗ轊": "278" + "-劺b": "142" } }, - "volumeName": "508", - "storageClassName": "509", - "volumeMode": "ɋb賝łų$Q郔惻¬\\ơ^", + "volumeName": "515", + "storageClassName": "516", + "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", "dataSource": { - "apiGroup": "510", - "kind": "511", - "name": "512" + "apiGroup": "517", + "kind": "518", + "name": "519" + }, + "dataSourceRef": { + "apiGroup": "520", + "kind": "521", + "name": "522" } }, "status": { - "phase": "VǕ酈t史C\u003c镼ƶƭ", + "phase": "h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț", "accessModes": [ - "" + "\u003e7u?=ȳ皆Cds壋" ], "capacity": { - "蟀贑!ǃȥ瓤骁ȩ": "486" + "H%": "764" }, "conditions": [ { - "type": "儲ȃ\u003cDŽ噻ȁ隞ĻȀ拞抵\u003c躁ĄȐ煷叺", - "status": "貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ", - "lastProbeTime": "2002-10-17T05:21:34Z", - "lastTransitionTime": "2090-08-02T09:40:31Z", - "reason": "513", - "message": "514" + "type": "A麭T棞詢¡ɅǏõxġ疾ɇ", + "status": "=击S", + "lastProbeTime": "2806-03-31T09:12:56Z", + "lastTransitionTime": "2430-10-28T09:53:06Z", + "reason": "523", + "message": "524" } ] } } ], - "serviceName": "515", - "podManagementPolicy": "(DǺM變ǣƆ鄾篏q鴥络@", + "serviceName": "525", + "podManagementPolicy": "軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\\`ĝňY", "updateStrategy": { - "type": "撇Ȥ寭ƉɫDžXSgƈɿ1", + "type": "Ä嚕uʟ膠ĉ班康%m忣àÂƺ琰Ȃ", "rollingUpdate": { - "partition": -578791744 + "partition": 804652982 } }, - "revisionHistoryLimit": 1747963012, - "minReadySeconds": 227754708, + "revisionHistoryLimit": -827620894, + "minReadySeconds": -619299042, "persistentVolumeClaimRetentionPolicy": { - "whenDeleted": "牦[闤ŬNĻ", - "whenScaled": "ĕ" + "whenDeleted": "弞þƔ剛Ʃ°qgWǰ绿络a", + "whenScaled": "7ɞŶJŖ)j{驟ʦcȃ/I" } }, "status": { - "observedGeneration": 6686533762378407166, - "replicas": -506660990, - "readyReplicas": 504213151, - "currentReplicas": -1264206794, - "updatedReplicas": -691647199, - "currentRevision": "516", - "updateRevision": "517", - "collisionCount": -1994313473, + "observedGeneration": -3509397394862257066, + "replicas": -1343766220, + "readyReplicas": -346713296, + "currentReplicas": 282379690, + "updatedReplicas": -554064621, + "currentRevision": "526", + "updateRevision": "527", + "collisionCount": 974374726, "conditions": [ { - "type": "龌帲笁銭1ÂơHđ\"-劺b", - "status": "Dê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘ", - "lastTransitionTime": "2624-04-25T00:24:24Z", - "reason": "518", - "message": "519" + "type": "劾ůk`磾ƃ妹浓ª", + "status": "痞濥鐳VDɝÔȗ$", + "lastTransitionTime": "2141-07-05T00:48:21Z", + "reason": "528", + "message": "529" } ], - "availableReplicas": 2082714834 + "availableReplicas": -1350782402 } } \ No newline at end of file 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 004722fee1e..1a94112750a 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb differ 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 2c384a390c5..f41dcf2304b 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 @@ -31,20 +31,20 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 227754708 + minReadySeconds: -619299042 persistentVolumeClaimRetentionPolicy: - whenDeleted: 牦[闤ŬNĻ - whenScaled: ĕ - podManagementPolicy: (DǺM變ǣƆ鄾篏q鴥络@ + whenDeleted: 弞þƔ剛Ʃ°qgWǰ绿络a + whenScaled: 7ɞŶJŖ)j{驟ʦcȃ/I + podManagementPolicy: 軈ĕʦ竳÷ 骵蓧應ĸ簋涼ĥ訛\`ĝňY replicas: 896585016 - revisionHistoryLimit: 1747963012 + revisionHistoryLimit: -827620894 selector: matchExpressions: - 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: 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: "515" + serviceName: "525" template: metadata: annotations: @@ -77,730 +77,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů泔Eëæ:<堸眺舐嘯龡班悦ʀ臺穔' - resourceVersion: "17306677052996382890" - selfLink: "487" - uid: ʬÇ[輚趞ț@ + - apiVersion: "500" + blockOwnerDeletion: false + controller: false + kind: "501" + name: "502" + uid: 憲Ħ焵i,ŋ + resourceVersion: "932117408350471144" + selfLink: "494" + uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} spec: accessModes: - - uȒ<ȕ碭ȡ,簓&禑Ŏ瑁鑕婙蓫椧蒭諎漎 + - Is{豘ñ澀j劎笜釼鮭Ɯ dataSource: - apiGroup: "510" - kind: "511" - name: "512" + apiGroup: "517" + kind: "518" + name: "519" + dataSourceRef: + apiGroup: "520" + kind: "521" + name: "522" resources: limits: - "": "736" + 獪霛圦Ƶ: "159" requests: - DÓǶɟ汩b隊曻:Bȗ轊: "278" + -劺b: "142" selector: matchExpressions: - - key: c59x3oo2/a4-___..1.N_l..-8 - operator: DoesNotExist + - key: R_-U7-F34-6.-_-O-F__h9 + operator: Exists matchLabels: - 3Q_-tHJ-_x-_l_-Ts1-Eb.zj.h96-63-T-.M----p_-6: 9_i-M_._i3-__5nw-_-0__P0.3_rK-Mn1l.j_.17.T-_.X_KS-J.9_j570n__a - storageClassName: "509" - volumeMode: ɋb賝łų$Q郔惻¬\ơ^ - volumeName: "508" + 789--9opn2/8.--4-___..1.N_l..-_.1-j---30q.-2_9.9-..-JA-H-C5-8_--4.__z22: E_3-a__w.___-_-mv9h.-7.s__-_g6_-_N4-R._P-___0..X + storageClassName: "516" + volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ + volumeName: "515" status: accessModes: - - "" + - '>7u?=ȳ皆Cds壋' capacity: - 蟀贑!ǃȥ瓤骁ȩ: "486" + H%: "764" conditions: - - lastProbeTime: "2002-10-17T05:21:34Z" - lastTransitionTime: "2090-08-02T09:40:31Z" - message: "514" - reason: "513" - status: 貂ĝ,梙Ŭ贩濑bħ瓌L綡簏Ʉ - type: 儲ȃ<DŽ噻ȁ隞ĻȀ拞抵<躁ĄȐ煷叺 - phase: VǕ酈t史C<镼ƶƭ + - lastProbeTime: "2806-03-31T09:12:56Z" + lastTransitionTime: "2430-10-28T09:53:06Z" + message: "524" + reason: "523" + status: =击S + type: A麭T棞詢¡ɅǏõxġ疾ɇ + phase: h蹤?攫垳ȿūDmÒ侠泊蠻毜鷟傚罢ț status: - availableReplicas: 2082714834 - collisionCount: -1994313473 + availableReplicas: -1350782402 + collisionCount: 974374726 conditions: - - lastTransitionTime: "2624-04-25T00:24:24Z" - message: "519" - reason: "518" - status: Dê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘ - type: 龌帲笁銭1ÂơHđ"-劺b - currentReplicas: -1264206794 - currentRevision: "516" - observedGeneration: 6686533762378407166 - readyReplicas: 504213151 - replicas: -506660990 - updateRevision: "517" - updatedReplicas: -691647199 + - lastTransitionTime: "2141-07-05T00:48:21Z" + message: "529" + reason: "528" + status: 痞濥鐳VDɝÔȗ$ + type: 劾ůk`磾ƃ妹浓ª + currentReplicas: 282379690 + currentRevision: "526" + observedGeneration: -3509397394862257066 + readyReplicas: -346713296 + replicas: -1343766220 + updateRevision: "527" + updatedReplicas: -554064621 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json index 5e465b03fa3..02a8eec39d0 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json @@ -492,6 +492,11 @@ "apiGroup": "194", "kind": "195", "name": "196" + }, + "dataSourceRef": { + "apiGroup": "197", + "kind": "198", + "name": "199" } } } @@ -500,829 +505,831 @@ ], "initContainers": [ { - "name": "197", - "image": "198", + "name": "200", + "image": "201", "command": [ - "199" + "202" ], "args": [ - "200" + "203" ], - "workingDir": "201", + "workingDir": "204", "ports": [ { - "name": "202", - "hostPort": 1919527626, - "containerPort": -389501466, - "protocol": ".鵫", - "hostIP": "203" + "name": "205", + "hostPort": -1180080716, + "containerPort": -1409668172, + "protocol": "脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻", + "hostIP": "206" } ], "envFrom": [ { - "prefix": "204", + "prefix": "207", "configMapRef": { - "name": "205", + "name": "208", "optional": true }, "secretRef": { - "name": "206", + "name": "209", "optional": false } } ], "env": [ { - "name": "207", - "value": "208", + "name": "210", + "value": "211", "valueFrom": { "fieldRef": { - "apiVersion": "209", - "fieldPath": "210" + "apiVersion": "212", + "fieldPath": "213" }, "resourceFieldRef": { - "containerName": "211", - "resource": "212", - "divisor": "322" + "containerName": "214", + "resource": "215", + "divisor": "231" }, "configMapKeyRef": { - "name": "213", - "key": "214", - "optional": true + "name": "216", + "key": "217", + "optional": false }, "secretKeyRef": { - "name": "215", - "key": "216", - "optional": false + "name": "218", + "key": "219", + "optional": true } } } ], "resources": { "limits": { - "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ": "660" + "": "55" }, "requests": { - "I\\p[": "853" + "粕擓ƖHVe熼'FD": "235" } }, "volumeMounts": [ { - "name": "217", - "readOnly": true, - "mountPath": "218", - "subPath": "219", - "mountPropagation": "HVe熼'FD剂讼ɓ", - "subPathExpr": "220" + "name": "220", + "mountPath": "221", + "subPath": "222", + "mountPropagation": "UÐ_ƮA攤/ɸɎ", + "subPathExpr": "223" } ], "volumeDevices": [ { - "name": "221", - "devicePath": "222" + "name": "224", + "devicePath": "225" } ], "livenessProbe": { "exec": { "command": [ - "223" + "226" ] }, "httpGet": { - "path": "224", - "port": "225", - "host": "226", - "scheme": "A", + "path": "227", + "port": "228", + "host": "229", + "scheme": "翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź", "httpHeaders": [ { - "name": "227", - "value": "228" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": 2060823740, - "host": "229" + "port": -1543701088, + "host": "232" }, - "initialDelaySeconds": -498930176, - "timeoutSeconds": 1885897314, - "periodSeconds": -465677631, - "successThreshold": 1054858106, - "failureThreshold": 232569106, - "terminationGracePeriodSeconds": -4941250258285962800 + "initialDelaySeconds": 513341278, + "timeoutSeconds": 627713162, + "periodSeconds": 1255312175, + "successThreshold": -1740959124, + "failureThreshold": 158280212, + "terminationGracePeriodSeconds": -1552383991890236277 }, "readinessProbe": { "exec": { "command": [ - "230" + "233" ] }, "httpGet": { - "path": "231", - "port": "232", - "host": "233", - "scheme": "s3!Zɾģ毋", + "path": "234", + "port": -1099429189, + "host": "235", + "scheme": "9Ì", "httpHeaders": [ { - "name": "234", - "value": "235" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": 391562775, - "host": "236" + "port": -1364571630, + "host": "238" }, - "initialDelaySeconds": -775511009, - "timeoutSeconds": -832805508, - "periodSeconds": -228822833, - "successThreshold": -970312425, - "failureThreshold": -1213051101, - "terminationGracePeriodSeconds": 6232238734837754388 + "initialDelaySeconds": 1689978741, + "timeoutSeconds": -1423854443, + "periodSeconds": -1798849477, + "successThreshold": -1017263912, + "failureThreshold": 852780575, + "terminationGracePeriodSeconds": -5381329890395615297 }, "startupProbe": { "exec": { "command": [ - "237" + "239" ] }, "httpGet": { - "path": "238", - "port": -1140531048, - "host": "239", + "path": "240", + "port": 1853396726, + "host": "241", + "scheme": "曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷", "httpHeaders": [ { - "name": "240", - "value": "241" + "name": "242", + "value": "243" } ] }, "tcpSocket": { - "port": 1741405963, - "host": "242" + "port": "244", + "host": "245" }, - "initialDelaySeconds": 1260448044, - "timeoutSeconds": -200461294, - "periodSeconds": -1791206950, - "successThreshold": 1160477220, - "failureThreshold": 1226391571, - "terminationGracePeriodSeconds": 6347577485454457915 + "initialDelaySeconds": -1789370277, + "timeoutSeconds": -1738948598, + "periodSeconds": 1724958480, + "successThreshold": -879005591, + "failureThreshold": -743369977, + "terminationGracePeriodSeconds": -6977492437661738751 }, "lifecycle": { "postStart": { "exec": { "command": [ - "243" + "246" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "Opwǩ曬逴褜1ØœȠƬQg鄠", + "path": "247", + "port": "248", + "host": "249", + "scheme": "j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": 1102291854, - "host": "249" + "port": "252", + "host": "253" } }, "preStop": { "exec": { "command": [ - "250" + "254" ] }, "httpGet": { - "path": "251", - "port": 809006670, - "host": "252", - "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", + "path": "255", + "port": "256", + "host": "257", + "scheme": "y", "httpHeaders": [ { - "name": "253", - "value": "254" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": -1748648882, - "host": "255" + "port": -1620315711, + "host": "260" } } }, - "terminationMessagePath": "256", - "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", - "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "terminationMessagePath": "261", + "terminationMessagePolicy": "ɐ扵", + "imagePullPolicy": "鐫û咡W\u003c敄lu|榝", "securityContext": { "capabilities": { "add": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ".Ȏ蝪ʜ5遰=" ], "drop": [ - "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "257", - "role": "258", - "type": "259", - "level": "260" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "261", - "gmsaCredentialSpec": "262", - "runAsUserName": "263", - "hostProcess": false - }, - "runAsUser": 8833778257967181711, - "runAsGroup": -5647743520459672618, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "队偯J僳徥淳4揻", - "seccompProfile": { - "type": "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ", - "localhostProfile": "264" - } - }, - "stdin": true, - "stdinOnce": true - } - ], - "containers": [ - { - "name": "265", - "image": "266", - "command": [ - "267" - ], - "args": [ - "268" - ], - "workingDir": "269", - "ports": [ - { - "name": "270", - "hostPort": 1156888068, - "containerPort": -1296077882, - "protocol": "頸", - "hostIP": "271" - } - ], - "envFrom": [ - { - "prefix": "272", - "configMapRef": { - "name": "273", - "optional": true - }, - "secretRef": { - "name": "274", - "optional": false - } - } - ], - "env": [ - { - "name": "275", - "value": "276", - "valueFrom": { - "fieldRef": { - "apiVersion": "277", - "fieldPath": "278" - }, - "resourceFieldRef": { - "containerName": "279", - "resource": "280", - "divisor": "50" - }, - "configMapKeyRef": { - "name": "281", - "key": "282", - "optional": true - }, - "secretKeyRef": { - "name": "283", - "key": "284", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "´摖ȱ": "528" - }, - "requests": { - "鍓贯澔 ƺ蛜6Ɖ飴": "86" - } - }, - "volumeMounts": [ - { - "name": "285", - "mountPath": "286", - "subPath": "287", - "mountPropagation": "", - "subPathExpr": "288" - } - ], - "volumeDevices": [ - { - "name": "289", - "devicePath": "290" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "291" - ] - }, - "httpGet": { - "path": "292", - "port": -1453143878, - "host": "293", - "scheme": "鰥Z龏´DÒȗ", - "httpHeaders": [ - { - "name": "294", - "value": "295" - } - ] - }, - "tcpSocket": { - "port": 1843491416, - "host": "296" - }, - "initialDelaySeconds": -1204965397, - "timeoutSeconds": -494895708, - "periodSeconds": -1021949447, - "successThreshold": 802134138, - "failureThreshold": -942399354, - "terminationGracePeriodSeconds": 5431518803727886665 - }, - "readinessProbe": { - "exec": { - "command": [ - "297" - ] - }, - "httpGet": { - "path": "298", - "port": "299", - "host": "300", - "scheme": "J", - "httpHeaders": [ - { - "name": "301", - "value": "302" - } - ] - }, - "tcpSocket": { - "port": "303", - "host": "304" - }, - "initialDelaySeconds": 657418949, - "timeoutSeconds": -992558278, - "periodSeconds": 287654902, - "successThreshold": -2062708879, - "failureThreshold": 215186711, - "terminationGracePeriodSeconds": -607313695104609402 - }, - "startupProbe": { - "exec": { - "command": [ - "305" - ] - }, - "httpGet": { - "path": "306", - "port": -617381112, - "host": "307", - "scheme": "8ŕİi騎C\"6x", - "httpHeaders": [ - { - "name": "308", - "value": "309" - } - ] - }, - "tcpSocket": { - "port": -852140121, - "host": "310" - }, - "initialDelaySeconds": 1606930340, - "timeoutSeconds": 940930263, - "periodSeconds": -860435782, - "successThreshold": 1067125211, - "failureThreshold": -2088645849, - "terminationGracePeriodSeconds": 8161302388850132593 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "311" - ] - }, - "httpGet": { - "path": "312", - "port": 1167615307, - "host": "313", - "scheme": "vEȤƏ埮p", - "httpHeaders": [ - { - "name": "314", - "value": "315" - } - ] - }, - "tcpSocket": { - "port": "316", - "host": "317" - } - }, - "preStop": { - "exec": { - "command": [ - "318" - ] - }, - "httpGet": { - "path": "319", - "port": 1575106083, - "host": "320", - "scheme": "ş", - "httpHeaders": [ - { - "name": "321", - "value": "322" - } - ] - }, - "tcpSocket": { - "port": "323", - "host": "324" - } - } - }, - "terminationMessagePath": "325", - "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", - "imagePullPolicy": "ņ", - "securityContext": { - "capabilities": { - "add": [ - "DŽ髐njʉBn(fǂǢ曣" - ], - "drop": [ - "ay" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "326", - "role": "327", - "type": "328", - "level": "329" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "330", - "gmsaCredentialSpec": "331", - "runAsUserName": "332", - "hostProcess": true - }, - "runAsUser": -3576337664396773931, - "runAsGroup": -4786249339103684082, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "u8晲", - "seccompProfile": { - "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", - "localhostProfile": "333" - } - }, - "stdin": true - } - ], - "ephemeralContainers": [ - { - "name": "334", - "image": "335", - "command": [ - "336" - ], - "args": [ - "337" - ], - "workingDir": "338", - "ports": [ - { - "name": "339", - "hostPort": 1453852685, - "containerPort": 2037135322, - "protocol": "ǧĒzŔ瘍N", - "hostIP": "340" - } - ], - "envFrom": [ - { - "prefix": "341", - "configMapRef": { - "name": "342", - "optional": true - }, - "secretRef": { - "name": "343", - "optional": true - } - } - ], - "env": [ - { - "name": "344", - "value": "345", - "valueFrom": { - "fieldRef": { - "apiVersion": "346", - "fieldPath": "347" - }, - "resourceFieldRef": { - "containerName": "348", - "resource": "349", - "divisor": "464" - }, - "configMapKeyRef": { - "name": "350", - "key": "351", - "optional": true - }, - "secretKeyRef": { - "name": "352", - "key": "353", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "汚磉反-n": "653" - }, - "requests": { - "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" - } - }, - "volumeMounts": [ - { - "name": "354", - "mountPath": "355", - "subPath": "356", - "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", - "subPathExpr": "357" - } - ], - "volumeDevices": [ - { - "name": "358", - "devicePath": "359" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "360" - ] - }, - "httpGet": { - "path": "361", - "port": -1088996269, - "host": "362", - "scheme": "ƘƵŧ1ƟƓ宆!", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": -1836225650, - "host": "365" - }, - "initialDelaySeconds": -1065853311, - "timeoutSeconds": 559999152, - "periodSeconds": -843639240, - "successThreshold": 1573261475, - "failureThreshold": -1211577347, - "terminationGracePeriodSeconds": 6567123901989213629 - }, - "readinessProbe": { - "exec": { - "command": [ - "366" - ] - }, - "httpGet": { - "path": "367", - "port": 705333281, - "host": "368", - "scheme": "xƂ9阠", - "httpHeaders": [ - { - "name": "369", - "value": "370" - } - ] - }, - "tcpSocket": { - "port": -916583020, - "host": "371" - }, - "initialDelaySeconds": -606614374, - "timeoutSeconds": -3478003, - "periodSeconds": 498878902, - "successThreshold": 652646450, - "failureThreshold": 757223010, - "terminationGracePeriodSeconds": -8216131738691912586 - }, - "startupProbe": { - "exec": { - "command": [ - "372" - ] - }, - "httpGet": { - "path": "373", - "port": "374", - "host": "375", - "scheme": "Ů\u003cy鯶縆łƑ[澔", - "httpHeaders": [ - { - "name": "376", - "value": "377" - } - ] - }, - "tcpSocket": { - "port": 1288391156, - "host": "378" - }, - "initialDelaySeconds": -952255430, - "timeoutSeconds": 1568034275, - "periodSeconds": -824007302, - "successThreshold": -359713104, - "failureThreshold": 1671084780, - "terminationGracePeriodSeconds": 1571605531283019612 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "379" - ] - }, - "httpGet": { - "path": "380", - "port": "381", - "host": "382", - "scheme": "%ʝ`ǭ", - "httpHeaders": [ - { - "name": "383", - "value": "384" - } - ] - }, - "tcpSocket": { - "port": -1467648837, - "host": "385" - } - }, - "preStop": { - "exec": { - "command": [ - "386" - ] - }, - "httpGet": { - "path": "387", - "port": "388", - "host": "389", - "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", - "httpHeaders": [ - { - "name": "390", - "value": "391" - } - ] - }, - "tcpSocket": { - "port": "392", - "host": "393" - } - } - }, - "terminationMessagePath": "394", - "terminationMessagePolicy": "¯ÁȦtl敷斢", - "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", - "securityContext": { - "capabilities": { - "add": [ - "鬬$矐_敕ű嵞嬯t{Eɾ" - ], - "drop": [ - "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" + "埄Ȁ朦 wƯ貾坢'跩a" ] }, "privileged": true, "seLinuxOptions": { - "user": "395", - "role": "396", - "type": "397", - "level": "398" + "user": "262", + "role": "263", + "type": "264", + "level": "265" }, "windowsOptions": { - "gmsaCredentialSpecName": "399", - "gmsaCredentialSpec": "400", - "runAsUserName": "401", + "gmsaCredentialSpecName": "266", + "gmsaCredentialSpec": "267", + "runAsUserName": "268", + "hostProcess": false + }, + "runAsUser": 3024893073780181445, + "runAsGroup": 5005043520982487553, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "垾现葢ŵ橨", + "seccompProfile": { + "type": "l獕;跣Hǝcw媀瓄", + "localhostProfile": "269" + } + } + } + ], + "containers": [ + { + "name": "270", + "image": "271", + "command": [ + "272" + ], + "args": [ + "273" + ], + "workingDir": "274", + "ports": [ + { + "name": "275", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "276" + } + ], + "envFrom": [ + { + "prefix": "277", + "configMapRef": { + "name": "278", + "optional": false + }, + "secretRef": { + "name": "279", + "optional": true + } + } + ], + "env": [ + { + "name": "280", + "value": "281", + "valueFrom": { + "fieldRef": { + "apiVersion": "282", + "fieldPath": "283" + }, + "resourceFieldRef": { + "containerName": "284", + "resource": "285", + "divisor": "381" + }, + "configMapKeyRef": { + "name": "286", + "key": "287", + "optional": true + }, + "secretKeyRef": { + "name": "288", + "key": "289", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "290", + "readOnly": true, + "mountPath": "291", + "subPath": "292", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "293" + } + ], + "volumeDevices": [ + { + "name": "294", + "devicePath": "295" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "296" + ] + }, + "httpGet": { + "path": "297", + "port": 865289071, + "host": "298", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "299", + "value": "300" + } + ] + }, + "tcpSocket": { + "port": -898536659, + "host": "301" + }, + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800, + "terminationGracePeriodSeconds": 1661310708546756312 + }, + "readinessProbe": { + "exec": { + "command": [ + "302" + ] + }, + "httpGet": { + "path": "303", + "port": "304", + "host": "305", + "scheme": "yƕ丆録²Ŏ)", + "httpHeaders": [ + { + "name": "306", + "value": "307" + } + ] + }, + "tcpSocket": { + "port": 507384491, + "host": "308" + }, + "initialDelaySeconds": -1117254382, + "timeoutSeconds": 1354318307, + "periodSeconds": -1329220997, + "successThreshold": -1659431885, + "failureThreshold": -668834933, + "terminationGracePeriodSeconds": -3376301370309029429 + }, + "startupProbe": { + "exec": { + "command": [ + "309" + ] + }, + "httpGet": { + "path": "310", + "port": -305362540, + "host": "311", + "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "httpHeaders": [ + { + "name": "312", + "value": "313" + } + ] + }, + "tcpSocket": { + "port": 1167615307, + "host": "314" + }, + "initialDelaySeconds": 455833230, + "timeoutSeconds": 1956567721, + "periodSeconds": 155090390, + "successThreshold": -2113700533, + "failureThreshold": -2130294761, + "terminationGracePeriodSeconds": -3385088507022597813 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "315" + ] + }, + "httpGet": { + "path": "316", + "port": 1473407401, + "host": "317", + "scheme": "ʐşƧ", + "httpHeaders": [ + { + "name": "318", + "value": "319" + } + ] + }, + "tcpSocket": { + "port": 199049889, + "host": "320" + } + }, + "preStop": { + "exec": { + "command": [ + "321" + ] + }, + "httpGet": { + "path": "322", + "port": -1952582931, + "host": "323", + "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "httpHeaders": [ + { + "name": "324", + "value": "325" + } + ] + }, + "tcpSocket": { + "port": "326", + "host": "327" + } + } + }, + "terminationMessagePath": "328", + "terminationMessagePolicy": ")DŽ髐njʉBn(fǂ", + "imagePullPolicy": "疪鑳w妕眵笭/9崍", + "securityContext": { + "capabilities": { + "add": [ + "(娕uE增猍" + ], + "drop": [ + " xǨŴ壶ƵfȽÃ茓pȓɻ挴ʠɜ瞍" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "329", + "role": "330", + "type": "331", + "level": "332" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "333", + "gmsaCredentialSpec": "334", + "runAsUserName": "335", + "hostProcess": false + }, + "runAsUser": 2548453080315983269, + "runAsGroup": -8236071895143008294, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "1ùfŭƽ眝{æ盪泙若`l}Ñ蠂", + "seccompProfile": { + "type": "[ƛ^輅", + "localhostProfile": "336" + } + }, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "337", + "image": "338", + "command": [ + "339" + ], + "args": [ + "340" + ], + "workingDir": "341", + "ports": [ + { + "name": "342", + "hostPort": -1977635123, + "containerPort": 1660454722, + "protocol": "礫Ƽ¨Ix糂腂ǂǚŜEu", + "hostIP": "343" + } + ], + "envFrom": [ + { + "prefix": "344", + "configMapRef": { + "name": "345", + "optional": true + }, + "secretRef": { + "name": "346", + "optional": true + } + } + ], + "env": [ + { + "name": "347", + "value": "348", + "valueFrom": { + "fieldRef": { + "apiVersion": "349", + "fieldPath": "350" + }, + "resourceFieldRef": { + "containerName": "351", + "resource": "352", + "divisor": "741" + }, + "configMapKeyRef": { + "name": "353", + "key": "354", + "optional": true + }, + "secretKeyRef": { + "name": "355", + "key": "356", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "ý萜Ǖc": "275" + }, + "requests": { + "Ƒĝ®EĨǔvÄÚ×p鬷m": "69" + } + }, + "volumeMounts": [ + { + "name": "357", + "readOnly": true, + "mountPath": "358", + "subPath": "359", + "mountPropagation": "暳ǽżLj捲攻xƂ9阠$嬏wy¶熀", + "subPathExpr": "360" + } + ], + "volumeDevices": [ + { + "name": "361", + "devicePath": "362" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "363" + ] + }, + "httpGet": { + "path": "364", + "port": "365", + "host": "366", + "scheme": "裡×銵-紑浘牬釼", + "httpHeaders": [ + { + "name": "367", + "value": "368" + } + ] + }, + "tcpSocket": { + "port": 1648539888, + "host": "369" + }, + "initialDelaySeconds": 762856658, + "timeoutSeconds": -1898251770, + "periodSeconds": 713473395, + "successThreshold": -912220708, + "failureThreshold": -92253969, + "terminationGracePeriodSeconds": 1046110838271944058 + }, + "readinessProbe": { + "exec": { + "command": [ + "370" + ] + }, + "httpGet": { + "path": "371", + "port": 1797904220, + "host": "372", + "scheme": "羹", + "httpHeaders": [ + { + "name": "373", + "value": "374" + } + ] + }, + "tcpSocket": { + "port": "375", + "host": "376" + }, + "initialDelaySeconds": -1510210852, + "timeoutSeconds": 1604463080, + "periodSeconds": 1770824317, + "successThreshold": -1736247571, + "failureThreshold": 1504775716, + "terminationGracePeriodSeconds": 8657972883429789645 + }, + "startupProbe": { + "exec": { + "command": [ + "377" + ] + }, + "httpGet": { + "path": "378", + "port": 1859267428, + "host": "379", + "scheme": "ȟP", + "httpHeaders": [ + { + "name": "380", + "value": "381" + } + ] + }, + "tcpSocket": { + "port": 1445923603, + "host": "382" + }, + "initialDelaySeconds": 2040952835, + "timeoutSeconds": -1101457109, + "periodSeconds": -513325570, + "successThreshold": 1491794693, + "failureThreshold": -1457715462, + "terminationGracePeriodSeconds": 5797412715505520759 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "383" + ] + }, + "httpGet": { + "path": "384", + "port": "385", + "host": "386", + "scheme": "V", + "httpHeaders": [ + { + "name": "387", + "value": "388" + } + ] + }, + "tcpSocket": { + "port": 1791758702, + "host": "389" + } + }, + "preStop": { + "exec": { + "command": [ + "390" + ] + }, + "httpGet": { + "path": "391", + "port": "392", + "host": "393", + "scheme": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o", + "httpHeaders": [ + { + "name": "394", + "value": "395" + } + ] + }, + "tcpSocket": { + "port": -1082980401, + "host": "396" + } + } + }, + "terminationMessagePath": "397", + "terminationMessagePolicy": "肄$鬬", + "imagePullPolicy": "ʈʫ羶剹ƊF豎穜", + "securityContext": { + "capabilities": { + "add": [ + "咑耖p^鏋蛹Ƚȿ醏g" + ], + "drop": [ + "Ȋ飂廤Ƌʙcx赮ǒđ\u003e*劶?jĎ" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "398", + "role": "399", + "type": "400", + "level": "401" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "402", + "gmsaCredentialSpec": "403", + "runAsUserName": "404", "hostProcess": true }, - "runAsUser": 4224635496843945227, - "runAsGroup": 73764735411458498, + "runAsUser": -3365965984794126745, + "runAsGroup": 7755347487915595851, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "s44矕Ƈè", + "procMount": "e", "seccompProfile": { - "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", - "localhostProfile": "402" + "type": "G昧牱fsǕT衩kƒK07曳wœj堑", + "localhostProfile": "405" } }, + "stdin": true, "tty": true, - "targetContainerName": "403" + "targetContainerName": "406" } ], - "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", - "terminationGracePeriodSeconds": -8335674866227004872, - "activeDeadlineSeconds": 3305070661619041050, - "dnsPolicy": "+Œ9两", + "restartPolicy": "鈱ɖ'蠨磼O_h盌3+Œ9两@8", + "terminationGracePeriodSeconds": 8904478052175112945, + "activeDeadlineSeconds": -560099625007040954, + "dnsPolicy": "螗ɃŒGm¨z鋎靀", "nodeSelector": { - "404": "405" + "407": "408" }, - "serviceAccountName": "406", - "serviceAccount": "407", - "automountServiceAccountToken": false, - "nodeName": "408", - "hostPID": true, + "serviceAccountName": "409", + "serviceAccount": "410", + "automountServiceAccountToken": true, + "nodeName": "411", + "hostNetwork": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "409", - "role": "410", - "type": "411", - "level": "412" + "user": "412", + "role": "413", + "type": "414", + "level": "415" }, "windowsOptions": { - "gmsaCredentialSpecName": "413", - "gmsaCredentialSpec": "414", - "runAsUserName": "415", - "hostProcess": false + "gmsaCredentialSpecName": "416", + "gmsaCredentialSpec": "417", + "runAsUserName": "418", + "hostProcess": true }, - "runAsUser": 3438266910774132295, - "runAsGroup": 3230705132538051674, + "runAsUser": 107192836721418523, + "runAsGroup": -3019907599090873206, "runAsNonRoot": true, "supplementalGroups": [ - -1600417733583164525 + 5333609790435719468 ], - "fsGroup": -3964669311891901178, + "fsGroup": 2700145646260085226, "sysctls": [ { - "name": "416", - "value": "417" + "name": "419", + "value": "420" } ], - "fsGroupChangePolicy": "ƴ4虵p", + "fsGroupChangePolicy": "灭ƴɦ燻踸陴Sĕ濦", "seccompProfile": { - "type": "沥7uPƒw©ɴĶ烷Ľthp", - "localhostProfile": "418" + "type": "ɻŊ0", + "localhostProfile": "421" } }, "imagePullSecrets": [ { - "name": "419" + "name": "422" } ], - "hostname": "420", - "subdomain": "421", + "hostname": "423", + "subdomain": "424", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1330,19 +1337,19 @@ { "matchExpressions": [ { - "key": "422", - "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", + "key": "425", + "operator": "", "values": [ - "423" + "426" ] } ], "matchFields": [ { - "key": "424", - "operator": " ", + "key": "427", + "operator": "b轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "425" + "428" ] } ] @@ -1351,23 +1358,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -5241849, + "weight": 903393545, "preference": { "matchExpressions": [ { - "key": "426", - "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "key": "429", + "operator": "嫎¸殚篎3o8[y#t(", "values": [ - "427" + "430" ] } ], "matchFields": [ { - "key": "428", - "operator": "[y#t(", + "key": "431", + "operator": "¯rƈa餖Ľƛ淴ɑ?¶Ȳ", "values": [ - "429" + "432" ] } ] @@ -1380,30 +1387,33 @@ { "labelSelector": { "matchLabels": { - "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "8v--xk-gr-2/5-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6SN": "S" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX3" ] } ] }, "namespaces": [ - "436" + "439" ], - "topologyKey": "437", + "topologyKey": "440", "namespaceSelector": { "matchLabels": { - "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" + "5023-lt3-w-br75gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-g.4-----385h---0-u73phjo--8kb6--ut---p8--3-e-3-44---h-q7-ps/HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxB": "w-W_-E" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", - "operator": "DoesNotExist" + "key": "75p1em---1wwv3-f/k47M7y-Dy__3wcq", + "operator": "NotIn", + "values": [ + "x4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-A" + ] } ] } @@ -1411,31 +1421,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -234140, + "weight": 199195373, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" + "w_--5-_.3--_9QW2JkU27_.-4T-9": "4.K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._4" }, "matchExpressions": [ { - "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", - "operator": "Exists" + "key": "J-_.ZCRT.0z-oe.G79.3bU_._nV34GH", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "450" + "453" ], - "topologyKey": "451", + "topologyKey": "454", "namespaceSelector": { "matchLabels": { - "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" + "5i-z-s--o8t5-l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b9/ERG2nV.__Y": "T_YT.1--3" }, "matchExpressions": [ { - "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", - "operator": "DoesNotExist" + "key": "3_Lsu-H_.f82-82", + "operator": "NotIn", + "values": [ + "P6j.u--.K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nI" + ] } ] } @@ -1448,32 +1461,29 @@ { "labelSelector": { "matchLabels": { - "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" + "t1n13sx82-cx-4q/Lbk81S3.T": "d" }, "matchExpressions": [ { - "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", - "operator": "In", - "values": [ - "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" - ] + "key": "l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/i..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_D7RufiV-7uu", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "464" + "467" ], - "topologyKey": "465", + "topologyKey": "468", "namespaceSelector": { "matchLabels": { - "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" + "f_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__78": "O-._-_8_.._._a-.N.__-_._.3l-_86_u2-7_._qN__A_f_B" }, "matchExpressions": [ { - "key": "N7.81_-._-_8_.._._a9", + "key": "U__L.KH6K.RwsfI_j", "operator": "In", "values": [ - "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + "" ] } ] @@ -1482,31 +1492,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1276377114, + "weight": 1560053496, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" + "5396hq/v..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35HB": "u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-Z" }, "matchExpressions": [ { - "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", - "operator": "DoesNotExist" + "key": "ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh", + "operator": "In", + "values": [ + "7.W74-R_Z_Tz.a3_HWo4_6" + ] } ] }, "namespaces": [ - "478" + "481" ], - "topologyKey": "479", + "topologyKey": "482", "namespaceSelector": { "matchLabels": { - "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", - "operator": "DoesNotExist" + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", + "values": [ + "x3___-..f5-6x-_-o_6O_If-5_-_.F" + ] } ] } @@ -1515,93 +1531,93 @@ ] } }, - "schedulerName": "486", + "schedulerName": "489", "tolerations": [ { - "key": "487", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "488", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "490", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "491", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "489", + "ip": "492", "hostnames": [ - "490" + "493" ] } ], - "priorityClassName": "491", - "priority": 347613368, + "priorityClassName": "494", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "492" + "495" ], "searches": [ - "493" + "496" ], "options": [ { - "name": "494", - "value": "495" + "name": "497", + "value": "498" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "496", + "runtimeClassName": "499", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "497", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "500", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", - "operator": "NotIn", + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", "values": [ - "h.v._5.vB-.-7-.6Jv-86___3" + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } }, - "ttlSecondsAfterFinished": -1285029915, - "completionMode": "{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj}c殶", + "ttlSecondsAfterFinished": -1166275743, + "completionMode": "ĵ/Ş槀墺=Ĉ鳟/d\u0026蒡", "suspend": false } }, - "successfulJobsHistoryLimit": -2006986560, - "failedJobsHistoryLimit": -380889943 + "successfulJobsHistoryLimit": -1190434752, + "failedJobsHistoryLimit": -212409426 }, "status": { "active": [ { - "kind": "504", - "namespace": "505", - "name": "506", - "uid": "暉Ŝ!ȣ绰", - "apiVersion": "507", - "resourceVersion": "508", - "fieldPath": "509" + "kind": "507", + "namespace": "508", + "name": "509", + "uid": "蒱鄆\u0026嬜Š\u0026?鳢.ǀŭ瘢颦", + "apiVersion": "510", + "resourceVersion": "511", + "fieldPath": "512" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb index cf9ef3d3aae..610b854a870 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml index 793dbaecb4a..8620acc8f9e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml @@ -32,7 +32,7 @@ metadata: uid: "7" spec: concurrencyPolicy: Hr鯹)晿*劶?jĎ privileged: false - procMount: 队偯J僳徥淳4揻 + procMount: e readOnlyRootFilesystem: false - runAsGroup: -5647743520459672618 - runAsNonRoot: true - runAsUser: 8833778257967181711 + runAsGroup: 7755347487915595851 + runAsNonRoot: false + runAsUser: -3365965984794126745 seLinuxOptions: - level: "260" - role: "258" - type: "259" - user: "257" + level: "401" + role: "399" + type: "400" + user: "398" seccompProfile: - localhostProfile: "264" - type: $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ + localhostProfile: "405" + type: G昧牱fsǕT衩kƒK07曳wœj堑 windowsOptions: - gmsaCredentialSpec: "262" - gmsaCredentialSpecName: "261" - hostProcess: false - runAsUserName: "263" + gmsaCredentialSpec: "403" + gmsaCredentialSpecName: "402" + hostProcess: true + runAsUserName: "404" startupProbe: exec: command: - - "237" - failureThreshold: 1226391571 + - "377" + failureThreshold: -1457715462 httpGet: - host: "239" + host: "379" httpHeaders: - - name: "240" - value: "241" - path: "238" - port: -1140531048 - initialDelaySeconds: 1260448044 - periodSeconds: -1791206950 - successThreshold: 1160477220 + - name: "380" + value: "381" + path: "378" + port: 1859267428 + scheme: ȟP + initialDelaySeconds: 2040952835 + periodSeconds: -513325570 + successThreshold: 1491794693 tcpSocket: - host: "242" - port: 1741405963 - terminationGracePeriodSeconds: 6347577485454457915 - timeoutSeconds: -200461294 + host: "382" + port: 1445923603 + terminationGracePeriodSeconds: 5797412715505520759 + timeoutSeconds: -1101457109 stdin: true - stdinOnce: true - terminationMessagePath: "256" - terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 + targetContainerName: "406" + terminationMessagePath: "397" + terminationMessagePolicy: 肄$鬬 + tty: true volumeDevices: - - devicePath: "222" - name: "221" + - devicePath: "362" + name: "361" volumeMounts: - - mountPath: "218" - mountPropagation: HVe熼'FD剂讼ɓ - name: "217" + - mountPath: "358" + mountPropagation: 暳ǽżLj捲攻xƂ9阠$嬏wy¶熀 + name: "357" readOnly: true - subPath: "219" - subPathExpr: "220" - workingDir: "201" - nodeName: "408" + subPath: "359" + subPathExpr: "360" + workingDir: "341" + hostAliases: + - hostnames: + - "493" + ip: "492" + hostNetwork: true + hostname: "423" + imagePullSecrets: + - name: "422" + initContainers: + - args: + - "203" + command: + - "202" + env: + - name: "210" + value: "211" + valueFrom: + configMapKeyRef: + key: "217" + name: "216" + optional: false + fieldRef: + apiVersion: "212" + fieldPath: "213" + resourceFieldRef: + containerName: "214" + divisor: "231" + resource: "215" + secretKeyRef: + key: "219" + name: "218" + optional: true + envFrom: + - configMapRef: + name: "208" + optional: true + prefix: "207" + secretRef: + name: "209" + optional: false + image: "201" + imagePullPolicy: 鐫û咡W<敄lu|榝 + lifecycle: + postStart: + exec: + command: + - "246" + httpGet: + host: "249" + httpHeaders: + - name: "250" + value: "251" + path: "247" + port: "248" + scheme: j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ + tcpSocket: + host: "253" + port: "252" + preStop: + exec: + command: + - "254" + httpGet: + host: "257" + httpHeaders: + - name: "258" + value: "259" + path: "255" + port: "256" + scheme: "y" + tcpSocket: + host: "260" + port: -1620315711 + livenessProbe: + exec: + command: + - "226" + failureThreshold: 158280212 + httpGet: + host: "229" + httpHeaders: + - name: "230" + value: "231" + path: "227" + port: "228" + scheme: 翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź + initialDelaySeconds: 513341278 + periodSeconds: 1255312175 + successThreshold: -1740959124 + tcpSocket: + host: "232" + port: -1543701088 + terminationGracePeriodSeconds: -1552383991890236277 + timeoutSeconds: 627713162 + name: "200" + ports: + - containerPort: -1409668172 + hostIP: "206" + hostPort: -1180080716 + name: "205" + protocol: 脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻 + readinessProbe: + exec: + command: + - "233" + failureThreshold: 852780575 + httpGet: + host: "235" + httpHeaders: + - name: "236" + value: "237" + path: "234" + port: -1099429189 + scheme: 9Ì + initialDelaySeconds: 1689978741 + periodSeconds: -1798849477 + successThreshold: -1017263912 + tcpSocket: + host: "238" + port: -1364571630 + terminationGracePeriodSeconds: -5381329890395615297 + timeoutSeconds: -1423854443 + resources: + limits: + "": "55" + requests: + 粕擓ƖHVe熼'FD: "235" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - .Ȏ蝪ʜ5遰= + drop: + - 埄Ȁ朦 wƯ貾坢'跩a + privileged: true + procMount: 垾现葢ŵ橨 + readOnlyRootFilesystem: true + runAsGroup: 5005043520982487553 + runAsNonRoot: false + runAsUser: 3024893073780181445 + seLinuxOptions: + level: "265" + role: "263" + type: "264" + user: "262" + seccompProfile: + localhostProfile: "269" + type: l獕;跣Hǝcw媀瓄 + windowsOptions: + gmsaCredentialSpec: "267" + gmsaCredentialSpecName: "266" + hostProcess: false + runAsUserName: "268" + startupProbe: + exec: + command: + - "239" + failureThreshold: -743369977 + httpGet: + host: "241" + httpHeaders: + - name: "242" + value: "243" + path: "240" + port: 1853396726 + scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷 + initialDelaySeconds: -1789370277 + periodSeconds: 1724958480 + successThreshold: -879005591 + tcpSocket: + host: "245" + port: "244" + terminationGracePeriodSeconds: -6977492437661738751 + timeoutSeconds: -1738948598 + terminationMessagePath: "261" + terminationMessagePolicy: ɐ扵 + volumeDevices: + - devicePath: "225" + name: "224" + volumeMounts: + - mountPath: "221" + mountPropagation: UÐ_ƮA攤/ɸɎ + name: "220" + subPath: "222" + subPathExpr: "223" + workingDir: "204" + nodeName: "411" nodeSelector: - "404": "405" + "407": "408" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "491" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "494" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn - runtimeClassName: "496" - schedulerName: "486" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 鈱ɖ'蠨磼O_h盌3+Œ9两@8 + runtimeClassName: "499" + schedulerName: "489" securityContext: - fsGroup: -3964669311891901178 - fsGroupChangePolicy: ƴ4虵p - runAsGroup: 3230705132538051674 + fsGroup: 2700145646260085226 + fsGroupChangePolicy: 灭ƴɦ燻踸陴Sĕ濦 + runAsGroup: -3019907599090873206 runAsNonRoot: true - runAsUser: 3438266910774132295 + runAsUser: 107192836721418523 seLinuxOptions: - level: "412" - role: "410" - type: "411" - user: "409" + level: "415" + role: "413" + type: "414" + user: "412" seccompProfile: - localhostProfile: "418" - type: 沥7uPƒw©ɴĶ烷Ľthp + localhostProfile: "421" + type: ɻŊ0 supplementalGroups: - - -1600417733583164525 + - 5333609790435719468 sysctls: - - name: "416" - value: "417" + - name: "419" + value: "420" windowsOptions: - gmsaCredentialSpec: "414" - gmsaCredentialSpecName: "413" - hostProcess: false - runAsUserName: "415" - serviceAccount: "407" - serviceAccountName: "406" - setHostnameAsFQDN: false + gmsaCredentialSpec: "417" + gmsaCredentialSpecName: "416" + hostProcess: true + runAsUserName: "418" + serviceAccount: "410" + serviceAccountName: "409" + setHostnameAsFQDN: true shareProcessNamespace: true - subdomain: "421" - terminationGracePeriodSeconds: -8335674866227004872 + subdomain: "424" + terminationGracePeriodSeconds: 8904478052175112945 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "487" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "488" + - effect: '慰x:' + key: "490" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "491" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52 - operator: NotIn + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In values: - - h.v._5.vB-.-7-.6Jv-86___3 + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb - maxSkew: -484382570 - topologyKey: "497" - whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 + topologyKey: "500" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "68" @@ -933,6 +941,10 @@ spec: apiGroup: "194" kind: "195" name: "196" + dataSourceRef: + apiGroup: "197" + kind: "198" + name: "199" resources: limits: /樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊: "967" @@ -1087,17 +1099,17 @@ spec: storagePolicyID: "125" storagePolicyName: "124" volumePath: "122" - ttlSecondsAfterFinished: -1285029915 + ttlSecondsAfterFinished: -1166275743 schedule: "20" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: -2006986560 + successfulJobsHistoryLimit: -1190434752 suspend: true status: active: - - apiVersion: "507" - fieldPath: "509" - kind: "504" - name: "506" - namespace: "505" - resourceVersion: "508" - uid: 暉Ŝ!ȣ绰 + - apiVersion: "510" + fieldPath: "512" + kind: "507" + name: "509" + namespace: "508" + resourceVersion: "511" + uid: 蒱鄆&嬜Š&?鳢.ǀŭ瘢颦 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 012b083c2b9..e76149b1ef1 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 @@ -445,6 +445,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -453,256 +458,256 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": -1179067190, - "containerPort": 1434408532, - "protocol": "`劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立h", - "hostIP": "184" + "name": "186", + "hostPort": -1280763790, + "containerPort": 44308192, + "protocol": "Żwʮ馜üNșƶ4ĩĉ", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", + "name": "189", "optional": true }, "secretRef": { - "name": "187", + "name": "190", "optional": false } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "993" + "containerName": "195", + "resource": "196", + "divisor": "440" }, "configMapKeyRef": { - "name": "194", - "key": "195", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "196", - "key": "197", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "n芞QÄȻȊ+?ƭ峧Y栲茇竛": "118" + "": "993" }, "requests": { - "Ā\u003cé瞾ʀNŬɨǙÄr": "862" + "瀹鞎sn芞": "621" } }, "volumeMounts": [ { - "name": "198", - "mountPath": "199", - "subPath": "200", - "mountPropagation": "蒒5靇C'ɵK.Q貇£ȹ嫰", - "subPathExpr": "201" + "name": "201", + "readOnly": true, + "mountPath": "202", + "subPath": "203", + "mountPropagation": "鲡:", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "202", - "devicePath": "203" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "204" + "207" ] }, "httpGet": { - "path": "205", - "port": -1470854631, - "host": "206", - "scheme": "ùƸʋŀ樺ȃ", + "path": "208", + "port": 1094670193, + "host": "209", + "scheme": "栲茇竛吲蚛隖\u003cǶĬ4y£軶ǃ*ʙ嫙\u0026", "httpHeaders": [ { - "name": "207", - "value": "208" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": -270045321, - "host": "209" + "port": "212", + "host": "213" }, - "initialDelaySeconds": -1366875038, - "timeoutSeconds": -1188430996, - "periodSeconds": -2015604435, - "successThreshold": 576428641, - "failureThreshold": 1719293828, - "terminationGracePeriodSeconds": 7695418809915380277 + "initialDelaySeconds": -802585193, + "timeoutSeconds": 1901330124, + "periodSeconds": 1944205014, + "successThreshold": -2079582559, + "failureThreshold": -1167888910, + "terminationGracePeriodSeconds": 9134864175859680954 }, "readinessProbe": { "exec": { "command": [ - "210" + "214" ] }, "httpGet": { - "path": "211", - "port": "212", - "host": "213", - "scheme": "敍0)鈼¬麄", + "path": "215", + "port": "216", + "host": "217", + "scheme": "ȹ嫰ƹǔw÷nI粛E煹ǐƲE", "httpHeaders": [ { - "name": "214", - "value": "215" + "name": "218", + "value": "219" } ] }, "tcpSocket": { - "port": -648954478, - "host": "216" + "port": -88173241, + "host": "220" }, - "initialDelaySeconds": 1170649416, - "timeoutSeconds": 893619181, - "periodSeconds": -1891134534, - "successThreshold": -1710454086, - "failureThreshold": 192146389, - "terminationGracePeriodSeconds": 5519151154130360761 + "initialDelaySeconds": -1390686338, + "timeoutSeconds": 1762266578, + "periodSeconds": 1908897348, + "successThreshold": -153894372, + "failureThreshold": -1294101963, + "terminationGracePeriodSeconds": -8426138335498948912 }, "startupProbe": { "exec": { "command": [ - "217" + "221" ] }, "httpGet": { - "path": "218", - "port": "219", - "host": "220", - "scheme": "瓧嫭塓烀罁胾^拜", + "path": "222", + "port": -1273036797, + "host": "223", + "scheme": "ŤǢʭ嵔棂p儼Ƿ裚瓶", "httpHeaders": [ { - "name": "221", - "value": "222" + "name": "224", + "value": "225" } ] }, "tcpSocket": { - "port": "223", - "host": "224" + "port": -1549755975, + "host": "226" }, - "initialDelaySeconds": -1613115506, - "timeoutSeconds": -1341523482, - "periodSeconds": 1385030458, - "successThreshold": 427196286, - "failureThreshold": 1048864116, - "terminationGracePeriodSeconds": 1132874952502226901 + "initialDelaySeconds": -1275947865, + "timeoutSeconds": -2112697830, + "periodSeconds": -560140039, + "successThreshold": -1933850966, + "failureThreshold": 441998152, + "terminationGracePeriodSeconds": 3211788672813464064 }, "lifecycle": { "postStart": { "exec": { "command": [ - "225" + "227" ] }, "httpGet": { - "path": "226", - "port": 817152661, - "host": "227", - "scheme": "LJèux榜VƋZ", + "path": "228", + "port": "229", + "host": "230", + "scheme": "拜Ȍzɟ踡肒Ao/樝f", "httpHeaders": [ { - "name": "228", - "value": "229" + "name": "231", + "value": "232" } ] }, "tcpSocket": { - "port": "230", - "host": "231" + "port": -1497057920, + "host": "233" } }, "preStop": { "exec": { "command": [ - "232" + "234" ] }, "httpGet": { - "path": "233", - "port": -2000048581, - "host": "234", - "scheme": "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", + "path": "235", + "port": "236", + "host": "237", + "scheme": "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ", "httpHeaders": [ { - "name": "235", - "value": "236" + "name": "238", + "value": "239" } ] }, "tcpSocket": { - "port": "237", - "host": "238" + "port": "240", + "host": "241" } } }, - "terminationMessagePath": "239", - "terminationMessagePolicy": "U髷裎$MVȟ@7飣奺Ȋ", - "imagePullPolicy": "ljʁ揆ɘȌ脾嚏吐ĠL", + "terminationMessagePath": "242", + "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", "securityContext": { "capabilities": { "add": [ - "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0" + "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" ], "drop": [ - "Kʝ瘴I\\p[ħsĨɆâĺɗ" + "rʤî萨zvt莭琽§ć\\ ïì" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "240", - "role": "241", - "type": "242", - "level": "243" + "user": "243", + "role": "244", + "type": "245", + "level": "246" }, "windowsOptions": { - "gmsaCredentialSpecName": "244", - "gmsaCredentialSpec": "245", - "runAsUserName": "246", - "hostProcess": true + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": false }, - "runAsUser": 8088324525605310061, - "runAsGroup": 4006793330334483398, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "runAsUser": 5064334456447889244, + "runAsGroup": 9197199583783594492, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "攤/ɸɎ R§耶FfBl", + "procMount": "N粕擓ƖHVe熼", "seccompProfile": { - "type": "3!Zɾģ毋Ó6", - "localhostProfile": "247" + "type": "FD剂讼ɓȌʟn", + "localhostProfile": "250" } }, "stdinOnce": true, @@ -711,319 +716,316 @@ ], "containers": [ { - "name": "248", - "image": "249", + "name": "251", + "image": "252", "command": [ - "250" + "253" ], "args": [ - "251" + "254" ], - "workingDir": "252", + "workingDir": "255", "ports": [ { - "name": "253", - "hostPort": -970312425, - "containerPort": -1213051101, - "protocol": "埽uʎȺ眖R", - "hostIP": "254" + "name": "256", + "hostPort": 1087851818, + "containerPort": -1142814363, + "protocol": "f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡źȰ", + "hostIP": "257" } ], "envFrom": [ { - "prefix": "255", + "prefix": "258", "configMapRef": { - "name": "256", - "optional": true + "name": "259", + "optional": false }, "secretRef": { - "name": "257", - "optional": false + "name": "260", + "optional": true } } ], "env": [ { - "name": "258", - "value": "259", + "name": "261", + "value": "262", "valueFrom": { "fieldRef": { - "apiVersion": "260", - "fieldPath": "261" + "apiVersion": "263", + "fieldPath": "264" }, "resourceFieldRef": { - "containerName": "262", - "resource": "263", - "divisor": "509" + "containerName": "265", + "resource": "266", + "divisor": "1" }, "configMapKeyRef": { - "name": "264", - "key": "265", + "name": "267", + "key": "268", "optional": true }, "secretKeyRef": { - "name": "266", - "key": "267", - "optional": false + "name": "269", + "key": "270", + "optional": true } } } ], "resources": { "limits": { - "Ůĺ}潷ʒ胵輓": "404" + "ɳɷ9Ì": "134" }, "requests": { - "1ØœȠƬQg鄠": "488" + "WKw(": "800" } }, "volumeMounts": [ { - "name": "268", + "name": "271", "readOnly": true, - "mountPath": "269", - "subPath": "270", - "mountPropagation": "\u003e郵[+扴ȨŮ", - "subPathExpr": "271" + "mountPath": "272", + "subPath": "273", + "mountPropagation": "跦Opwǩ曬逴褜1", + "subPathExpr": "274" } ], "volumeDevices": [ { - "name": "272", - "devicePath": "273" + "name": "275", + "devicePath": "276" } ], "livenessProbe": { "exec": { "command": [ - "274" + "277" ] }, "httpGet": { - "path": "275", - "port": "276", - "host": "277", - "scheme": "佱¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ", + "path": "278", + "port": "279", + "host": "280", "httpHeaders": [ { - "name": "278", - "value": "279" + "name": "281", + "value": "282" } ] }, "tcpSocket": { - "port": -379385405, - "host": "280" + "port": 785984384, + "host": "283" }, - "initialDelaySeconds": -1224991707, - "timeoutSeconds": 887398685, - "periodSeconds": -612420031, - "successThreshold": -1139949896, - "failureThreshold": 1274622498, - "terminationGracePeriodSeconds": -772827768292101457 + "initialDelaySeconds": 193463975, + "timeoutSeconds": 1831208885, + "periodSeconds": -1425408777, + "successThreshold": -820113531, + "failureThreshold": 622267234, + "terminationGracePeriodSeconds": 1763564411727068601 }, "readinessProbe": { "exec": { "command": [ - "281" + "284" ] }, "httpGet": { - "path": "282", - "port": -1871050070, - "host": "283", - "scheme": "KJɐ扵Gƚ绤fʀļ腩墺", + "path": "285", + "port": "286", + "host": "287", + "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "284", - "value": "285" + "name": "288", + "value": "289" } ] }, "tcpSocket": { - "port": "286", - "host": "287" + "port": -979584143, + "host": "290" }, - "initialDelaySeconds": -631862664, - "timeoutSeconds": 1056531337, - "periodSeconds": -53728881, - "successThreshold": -52739417, - "failureThreshold": 764360370, - "terminationGracePeriodSeconds": -4822130814617082943 + "initialDelaySeconds": -1748648882, + "timeoutSeconds": -239843014, + "periodSeconds": 1381579966, + "successThreshold": -1418092595, + "failureThreshold": -1538905728, + "terminationGracePeriodSeconds": -1867540518204155332 }, "startupProbe": { "exec": { "command": [ - "288" + "291" ] }, "httpGet": { - "path": "289", - "port": 1004325340, - "host": "290", - "scheme": "徶đ寳议Ƭƶ氩Ȩ", + "path": "292", + "port": "293", + "host": "294", + "scheme": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*", "httpHeaders": [ { - "name": "291", - "value": "292" + "name": "295", + "value": "296" } ] }, "tcpSocket": { - "port": -18758819, - "host": "293" + "port": 1574967021, + "host": "297" }, - "initialDelaySeconds": -1666819085, - "timeoutSeconds": -282193676, - "periodSeconds": 1777326813, - "successThreshold": -1471289102, - "failureThreshold": 704287801, - "terminationGracePeriodSeconds": 8549738818875784336 + "initialDelaySeconds": -244758593, + "timeoutSeconds": 591440053, + "periodSeconds": 104069700, + "successThreshold": -331594625, + "failureThreshold": 888935190, + "terminationGracePeriodSeconds": 7193904584276385338 }, "lifecycle": { "postStart": { "exec": { "command": [ - "294" + "298" ] }, "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "V垾现葢ŵ橨鬶l", + "path": "299", + "port": "300", + "host": "301", + "scheme": "w忊|E剒蔞|表徶đ寳议", "httpHeaders": [ { - "name": "298", - "value": "299" + "name": "302", + "value": "303" } ] }, "tcpSocket": { - "port": "300", - "host": "301" + "port": -614161319, + "host": "304" } }, "preStop": { "exec": { "command": [ - "302" + "305" ] }, "httpGet": { - "path": "303", - "port": "304", - "host": "305", - "scheme": "淳4揻-$ɽ丟×x锏ɟ", + "path": "306", + "port": "307", + "host": "308", + "scheme": "跩aŕ翑", "httpHeaders": [ { - "name": "306", - "value": "307" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1907998540, - "host": "308" + "port": "311", + "host": "312" } } }, - "terminationMessagePath": "309", - "terminationMessagePolicy": ",ŕ", - "imagePullPolicy": "澝qV訆Ǝżŧ", + "terminationMessagePath": "313", + "imagePullPolicy": "\u0026皥贸碔lNKƙ順\\E¦队偯", "securityContext": { "capabilities": { "add": [ - "sNƗ¸gĩ餠籲磣Óƿ頀\"冓鍓贯澔" + "徥淳4揻-$ɽ丟" ], "drop": [ - "ƺ蛜6Ɖ飴ɎiǨź" + "" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "310", - "role": "311", - "type": "312", - "level": "313" + "user": "314", + "role": "315", + "type": "316", + "level": "317" }, "windowsOptions": { - "gmsaCredentialSpecName": "314", - "gmsaCredentialSpec": "315", - "runAsUserName": "316", - "hostProcess": true + "gmsaCredentialSpecName": "318", + "gmsaCredentialSpec": "319", + "runAsUserName": "320", + "hostProcess": false }, - "runAsUser": 3716388262106582789, - "runAsGroup": 2830586634171662902, + "runAsUser": -816831389119959689, + "runAsGroup": 8194791334069427324, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏", + "allowPrivilegeEscalation": true, + "procMount": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", "seccompProfile": { - "type": "鯂²静", - "localhostProfile": "317" + "type": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", + "localhostProfile": "321" } }, - "stdin": true, "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "318", - "image": "319", + "name": "322", + "image": "323", "command": [ - "320" + "324" ], "args": [ - "321" + "325" ], - "workingDir": "322", + "workingDir": "326", "ports": [ { - "name": "323", - "hostPort": -617381112, - "containerPort": 1851229369, - "protocol": "ŕİi騎C", - "hostIP": "324" + "name": "327", + "hostPort": 1504385614, + "containerPort": 865289071, + "protocol": "iɥ嵐sC8", + "hostIP": "328" } ], "envFrom": [ { - "prefix": "325", + "prefix": "329", "configMapRef": { - "name": "326", + "name": "330", "optional": false }, "secretRef": { - "name": "327", - "optional": true + "name": "331", + "optional": false } } ], "env": [ { - "name": "328", - "value": "329", + "name": "332", + "value": "333", "valueFrom": { "fieldRef": { - "apiVersion": "330", - "fieldPath": "331" + "apiVersion": "334", + "fieldPath": "335" }, "resourceFieldRef": { - "containerName": "332", - "resource": "333", - "divisor": "817" + "containerName": "336", + "resource": "337", + "divisor": "832" }, "configMapKeyRef": { - "name": "334", - "key": "335", + "name": "338", + "key": "339", "optional": false }, "secretKeyRef": { - "name": "336", - "key": "337", + "name": "340", + "key": "341", "optional": false } } @@ -1031,255 +1033,256 @@ ], "resources": { "limits": { - "": "243" + "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻": "127" }, "requests": { - "ɔ幩še": "641" + "C\"6x$1s": "463" } }, "volumeMounts": [ { - "name": "338", - "readOnly": true, - "mountPath": "339", - "subPath": "340", - "mountPropagation": "", - "subPathExpr": "341" + "name": "342", + "mountPath": "343", + "subPath": "344", + "mountPropagation": "P­蜷ɔ幩šeSvEȤƏ埮pɵ{W", + "subPathExpr": "345" } ], "volumeDevices": [ { - "name": "342", - "devicePath": "343" + "name": "346", + "devicePath": "347" } ], "livenessProbe": { "exec": { "command": [ - "344" + "348" ] }, "httpGet": { - "path": "345", - "port": "346", - "host": "347", - "scheme": "pɵ{", + "path": "349", + "port": -1700828941, + "host": "350", + "scheme": "諔迮ƙ", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "351", + "value": "352" } ] }, "tcpSocket": { - "port": "350", - "host": "351" + "port": "353", + "host": "354" }, - "initialDelaySeconds": 1221583046, - "timeoutSeconds": -1861307253, - "periodSeconds": 1802356198, - "successThreshold": -5838370, - "failureThreshold": 595289079, - "terminationGracePeriodSeconds": -7062605330414484831 + "initialDelaySeconds": -969533986, + "timeoutSeconds": 299741709, + "periodSeconds": -488127393, + "successThreshold": 1137109081, + "failureThreshold": -1896415283, + "terminationGracePeriodSeconds": 6618112330449141397 }, "readinessProbe": { "exec": { "command": [ - "352" + "355" ] }, "httpGet": { - "path": "353", - "port": -1952582931, - "host": "354", - "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "path": "356", + "port": "357", + "host": "358", + "scheme": "ɱďW賁Ě", "httpHeaders": [ { - "name": "355", - "value": "356" + "name": "359", + "value": "360" } ] }, "tcpSocket": { - "port": "357", - "host": "358" + "port": 1436222565, + "host": "361" }, - "initialDelaySeconds": 748460736, - "timeoutSeconds": 1601057463, - "periodSeconds": 864674728, - "successThreshold": -707765804, - "failureThreshold": -1491762290, - "terminationGracePeriodSeconds": -6530634860612550556 + "initialDelaySeconds": -674445196, + "timeoutSeconds": 1239158543, + "periodSeconds": -543432015, + "successThreshold": -515370067, + "failureThreshold": 2073046460, + "terminationGracePeriodSeconds": 7270263763744228913 }, "startupProbe": { "exec": { "command": [ - "359" + "362" ] }, "httpGet": { - "path": "360", - "port": 129997413, - "host": "361", - "scheme": "Ǣ曣ŋayåe躒訙", + "path": "363", + "port": "364", + "host": "365", + "scheme": "XW疪鑳w妕眵", "httpHeaders": [ { - "name": "362", - "value": "363" + "name": "366", + "value": "367" } ] }, "tcpSocket": { - "port": "364", - "host": "365" + "port": 455919108, + "host": "368" }, - "initialDelaySeconds": 2144856253, - "timeoutSeconds": 739175678, - "periodSeconds": -17241638, - "successThreshold": 1454160406, - "failureThreshold": 597943993, - "terminationGracePeriodSeconds": -5315960194881172085 + "initialDelaySeconds": -832681001, + "timeoutSeconds": 1616390418, + "periodSeconds": -1337533938, + "successThreshold": 1473765654, + "failureThreshold": 252309773, + "terminationGracePeriodSeconds": -8460346884535567850 }, "lifecycle": { "postStart": { "exec": { "command": [ - "366" + "369" ] }, "httpGet": { - "path": "367", - "port": -637630736, - "host": "368", - "scheme": "Ŵ壶ƵfȽÃ茓pȓɻ", + "path": "370", + "port": -869776221, + "host": "371", + "scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", "httpHeaders": [ { - "name": "369", - "value": "370" + "name": "372", + "value": "373" } ] }, "tcpSocket": { - "port": "371", - "host": "372" + "port": "374", + "host": "375" } }, "preStop": { "exec": { "command": [ - "373" + "376" ] }, "httpGet": { - "path": "374", - "port": "375", - "host": "376", - "scheme": "Ǹ|蕎'佉賞ǧĒz", + "path": "377", + "port": -1917609921, + "host": "378", + "scheme": "耗", "httpHeaders": [ { - "name": "377", - "value": "378" + "name": "379", + "value": "380" } ] }, "tcpSocket": { - "port": -1920304485, - "host": "379" + "port": "381", + "host": "382" } } }, - "terminationMessagePath": "380", - "imagePullPolicy": "ŭƽ眝{æ盪泙若`l}Ñ蠂Ü[ƛ^輅9", + "terminationMessagePath": "383", + "terminationMessagePolicy": "ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[", + "imagePullPolicy": "灲閈誹ʅ蕉ɼ搳", "securityContext": { "capabilities": { "add": [ - "ƈ眽炊礫Ƽ¨Ix糂腂" + "箨ʨIk(dŊiɢ" ], "drop": [ - "ǚŜEuEy竬ʆɞ" + "Į蛋I滞廬耐鷞焬CQ" ] }, "privileged": true, "seLinuxOptions": { - "user": "381", - "role": "382", - "type": "383", - "level": "384" + "user": "384", + "role": "385", + "type": "386", + "level": "387" }, "windowsOptions": { - "gmsaCredentialSpecName": "385", - "gmsaCredentialSpec": "386", - "runAsUserName": "387", - "hostProcess": true + "gmsaCredentialSpecName": "388", + "gmsaCredentialSpec": "389", + "runAsUserName": "390", + "hostProcess": false }, - "runAsUser": 2002344837004307079, - "runAsGroup": 6975450977224404481, + "runAsUser": -506227444233847191, + "runAsGroup": -583355774536171734, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "ǣƘƵŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽż", + "allowPrivilegeEscalation": false, + "procMount": "EĨǔvÄÚ×p", "seccompProfile": { - "type": "", - "localhostProfile": "388" + "type": "m罂o3ǰ廋i乳'ȘUɻ", + "localhostProfile": "391" } }, "stdin": true, + "stdinOnce": true, "tty": true, - "targetContainerName": "389" + "targetContainerName": "392" } ], - "restartPolicy": "xƂ9阠", - "terminationGracePeriodSeconds": -1251681867635446860, - "activeDeadlineSeconds": -3936694093978979945, - "dnsPolicy": "喕", + "restartPolicy": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", + "terminationGracePeriodSeconds": -3877666641335425693, + "activeDeadlineSeconds": -2391833818948531474, + "dnsPolicy": "Ƒ[澔", "nodeSelector": { - "390": "391" + "393": "394" }, - "serviceAccountName": "392", - "serviceAccount": "393", - "automountServiceAccountToken": false, - "nodeName": "394", - "hostIPC": true, - "shareProcessNamespace": false, + "serviceAccountName": "395", + "serviceAccount": "396", + "automountServiceAccountToken": true, + "nodeName": "397", + "hostPID": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "395", - "role": "396", - "type": "397", - "level": "398" + "user": "398", + "role": "399", + "type": "400", + "level": "401" }, "windowsOptions": { - "gmsaCredentialSpecName": "399", - "gmsaCredentialSpec": "400", - "runAsUserName": "401", - "hostProcess": true + "gmsaCredentialSpecName": "402", + "gmsaCredentialSpec": "403", + "runAsUserName": "404", + "hostProcess": false }, - "runAsUser": -6831737663967002548, - "runAsGroup": 8790792169692841191, + "runAsUser": 7177254483209867257, + "runAsGroup": 7721939829013914482, "runAsNonRoot": true, "supplementalGroups": [ - 419368455950991325 + -5080569150241191388 ], - "fsGroup": 7768299165267384830, + "fsGroup": -6486306216295496187, "sysctls": [ { - "name": "402", - "value": "403" + "name": "405", + "value": "406" } ], - "fsGroupChangePolicy": "G", + "fsGroupChangePolicy": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", "seccompProfile": { - "type": "鵌Ē3Nh×DJɶ羹ƞʓ%ʝ", - "localhostProfile": "404" + "type": "崖S«V¯Á", + "localhostProfile": "407" } }, "imagePullSecrets": [ { - "name": "405" + "name": "408" } ], - "hostname": "406", - "subdomain": "407", + "hostname": "409", + "subdomain": "410", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1287,19 +1290,19 @@ { "matchExpressions": [ { - "key": "408", - "operator": "ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«", + "key": "411", + "operator": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o", "values": [ - "409" + "412" ] } ], "matchFields": [ { - "key": "410", - "operator": "仁", + "key": "413", + "operator": "旹翃ɾ氒ĺʈʫ", "values": [ - "411" + "414" ] } ] @@ -1308,23 +1311,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -316155142, + "weight": -855547676, "preference": { "matchExpressions": [ { - "key": "412", - "operator": "ij\\", + "key": "415", + "operator": "F豎穜姰l咑耖p^鏋蛹Ƚȿ", "values": [ - "413" + "416" ] } ], "matchFields": [ { - "key": "414", - "operator": "ż鯀1", + "key": "417", + "operator": "ò", "values": [ - "415" + "418" ] } ] @@ -1337,27 +1340,30 @@ { "labelSelector": { "matchLabels": { - "w--2--82--cj-1-s--op34-yy28-38xmu5nx4s--41-7--65m8-1x129v.5kr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cgr6q/z._8M0U1z": "X--56-7" + "4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP" }, "matchExpressions": [ { - "key": "Jd._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68", - "operator": "Exists" + "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", + "operator": "NotIn", + "values": [ + "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" + ] } ] }, "namespaces": [ - "422" + "425" ], - "topologyKey": "423", + "topologyKey": "426", "namespaceSelector": { "matchLabels": { - "x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5": "bB3_.b17ca-p" + "3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O" }, "matchExpressions": [ { - "key": "1rhm-5y--z-0/5eQ9", - "operator": "DoesNotExist" + "key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a", + "operator": "Exists" } ] } @@ -1365,34 +1371,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1731963575, + "weight": 957174721, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "v---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f33/Z": "jz_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4" + "o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C" }, "matchExpressions": [ { - "key": "wq--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-b7/C...8-_0__5HG2_5XOAX.gUq2", - "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" + ] } ] }, "namespaces": [ - "436" + "439" ], - "topologyKey": "437", + "topologyKey": "440", "namespaceSelector": { "matchLabels": { - "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr": "5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h4" + "O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr" }, "matchExpressions": [ { - "key": "L4K..-68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP", - "operator": "In", - "values": [ - "7-.-_I-F.Pt" - ] + "key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T", + "operator": "Exists" } ] } @@ -1405,26 +1411,29 @@ { "labelSelector": { "matchLabels": { - "aP41_.-.-AQ._r.-_Rw1k8KLu..ly--J-_.ZCRT.0z-oe.G79.3bU_._nV345": "y-u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dP" + "ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV" }, "matchExpressions": [ { - "key": "O-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.o", - "operator": "Exists" + "key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W", + "operator": "In", + "values": [ + "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx" + ] } ] }, "namespaces": [ - "450" + "453" ], - "topologyKey": "451", + "topologyKey": "454", "namespaceSelector": { "matchLabels": { - "bid-7x0u738--7w-tdt-u-0----p6l-3-znd-8b-dg--1035ad1od/Nn_U-...1P_.8": "8_2v89U--8.3N_.n1.--.._-x4" + "2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J" }, "matchExpressions": [ { - "key": "7-ufi-7/3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--C", + "key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo", "operator": "NotIn", "values": [ "0--_qv4--_.6_N_9X-B.s8.B" @@ -1450,9 +1459,9 @@ ] }, "namespaces": [ - "464" + "467" ], - "topologyKey": "465", + "topologyKey": "468", "namespaceSelector": { "matchLabels": { "8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO" @@ -1472,37 +1481,37 @@ ] } }, - "schedulerName": "472", + "schedulerName": "475", "tolerations": [ { - "key": "473", + "key": "476", "operator": "Ü", - "value": "474", + "value": "477", "effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ", "tolerationSeconds": 8594241010639209901 } ], "hostAliases": [ { - "ip": "475", + "ip": "478", "hostnames": [ - "476" + "479" ] } ], - "priorityClassName": "477", + "priorityClassName": "480", "priority": 878153992, "dnsConfig": { "nameservers": [ - "478" + "481" ], "searches": [ - "479" + "482" ], "options": [ { - "name": "480", - "value": "481" + "name": "483", + "value": "484" } ] }, @@ -1511,7 +1520,7 @@ "conditionType": "=ȑ-A敲ʉ" } ], - "runtimeClassName": "482", + "runtimeClassName": "485", "enableServiceLinks": false, "preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa", "overhead": { @@ -1520,7 +1529,7 @@ "topologySpreadConstraints": [ { "maxSkew": -702578810, - "topologyKey": "483", + "topologyKey": "486", "whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw", "labelSelector": { "matchLabels": { @@ -1549,13 +1558,13 @@ "status": "翻颌徚J殦殐ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ", "lastProbeTime": "2427-08-17T22:26:07Z", "lastTransitionTime": "2012-08-22T05:26:31Z", - "reason": "490", - "message": "491" + "reason": "493", + "message": "494" } ], "active": 543081713, "succeeded": -377965530, "failed": 77405208, - "completedIndexes": "492" + "completedIndexes": "495" } } \ 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 670266b0724..8bdcc050557 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb differ 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 a6deede1740..2c2f1a5e14d 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 @@ -78,72 +78,73 @@ spec: selfLink: "29" uid: ɸ=ǤÆ碛,1 spec: - activeDeadlineSeconds: -3936694093978979945 + activeDeadlineSeconds: -2391833818948531474 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "412" - operator: ij\ + - key: "415" + operator: F豎穜姰l咑耖p^鏋蛹Ƚȿ values: - - "413" + - "416" matchFields: - - key: "414" - operator: ż鯀1 + - key: "417" + operator: ò values: - - "415" - weight: -316155142 + - "418" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "408" - operator: ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S« + - key: "411" + operator: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o values: - - "409" + - "412" matchFields: - - key: "410" - operator: 仁 + - key: "413" + operator: 旹翃ɾ氒ĺʈʫ values: - - "411" + - "414" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: wq--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-b7/C...8-_0__5HG2_5XOAX.gUq2 - 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: - v---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f33/Z: jz_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4 + o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C namespaceSelector: matchExpressions: - - key: L4K..-68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP - operator: In - values: - - 7-.-_I-F.Pt + - key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T + operator: Exists matchLabels: - 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr: 5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h4 + O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr namespaces: - - "436" - topologyKey: "437" - weight: -1731963575 + - "439" + topologyKey: "440" + weight: 957174721 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: Jd._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68 - operator: Exists + - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v + operator: NotIn + values: + - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc matchLabels: - ? w--2--82--cj-1-s--op34-yy28-38xmu5nx4s--41-7--65m8-1x129v.5kr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cgr6q/z._8M0U1z - : X--56-7 + 4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP namespaceSelector: matchExpressions: - - key: 1rhm-5y--z-0/5eQ9 - operator: DoesNotExist + - key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a + operator: Exists matchLabels: - x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5: bB3_.b17ca-p + 3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O namespaces: - - "422" - topologyKey: "423" + - "425" + topologyKey: "426" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: @@ -162,638 +163,638 @@ spec: matchLabels: 8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO namespaces: - - "464" - topologyKey: "465" + - "467" + topologyKey: "468" weight: -1832836223 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: O-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.o - operator: Exists + - key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W + operator: In + values: + - U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx matchLabels: - aP41_.-.-AQ._r.-_Rw1k8KLu..ly--J-_.ZCRT.0z-oe.G79.3bU_._nV345: y-u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dP + ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV namespaceSelector: matchExpressions: - - key: 7-ufi-7/3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--C + - key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo operator: NotIn values: - 0--_qv4--_.6_N_9X-B.s8.B matchLabels: - bid-7x0u738--7w-tdt-u-0----p6l-3-znd-8b-dg--1035ad1od/Nn_U-...1P_.8: 8_2v89U--8.3N_.n1.--.._-x4 + 2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J namespaces: - - "450" - topologyKey: "451" - automountServiceAccountToken: false + - "453" + topologyKey: "454" + automountServiceAccountToken: true containers: - args: - - "251" + - "254" command: - - "250" + - "253" env: - - name: "258" - value: "259" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "265" - name: "264" + key: "268" + name: "267" optional: true fieldRef: - apiVersion: "260" - fieldPath: "261" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "262" - divisor: "509" - resource: "263" + containerName: "265" + divisor: "1" + resource: "266" secretKeyRef: - key: "267" - name: "266" - optional: false + key: "270" + name: "269" + optional: true envFrom: - configMapRef: - name: "256" - optional: true - prefix: "255" - secretRef: - name: "257" + name: "259" optional: false - image: "249" - imagePullPolicy: 澝qV訆Ǝżŧ + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: '&皥贸碔lNKƙ順\E¦队偯' lifecycle: postStart: exec: command: - - "294" + - "298" httpGet: - host: "297" - httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: V垾现葢ŵ橨鬶l - tcpSocket: host: "301" + httpHeaders: + - name: "302" + value: "303" + path: "299" port: "300" + scheme: w忊|E剒蔞|表徶đ寳议 + tcpSocket: + host: "304" + port: -614161319 preStop: exec: command: - - "302" + - "305" httpGet: - host: "305" - httpHeaders: - - name: "306" - value: "307" - path: "303" - port: "304" - scheme: 淳4揻-$ɽ丟×x锏ɟ - tcpSocket: host: "308" - port: 1907998540 + httpHeaders: + - name: "309" + value: "310" + path: "306" + port: "307" + scheme: 跩aŕ翑 + tcpSocket: + host: "312" + port: "311" livenessProbe: exec: command: - - "274" - failureThreshold: 1274622498 + - "277" + failureThreshold: 622267234 httpGet: - host: "277" - httpHeaders: - - name: "278" - value: "279" - path: "275" - port: "276" - scheme: 佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ - initialDelaySeconds: -1224991707 - periodSeconds: -612420031 - successThreshold: -1139949896 - tcpSocket: host: "280" - port: -379385405 - terminationGracePeriodSeconds: -772827768292101457 - timeoutSeconds: 887398685 - name: "248" - ports: - - containerPort: -1213051101 - hostIP: "254" - hostPort: -970312425 - name: "253" - protocol: 埽uʎȺ眖R - readinessProbe: - exec: - command: - - "281" - failureThreshold: 764360370 - httpGet: + httpHeaders: + - name: "281" + value: "282" + path: "278" + port: "279" + initialDelaySeconds: 193463975 + periodSeconds: -1425408777 + successThreshold: -820113531 + tcpSocket: host: "283" - httpHeaders: - - name: "284" - value: "285" - path: "282" - port: -1871050070 - scheme: KJɐ扵Gƚ绤fʀļ腩墺 - initialDelaySeconds: -631862664 - periodSeconds: -53728881 - successThreshold: -52739417 - tcpSocket: - host: "287" - port: "286" - terminationGracePeriodSeconds: -4822130814617082943 - timeoutSeconds: 1056531337 - resources: - limits: - Ůĺ}潷ʒ胵輓: "404" - requests: - 1ØœȠƬQg鄠: "488" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - sNƗ¸gĩ餠籲磣Óƿ頀"冓鍓贯澔 - drop: - - ƺ蛜6Ɖ飴ɎiǨź - privileged: true - procMount: ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏 - readOnlyRootFilesystem: false - runAsGroup: 2830586634171662902 - runAsNonRoot: false - runAsUser: 3716388262106582789 - seLinuxOptions: - level: "313" - role: "311" - type: "312" - user: "310" - seccompProfile: - localhostProfile: "317" - type: 鯂²静 - windowsOptions: - gmsaCredentialSpec: "315" - gmsaCredentialSpecName: "314" - hostProcess: true - runAsUserName: "316" - startupProbe: - exec: - command: - - "288" - failureThreshold: 704287801 - httpGet: - host: "290" - httpHeaders: - - name: "291" - value: "292" - path: "289" - port: 1004325340 - scheme: 徶đ寳议Ƭƶ氩Ȩ - initialDelaySeconds: -1666819085 - periodSeconds: 1777326813 - successThreshold: -1471289102 - tcpSocket: - host: "293" - port: -18758819 - terminationGracePeriodSeconds: 8549738818875784336 - timeoutSeconds: -282193676 - stdin: true - stdinOnce: true - terminationMessagePath: "309" - terminationMessagePolicy: ',ŕ' - tty: true - volumeDevices: - - devicePath: "273" - name: "272" - volumeMounts: - - mountPath: "269" - mountPropagation: '>郵[+扴ȨŮ' - name: "268" - readOnly: true - subPath: "270" - subPathExpr: "271" - workingDir: "252" - dnsConfig: - nameservers: - - "478" - options: - - name: "480" - value: "481" - searches: - - "479" - dnsPolicy: 喕 - enableServiceLinks: false - ephemeralContainers: - - args: - - "321" - command: - - "320" - env: - - name: "328" - value: "329" - valueFrom: - configMapKeyRef: - key: "335" - name: "334" - optional: false - fieldRef: - apiVersion: "330" - fieldPath: "331" - resourceFieldRef: - containerName: "332" - divisor: "817" - resource: "333" - secretKeyRef: - key: "337" - name: "336" - optional: false - envFrom: - - configMapRef: - name: "326" - optional: false - prefix: "325" - secretRef: - name: "327" - optional: true - image: "319" - imagePullPolicy: ŭƽ眝{æ盪泙若`l}Ñ蠂Ü[ƛ^輅9 - lifecycle: - postStart: - exec: - command: - - "366" - httpGet: - host: "368" - httpHeaders: - - name: "369" - value: "370" - path: "367" - port: -637630736 - scheme: Ŵ壶ƵfȽÃ茓pȓɻ - tcpSocket: - host: "372" - port: "371" - preStop: - exec: - command: - - "373" - httpGet: - host: "376" - httpHeaders: - - name: "377" - value: "378" - path: "374" - port: "375" - scheme: Ǹ|蕎'佉賞ǧĒz - tcpSocket: - host: "379" - port: -1920304485 - livenessProbe: - exec: - command: - - "344" - failureThreshold: 595289079 - httpGet: - host: "347" - httpHeaders: - - name: "348" - value: "349" - path: "345" - port: "346" - scheme: pɵ{ - initialDelaySeconds: 1221583046 - periodSeconds: 1802356198 - successThreshold: -5838370 - tcpSocket: - host: "351" - port: "350" - terminationGracePeriodSeconds: -7062605330414484831 - timeoutSeconds: -1861307253 - name: "318" + port: 785984384 + terminationGracePeriodSeconds: 1763564411727068601 + timeoutSeconds: 1831208885 + name: "251" ports: - - containerPort: 1851229369 - hostIP: "324" - hostPort: -617381112 - name: "323" - protocol: ŕİi騎C + - containerPort: -1142814363 + hostIP: "257" + hostPort: 1087851818 + name: "256" + protocol: f<鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡źȰ readinessProbe: exec: command: - - "352" - failureThreshold: -1491762290 + - "284" + failureThreshold: -1538905728 httpGet: - host: "354" + host: "287" httpHeaders: - - name: "355" - value: "356" - path: "353" - port: -1952582931 - scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ - initialDelaySeconds: 748460736 - periodSeconds: 864674728 - successThreshold: -707765804 + - name: "288" + value: "289" + path: "285" + port: "286" + scheme: Ů+朷Ǝ膯ljVX1虊 + initialDelaySeconds: -1748648882 + periodSeconds: 1381579966 + successThreshold: -1418092595 tcpSocket: - host: "358" - port: "357" - terminationGracePeriodSeconds: -6530634860612550556 - timeoutSeconds: 1601057463 + host: "290" + port: -979584143 + terminationGracePeriodSeconds: -1867540518204155332 + timeoutSeconds: -239843014 resources: limits: - "": "243" + ɳɷ9Ì: "134" requests: - ɔ幩še: "641" + WKw(: "800" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ƈ眽炊礫Ƽ¨Ix糂腂 + - 徥淳4揻-$ɽ丟 drop: - - ǚŜEuEy竬ʆɞ - privileged: true - procMount: ǣƘƵŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽż + - "" + privileged: false + procMount: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ readOnlyRootFilesystem: false - runAsGroup: 6975450977224404481 + runAsGroup: 8194791334069427324 runAsNonRoot: false - runAsUser: 2002344837004307079 + runAsUser: -816831389119959689 seLinuxOptions: - level: "384" - role: "382" - type: "383" - user: "381" + level: "317" + role: "315" + type: "316" + user: "314" seccompProfile: - localhostProfile: "388" - type: "" + localhostProfile: "321" + type: ȱğ_<ǬëJ橈'琕鶫:顇ə windowsOptions: - gmsaCredentialSpec: "386" - gmsaCredentialSpecName: "385" - hostProcess: true - runAsUserName: "387" + gmsaCredentialSpec: "319" + gmsaCredentialSpecName: "318" + hostProcess: false + runAsUserName: "320" startupProbe: exec: command: - - "359" - failureThreshold: 597943993 + - "291" + failureThreshold: 888935190 httpGet: - host: "361" + host: "294" httpHeaders: - - name: "362" - value: "363" - path: "360" - port: 129997413 - scheme: Ǣ曣ŋayåe躒訙 - initialDelaySeconds: 2144856253 - periodSeconds: -17241638 - successThreshold: 1454160406 + - name: "295" + value: "296" + path: "292" + port: "293" + scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L* + initialDelaySeconds: -244758593 + periodSeconds: 104069700 + successThreshold: -331594625 tcpSocket: - host: "365" - port: "364" - terminationGracePeriodSeconds: -5315960194881172085 - timeoutSeconds: 739175678 - stdin: true - targetContainerName: "389" - terminationMessagePath: "380" + host: "297" + port: 1574967021 + terminationGracePeriodSeconds: 7193904584276385338 + timeoutSeconds: 591440053 + stdinOnce: true + terminationMessagePath: "313" tty: true volumeDevices: - - devicePath: "343" - name: "342" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "339" - mountPropagation: "" - name: "338" + - mountPath: "272" + mountPropagation: 跦Opwǩ曬逴褜1 + name: "271" readOnly: true - subPath: "340" - subPathExpr: "341" - workingDir: "322" - hostAliases: - - hostnames: - - "476" - ip: "475" - hostIPC: true - hostname: "406" - imagePullSecrets: - - name: "405" - initContainers: + subPath: "273" + subPathExpr: "274" + workingDir: "255" + dnsConfig: + nameservers: + - "481" + options: + - name: "483" + value: "484" + searches: + - "482" + dnsPolicy: Ƒ[澔 + enableServiceLinks: false + ephemeralContainers: - args: - - "181" + - "325" command: - - "180" + - "324" env: - - name: "188" - value: "189" + - name: "332" + value: "333" valueFrom: configMapKeyRef: - key: "195" - name: "194" + key: "339" + name: "338" optional: false fieldRef: - apiVersion: "190" - fieldPath: "191" + apiVersion: "334" + fieldPath: "335" resourceFieldRef: - containerName: "192" - divisor: "993" - resource: "193" + containerName: "336" + divisor: "832" + resource: "337" secretKeyRef: - key: "197" - name: "196" - optional: true + key: "341" + name: "340" + optional: false envFrom: - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" + name: "330" optional: false - image: "179" - imagePullPolicy: ljʁ揆ɘȌ脾嚏吐ĠL + prefix: "329" + secretRef: + name: "331" + optional: false + image: "323" + imagePullPolicy: 灲閈誹ʅ蕉ɼ搳 lifecycle: postStart: exec: command: - - "225" + - "369" httpGet: - host: "227" + host: "371" httpHeaders: - - name: "228" - value: "229" - path: "226" - port: 817152661 - scheme: LJèux榜VƋZ + - name: "372" + value: "373" + path: "370" + port: -869776221 + scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' tcpSocket: - host: "231" - port: "230" + host: "375" + port: "374" preStop: exec: command: - - "232" + - "376" httpGet: - host: "234" + host: "378" httpHeaders: - - name: "235" - value: "236" - path: "233" - port: -2000048581 - scheme: 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę + - name: "379" + value: "380" + path: "377" + port: -1917609921 + scheme: 耗 tcpSocket: - host: "238" - port: "237" + host: "382" + port: "381" livenessProbe: exec: command: - - "204" - failureThreshold: 1719293828 + - "348" + failureThreshold: -1896415283 httpGet: - host: "206" + host: "350" httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1470854631 - scheme: ùƸʋŀ樺ȃ - initialDelaySeconds: -1366875038 - periodSeconds: -2015604435 - successThreshold: 576428641 + - name: "351" + value: "352" + path: "349" + port: -1700828941 + scheme: 諔迮ƙ + initialDelaySeconds: -969533986 + periodSeconds: -488127393 + successThreshold: 1137109081 tcpSocket: - host: "209" - port: -270045321 - terminationGracePeriodSeconds: 7695418809915380277 - timeoutSeconds: -1188430996 - name: "178" + host: "354" + port: "353" + terminationGracePeriodSeconds: 6618112330449141397 + timeoutSeconds: 299741709 + name: "322" ports: - - containerPort: 1434408532 - hostIP: "184" - hostPort: -1179067190 - name: "183" - protocol: '`劳&¼傭Ȟ1酃=6}ɡŇƉ立h' + - containerPort: 865289071 + hostIP: "328" + hostPort: 1504385614 + name: "327" + protocol: iɥ嵐sC8 readinessProbe: exec: command: - - "210" - failureThreshold: 192146389 + - "355" + failureThreshold: 2073046460 httpGet: - host: "213" + host: "358" httpHeaders: - - name: "214" - value: "215" - path: "211" - port: "212" - scheme: 敍0)鈼¬麄 - initialDelaySeconds: 1170649416 - periodSeconds: -1891134534 - successThreshold: -1710454086 + - name: "359" + value: "360" + path: "356" + port: "357" + scheme: ɱďW賁Ě + initialDelaySeconds: -674445196 + periodSeconds: -543432015 + successThreshold: -515370067 tcpSocket: - host: "216" - port: -648954478 - terminationGracePeriodSeconds: 5519151154130360761 - timeoutSeconds: 893619181 + host: "361" + port: 1436222565 + terminationGracePeriodSeconds: 7270263763744228913 + timeoutSeconds: 1239158543 resources: limits: - n芞QÄȻȊ+?ƭ峧Y栲茇竛: "118" + h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻: "127" requests: - Ā<é瞾ʀNŬɨǙÄr: "862" + C"6x$1s: "463" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0 + - 箨ʨIk(dŊiɢ drop: - - Kʝ瘴I\p[ħsĨɆâĺɗ + - Į蛋I滞廬耐鷞焬CQ privileged: true - procMount: 攤/ɸɎ R§耶FfBl - readOnlyRootFilesystem: true - runAsGroup: 4006793330334483398 - runAsNonRoot: true - runAsUser: 8088324525605310061 + procMount: EĨǔvÄÚ×p + readOnlyRootFilesystem: false + runAsGroup: -583355774536171734 + runAsNonRoot: false + runAsUser: -506227444233847191 seLinuxOptions: - level: "243" - role: "241" - type: "242" - user: "240" + level: "387" + role: "385" + type: "386" + user: "384" seccompProfile: - localhostProfile: "247" - type: 3!Zɾģ毋Ó6 + localhostProfile: "391" + type: m罂o3ǰ廋i乳'ȘUɻ windowsOptions: - gmsaCredentialSpec: "245" - gmsaCredentialSpecName: "244" - hostProcess: true - runAsUserName: "246" + gmsaCredentialSpec: "389" + gmsaCredentialSpecName: "388" + hostProcess: false + runAsUserName: "390" startupProbe: exec: command: - - "217" - failureThreshold: 1048864116 + - "362" + failureThreshold: 252309773 httpGet: - host: "220" + host: "365" httpHeaders: - - name: "221" - value: "222" - path: "218" - port: "219" - scheme: 瓧嫭塓烀罁胾^拜 - initialDelaySeconds: -1613115506 - periodSeconds: 1385030458 - successThreshold: 427196286 + - name: "366" + value: "367" + path: "363" + port: "364" + scheme: XW疪鑳w妕眵 + initialDelaySeconds: -832681001 + periodSeconds: -1337533938 + successThreshold: 1473765654 tcpSocket: - host: "224" - port: "223" - terminationGracePeriodSeconds: 1132874952502226901 - timeoutSeconds: -1341523482 + host: "368" + port: 455919108 + terminationGracePeriodSeconds: -8460346884535567850 + timeoutSeconds: 1616390418 + stdin: true stdinOnce: true - terminationMessagePath: "239" - terminationMessagePolicy: U髷裎$MVȟ@7飣奺Ȋ + targetContainerName: "392" + terminationMessagePath: "383" + terminationMessagePolicy: ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[ tty: true volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "347" + name: "346" volumeMounts: - - mountPath: "199" - mountPropagation: 蒒5靇C'ɵK.Q貇£ȹ嫰 - name: "198" - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "394" + - mountPath: "343" + mountPropagation: P­蜷ɔ幩šeSvEȤƏ埮pɵ{W + name: "342" + subPath: "344" + subPathExpr: "345" + workingDir: "326" + hostAliases: + - hostnames: + - "479" + ip: "478" + hostPID: true + hostname: "409" + imagePullSecrets: + - name: "408" + initContainers: + - args: + - "184" + command: + - "183" + env: + - name: "191" + value: "192" + valueFrom: + configMapKeyRef: + key: "198" + name: "197" + optional: false + fieldRef: + apiVersion: "193" + fieldPath: "194" + resourceFieldRef: + containerName: "195" + divisor: "440" + resource: "196" + secretKeyRef: + key: "200" + name: "199" + optional: false + envFrom: + - configMapRef: + name: "189" + optional: true + prefix: "188" + secretRef: + name: "190" + optional: false + image: "182" + lifecycle: + postStart: + exec: + command: + - "227" + httpGet: + host: "230" + httpHeaders: + - name: "231" + value: "232" + path: "228" + port: "229" + scheme: 拜Ȍzɟ踡肒Ao/樝f + tcpSocket: + host: "233" + port: -1497057920 + preStop: + exec: + command: + - "234" + httpGet: + host: "237" + httpHeaders: + - name: "238" + value: "239" + path: "235" + port: "236" + scheme: x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ + tcpSocket: + host: "241" + port: "240" + livenessProbe: + exec: + command: + - "207" + failureThreshold: -1167888910 + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "208" + port: 1094670193 + scheme: 栲茇竛吲蚛隖<ǶĬ4y£軶ǃ*ʙ嫙& + initialDelaySeconds: -802585193 + periodSeconds: 1944205014 + successThreshold: -2079582559 + tcpSocket: + host: "213" + port: "212" + terminationGracePeriodSeconds: 9134864175859680954 + timeoutSeconds: 1901330124 + name: "181" + ports: + - containerPort: 44308192 + hostIP: "187" + hostPort: -1280763790 + name: "186" + protocol: Żwʮ馜üNșƶ4ĩĉ + readinessProbe: + exec: + command: + - "214" + failureThreshold: -1294101963 + httpGet: + host: "217" + httpHeaders: + - name: "218" + value: "219" + path: "215" + port: "216" + scheme: ȹ嫰ƹǔw÷nI粛E煹ǐƲE + initialDelaySeconds: -1390686338 + periodSeconds: 1908897348 + successThreshold: -153894372 + tcpSocket: + host: "220" + port: -88173241 + terminationGracePeriodSeconds: -8426138335498948912 + timeoutSeconds: 1762266578 + resources: + limits: + "": "993" + requests: + 瀹鞎sn芞: "621" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 + drop: + - rʤî萨zvt莭琽§ć\ ïì + privileged: false + procMount: N粕擓ƖHVe熼 + readOnlyRootFilesystem: false + runAsGroup: 9197199583783594492 + runAsNonRoot: false + runAsUser: 5064334456447889244 + seLinuxOptions: + level: "246" + role: "244" + type: "245" + user: "243" + seccompProfile: + localhostProfile: "250" + type: FD剂讼ɓȌʟn + windowsOptions: + gmsaCredentialSpec: "248" + gmsaCredentialSpecName: "247" + hostProcess: false + runAsUserName: "249" + startupProbe: + exec: + command: + - "221" + failureThreshold: 441998152 + httpGet: + host: "223" + httpHeaders: + - name: "224" + value: "225" + path: "222" + port: -1273036797 + scheme: ŤǢʭ嵔棂p儼Ƿ裚瓶 + initialDelaySeconds: -1275947865 + periodSeconds: -560140039 + successThreshold: -1933850966 + tcpSocket: + host: "226" + port: -1549755975 + terminationGracePeriodSeconds: 3211788672813464064 + timeoutSeconds: -2112697830 + stdinOnce: true + terminationMessagePath: "242" + terminationMessagePolicy: 萭旿@掇lNdǂ>5姣 + tty: true + volumeDevices: + - devicePath: "206" + name: "205" + volumeMounts: + - mountPath: "202" + mountPropagation: '鲡:' + name: "201" + readOnly: true + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "397" nodeSelector: - "390": "391" + "393": "394" overhead: <ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283" preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa priority: 878153992 - priorityClassName: "477" + priorityClassName: "480" readinessGates: - conditionType: =ȑ-A敲ʉ - restartPolicy: xƂ9阠 - runtimeClassName: "482" - schedulerName: "472" + restartPolicy: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 + runtimeClassName: "485" + schedulerName: "475" securityContext: - fsGroup: 7768299165267384830 - fsGroupChangePolicy: G - runAsGroup: 8790792169692841191 + fsGroup: -6486306216295496187 + fsGroupChangePolicy: ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠 + runAsGroup: 7721939829013914482 runAsNonRoot: true - runAsUser: -6831737663967002548 + runAsUser: 7177254483209867257 seLinuxOptions: - level: "398" - role: "396" - type: "397" - user: "395" + level: "401" + role: "399" + type: "400" + user: "398" seccompProfile: - localhostProfile: "404" - type: 鵌Ē3Nh×DJɶ羹ƞʓ%ʝ + localhostProfile: "407" + type: 崖S«V¯Á supplementalGroups: - - 419368455950991325 + - -5080569150241191388 sysctls: - - name: "402" - value: "403" + - name: "405" + value: "406" windowsOptions: - gmsaCredentialSpec: "400" - gmsaCredentialSpecName: "399" - hostProcess: true - runAsUserName: "401" - serviceAccount: "393" - serviceAccountName: "392" + gmsaCredentialSpec: "403" + gmsaCredentialSpecName: "402" + hostProcess: false + runAsUserName: "404" + serviceAccount: "396" + serviceAccountName: "395" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "407" - terminationGracePeriodSeconds: -1251681867635446860 + shareProcessNamespace: true + subdomain: "410" + terminationGracePeriodSeconds: -3877666641335425693 tolerations: - effect: 貛香"砻B鷋RȽXv*!ɝ茀Ǩ - key: "473" + key: "476" operator: Ü tolerationSeconds: 8594241010639209901 - value: "474" + value: "477" topologySpreadConstraints: - labelSelector: matchExpressions: @@ -802,7 +803,7 @@ spec: matchLabels: N-_.F: 09z2 maxSkew: -702578810 - topologyKey: "483" + topologyKey: "486" whenUnsatisfiable: Ž氮怉ƥ;"薑Ȣ#闬輙怀¹bCũw volumes: - awsElasticBlockStore: @@ -903,6 +904,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: Ŋƞ究:hoĂɋ: "206" @@ -1057,12 +1062,12 @@ spec: ttlSecondsAfterFinished: -1284862566 status: active: 543081713 - completedIndexes: "492" + completedIndexes: "495" conditions: - lastProbeTime: "2427-08-17T22:26:07Z" lastTransitionTime: "2012-08-22T05:26:31Z" - message: "491" - reason: "490" + message: "494" + reason: "493" status: 翻颌徚J殦殐ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ type: ɓ为\Ŧƺ猑\#ȼ縤ɰTaI楅© failed: 77405208 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json index c8201432dfd..78c59f9455a 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json @@ -492,6 +492,11 @@ "apiGroup": "194", "kind": "195", "name": "196" + }, + "dataSourceRef": { + "apiGroup": "197", + "kind": "198", + "name": "199" } } } @@ -500,829 +505,831 @@ ], "initContainers": [ { - "name": "197", - "image": "198", + "name": "200", + "image": "201", "command": [ - "199" + "202" ], "args": [ - "200" + "203" ], - "workingDir": "201", + "workingDir": "204", "ports": [ { - "name": "202", - "hostPort": 1919527626, - "containerPort": -389501466, - "protocol": ".鵫", - "hostIP": "203" + "name": "205", + "hostPort": -1180080716, + "containerPort": -1409668172, + "protocol": "脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻", + "hostIP": "206" } ], "envFrom": [ { - "prefix": "204", + "prefix": "207", "configMapRef": { - "name": "205", + "name": "208", "optional": true }, "secretRef": { - "name": "206", + "name": "209", "optional": false } } ], "env": [ { - "name": "207", - "value": "208", + "name": "210", + "value": "211", "valueFrom": { "fieldRef": { - "apiVersion": "209", - "fieldPath": "210" + "apiVersion": "212", + "fieldPath": "213" }, "resourceFieldRef": { - "containerName": "211", - "resource": "212", - "divisor": "322" + "containerName": "214", + "resource": "215", + "divisor": "231" }, "configMapKeyRef": { - "name": "213", - "key": "214", - "optional": true + "name": "216", + "key": "217", + "optional": false }, "secretKeyRef": { - "name": "215", - "key": "216", - "optional": false + "name": "218", + "key": "219", + "optional": true } } } ], "resources": { "limits": { - "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ": "660" + "": "55" }, "requests": { - "I\\p[": "853" + "粕擓ƖHVe熼'FD": "235" } }, "volumeMounts": [ { - "name": "217", - "readOnly": true, - "mountPath": "218", - "subPath": "219", - "mountPropagation": "HVe熼'FD剂讼ɓ", - "subPathExpr": "220" + "name": "220", + "mountPath": "221", + "subPath": "222", + "mountPropagation": "UÐ_ƮA攤/ɸɎ", + "subPathExpr": "223" } ], "volumeDevices": [ { - "name": "221", - "devicePath": "222" + "name": "224", + "devicePath": "225" } ], "livenessProbe": { "exec": { "command": [ - "223" + "226" ] }, "httpGet": { - "path": "224", - "port": "225", - "host": "226", - "scheme": "A", + "path": "227", + "port": "228", + "host": "229", + "scheme": "翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź", "httpHeaders": [ { - "name": "227", - "value": "228" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": 2060823740, - "host": "229" + "port": -1543701088, + "host": "232" }, - "initialDelaySeconds": -498930176, - "timeoutSeconds": 1885897314, - "periodSeconds": -465677631, - "successThreshold": 1054858106, - "failureThreshold": 232569106, - "terminationGracePeriodSeconds": -4941250258285962800 + "initialDelaySeconds": 513341278, + "timeoutSeconds": 627713162, + "periodSeconds": 1255312175, + "successThreshold": -1740959124, + "failureThreshold": 158280212, + "terminationGracePeriodSeconds": -1552383991890236277 }, "readinessProbe": { "exec": { "command": [ - "230" + "233" ] }, "httpGet": { - "path": "231", - "port": "232", - "host": "233", - "scheme": "s3!Zɾģ毋", + "path": "234", + "port": -1099429189, + "host": "235", + "scheme": "9Ì", "httpHeaders": [ { - "name": "234", - "value": "235" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": 391562775, - "host": "236" + "port": -1364571630, + "host": "238" }, - "initialDelaySeconds": -775511009, - "timeoutSeconds": -832805508, - "periodSeconds": -228822833, - "successThreshold": -970312425, - "failureThreshold": -1213051101, - "terminationGracePeriodSeconds": 6232238734837754388 + "initialDelaySeconds": 1689978741, + "timeoutSeconds": -1423854443, + "periodSeconds": -1798849477, + "successThreshold": -1017263912, + "failureThreshold": 852780575, + "terminationGracePeriodSeconds": -5381329890395615297 }, "startupProbe": { "exec": { "command": [ - "237" + "239" ] }, "httpGet": { - "path": "238", - "port": -1140531048, - "host": "239", + "path": "240", + "port": 1853396726, + "host": "241", + "scheme": "曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷", "httpHeaders": [ { - "name": "240", - "value": "241" + "name": "242", + "value": "243" } ] }, "tcpSocket": { - "port": 1741405963, - "host": "242" + "port": "244", + "host": "245" }, - "initialDelaySeconds": 1260448044, - "timeoutSeconds": -200461294, - "periodSeconds": -1791206950, - "successThreshold": 1160477220, - "failureThreshold": 1226391571, - "terminationGracePeriodSeconds": 6347577485454457915 + "initialDelaySeconds": -1789370277, + "timeoutSeconds": -1738948598, + "periodSeconds": 1724958480, + "successThreshold": -879005591, + "failureThreshold": -743369977, + "terminationGracePeriodSeconds": -6977492437661738751 }, "lifecycle": { "postStart": { "exec": { "command": [ - "243" + "246" ] }, "httpGet": { - "path": "244", - "port": "245", - "host": "246", - "scheme": "Opwǩ曬逴褜1ØœȠƬQg鄠", + "path": "247", + "port": "248", + "host": "249", + "scheme": "j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ", "httpHeaders": [ { - "name": "247", - "value": "248" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": 1102291854, - "host": "249" + "port": "252", + "host": "253" } }, "preStop": { "exec": { "command": [ - "250" + "254" ] }, "httpGet": { - "path": "251", - "port": 809006670, - "host": "252", - "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", + "path": "255", + "port": "256", + "host": "257", + "scheme": "y", "httpHeaders": [ { - "name": "253", - "value": "254" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": -1748648882, - "host": "255" + "port": -1620315711, + "host": "260" } } }, - "terminationMessagePath": "256", - "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", - "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "terminationMessagePath": "261", + "terminationMessagePolicy": "ɐ扵", + "imagePullPolicy": "鐫û咡W\u003c敄lu|榝", "securityContext": { "capabilities": { "add": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ".Ȏ蝪ʜ5遰=" ], "drop": [ - "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "257", - "role": "258", - "type": "259", - "level": "260" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "261", - "gmsaCredentialSpec": "262", - "runAsUserName": "263", - "hostProcess": false - }, - "runAsUser": 8833778257967181711, - "runAsGroup": -5647743520459672618, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "队偯J僳徥淳4揻", - "seccompProfile": { - "type": "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ", - "localhostProfile": "264" - } - }, - "stdin": true, - "stdinOnce": true - } - ], - "containers": [ - { - "name": "265", - "image": "266", - "command": [ - "267" - ], - "args": [ - "268" - ], - "workingDir": "269", - "ports": [ - { - "name": "270", - "hostPort": 1156888068, - "containerPort": -1296077882, - "protocol": "頸", - "hostIP": "271" - } - ], - "envFrom": [ - { - "prefix": "272", - "configMapRef": { - "name": "273", - "optional": true - }, - "secretRef": { - "name": "274", - "optional": false - } - } - ], - "env": [ - { - "name": "275", - "value": "276", - "valueFrom": { - "fieldRef": { - "apiVersion": "277", - "fieldPath": "278" - }, - "resourceFieldRef": { - "containerName": "279", - "resource": "280", - "divisor": "50" - }, - "configMapKeyRef": { - "name": "281", - "key": "282", - "optional": true - }, - "secretKeyRef": { - "name": "283", - "key": "284", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "´摖ȱ": "528" - }, - "requests": { - "鍓贯澔 ƺ蛜6Ɖ飴": "86" - } - }, - "volumeMounts": [ - { - "name": "285", - "mountPath": "286", - "subPath": "287", - "mountPropagation": "", - "subPathExpr": "288" - } - ], - "volumeDevices": [ - { - "name": "289", - "devicePath": "290" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "291" - ] - }, - "httpGet": { - "path": "292", - "port": -1453143878, - "host": "293", - "scheme": "鰥Z龏´DÒȗ", - "httpHeaders": [ - { - "name": "294", - "value": "295" - } - ] - }, - "tcpSocket": { - "port": 1843491416, - "host": "296" - }, - "initialDelaySeconds": -1204965397, - "timeoutSeconds": -494895708, - "periodSeconds": -1021949447, - "successThreshold": 802134138, - "failureThreshold": -942399354, - "terminationGracePeriodSeconds": 5431518803727886665 - }, - "readinessProbe": { - "exec": { - "command": [ - "297" - ] - }, - "httpGet": { - "path": "298", - "port": "299", - "host": "300", - "scheme": "J", - "httpHeaders": [ - { - "name": "301", - "value": "302" - } - ] - }, - "tcpSocket": { - "port": "303", - "host": "304" - }, - "initialDelaySeconds": 657418949, - "timeoutSeconds": -992558278, - "periodSeconds": 287654902, - "successThreshold": -2062708879, - "failureThreshold": 215186711, - "terminationGracePeriodSeconds": -607313695104609402 - }, - "startupProbe": { - "exec": { - "command": [ - "305" - ] - }, - "httpGet": { - "path": "306", - "port": -617381112, - "host": "307", - "scheme": "8ŕİi騎C\"6x", - "httpHeaders": [ - { - "name": "308", - "value": "309" - } - ] - }, - "tcpSocket": { - "port": -852140121, - "host": "310" - }, - "initialDelaySeconds": 1606930340, - "timeoutSeconds": 940930263, - "periodSeconds": -860435782, - "successThreshold": 1067125211, - "failureThreshold": -2088645849, - "terminationGracePeriodSeconds": 8161302388850132593 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "311" - ] - }, - "httpGet": { - "path": "312", - "port": 1167615307, - "host": "313", - "scheme": "vEȤƏ埮p", - "httpHeaders": [ - { - "name": "314", - "value": "315" - } - ] - }, - "tcpSocket": { - "port": "316", - "host": "317" - } - }, - "preStop": { - "exec": { - "command": [ - "318" - ] - }, - "httpGet": { - "path": "319", - "port": 1575106083, - "host": "320", - "scheme": "ş", - "httpHeaders": [ - { - "name": "321", - "value": "322" - } - ] - }, - "tcpSocket": { - "port": "323", - "host": "324" - } - } - }, - "terminationMessagePath": "325", - "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", - "imagePullPolicy": "ņ", - "securityContext": { - "capabilities": { - "add": [ - "DŽ髐njʉBn(fǂǢ曣" - ], - "drop": [ - "ay" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "326", - "role": "327", - "type": "328", - "level": "329" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "330", - "gmsaCredentialSpec": "331", - "runAsUserName": "332", - "hostProcess": true - }, - "runAsUser": -3576337664396773931, - "runAsGroup": -4786249339103684082, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "u8晲", - "seccompProfile": { - "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", - "localhostProfile": "333" - } - }, - "stdin": true - } - ], - "ephemeralContainers": [ - { - "name": "334", - "image": "335", - "command": [ - "336" - ], - "args": [ - "337" - ], - "workingDir": "338", - "ports": [ - { - "name": "339", - "hostPort": 1453852685, - "containerPort": 2037135322, - "protocol": "ǧĒzŔ瘍N", - "hostIP": "340" - } - ], - "envFrom": [ - { - "prefix": "341", - "configMapRef": { - "name": "342", - "optional": true - }, - "secretRef": { - "name": "343", - "optional": true - } - } - ], - "env": [ - { - "name": "344", - "value": "345", - "valueFrom": { - "fieldRef": { - "apiVersion": "346", - "fieldPath": "347" - }, - "resourceFieldRef": { - "containerName": "348", - "resource": "349", - "divisor": "464" - }, - "configMapKeyRef": { - "name": "350", - "key": "351", - "optional": true - }, - "secretKeyRef": { - "name": "352", - "key": "353", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "汚磉反-n": "653" - }, - "requests": { - "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" - } - }, - "volumeMounts": [ - { - "name": "354", - "mountPath": "355", - "subPath": "356", - "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", - "subPathExpr": "357" - } - ], - "volumeDevices": [ - { - "name": "358", - "devicePath": "359" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "360" - ] - }, - "httpGet": { - "path": "361", - "port": -1088996269, - "host": "362", - "scheme": "ƘƵŧ1ƟƓ宆!", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": -1836225650, - "host": "365" - }, - "initialDelaySeconds": -1065853311, - "timeoutSeconds": 559999152, - "periodSeconds": -843639240, - "successThreshold": 1573261475, - "failureThreshold": -1211577347, - "terminationGracePeriodSeconds": 6567123901989213629 - }, - "readinessProbe": { - "exec": { - "command": [ - "366" - ] - }, - "httpGet": { - "path": "367", - "port": 705333281, - "host": "368", - "scheme": "xƂ9阠", - "httpHeaders": [ - { - "name": "369", - "value": "370" - } - ] - }, - "tcpSocket": { - "port": -916583020, - "host": "371" - }, - "initialDelaySeconds": -606614374, - "timeoutSeconds": -3478003, - "periodSeconds": 498878902, - "successThreshold": 652646450, - "failureThreshold": 757223010, - "terminationGracePeriodSeconds": -8216131738691912586 - }, - "startupProbe": { - "exec": { - "command": [ - "372" - ] - }, - "httpGet": { - "path": "373", - "port": "374", - "host": "375", - "scheme": "Ů\u003cy鯶縆łƑ[澔", - "httpHeaders": [ - { - "name": "376", - "value": "377" - } - ] - }, - "tcpSocket": { - "port": 1288391156, - "host": "378" - }, - "initialDelaySeconds": -952255430, - "timeoutSeconds": 1568034275, - "periodSeconds": -824007302, - "successThreshold": -359713104, - "failureThreshold": 1671084780, - "terminationGracePeriodSeconds": 1571605531283019612 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "379" - ] - }, - "httpGet": { - "path": "380", - "port": "381", - "host": "382", - "scheme": "%ʝ`ǭ", - "httpHeaders": [ - { - "name": "383", - "value": "384" - } - ] - }, - "tcpSocket": { - "port": -1467648837, - "host": "385" - } - }, - "preStop": { - "exec": { - "command": [ - "386" - ] - }, - "httpGet": { - "path": "387", - "port": "388", - "host": "389", - "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", - "httpHeaders": [ - { - "name": "390", - "value": "391" - } - ] - }, - "tcpSocket": { - "port": "392", - "host": "393" - } - } - }, - "terminationMessagePath": "394", - "terminationMessagePolicy": "¯ÁȦtl敷斢", - "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", - "securityContext": { - "capabilities": { - "add": [ - "鬬$矐_敕ű嵞嬯t{Eɾ" - ], - "drop": [ - "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" + "埄Ȁ朦 wƯ貾坢'跩a" ] }, "privileged": true, "seLinuxOptions": { - "user": "395", - "role": "396", - "type": "397", - "level": "398" + "user": "262", + "role": "263", + "type": "264", + "level": "265" }, "windowsOptions": { - "gmsaCredentialSpecName": "399", - "gmsaCredentialSpec": "400", - "runAsUserName": "401", + "gmsaCredentialSpecName": "266", + "gmsaCredentialSpec": "267", + "runAsUserName": "268", + "hostProcess": false + }, + "runAsUser": 3024893073780181445, + "runAsGroup": 5005043520982487553, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "垾现葢ŵ橨", + "seccompProfile": { + "type": "l獕;跣Hǝcw媀瓄", + "localhostProfile": "269" + } + } + } + ], + "containers": [ + { + "name": "270", + "image": "271", + "command": [ + "272" + ], + "args": [ + "273" + ], + "workingDir": "274", + "ports": [ + { + "name": "275", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "276" + } + ], + "envFrom": [ + { + "prefix": "277", + "configMapRef": { + "name": "278", + "optional": false + }, + "secretRef": { + "name": "279", + "optional": true + } + } + ], + "env": [ + { + "name": "280", + "value": "281", + "valueFrom": { + "fieldRef": { + "apiVersion": "282", + "fieldPath": "283" + }, + "resourceFieldRef": { + "containerName": "284", + "resource": "285", + "divisor": "381" + }, + "configMapKeyRef": { + "name": "286", + "key": "287", + "optional": true + }, + "secretKeyRef": { + "name": "288", + "key": "289", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "290", + "readOnly": true, + "mountPath": "291", + "subPath": "292", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "293" + } + ], + "volumeDevices": [ + { + "name": "294", + "devicePath": "295" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "296" + ] + }, + "httpGet": { + "path": "297", + "port": 865289071, + "host": "298", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "299", + "value": "300" + } + ] + }, + "tcpSocket": { + "port": -898536659, + "host": "301" + }, + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800, + "terminationGracePeriodSeconds": 1661310708546756312 + }, + "readinessProbe": { + "exec": { + "command": [ + "302" + ] + }, + "httpGet": { + "path": "303", + "port": "304", + "host": "305", + "scheme": "yƕ丆録²Ŏ)", + "httpHeaders": [ + { + "name": "306", + "value": "307" + } + ] + }, + "tcpSocket": { + "port": 507384491, + "host": "308" + }, + "initialDelaySeconds": -1117254382, + "timeoutSeconds": 1354318307, + "periodSeconds": -1329220997, + "successThreshold": -1659431885, + "failureThreshold": -668834933, + "terminationGracePeriodSeconds": -3376301370309029429 + }, + "startupProbe": { + "exec": { + "command": [ + "309" + ] + }, + "httpGet": { + "path": "310", + "port": -305362540, + "host": "311", + "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "httpHeaders": [ + { + "name": "312", + "value": "313" + } + ] + }, + "tcpSocket": { + "port": 1167615307, + "host": "314" + }, + "initialDelaySeconds": 455833230, + "timeoutSeconds": 1956567721, + "periodSeconds": 155090390, + "successThreshold": -2113700533, + "failureThreshold": -2130294761, + "terminationGracePeriodSeconds": -3385088507022597813 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "315" + ] + }, + "httpGet": { + "path": "316", + "port": 1473407401, + "host": "317", + "scheme": "ʐşƧ", + "httpHeaders": [ + { + "name": "318", + "value": "319" + } + ] + }, + "tcpSocket": { + "port": 199049889, + "host": "320" + } + }, + "preStop": { + "exec": { + "command": [ + "321" + ] + }, + "httpGet": { + "path": "322", + "port": -1952582931, + "host": "323", + "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "httpHeaders": [ + { + "name": "324", + "value": "325" + } + ] + }, + "tcpSocket": { + "port": "326", + "host": "327" + } + } + }, + "terminationMessagePath": "328", + "terminationMessagePolicy": ")DŽ髐njʉBn(fǂ", + "imagePullPolicy": "疪鑳w妕眵笭/9崍", + "securityContext": { + "capabilities": { + "add": [ + "(娕uE增猍" + ], + "drop": [ + " xǨŴ壶ƵfȽÃ茓pȓɻ挴ʠɜ瞍" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "329", + "role": "330", + "type": "331", + "level": "332" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "333", + "gmsaCredentialSpec": "334", + "runAsUserName": "335", + "hostProcess": false + }, + "runAsUser": 2548453080315983269, + "runAsGroup": -8236071895143008294, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "1ùfŭƽ眝{æ盪泙若`l}Ñ蠂", + "seccompProfile": { + "type": "[ƛ^輅", + "localhostProfile": "336" + } + }, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "337", + "image": "338", + "command": [ + "339" + ], + "args": [ + "340" + ], + "workingDir": "341", + "ports": [ + { + "name": "342", + "hostPort": -1977635123, + "containerPort": 1660454722, + "protocol": "礫Ƽ¨Ix糂腂ǂǚŜEu", + "hostIP": "343" + } + ], + "envFrom": [ + { + "prefix": "344", + "configMapRef": { + "name": "345", + "optional": true + }, + "secretRef": { + "name": "346", + "optional": true + } + } + ], + "env": [ + { + "name": "347", + "value": "348", + "valueFrom": { + "fieldRef": { + "apiVersion": "349", + "fieldPath": "350" + }, + "resourceFieldRef": { + "containerName": "351", + "resource": "352", + "divisor": "741" + }, + "configMapKeyRef": { + "name": "353", + "key": "354", + "optional": true + }, + "secretKeyRef": { + "name": "355", + "key": "356", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "ý萜Ǖc": "275" + }, + "requests": { + "Ƒĝ®EĨǔvÄÚ×p鬷m": "69" + } + }, + "volumeMounts": [ + { + "name": "357", + "readOnly": true, + "mountPath": "358", + "subPath": "359", + "mountPropagation": "暳ǽżLj捲攻xƂ9阠$嬏wy¶熀", + "subPathExpr": "360" + } + ], + "volumeDevices": [ + { + "name": "361", + "devicePath": "362" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "363" + ] + }, + "httpGet": { + "path": "364", + "port": "365", + "host": "366", + "scheme": "裡×銵-紑浘牬釼", + "httpHeaders": [ + { + "name": "367", + "value": "368" + } + ] + }, + "tcpSocket": { + "port": 1648539888, + "host": "369" + }, + "initialDelaySeconds": 762856658, + "timeoutSeconds": -1898251770, + "periodSeconds": 713473395, + "successThreshold": -912220708, + "failureThreshold": -92253969, + "terminationGracePeriodSeconds": 1046110838271944058 + }, + "readinessProbe": { + "exec": { + "command": [ + "370" + ] + }, + "httpGet": { + "path": "371", + "port": 1797904220, + "host": "372", + "scheme": "羹", + "httpHeaders": [ + { + "name": "373", + "value": "374" + } + ] + }, + "tcpSocket": { + "port": "375", + "host": "376" + }, + "initialDelaySeconds": -1510210852, + "timeoutSeconds": 1604463080, + "periodSeconds": 1770824317, + "successThreshold": -1736247571, + "failureThreshold": 1504775716, + "terminationGracePeriodSeconds": 8657972883429789645 + }, + "startupProbe": { + "exec": { + "command": [ + "377" + ] + }, + "httpGet": { + "path": "378", + "port": 1859267428, + "host": "379", + "scheme": "ȟP", + "httpHeaders": [ + { + "name": "380", + "value": "381" + } + ] + }, + "tcpSocket": { + "port": 1445923603, + "host": "382" + }, + "initialDelaySeconds": 2040952835, + "timeoutSeconds": -1101457109, + "periodSeconds": -513325570, + "successThreshold": 1491794693, + "failureThreshold": -1457715462, + "terminationGracePeriodSeconds": 5797412715505520759 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "383" + ] + }, + "httpGet": { + "path": "384", + "port": "385", + "host": "386", + "scheme": "V", + "httpHeaders": [ + { + "name": "387", + "value": "388" + } + ] + }, + "tcpSocket": { + "port": 1791758702, + "host": "389" + } + }, + "preStop": { + "exec": { + "command": [ + "390" + ] + }, + "httpGet": { + "path": "391", + "port": "392", + "host": "393", + "scheme": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o", + "httpHeaders": [ + { + "name": "394", + "value": "395" + } + ] + }, + "tcpSocket": { + "port": -1082980401, + "host": "396" + } + } + }, + "terminationMessagePath": "397", + "terminationMessagePolicy": "肄$鬬", + "imagePullPolicy": "ʈʫ羶剹ƊF豎穜", + "securityContext": { + "capabilities": { + "add": [ + "咑耖p^鏋蛹Ƚȿ醏g" + ], + "drop": [ + "Ȋ飂廤Ƌʙcx赮ǒđ\u003e*劶?jĎ" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "398", + "role": "399", + "type": "400", + "level": "401" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "402", + "gmsaCredentialSpec": "403", + "runAsUserName": "404", "hostProcess": true }, - "runAsUser": 4224635496843945227, - "runAsGroup": 73764735411458498, + "runAsUser": -3365965984794126745, + "runAsGroup": 7755347487915595851, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "s44矕Ƈè", + "procMount": "e", "seccompProfile": { - "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", - "localhostProfile": "402" + "type": "G昧牱fsǕT衩kƒK07曳wœj堑", + "localhostProfile": "405" } }, + "stdin": true, "tty": true, - "targetContainerName": "403" + "targetContainerName": "406" } ], - "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", - "terminationGracePeriodSeconds": -8335674866227004872, - "activeDeadlineSeconds": 3305070661619041050, - "dnsPolicy": "+Œ9两", + "restartPolicy": "鈱ɖ'蠨磼O_h盌3+Œ9两@8", + "terminationGracePeriodSeconds": 8904478052175112945, + "activeDeadlineSeconds": -560099625007040954, + "dnsPolicy": "螗ɃŒGm¨z鋎靀", "nodeSelector": { - "404": "405" + "407": "408" }, - "serviceAccountName": "406", - "serviceAccount": "407", - "automountServiceAccountToken": false, - "nodeName": "408", - "hostPID": true, + "serviceAccountName": "409", + "serviceAccount": "410", + "automountServiceAccountToken": true, + "nodeName": "411", + "hostNetwork": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "409", - "role": "410", - "type": "411", - "level": "412" + "user": "412", + "role": "413", + "type": "414", + "level": "415" }, "windowsOptions": { - "gmsaCredentialSpecName": "413", - "gmsaCredentialSpec": "414", - "runAsUserName": "415", - "hostProcess": false + "gmsaCredentialSpecName": "416", + "gmsaCredentialSpec": "417", + "runAsUserName": "418", + "hostProcess": true }, - "runAsUser": 3438266910774132295, - "runAsGroup": 3230705132538051674, + "runAsUser": 107192836721418523, + "runAsGroup": -3019907599090873206, "runAsNonRoot": true, "supplementalGroups": [ - -1600417733583164525 + 5333609790435719468 ], - "fsGroup": -3964669311891901178, + "fsGroup": 2700145646260085226, "sysctls": [ { - "name": "416", - "value": "417" + "name": "419", + "value": "420" } ], - "fsGroupChangePolicy": "ƴ4虵p", + "fsGroupChangePolicy": "灭ƴɦ燻踸陴Sĕ濦", "seccompProfile": { - "type": "沥7uPƒw©ɴĶ烷Ľthp", - "localhostProfile": "418" + "type": "ɻŊ0", + "localhostProfile": "421" } }, "imagePullSecrets": [ { - "name": "419" + "name": "422" } ], - "hostname": "420", - "subdomain": "421", + "hostname": "423", + "subdomain": "424", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1330,19 +1337,19 @@ { "matchExpressions": [ { - "key": "422", - "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", + "key": "425", + "operator": "", "values": [ - "423" + "426" ] } ], "matchFields": [ { - "key": "424", - "operator": " ", + "key": "427", + "operator": "b轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "425" + "428" ] } ] @@ -1351,23 +1358,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -5241849, + "weight": 903393545, "preference": { "matchExpressions": [ { - "key": "426", - "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "key": "429", + "operator": "嫎¸殚篎3o8[y#t(", "values": [ - "427" + "430" ] } ], "matchFields": [ { - "key": "428", - "operator": "[y#t(", + "key": "431", + "operator": "¯rƈa餖Ľƛ淴ɑ?¶Ȳ", "values": [ - "429" + "432" ] } ] @@ -1380,30 +1387,33 @@ { "labelSelector": { "matchLabels": { - "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "8v--xk-gr-2/5-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6SN": "S" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX3" ] } ] }, "namespaces": [ - "436" + "439" ], - "topologyKey": "437", + "topologyKey": "440", "namespaceSelector": { "matchLabels": { - "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" + "5023-lt3-w-br75gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-g.4-----385h---0-u73phjo--8kb6--ut---p8--3-e-3-44---h-q7-ps/HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxB": "w-W_-E" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", - "operator": "DoesNotExist" + "key": "75p1em---1wwv3-f/k47M7y-Dy__3wcq", + "operator": "NotIn", + "values": [ + "x4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-A" + ] } ] } @@ -1411,31 +1421,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -234140, + "weight": 199195373, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" + "w_--5-_.3--_9QW2JkU27_.-4T-9": "4.K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._4" }, "matchExpressions": [ { - "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", - "operator": "Exists" + "key": "J-_.ZCRT.0z-oe.G79.3bU_._nV34GH", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "450" + "453" ], - "topologyKey": "451", + "topologyKey": "454", "namespaceSelector": { "matchLabels": { - "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" + "5i-z-s--o8t5-l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b9/ERG2nV.__Y": "T_YT.1--3" }, "matchExpressions": [ { - "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", - "operator": "DoesNotExist" + "key": "3_Lsu-H_.f82-82", + "operator": "NotIn", + "values": [ + "P6j.u--.K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nI" + ] } ] } @@ -1448,32 +1461,29 @@ { "labelSelector": { "matchLabels": { - "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" + "t1n13sx82-cx-4q/Lbk81S3.T": "d" }, "matchExpressions": [ { - "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", - "operator": "In", - "values": [ - "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" - ] + "key": "l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/i..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_D7RufiV-7uu", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "464" + "467" ], - "topologyKey": "465", + "topologyKey": "468", "namespaceSelector": { "matchLabels": { - "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" + "f_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__78": "O-._-_8_.._._a-.N.__-_._.3l-_86_u2-7_._qN__A_f_B" }, "matchExpressions": [ { - "key": "N7.81_-._-_8_.._._a9", + "key": "U__L.KH6K.RwsfI_j", "operator": "In", "values": [ - "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + "" ] } ] @@ -1482,31 +1492,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1276377114, + "weight": 1560053496, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" + "5396hq/v..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35HB": "u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-Z" }, "matchExpressions": [ { - "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", - "operator": "DoesNotExist" + "key": "ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh", + "operator": "In", + "values": [ + "7.W74-R_Z_Tz.a3_HWo4_6" + ] } ] }, "namespaces": [ - "478" + "481" ], - "topologyKey": "479", + "topologyKey": "482", "namespaceSelector": { "matchLabels": { - "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", - "operator": "DoesNotExist" + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", + "values": [ + "x3___-..f5-6x-_-o_6O_If-5_-_.F" + ] } ] } @@ -1515,93 +1531,93 @@ ] } }, - "schedulerName": "486", + "schedulerName": "489", "tolerations": [ { - "key": "487", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "488", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "490", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "491", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "489", + "ip": "492", "hostnames": [ - "490" + "493" ] } ], - "priorityClassName": "491", - "priority": 347613368, + "priorityClassName": "494", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "492" + "495" ], "searches": [ - "493" + "496" ], "options": [ { - "name": "494", - "value": "495" + "name": "497", + "value": "498" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "496", + "runtimeClassName": "499", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "497", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "500", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", - "operator": "NotIn", + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", "values": [ - "h.v._5.vB-.-7-.6Jv-86___3" + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } }, - "ttlSecondsAfterFinished": -1285029915, - "completionMode": "{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj}c殶", + "ttlSecondsAfterFinished": -1166275743, + "completionMode": "ĵ/Ş槀墺=Ĉ鳟/d\u0026蒡", "suspend": false } }, - "successfulJobsHistoryLimit": -2006986560, - "failedJobsHistoryLimit": -380889943 + "successfulJobsHistoryLimit": -1190434752, + "failedJobsHistoryLimit": -212409426 }, "status": { "active": [ { - "kind": "504", - "namespace": "505", - "name": "506", - "uid": "暉Ŝ!ȣ绰", - "apiVersion": "507", - "resourceVersion": "508", - "fieldPath": "509" + "kind": "507", + "namespace": "508", + "name": "509", + "uid": "蒱鄆\u0026嬜Š\u0026?鳢.ǀŭ瘢颦", + "apiVersion": "510", + "resourceVersion": "511", + "fieldPath": "512" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.pb index 4addd0a61b1..0e4f7ba919a 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml index 341a73aed1c..77d7a69b6a6 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml @@ -32,7 +32,7 @@ metadata: uid: "7" spec: concurrencyPolicy: Hr鯹)晿*劶?jĎ privileged: false - procMount: 队偯J僳徥淳4揻 + procMount: e readOnlyRootFilesystem: false - runAsGroup: -5647743520459672618 - runAsNonRoot: true - runAsUser: 8833778257967181711 + runAsGroup: 7755347487915595851 + runAsNonRoot: false + runAsUser: -3365965984794126745 seLinuxOptions: - level: "260" - role: "258" - type: "259" - user: "257" + level: "401" + role: "399" + type: "400" + user: "398" seccompProfile: - localhostProfile: "264" - type: $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ + localhostProfile: "405" + type: G昧牱fsǕT衩kƒK07曳wœj堑 windowsOptions: - gmsaCredentialSpec: "262" - gmsaCredentialSpecName: "261" - hostProcess: false - runAsUserName: "263" + gmsaCredentialSpec: "403" + gmsaCredentialSpecName: "402" + hostProcess: true + runAsUserName: "404" startupProbe: exec: command: - - "237" - failureThreshold: 1226391571 + - "377" + failureThreshold: -1457715462 httpGet: - host: "239" + host: "379" httpHeaders: - - name: "240" - value: "241" - path: "238" - port: -1140531048 - initialDelaySeconds: 1260448044 - periodSeconds: -1791206950 - successThreshold: 1160477220 + - name: "380" + value: "381" + path: "378" + port: 1859267428 + scheme: ȟP + initialDelaySeconds: 2040952835 + periodSeconds: -513325570 + successThreshold: 1491794693 tcpSocket: - host: "242" - port: 1741405963 - terminationGracePeriodSeconds: 6347577485454457915 - timeoutSeconds: -200461294 + host: "382" + port: 1445923603 + terminationGracePeriodSeconds: 5797412715505520759 + timeoutSeconds: -1101457109 stdin: true - stdinOnce: true - terminationMessagePath: "256" - terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 + targetContainerName: "406" + terminationMessagePath: "397" + terminationMessagePolicy: 肄$鬬 + tty: true volumeDevices: - - devicePath: "222" - name: "221" + - devicePath: "362" + name: "361" volumeMounts: - - mountPath: "218" - mountPropagation: HVe熼'FD剂讼ɓ - name: "217" + - mountPath: "358" + mountPropagation: 暳ǽżLj捲攻xƂ9阠$嬏wy¶熀 + name: "357" readOnly: true - subPath: "219" - subPathExpr: "220" - workingDir: "201" - nodeName: "408" + subPath: "359" + subPathExpr: "360" + workingDir: "341" + hostAliases: + - hostnames: + - "493" + ip: "492" + hostNetwork: true + hostname: "423" + imagePullSecrets: + - name: "422" + initContainers: + - args: + - "203" + command: + - "202" + env: + - name: "210" + value: "211" + valueFrom: + configMapKeyRef: + key: "217" + name: "216" + optional: false + fieldRef: + apiVersion: "212" + fieldPath: "213" + resourceFieldRef: + containerName: "214" + divisor: "231" + resource: "215" + secretKeyRef: + key: "219" + name: "218" + optional: true + envFrom: + - configMapRef: + name: "208" + optional: true + prefix: "207" + secretRef: + name: "209" + optional: false + image: "201" + imagePullPolicy: 鐫û咡W<敄lu|榝 + lifecycle: + postStart: + exec: + command: + - "246" + httpGet: + host: "249" + httpHeaders: + - name: "250" + value: "251" + path: "247" + port: "248" + scheme: j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ + tcpSocket: + host: "253" + port: "252" + preStop: + exec: + command: + - "254" + httpGet: + host: "257" + httpHeaders: + - name: "258" + value: "259" + path: "255" + port: "256" + scheme: "y" + tcpSocket: + host: "260" + port: -1620315711 + livenessProbe: + exec: + command: + - "226" + failureThreshold: 158280212 + httpGet: + host: "229" + httpHeaders: + - name: "230" + value: "231" + path: "227" + port: "228" + scheme: 翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź + initialDelaySeconds: 513341278 + periodSeconds: 1255312175 + successThreshold: -1740959124 + tcpSocket: + host: "232" + port: -1543701088 + terminationGracePeriodSeconds: -1552383991890236277 + timeoutSeconds: 627713162 + name: "200" + ports: + - containerPort: -1409668172 + hostIP: "206" + hostPort: -1180080716 + name: "205" + protocol: 脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻 + readinessProbe: + exec: + command: + - "233" + failureThreshold: 852780575 + httpGet: + host: "235" + httpHeaders: + - name: "236" + value: "237" + path: "234" + port: -1099429189 + scheme: 9Ì + initialDelaySeconds: 1689978741 + periodSeconds: -1798849477 + successThreshold: -1017263912 + tcpSocket: + host: "238" + port: -1364571630 + terminationGracePeriodSeconds: -5381329890395615297 + timeoutSeconds: -1423854443 + resources: + limits: + "": "55" + requests: + 粕擓ƖHVe熼'FD: "235" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - .Ȏ蝪ʜ5遰= + drop: + - 埄Ȁ朦 wƯ貾坢'跩a + privileged: true + procMount: 垾现葢ŵ橨 + readOnlyRootFilesystem: true + runAsGroup: 5005043520982487553 + runAsNonRoot: false + runAsUser: 3024893073780181445 + seLinuxOptions: + level: "265" + role: "263" + type: "264" + user: "262" + seccompProfile: + localhostProfile: "269" + type: l獕;跣Hǝcw媀瓄 + windowsOptions: + gmsaCredentialSpec: "267" + gmsaCredentialSpecName: "266" + hostProcess: false + runAsUserName: "268" + startupProbe: + exec: + command: + - "239" + failureThreshold: -743369977 + httpGet: + host: "241" + httpHeaders: + - name: "242" + value: "243" + path: "240" + port: 1853396726 + scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷 + initialDelaySeconds: -1789370277 + periodSeconds: 1724958480 + successThreshold: -879005591 + tcpSocket: + host: "245" + port: "244" + terminationGracePeriodSeconds: -6977492437661738751 + timeoutSeconds: -1738948598 + terminationMessagePath: "261" + terminationMessagePolicy: ɐ扵 + volumeDevices: + - devicePath: "225" + name: "224" + volumeMounts: + - mountPath: "221" + mountPropagation: UÐ_ƮA攤/ɸɎ + name: "220" + subPath: "222" + subPathExpr: "223" + workingDir: "204" + nodeName: "411" nodeSelector: - "404": "405" + "407": "408" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "491" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "494" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn - runtimeClassName: "496" - schedulerName: "486" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 鈱ɖ'蠨磼O_h盌3+Œ9两@8 + runtimeClassName: "499" + schedulerName: "489" securityContext: - fsGroup: -3964669311891901178 - fsGroupChangePolicy: ƴ4虵p - runAsGroup: 3230705132538051674 + fsGroup: 2700145646260085226 + fsGroupChangePolicy: 灭ƴɦ燻踸陴Sĕ濦 + runAsGroup: -3019907599090873206 runAsNonRoot: true - runAsUser: 3438266910774132295 + runAsUser: 107192836721418523 seLinuxOptions: - level: "412" - role: "410" - type: "411" - user: "409" + level: "415" + role: "413" + type: "414" + user: "412" seccompProfile: - localhostProfile: "418" - type: 沥7uPƒw©ɴĶ烷Ľthp + localhostProfile: "421" + type: ɻŊ0 supplementalGroups: - - -1600417733583164525 + - 5333609790435719468 sysctls: - - name: "416" - value: "417" + - name: "419" + value: "420" windowsOptions: - gmsaCredentialSpec: "414" - gmsaCredentialSpecName: "413" - hostProcess: false - runAsUserName: "415" - serviceAccount: "407" - serviceAccountName: "406" - setHostnameAsFQDN: false + gmsaCredentialSpec: "417" + gmsaCredentialSpecName: "416" + hostProcess: true + runAsUserName: "418" + serviceAccount: "410" + serviceAccountName: "409" + setHostnameAsFQDN: true shareProcessNamespace: true - subdomain: "421" - terminationGracePeriodSeconds: -8335674866227004872 + subdomain: "424" + terminationGracePeriodSeconds: 8904478052175112945 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "487" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "488" + - effect: '慰x:' + key: "490" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "491" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52 - operator: NotIn + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In values: - - h.v._5.vB-.-7-.6Jv-86___3 + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb - maxSkew: -484382570 - topologyKey: "497" - whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 + topologyKey: "500" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "68" @@ -933,6 +941,10 @@ spec: apiGroup: "194" kind: "195" name: "196" + dataSourceRef: + apiGroup: "197" + kind: "198" + name: "199" resources: limits: /樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊: "967" @@ -1087,17 +1099,17 @@ spec: storagePolicyID: "125" storagePolicyName: "124" volumePath: "122" - ttlSecondsAfterFinished: -1285029915 + ttlSecondsAfterFinished: -1166275743 schedule: "20" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: -2006986560 + successfulJobsHistoryLimit: -1190434752 suspend: true status: active: - - apiVersion: "507" - fieldPath: "509" - kind: "504" - name: "506" - namespace: "505" - resourceVersion: "508" - uid: 暉Ŝ!ȣ绰 + - apiVersion: "510" + fieldPath: "512" + kind: "507" + name: "509" + namespace: "508" + resourceVersion: "511" + uid: 蒱鄆&嬜Š&?鳢.ǀŭ瘢颦 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 aa987ad1b57..5c70e764e3b 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 @@ -490,6 +490,11 @@ "apiGroup": "193", "kind": "194", "name": "195" + }, + "dataSourceRef": { + "apiGroup": "196", + "kind": "197", + "name": "198" } } } @@ -498,59 +503,59 @@ ], "initContainers": [ { - "name": "196", - "image": "197", + "name": "199", + "image": "200", "command": [ - "198" + "201" ], "args": [ - "199" + "202" ], - "workingDir": "200", + "workingDir": "203", "ports": [ { - "name": "201", - "hostPort": -589000495, - "containerPort": -955773237, - "protocol": "g鄠[颐o啛更偢ɇ卷荙JLĹ]佱¿", - "hostIP": "202" + "name": "204", + "hostPort": -805795167, + "containerPort": 1791615594, + "protocol": "Ƥ熪军g\u003e郵[+扴", + "hostIP": "205" } ], "envFrom": [ { - "prefix": "203", + "prefix": "206", "configMapRef": { - "name": "204", + "name": "207", "optional": false }, "secretRef": { - "name": "205", + "name": "208", "optional": false } } ], "env": [ { - "name": "206", - "value": "207", + "name": "209", + "value": "210", "valueFrom": { "fieldRef": { - "apiVersion": "208", - "fieldPath": "209" + "apiVersion": "211", + "fieldPath": "212" }, "resourceFieldRef": { - "containerName": "210", - "resource": "211", - "divisor": "729" + "containerName": "213", + "resource": "214", + "divisor": "241" }, "configMapKeyRef": { - "name": "212", - "key": "213", + "name": "215", + "key": "216", "optional": true }, "secretKeyRef": { - "name": "214", - "key": "215", + "name": "217", + "key": "218", "optional": false } } @@ -558,113 +563,112 @@ ], "resources": { "limits": { - "輦唊#v铿ʩȂ4ē鐭": "879" + "": "268" }, "requests": { - "昕Ĭ": "524" + "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ": "340" } }, "volumeMounts": [ { - "name": "216", - "mountPath": "217", - "subPath": "218", - "mountPropagation": " 苧yñKJɐ", - "subPathExpr": "219" + "name": "219", + "mountPath": "220", + "subPath": "221", + "mountPropagation": "藢xɮĵȑ6L*Z鐫û咡W\u003c", + "subPathExpr": "222" } ], "volumeDevices": [ { - "name": "220", - "devicePath": "221" + "name": "223", + "devicePath": "224" } ], "livenessProbe": { "exec": { "command": [ - "222" + "225" ] }, "httpGet": { - "path": "223", - "port": "224", - "host": "225", - "scheme": "咡W", + "path": "226", + "port": -1225815437, + "host": "227", + "scheme": "荭gw忊|E", "httpHeaders": [ { - "name": "226", - "value": "227" + "name": "228", + "value": "229" } ] }, "tcpSocket": { - "port": 888935190, - "host": "228" + "port": -438588982, + "host": "230" }, - "initialDelaySeconds": 1674961434, - "timeoutSeconds": -553100686, - "periodSeconds": 44509253, - "successThreshold": -1661575965, - "failureThreshold": 183376425, - "terminationGracePeriodSeconds": 439010468654957223 + "initialDelaySeconds": 1004325340, + "timeoutSeconds": -1313320434, + "periodSeconds": 14304392, + "successThreshold": 465972736, + "failureThreshold": -1784617397, + "terminationGracePeriodSeconds": 8340498462419356921 }, "readinessProbe": { "exec": { "command": [ - "229" + "231" ] }, "httpGet": { - "path": "230", - "port": -2133054549, - "host": "231", - "scheme": "遰=E", + "path": "232", + "port": 627670321, + "host": "233", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "234", + "value": "235" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": "236", + "host": "237" }, - "initialDelaySeconds": -1462219068, - "timeoutSeconds": -370386363, - "periodSeconds": 1714588921, - "successThreshold": -1246371817, - "failureThreshold": 617318981, - "terminationGracePeriodSeconds": 1856677271350902065 + "initialDelaySeconds": -1666819085, + "timeoutSeconds": -282193676, + "periodSeconds": 1777326813, + "successThreshold": -1471289102, + "failureThreshold": 704287801, + "terminationGracePeriodSeconds": 8549738818875784336 }, "startupProbe": { "exec": { "command": [ - "236" + "238" ] }, "httpGet": { - "path": "237", - "port": "238", - "host": "239", - "scheme": "ŕ翑0展}", + "path": "239", + "port": -518330919, + "host": "240", + "scheme": "NKƙ順\\E¦队偯J僳徥淳4揻-$", "httpHeaders": [ { - "name": "240", - "value": "241" + "name": "241", + "value": "242" } ] }, "tcpSocket": { - "port": "242", + "port": 1235694147, "host": "243" }, - "initialDelaySeconds": -1778952574, - "timeoutSeconds": 1386255869, - "periodSeconds": -778272981, - "successThreshold": 2056774277, - "failureThreshold": -2146674095, - "terminationGracePeriodSeconds": -1117820874616112287 + "initialDelaySeconds": 348370746, + "timeoutSeconds": 468369166, + "periodSeconds": 1909548849, + "successThreshold": 1492642476, + "failureThreshold": -367153801, + "terminationGracePeriodSeconds": 8194791334069427324 }, "lifecycle": { "postStart": { @@ -675,58 +679,58 @@ }, "httpGet": { "path": "245", - "port": "246", - "host": "247", - "scheme": "队偯J僳徥淳4揻", + "port": 1746399757, + "host": "246", + "scheme": "V訆Ǝżŧ", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "247", + "value": "248" } ] }, "tcpSocket": { - "port": 878005329, - "host": "250" + "port": 204229950, + "host": "249" } }, "preStop": { "exec": { "command": [ - "251" + "250" ] }, "httpGet": { - "path": "252", - "port": "253", - "host": "254", - "scheme": "Œɥ颶妧Ö闊 鰔澝qV訆Ǝ", + "path": "251", + "port": "252", + "host": "253", + "scheme": "ɣľ)酊龨δ摖ȱğ_\u003cǬëJ橈", "httpHeaders": [ { - "name": "255", - "value": "256" + "name": "254", + "value": "255" } ] }, "tcpSocket": { - "port": 509813083, + "port": "256", "host": "257" } } }, "terminationMessagePath": "258", - "terminationMessagePolicy": "²sNƗ¸g", - "imagePullPolicy": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:", + "terminationMessagePolicy": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "imagePullPolicy": "ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏", "securityContext": { "capabilities": { "add": [ - "" + "²静ƲǦŐnj汰8" ], "drop": [ - "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;" + "İ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { "user": "259", "role": "260", @@ -737,21 +741,19 @@ "gmsaCredentialSpecName": "263", "gmsaCredentialSpec": "264", "runAsUserName": "265", - "hostProcess": false + "hostProcess": true }, - "runAsUser": -7747494447986851160, - "runAsGroup": 802922970712269023, - "runAsNonRoot": true, + "runAsUser": -1311522118950739815, + "runAsGroup": 5903342706635131481, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "録²Ŏ)/灩聋3趐囨鏻砅邻爥", + "allowPrivilegeEscalation": true, + "procMount": "±p鋄5弢ȹ均i绝5哇芆", "seccompProfile": { - "type": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "type": "ì", "localhostProfile": "266" } - }, - "stdin": true, - "tty": true + } } ], "containers": [ @@ -768,9 +770,9 @@ "ports": [ { "name": "272", - "hostPort": -2130294761, - "containerPort": -788152336, - "protocol": "ɵ", + "hostPort": -1449289597, + "containerPort": 1473407401, + "protocol": "ʐşƧ", "hostIP": "273" } ], @@ -799,7 +801,7 @@ "resourceFieldRef": { "containerName": "281", "resource": "282", - "divisor": "879" + "divisor": "178" }, "configMapKeyRef": { "name": "283", @@ -809,25 +811,26 @@ "secretKeyRef": { "name": "285", "key": "286", - "optional": true + "optional": false } } } ], "resources": { "limits": { - "擭銆jʒǚ鍰\\縑": "992" + "饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM": "270" }, "requests": { - "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ": "400" + "(fǂǢ曣ŋayå": "182" } }, "volumeMounts": [ { "name": "287", + "readOnly": true, "mountPath": "288", "subPath": "289", - "mountPropagation": "(fǂǢ曣ŋayå", + "mountPropagation": "崍h趭(娕u", "subPathExpr": "290" } ], @@ -845,9 +848,9 @@ }, "httpGet": { "path": "294", - "port": 1616390418, + "port": -869776221, "host": "295", - "scheme": "趭(娕uE增猍ǵ x", + "scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", "httpHeaders": [ { "name": "296", @@ -859,12 +862,12 @@ "port": "298", "host": "299" }, - "initialDelaySeconds": -1320027474, - "timeoutSeconds": -1750169306, - "periodSeconds": 2112112129, - "successThreshold": 528603974, - "failureThreshold": -342387625, - "terminationGracePeriodSeconds": 7999187157758442620 + "initialDelaySeconds": 1532103808, + "timeoutSeconds": 593357971, + "periodSeconds": 1453852685, + "successThreshold": 2037135322, + "failureThreshold": -571541491, + "terminationGracePeriodSeconds": -7117039988160665426 }, "readinessProbe": { "exec": { @@ -874,9 +877,8 @@ }, "httpGet": { "path": "301", - "port": -647531549, + "port": -1920304485, "host": "302", - "scheme": "ʠɜ瞍阎lğ Ņ", "httpHeaders": [ { "name": "303", @@ -885,257 +887,285 @@ ] }, "tcpSocket": { - "port": "305", - "host": "306" + "port": -531787516, + "host": "305" }, - "initialDelaySeconds": -602411444, - "timeoutSeconds": -1519458130, - "periodSeconds": 711356517, - "successThreshold": -598179789, - "failureThreshold": 317211081, - "terminationGracePeriodSeconds": -8307777636454344321 + "initialDelaySeconds": 2073630689, + "timeoutSeconds": -830875556, + "periodSeconds": -1395144116, + "successThreshold": -684167223, + "failureThreshold": -751455207, + "terminationGracePeriodSeconds": -3839813958613977681 }, "startupProbe": { "exec": { "command": [ - "307" + "306" ] }, "httpGet": { - "path": "308", - "port": 65094252, - "host": "309", - "scheme": "æ盪泙若`l}Ñ蠂Ü", + "path": "307", + "port": -2064284357, + "host": "308", "httpHeaders": [ { - "name": "310", - "value": "311" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1388874570, - "host": "312" + "port": -313085430, + "host": "311" }, - "initialDelaySeconds": 1618861163, - "timeoutSeconds": 413903479, - "periodSeconds": 1708236944, - "successThreshold": -1192140557, - "failureThreshold": 1961354355, - "terminationGracePeriodSeconds": -8493878174888297652 + "initialDelaySeconds": -1789721862, + "timeoutSeconds": 638012651, + "periodSeconds": -1161185537, + "successThreshold": 1928937303, + "failureThreshold": 1611386356, + "terminationGracePeriodSeconds": 3527635231201289331 }, "lifecycle": { "postStart": { "exec": { "command": [ - "313" + "312" ] }, "httpGet": { - "path": "314", - "port": "315", - "host": "316", - "scheme": "Ik(dŊiɢzĮ蛋I", + "path": "313", + "port": -1347045470, + "host": "314", + "scheme": "¨Ix糂腂ǂǚŜEuEy", "httpHeaders": [ { - "name": "317", - "value": "318" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "319", - "host": "320" + "port": -1945921250, + "host": "317" } }, "preStop": { "exec": { "command": [ - "321" + "318" ] }, "httpGet": { - "path": "322", - "port": "323", - "host": "324", - "scheme": "}礤铟怖ý萜Ǖc8ǣ", + "path": "319", + "port": 1605974497, + "host": "320", + "scheme": "m坊柩劄奼[ƕƑĝ", "httpHeaders": [ { - "name": "325", - "value": "326" + "name": "321", + "value": "322" } ] }, "tcpSocket": { - "port": "327", - "host": "328" + "port": 293042649, + "host": "323" } } }, - "terminationMessagePath": "329", - "terminationMessagePolicy": "ŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻", - "imagePullPolicy": "U", + "terminationMessagePath": "324", + "terminationMessagePolicy": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'", + "imagePullPolicy": "xƂ9阠", "securityContext": { "capabilities": { "add": [ - "襕ċ桉桃喕蠲$ɛ溢臜裡×銵" + "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł" ], "drop": [ - "紑浘牬釼aTGÒ鵌Ē3Nh×DJɶ羹ƞ" + "[澔槃JŵǤ桒" ] }, "privileged": true, "seLinuxOptions": { - "user": "330", - "role": "331", - "type": "332", - "level": "333" + "user": "325", + "role": "326", + "type": "327", + "level": "328" }, "windowsOptions": { - "gmsaCredentialSpecName": "334", - "gmsaCredentialSpec": "335", - "runAsUserName": "336", + "gmsaCredentialSpecName": "329", + "gmsaCredentialSpec": "330", + "runAsUserName": "331", "hostProcess": true }, - "runAsUser": -4166164136222066963, - "runAsGroup": 6462962492290658756, + "runAsUser": 7721939829013914482, + "runAsGroup": -2468498954406158514, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "筇ȟP", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", "seccompProfile": { - "type": "/a殆诵H玲鑠ĭ$", - "localhostProfile": "337" + "type": "崖S«V¯Á", + "localhostProfile": "332" } }, - "stdinOnce": true, + "stdin": true, "tty": true } ], "ephemeralContainers": [ { - "name": "338", - "image": "339", + "name": "333", + "image": "334", "command": [ - "340" + "335" ], "args": [ - "341" + "336" ], - "workingDir": "342", + "workingDir": "337", "ports": [ { - "name": "343", - "hostPort": 488431979, - "containerPort": -253063948, - "protocol": "橱9ij\\Ď愝Ű藛b磾s", - "hostIP": "344" + "name": "338", + "hostPort": -1069764899, + "containerPort": -329321819, + "protocol": "ż鯀1", + "hostIP": "339" } ], "envFrom": [ { - "prefix": "345", + "prefix": "340", "configMapRef": { - "name": "346", - "optional": false + "name": "341", + "optional": true }, "secretRef": { - "name": "347", + "name": "342", "optional": true } } ], "env": [ { - "name": "348", - "value": "349", + "name": "343", + "value": "344", "valueFrom": { "fieldRef": { - "apiVersion": "350", - "fieldPath": "351" + "apiVersion": "345", + "fieldPath": "346" }, "resourceFieldRef": { - "containerName": "352", - "resource": "353", - "divisor": "522" + "containerName": "347", + "resource": "348", + "divisor": "343" }, "configMapKeyRef": { - "name": "354", - "key": "355", + "name": "349", + "key": "350", "optional": true }, "secretKeyRef": { - "name": "356", - "key": "357", - "optional": true + "name": "351", + "key": "352", + "optional": false } } } ], "resources": { "limits": { - "ƺL肄$鬬$矐_敕ű嵞嬯": "84" + "q櫞繡": "121" }, "requests": { - "姰l咑耖p^鏋蛹Ƚȿ": "232" + "肄$鬬": "915" } }, "volumeMounts": [ { - "name": "358", + "name": "353", "readOnly": true, - "mountPath": "359", - "subPath": "360", - "mountPropagation": "ƬɸĻo:{柯?B俋¬h`職", - "subPathExpr": "361" + "mountPath": "354", + "subPath": "355", + "mountPropagation": "羶剹ƊF豎穜姰l咑耖", + "subPathExpr": "356" } ], "volumeDevices": [ { - "name": "362", - "devicePath": "363" + "name": "357", + "devicePath": "358" } ], "livenessProbe": { "exec": { "command": [ - "364" + "359" ] }, "httpGet": { - "path": "365", - "port": "366", - "host": "367", - "scheme": "¥", + "path": "360", + "port": 892837330, + "host": "361", + "scheme": "気Ƀ秮ò", "httpHeaders": [ { - "name": "368", - "value": "369" + "name": "362", + "value": "363" } ] }, "tcpSocket": { - "port": "370", - "host": "371" + "port": "364", + "host": "365" }, - "initialDelaySeconds": 1045190247, - "timeoutSeconds": 1805682547, - "periodSeconds": -651405950, - "successThreshold": 1903147240, - "failureThreshold": 178262944, - "terminationGracePeriodSeconds": 7591592723235237403 + "initialDelaySeconds": -1649234654, + "timeoutSeconds": -263708518, + "periodSeconds": 541943046, + "successThreshold": 1502194981, + "failureThreshold": 1447996588, + "terminationGracePeriodSeconds": -3565639689247870986 }, "readinessProbe": { "exec": { "command": [ - "372" + "366" ] }, "httpGet": { - "path": "373", - "port": "374", + "path": "367", + "port": "368", + "host": "369", + "scheme": "h`職铳s44矕Ƈ", + "httpHeaders": [ + { + "name": "370", + "value": "371" + } + ] + }, + "tcpSocket": { + "port": 1592612939, + "host": "372" + }, + "initialDelaySeconds": 168484477, + "timeoutSeconds": 1022152027, + "periodSeconds": -1001034710, + "successThreshold": 467693083, + "failureThreshold": 1262500808, + "terminationGracePeriodSeconds": -867246751039954454 + }, + "startupProbe": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": -1452767599, "host": "375", - "scheme": "昧牱fsǕT衩kƒK0", + "scheme": " 瞍髃#ɣȕ", "httpHeaders": [ { "name": "376", @@ -1144,185 +1174,159 @@ ] }, "tcpSocket": { - "port": -629974246, - "host": "378" + "port": "378", + "host": "379" }, - "initialDelaySeconds": 22814565, - "timeoutSeconds": -89787189, - "periodSeconds": -96528156, - "successThreshold": -2043135662, - "failureThreshold": 240154501, - "terminationGracePeriodSeconds": -1988677584282886128 - }, - "startupProbe": { - "exec": { - "command": [ - "379" - ] - }, - "httpGet": { - "path": "380", - "port": 1885676566, - "host": "381", - "scheme": "O_h盌3+Œ9两@8Byß讪Ă2", - "httpHeaders": [ - { - "name": "382", - "value": "383" - } - ] - }, - "tcpSocket": { - "port": -281926929, - "host": "384" - }, - "initialDelaySeconds": -372626292, - "timeoutSeconds": 2018111855, - "periodSeconds": 1019901190, - "successThreshold": -1625381496, - "failureThreshold": -548803057, - "terminationGracePeriodSeconds": -8201340979270163756 + "initialDelaySeconds": -1014296961, + "timeoutSeconds": 1708011112, + "periodSeconds": -603097910, + "successThreshold": 1776174141, + "failureThreshold": -1349160121, + "terminationGracePeriodSeconds": -3183357344394757806 }, "lifecycle": { "postStart": { "exec": { "command": [ - "385" + "380" ] }, "httpGet": { - "path": "386", - "port": "387", - "host": "388", - "scheme": "ǹʅŚO虀^背", + "path": "381", + "port": "382", + "host": "383", + "scheme": "'蠨磼O_h盌3+Œ9两@8", "httpHeaders": [ { - "name": "389", - "value": "390" + "name": "384", + "value": "385" } ] }, "tcpSocket": { - "port": -1442230895, - "host": "391" + "port": -130408357, + "host": "386" } }, "preStop": { "exec": { "command": [ - "392" + "387" ] }, "httpGet": { - "path": "393", - "port": 1468940509, - "host": "394", - "scheme": "像-觗裓6Ř", + "path": "388", + "port": "389", + "host": "390", + "scheme": "ŒGm¨z鋎靀G", "httpHeaders": [ { - "name": "395", - "value": "396" + "name": "391", + "value": "392" } ] }, "tcpSocket": { - "port": 1762917570, - "host": "397" + "port": "393", + "host": "394" } } }, - "terminationMessagePath": "398", - "terminationMessagePolicy": "Ų買霎ȃň[\u003eą", - "imagePullPolicy": "ĖRh}颉hȱɷȰW瀤oɢ嫎¸殚篎", + "terminationMessagePath": "395", + "terminationMessagePolicy": "W#ļǹʅŚO虀^", + "imagePullPolicy": "ɴĶ烷Ľthp像-觗裓6Ř", "securityContext": { "capabilities": { "add": [ - "8[y#t(ȗŜŲ" + "5Ų買霎ȃň[\u003eą S" ], "drop": [ - "洪" + "d'呪" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "399", - "role": "400", - "type": "401", - "level": "402" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "403", - "gmsaCredentialSpec": "404", - "runAsUserName": "405", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": 4233308148542782456, - "runAsGroup": -2958928304063527963, + "runAsUser": -4328915352766545090, + "runAsGroup": -8583816881639870831, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ǾɁ鍻G鯇ɀ魒Ð扬=惍E", + "allowPrivilegeEscalation": true, + "procMount": "", "seccompProfile": { - "type": "ŊĊ娮rȧŹ黷", - "localhostProfile": "406" + "type": "ǻG喾@潷ƹ8ï驿", + "localhostProfile": "403" } }, + "stdin": true, + "stdinOnce": true, "tty": true, - "targetContainerName": "407" + "targetContainerName": "404" } ], - "restartPolicy": ";Ƭ婦d%蹶/ʗp壥Ƥ", - "terminationGracePeriodSeconds": -6472827475835479775, - "activeDeadlineSeconds": -1598226175696024006, - "dnsPolicy": "z委\u003e,趐V曡88 ", + "restartPolicy": "rƈa餖Ľ", + "terminationGracePeriodSeconds": -3501425899000054955, + "activeDeadlineSeconds": -5896459953103714718, + "dnsPolicy": "ŶJ詢QǾɁ鍻G鯇ɀ魒Ð扬=", "nodeSelector": { - "408": "409" + "405": "406" }, - "serviceAccountName": "410", - "serviceAccount": "411", + "serviceAccountName": "407", + "serviceAccount": "408", "automountServiceAccountToken": false, - "nodeName": "412", + "nodeName": "409", + "hostNetwork": true, "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "413", - "role": "414", - "type": "415", - "level": "416" + "user": "410", + "role": "411", + "type": "412", + "level": "413" }, "windowsOptions": { - "gmsaCredentialSpecName": "417", - "gmsaCredentialSpec": "418", - "runAsUserName": "419", - "hostProcess": true + "gmsaCredentialSpecName": "414", + "gmsaCredentialSpec": "415", + "runAsUserName": "416", + "hostProcess": false }, - "runAsUser": -5785208110583552190, - "runAsGroup": -8157642381087094542, - "runAsNonRoot": true, + "runAsUser": -2841141127223294729, + "runAsGroup": -6754946370765710682, + "runAsNonRoot": false, "supplementalGroups": [ - -6356503130840432651 + -1612979559790338418 ], - "fsGroup": -2019276087967685705, + "fsGroup": 6541871045343732877, "sysctls": [ { - "name": "420", - "value": "421" + "name": "417", + "value": "418" } ], - "fsGroupChangePolicy": "2 ɲ±m嵘厶sȰÖ埡ÆɰŞ", + "fsGroupChangePolicy": "d%蹶/ʗp壥", "seccompProfile": { - "type": "樞úʥ銀ƨ", - "localhostProfile": "422" + "type": "揤郡ɑ鮽ǍJB膾扉", + "localhostProfile": "419" } }, "imagePullSecrets": [ { - "name": "423" + "name": "420" } ], - "hostname": "424", - "subdomain": "425", + "hostname": "421", + "subdomain": "422", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1330,19 +1334,19 @@ { "matchExpressions": [ { - "key": "426", - "operator": "'o儿Ƭ銭u裡_", + "key": "423", + "operator": " u怞荊ù灹8緔Tj§E蓋Cȗä", "values": [ - "427" + "424" ] } ], "matchFields": [ { - "key": "428", - "operator": "L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i", + "key": "425", + "operator": "愉BʟƮƙ", "values": [ - "429" + "426" ] } ] @@ -1351,23 +1355,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1896690864, + "weight": -1699090088, "preference": { "matchExpressions": [ { - "key": "430", - "operator": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI", + "key": "427", + "operator": "普闎Ť萃Q+駟à稨氙", "values": [ - "431" + "428" ] } ], "matchFields": [ { - "key": "432", - "operator": "", + "key": "429", + "operator": "血x柱栦阫Ƈʥ椹ý飝ȕ笧L", "values": [ - "433" + "430" ] } ] @@ -1380,30 +1384,30 @@ { "labelSelector": { "matchLabels": { - "Z___._6..tf-_u-3-_n0..p": "S.K" + "0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7": "2" }, "matchExpressions": [ { - "key": "Fgw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw_7a2", - "operator": "NotIn", - "values": [ - "j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.--_-_ve5.m_2d" - ] + "key": "e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "440" + "437" ], - "topologyKey": "441", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0": "2_I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.7" + "Y.39g_.--_-_ve5.m_U": "mXZ-3" }, "matchExpressions": [ { - "key": "L._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23W", - "operator": "Exists" + "key": "p-a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h-6.6qr-7----rgvf3q-z-5z80n--t5--9-4-d2-22--i--401/2-n_5023Xl-3Pw_-r75--_-A-o-_y", + "operator": "In", + "values": [ + "Z-nE...-__--.4" + ] } ] } @@ -1411,34 +1415,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1250715930, + "weight": 450920824, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "8-7AlR__8-7_-YD-Q9_-_1": "YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.37" + "0k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a42-2y20--s-7l6e--s-9/5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K.a": "A_-_l67Q.-_t--O.3L.z2-y.-...CC" }, "matchExpressions": [ { - "key": "oe7-7973b--7-n-34-h/C4_-_2G0.-c_C.G.hu", + "key": "d-m._fN._k8__._ep21", "operator": "In", "values": [ - "qu.._.105-4_ed-0-iz" + "5_--u.._.105-4_ed-0-i_zZsYo" ] } ] }, "namespaces": [ - "454" + "451" ], - "topologyKey": "455", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w": "61P_.D8_t..-Ww27" + "8d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d019v.g9f82k8-2-d--n--r8661--3-8-tc/TB-d--Q5._D60": "F.-0-...WE.-_tdE" }, "matchExpressions": [ { - "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", - "operator": "DoesNotExist" + "key": "t1n13sx82-cx-4q/0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.T", + "operator": "NotIn", + "values": [ + "2-__3uM77U7._pT-___-_5-6h_K7" + ] } ] } @@ -1451,30 +1458,33 @@ { "labelSelector": { "matchLabels": { - "2.u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w": "QCJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT2" + "q": "zfdw.3-._CJ4a1._-_CH-6" }, "matchExpressions": [ { - "key": "wc89k-0-57z4063---k1b6x91-0f-w8l--7c17j.n78aou-jf35-k7cr-mo-dz12----8q--n260pvo8-8---ln-9ei-vi9g-dn--q/4...rBQ.9-_.m7-Q____vSW_4-___-_--x", - "operator": "NotIn", + "key": "nJ_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-_.m7-Q____vSW_4-__h", + "operator": "In", "values": [ - "81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2" + "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1" ] } ] }, "namespaces": [ - "468" + "465" ], - "topologyKey": "469", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "4-tf---7r88-1--p61cd--s-nu5718--lks7d-x99/8-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-R6_Q": "ai.D7-_5" + "o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H": "gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq" }, "matchExpressions": [ { - "key": "le-to9e--a-7je9fz87-2jvd23-0p9j1t36--a4bl-gq38v7--a2o5.o-4k0267h5/m06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1W", - "operator": "DoesNotExist" + "key": "8v---a9j23/9", + "operator": "In", + "values": [ + "y__y.9O.L-.m.3h" + ] } ] } @@ -1482,34 +1492,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1093414706, + "weight": -2090647419, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "75-.._r6M__4-P-g3Jt6e9G.-84": "W-.auZTcwJ._KVpx_0-.mJe__.B-cd2_84-M-_-U...s._K9-.AJ-_8-W" + "N-._M5..-N_H_55..--E3_2D-1DW_o": "k._kzB7U_.Q.45cy-.._-__-Zvt.L6" }, "matchExpressions": [ { - "key": "3---49t7/87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.--8", - "operator": "DoesNotExist" + "key": "3m-8vuo17qre-33-5-u8f0f1qv--i72-x3---v255/GT._.Y4-0.67hP-lX-_-..5-.._r6M__4P", + "operator": "In", + "values": [ + "6x-_-o_6O_If-5_-_._F-09z024" + ] } ] }, "namespaces": [ - "482" + "479" ], - "topologyKey": "483", + "topologyKey": "480", "namespaceSelector": { "matchLabels": { - "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..P": "whQ7be__-.-g5" + "23---49tw-2j.7-e10-f-o-fr-5-3t--y9---5/G0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.-a": "ql__KSvV-8-L__C_60-__.19_-gYY._..fP-h" }, "matchExpressions": [ { - "key": "P__n.__16ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..0", - "operator": "In", - "values": [ - "h_qD-J_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DLo" - ] + "key": "ctyxc-1-x9-i9wegl8ppv90-u---2-w-bn54kh-9/77q___n.__16ee.-.66c", + "operator": "Exists" } ] } @@ -1518,67 +1528,64 @@ ] } }, - "schedulerName": "490", + "schedulerName": "487", "tolerations": [ { - "key": "491", - "operator": "ʇɆȏ+\u0026ɃB沅零", - "value": "492", - "effect": "=Ĉ鳟/d\u0026蒡榤Ⱦ盜ŭ飼", - "tolerationSeconds": 5710269275969351972 + "key": "488", + "operator": "珢\\%傢z¦Ā竚ĐȌƨǴ", + "value": "489", + "effect": "Ƀ咇8夎純Ǐnn坾", + "tolerationSeconds": 7246782235209217945 } ], "hostAliases": [ { - "ip": "493", + "ip": "490", "hostnames": [ - "494" + "491" ] } ], - "priorityClassName": "495", - "priority": 171558604, + "priorityClassName": "492", + "priority": 516555648, "dnsConfig": { "nameservers": [ - "496" + "493" ], "searches": [ - "497" + "494" ], "options": [ { - "name": "498", - "value": "499" + "name": "495", + "value": "496" } ] }, "readinessGates": [ { - "conditionType": "鳢.ǀŭ瘢颦z疵悡nȩ純z邜排A" + "conditionType": "ɺ" } ], - "runtimeClassName": "500", + "runtimeClassName": "497", "enableServiceLinks": true, - "preemptionPolicy": "{De½t;Äƾ", + "preemptionPolicy": "牯雫íȣƎǗ啕倽|銜Ʌ0斃搡Cʼn嘡", "overhead": { - "3§T旦y6辱Ŵ鎥": "789" + "Ɇȏ+\u0026ɃB沅零șPî壣V礆á¤": "650" }, "topologySpreadConstraints": [ { - "maxSkew": 1725443144, - "topologyKey": "501", - "whenUnsatisfiable": "ƫƍƙơ卍睊Pǎ玒", + "maxSkew": -1190434752, + "topologyKey": "498", + "whenUnsatisfiable": "ŭ飼蒱鄆", "labelSelector": { "matchLabels": { - "1h9-z8-35x38iq/V_-q-L34-_D86-Wg": "51_n4a-n.Q_-.__A9-4l_m.A.Zi___Y__YDuzh9N6-...2_.Qa" + "i86t27w417-7-lyzeqr/G.i-F_.TJ.-V6K_.3_58t": "lSKp.Iw2__V3T68.W7De.._g" }, "matchExpressions": [ { - "key": "086----3-893097-0zy976-0--q-90fo4gk.3f--5nwy-m0---063-r-z-n1l3j-4175-x-0---9/s", - "operator": "In", - "values": [ - "79_j570n__.-7_I8.--4-___..1N" - ] + "key": "m2-8-i--------uzh9-6o0972-3-4.d50v-k47/z._3.x.8iSq-r_5--..dc3doP_.l-3", + "operator": "Exists" } ] } @@ -1587,8 +1594,8 @@ "setHostnameAsFQDN": true } }, - "ttlSecondsAfterFinished": -654972141, - "completionMode": "]ɬ朞ɄƶÁ1!ƜaǓÜ覚镉嵸ɫò", + "ttlSecondsAfterFinished": 1600150514, + "completionMode": "ıȦjJ綒鷈颿懽]轸", "suspend": false } } 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 3c14121b4de..3dc356c2b58 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml index 92894f50edc..8f32468ece2 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml @@ -64,7 +64,7 @@ template: spec: activeDeadlineSeconds: -9086179100394185427 backoffLimit: -1796008812 - completionMode: ']ɬ朞ɄƶÁ1!ƜaǓÜ覚镉嵸ɫò' + completionMode: ıȦjJ綒鷈颿懽]轸 completions: -1771909905 manualSelector: false parallelism: -443114323 @@ -109,112 +109,116 @@ template: selfLink: "47" uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: -1598226175696024006 + activeDeadlineSeconds: -5896459953103714718 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "430" - operator: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI + - key: "427" + operator: 普闎Ť萃Q+駟à稨氙 values: - - "431" + - "428" matchFields: - - key: "432" - operator: "" + - key: "429" + operator: 血x柱栦阫Ƈʥ椹ý飝ȕ笧L values: - - "433" - weight: -1896690864 + - "430" + weight: -1699090088 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "426" - operator: '''o儿Ƭ銭u裡_' + - key: "423" + operator: ' u怞荊ù灹8緔Tj§E蓋Cȗä' values: - - "427" + - "424" matchFields: - - key: "428" - operator: L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i + - key: "425" + operator: 愉BʟƮƙ values: - - "429" + - "426" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: oe7-7973b--7-n-34-h/C4_-_2G0.-c_C.G.hu + - key: d-m._fN._k8__._ep21 operator: In values: - - qu.._.105-4_ed-0-iz + - 5_--u.._.105-4_ed-0-i_zZsYo matchLabels: - 8-7AlR__8-7_-YD-Q9_-_1: YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.37 + 0k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a42-2y20--s-7l6e--s-9/5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K.a: A_-_l67Q.-_t--O.3L.z2-y.-...CC namespaceSelector: matchExpressions: - - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 - operator: DoesNotExist + - key: t1n13sx82-cx-4q/0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.T + operator: NotIn + values: + - 2-__3uM77U7._pT-___-_5-6h_K7 matchLabels: - 8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w: 61P_.D8_t..-Ww27 + 8d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d019v.g9f82k8-2-d--n--r8661--3-8-tc/TB-d--Q5._D60: F.-0-...WE.-_tdE namespaces: - - "454" - topologyKey: "455" - weight: -1250715930 + - "451" + topologyKey: "452" + weight: 450920824 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: Fgw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw_7a2 - operator: NotIn - values: - - j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.--_-_ve5.m_2d + - key: e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5 + operator: DoesNotExist matchLabels: - Z___._6..tf-_u-3-_n0..p: S.K + 0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7: "2" namespaceSelector: matchExpressions: - - key: L._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23W - operator: Exists + - key: p-a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h-6.6qr-7----rgvf3q-z-5z80n--t5--9-4-d2-22--i--401/2-n_5023Xl-3Pw_-r75--_-A-o-_y + operator: In + values: + - Z-nE...-__--.4 matchLabels: - e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0: 2_I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.7 + Y.39g_.--_-_ve5.m_U: mXZ-3 namespaces: - - "440" - topologyKey: "441" + - "437" + topologyKey: "438" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3---49t7/87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.--8 - operator: DoesNotExist - matchLabels: - 75-.._r6M__4-P-g3Jt6e9G.-84: W-.auZTcwJ._KVpx_0-.mJe__.B-cd2_84-M-_-U...s._K9-.AJ-_8-W - namespaceSelector: - matchExpressions: - - key: P__n.__16ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..0 + - key: 3m-8vuo17qre-33-5-u8f0f1qv--i72-x3---v255/GT._.Y4-0.67hP-lX-_-..5-.._r6M__4P operator: In values: - - h_qD-J_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DLo + - 6x-_-o_6O_If-5_-_._F-09z024 matchLabels: - a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..P: whQ7be__-.-g5 + N-._M5..-N_H_55..--E3_2D-1DW_o: k._kzB7U_.Q.45cy-.._-__-Zvt.L6 + namespaceSelector: + matchExpressions: + - key: ctyxc-1-x9-i9wegl8ppv90-u---2-w-bn54kh-9/77q___n.__16ee.-.66c + operator: Exists + matchLabels: + 23---49tw-2j.7-e10-f-o-fr-5-3t--y9---5/G0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.-a: ql__KSvV-8-L__C_60-__.19_-gYY._..fP-h namespaces: - - "482" - topologyKey: "483" - weight: 1093414706 + - "479" + topologyKey: "480" + weight: -2090647419 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: wc89k-0-57z4063---k1b6x91-0f-w8l--7c17j.n78aou-jf35-k7cr-mo-dz12----8q--n260pvo8-8---ln-9ei-vi9g-dn--q/4...rBQ.9-_.m7-Q____vSW_4-___-_--x - operator: NotIn + - key: nJ_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-_.m7-Q____vSW_4-__h + operator: In values: - - 81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2 + - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1 matchLabels: - 2.u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w: QCJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT2 + q: zfdw.3-._CJ4a1._-_CH-6 namespaceSelector: matchExpressions: - - key: le-to9e--a-7je9fz87-2jvd23-0p9j1t36--a4bl-gq38v7--a2o5.o-4k0267h5/m06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1W - operator: DoesNotExist + - key: 8v---a9j23/9 + operator: In + values: + - y__y.9O.L-.m.3h matchLabels: - 4-tf---7r88-1--p61cd--s-nu5718--lks7d-x99/8-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-R6_Q: ai.D7-_5 + o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq namespaces: - - "468" - topologyKey: "469" + - "465" + topologyKey: "466" automountServiceAccountToken: false containers: - args: @@ -234,12 +238,12 @@ template: fieldPath: "280" resourceFieldRef: containerName: "281" - divisor: "879" + divisor: "178" resource: "282" secretKeyRef: key: "286" name: "285" - optional: true + optional: false envFrom: - configMapRef: name: "275" @@ -249,484 +253,485 @@ template: name: "276" optional: false image: "268" - imagePullPolicy: U + imagePullPolicy: xƂ9阠 lifecycle: postStart: exec: command: - - "313" + - "312" httpGet: - host: "316" + host: "314" httpHeaders: - - name: "317" - value: "318" - path: "314" - port: "315" - scheme: Ik(dŊiɢzĮ蛋I + - name: "315" + value: "316" + path: "313" + port: -1347045470 + scheme: ¨Ix糂腂ǂǚŜEuEy tcpSocket: - host: "320" - port: "319" + host: "317" + port: -1945921250 preStop: exec: command: - - "321" + - "318" httpGet: - host: "324" + host: "320" httpHeaders: - - name: "325" - value: "326" - path: "322" - port: "323" - scheme: '}礤铟怖ý萜Ǖc8ǣ' + - name: "321" + value: "322" + path: "319" + port: 1605974497 + scheme: m坊柩劄奼[ƕƑĝ tcpSocket: - host: "328" - port: "327" + host: "323" + port: 293042649 livenessProbe: exec: command: - "293" - failureThreshold: -342387625 + failureThreshold: -571541491 httpGet: host: "295" httpHeaders: - name: "296" value: "297" path: "294" - port: 1616390418 - scheme: 趭(娕uE增猍ǵ x - initialDelaySeconds: -1320027474 - periodSeconds: 2112112129 - successThreshold: 528603974 + port: -869776221 + scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + initialDelaySeconds: 1532103808 + periodSeconds: 1453852685 + successThreshold: 2037135322 tcpSocket: host: "299" port: "298" - terminationGracePeriodSeconds: 7999187157758442620 - timeoutSeconds: -1750169306 + terminationGracePeriodSeconds: -7117039988160665426 + timeoutSeconds: 593357971 name: "267" ports: - - containerPort: -788152336 + - containerPort: 1473407401 hostIP: "273" - hostPort: -2130294761 + hostPort: -1449289597 name: "272" - protocol: ɵ + protocol: ʐşƧ readinessProbe: exec: command: - "300" - failureThreshold: 317211081 + failureThreshold: -751455207 httpGet: host: "302" httpHeaders: - name: "303" value: "304" path: "301" - port: -647531549 - scheme: ʠɜ瞍阎lğ Ņ - initialDelaySeconds: -602411444 - periodSeconds: 711356517 - successThreshold: -598179789 + port: -1920304485 + initialDelaySeconds: 2073630689 + periodSeconds: -1395144116 + successThreshold: -684167223 tcpSocket: - host: "306" - port: "305" - terminationGracePeriodSeconds: -8307777636454344321 - timeoutSeconds: -1519458130 + host: "305" + port: -531787516 + terminationGracePeriodSeconds: -3839813958613977681 + timeoutSeconds: -830875556 resources: limits: - 擭銆jʒǚ鍰\縑: "992" + 饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM: "270" requests: - 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ: "400" + (fǂǢ曣ŋayå: "182" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 襕ċ桉桃喕蠲$ɛ溢臜裡×銵 + - wy¶熀ďJZ漤ŗ坟Ů,趐V曡88 ' + - "494" + dnsPolicy: ŶJ詢QǾɁ鍻G鯇ɀ魒Ð扬= enableServiceLinks: true ephemeralContainers: - args: - - "341" + - "336" command: - - "340" + - "335" env: - - name: "348" - value: "349" + - name: "343" + value: "344" valueFrom: configMapKeyRef: - key: "355" - name: "354" + key: "350" + name: "349" optional: true fieldRef: - apiVersion: "350" - fieldPath: "351" + apiVersion: "345" + fieldPath: "346" resourceFieldRef: - containerName: "352" - divisor: "522" - resource: "353" + containerName: "347" + divisor: "343" + resource: "348" secretKeyRef: - key: "357" - name: "356" - optional: true + key: "352" + name: "351" + optional: false envFrom: - configMapRef: - name: "346" - optional: false - prefix: "345" - secretRef: - name: "347" + name: "341" optional: true - image: "339" - imagePullPolicy: ĖRh}颉hȱɷȰW瀤oɢ嫎¸殚篎 + prefix: "340" + secretRef: + name: "342" + optional: true + image: "334" + imagePullPolicy: ɴĶ烷Ľthp像-觗裓6Ř lifecycle: postStart: exec: command: - - "385" + - "380" httpGet: - host: "388" + host: "383" httpHeaders: - - name: "389" - value: "390" - path: "386" - port: "387" - scheme: ǹʅŚO虀^背 + - name: "384" + value: "385" + path: "381" + port: "382" + scheme: '''蠨磼O_h盌3+Œ9两@8' tcpSocket: - host: "391" - port: -1442230895 + host: "386" + port: -130408357 preStop: exec: command: - - "392" + - "387" httpGet: - host: "394" + host: "390" httpHeaders: - - name: "395" - value: "396" - path: "393" - port: 1468940509 - scheme: 像-觗裓6Ř + - name: "391" + value: "392" + path: "388" + port: "389" + scheme: ŒGm¨z鋎靀G tcpSocket: - host: "397" - port: 1762917570 + host: "394" + port: "393" livenessProbe: exec: command: - - "364" - failureThreshold: 178262944 + - "359" + failureThreshold: 1447996588 httpGet: - host: "367" + host: "361" httpHeaders: - - name: "368" - value: "369" - path: "365" - port: "366" - scheme: ¥ - initialDelaySeconds: 1045190247 - periodSeconds: -651405950 - successThreshold: 1903147240 + - name: "362" + value: "363" + path: "360" + port: 892837330 + scheme: 気Ƀ秮ò + initialDelaySeconds: -1649234654 + periodSeconds: 541943046 + successThreshold: 1502194981 tcpSocket: - host: "371" - port: "370" - terminationGracePeriodSeconds: 7591592723235237403 - timeoutSeconds: 1805682547 - name: "338" + host: "365" + port: "364" + terminationGracePeriodSeconds: -3565639689247870986 + timeoutSeconds: -263708518 + name: "333" ports: - - containerPort: -253063948 - hostIP: "344" - hostPort: 488431979 - name: "343" - protocol: 橱9ij\Ď愝Ű藛b磾s + - containerPort: -329321819 + hostIP: "339" + hostPort: -1069764899 + name: "338" + protocol: ż鯀1 readinessProbe: exec: command: - - "372" - failureThreshold: 240154501 + - "366" + failureThreshold: 1262500808 + httpGet: + host: "369" + httpHeaders: + - name: "370" + value: "371" + path: "367" + port: "368" + scheme: h`職铳s44矕Ƈ + initialDelaySeconds: 168484477 + periodSeconds: -1001034710 + successThreshold: 467693083 + tcpSocket: + host: "372" + port: 1592612939 + terminationGracePeriodSeconds: -867246751039954454 + timeoutSeconds: 1022152027 + resources: + limits: + q櫞繡: "121" + requests: + 肄$鬬: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - 5Ų買霎ȃň[>ą S + drop: + - d'呪 + privileged: false + procMount: "" + readOnlyRootFilesystem: false + runAsGroup: -8583816881639870831 + runAsNonRoot: false + runAsUser: -4328915352766545090 + seLinuxOptions: + level: "399" + role: "397" + type: "398" + user: "396" + seccompProfile: + localhostProfile: "403" + type: ǻG喾@潷ƹ8ï驿 + windowsOptions: + gmsaCredentialSpec: "401" + gmsaCredentialSpecName: "400" + hostProcess: false + runAsUserName: "402" + startupProbe: + exec: + command: + - "373" + failureThreshold: -1349160121 httpGet: host: "375" httpHeaders: - name: "376" value: "377" - path: "373" - port: "374" - scheme: 昧牱fsǕT衩kƒK0 - initialDelaySeconds: 22814565 - periodSeconds: -96528156 - successThreshold: -2043135662 + path: "374" + port: -1452767599 + scheme: ' 瞍髃#ɣȕ' + initialDelaySeconds: -1014296961 + periodSeconds: -603097910 + successThreshold: 1776174141 tcpSocket: - host: "378" - port: -629974246 - terminationGracePeriodSeconds: -1988677584282886128 - timeoutSeconds: -89787189 - resources: - limits: - ƺL肄$鬬$矐_敕ű嵞嬯: "84" - requests: - 姰l咑耖p^鏋蛹Ƚȿ: "232" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 8[y#t(ȗŜŲ - drop: - - 洪 - privileged: true - procMount: ǾɁ鍻G鯇ɀ魒Ð扬=惍E - readOnlyRootFilesystem: false - runAsGroup: -2958928304063527963 - runAsNonRoot: false - runAsUser: 4233308148542782456 - seLinuxOptions: - level: "402" - role: "400" - type: "401" - user: "399" - seccompProfile: - localhostProfile: "406" - type: ŊĊ娮rȧŹ黷 - windowsOptions: - gmsaCredentialSpec: "404" - gmsaCredentialSpecName: "403" - hostProcess: false - runAsUserName: "405" - startupProbe: - exec: - command: - - "379" - failureThreshold: -548803057 - httpGet: - host: "381" - httpHeaders: - - name: "382" - value: "383" - path: "380" - port: 1885676566 - scheme: O_h盌3+Œ9两@8Byß讪Ă2 - initialDelaySeconds: -372626292 - periodSeconds: 1019901190 - successThreshold: -1625381496 - tcpSocket: - host: "384" - port: -281926929 - terminationGracePeriodSeconds: -8201340979270163756 - timeoutSeconds: 2018111855 - targetContainerName: "407" - terminationMessagePath: "398" - terminationMessagePolicy: Ų買霎ȃň[>ą + host: "379" + port: "378" + terminationGracePeriodSeconds: -3183357344394757806 + timeoutSeconds: 1708011112 + stdin: true + stdinOnce: true + targetContainerName: "404" + terminationMessagePath: "395" + terminationMessagePolicy: W#ļǹʅŚO虀^ tty: true volumeDevices: - - devicePath: "363" - name: "362" + - devicePath: "358" + name: "357" volumeMounts: - - mountPath: "359" - mountPropagation: ƬɸĻo:{柯?B俋¬h`職 - name: "358" + - mountPath: "354" + mountPropagation: 羶剹ƊF豎穜姰l咑耖 + name: "353" readOnly: true - subPath: "360" - subPathExpr: "361" - workingDir: "342" + subPath: "355" + subPathExpr: "356" + workingDir: "337" hostAliases: - hostnames: - - "494" - ip: "493" + - "491" + ip: "490" + hostNetwork: true hostPID: true - hostname: "424" + hostname: "421" imagePullSecrets: - - name: "423" + - name: "420" initContainers: - args: - - "199" + - "202" command: - - "198" + - "201" env: - - name: "206" - value: "207" + - name: "209" + value: "210" valueFrom: configMapKeyRef: - key: "213" - name: "212" + key: "216" + name: "215" optional: true fieldRef: - apiVersion: "208" - fieldPath: "209" + apiVersion: "211" + fieldPath: "212" resourceFieldRef: - containerName: "210" - divisor: "729" - resource: "211" + containerName: "213" + divisor: "241" + resource: "214" secretKeyRef: - key: "215" - name: "214" + key: "218" + name: "217" optional: false envFrom: - configMapRef: - name: "204" + name: "207" optional: false - prefix: "203" + prefix: "206" secretRef: - name: "205" + name: "208" optional: false - image: "197" - imagePullPolicy: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' + image: "200" + imagePullPolicy: ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏 lifecycle: postStart: exec: command: - "244" httpGet: - host: "247" + host: "246" httpHeaders: - - name: "248" - value: "249" + - name: "247" + value: "248" path: "245" - port: "246" - scheme: 队偯J僳徥淳4揻 + port: 1746399757 + scheme: V訆Ǝżŧ tcpSocket: - host: "250" - port: 878005329 + host: "249" + port: 204229950 preStop: exec: command: - - "251" + - "250" httpGet: - host: "254" + host: "253" httpHeaders: - - name: "255" - value: "256" - path: "252" - port: "253" - scheme: Œɥ颶妧Ö闊 鰔澝qV訆Ǝ + - name: "254" + value: "255" + path: "251" + port: "252" + scheme: ɣľ)酊龨δ摖ȱğ_<ǬëJ橈 tcpSocket: host: "257" - port: 509813083 + port: "256" livenessProbe: exec: command: - - "222" - failureThreshold: 183376425 + - "225" + failureThreshold: -1784617397 httpGet: - host: "225" + host: "227" httpHeaders: - - name: "226" - value: "227" - path: "223" - port: "224" - scheme: 咡W - initialDelaySeconds: 1674961434 - periodSeconds: 44509253 - successThreshold: -1661575965 + - name: "228" + value: "229" + path: "226" + port: -1225815437 + scheme: 荭gw忊|E + initialDelaySeconds: 1004325340 + periodSeconds: 14304392 + successThreshold: 465972736 tcpSocket: - host: "228" - port: 888935190 - terminationGracePeriodSeconds: 439010468654957223 - timeoutSeconds: -553100686 - name: "196" + host: "230" + port: -438588982 + terminationGracePeriodSeconds: 8340498462419356921 + timeoutSeconds: -1313320434 + name: "199" ports: - - containerPort: -955773237 - hostIP: "202" - hostPort: -589000495 - name: "201" - protocol: g鄠[颐o啛更偢ɇ卷荙JLĹ]佱¿ + - containerPort: 1791615594 + hostIP: "205" + hostPort: -805795167 + name: "204" + protocol: Ƥ熪军g>郵[+扴 readinessProbe: exec: command: - - "229" - failureThreshold: 617318981 + - "231" + failureThreshold: 704287801 httpGet: - host: "231" + host: "233" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -2133054549 - scheme: 遰=E - initialDelaySeconds: -1462219068 - periodSeconds: 1714588921 - successThreshold: -1246371817 + - name: "234" + value: "235" + path: "232" + port: 627670321 + initialDelaySeconds: -1666819085 + periodSeconds: 1777326813 + successThreshold: -1471289102 tcpSocket: - host: "235" - port: "234" - terminationGracePeriodSeconds: 1856677271350902065 - timeoutSeconds: -370386363 + host: "237" + port: "236" + terminationGracePeriodSeconds: 8549738818875784336 + timeoutSeconds: -282193676 resources: limits: - 輦唊#v铿ʩȂ4ē鐭: "879" + "": "268" requests: - 昕Ĭ: "524" + -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ: "340" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - "" + - ²静ƲǦŐnj汰8 drop: - - Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; - privileged: false - procMount: 録²Ŏ)/灩聋3趐囨鏻砅邻爥 + - İ + privileged: true + procMount: ±p鋄5弢ȹ均i绝5哇芆 readOnlyRootFilesystem: true - runAsGroup: 802922970712269023 - runAsNonRoot: true - runAsUser: -7747494447986851160 + runAsGroup: 5903342706635131481 + runAsNonRoot: false + runAsUser: -1311522118950739815 seLinuxOptions: level: "262" role: "260" @@ -734,108 +739,104 @@ template: user: "259" seccompProfile: localhostProfile: "266" - type: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS + type: ì windowsOptions: gmsaCredentialSpec: "264" gmsaCredentialSpecName: "263" - hostProcess: false + hostProcess: true runAsUserName: "265" startupProbe: exec: command: - - "236" - failureThreshold: -2146674095 + - "238" + failureThreshold: -367153801 httpGet: - host: "239" + host: "240" httpHeaders: - - name: "240" - value: "241" - path: "237" - port: "238" - scheme: ŕ翑0展} - initialDelaySeconds: -1778952574 - periodSeconds: -778272981 - successThreshold: 2056774277 + - name: "241" + value: "242" + path: "239" + port: -518330919 + scheme: NKƙ順\E¦队偯J僳徥淳4揻-$ + initialDelaySeconds: 348370746 + periodSeconds: 1909548849 + successThreshold: 1492642476 tcpSocket: host: "243" - port: "242" - terminationGracePeriodSeconds: -1117820874616112287 - timeoutSeconds: 1386255869 - stdin: true + port: 1235694147 + terminationGracePeriodSeconds: 8194791334069427324 + timeoutSeconds: 468369166 terminationMessagePath: "258" - terminationMessagePolicy: ²sNƗ¸g - tty: true + terminationMessagePolicy: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC volumeDevices: - - devicePath: "221" - name: "220" + - devicePath: "224" + name: "223" volumeMounts: - - mountPath: "217" - mountPropagation: ' 苧yñKJɐ' - name: "216" - subPath: "218" - subPathExpr: "219" - workingDir: "200" - nodeName: "412" + - mountPath: "220" + mountPropagation: 藢xɮĵȑ6L*Z鐫û咡W< + name: "219" + subPath: "221" + subPathExpr: "222" + workingDir: "203" + nodeName: "409" nodeSelector: - "408": "409" + "405": "406" overhead: - 3§T旦y6辱Ŵ鎥: "789" - preemptionPolicy: '{De½t;Äƾ' - priority: 171558604 - priorityClassName: "495" + Ɇȏ+&ɃB沅零șPî壣V礆á¤: "650" + preemptionPolicy: 牯雫íȣƎǗ啕倽|銜Ʌ0斃搡Cʼn嘡 + priority: 516555648 + priorityClassName: "492" readinessGates: - - conditionType: 鳢.ǀŭ瘢颦z疵悡nȩ純z邜排A - restartPolicy: ;Ƭ婦d%蹶/ʗp壥Ƥ - runtimeClassName: "500" - schedulerName: "490" + - conditionType: ɺ + restartPolicy: rƈa餖Ľ + runtimeClassName: "497" + schedulerName: "487" securityContext: - fsGroup: -2019276087967685705 - fsGroupChangePolicy: 2 ɲ±m嵘厶sȰÖ埡ÆɰŞ - runAsGroup: -8157642381087094542 - runAsNonRoot: true - runAsUser: -5785208110583552190 + fsGroup: 6541871045343732877 + fsGroupChangePolicy: d%蹶/ʗp壥 + runAsGroup: -6754946370765710682 + runAsNonRoot: false + runAsUser: -2841141127223294729 seLinuxOptions: - level: "416" - role: "414" - type: "415" - user: "413" + level: "413" + role: "411" + type: "412" + user: "410" seccompProfile: - localhostProfile: "422" - type: 樞úʥ銀ƨ + localhostProfile: "419" + type: 揤郡ɑ鮽ǍJB膾扉 supplementalGroups: - - -6356503130840432651 + - -1612979559790338418 sysctls: - - name: "420" - value: "421" + - name: "417" + value: "418" windowsOptions: - gmsaCredentialSpec: "418" - gmsaCredentialSpecName: "417" - hostProcess: true - runAsUserName: "419" - serviceAccount: "411" - serviceAccountName: "410" + gmsaCredentialSpec: "415" + gmsaCredentialSpecName: "414" + hostProcess: false + runAsUserName: "416" + serviceAccount: "408" + serviceAccountName: "407" setHostnameAsFQDN: true shareProcessNamespace: false - subdomain: "425" - terminationGracePeriodSeconds: -6472827475835479775 + subdomain: "422" + terminationGracePeriodSeconds: -3501425899000054955 tolerations: - - effect: =Ĉ鳟/d&蒡榤Ⱦ盜ŭ飼 - key: "491" - operator: ʇɆȏ+&ɃB沅零 - tolerationSeconds: 5710269275969351972 - value: "492" + - effect: Ƀ咇8夎純Ǐnn坾 + key: "488" + operator: 珢\%傢z¦Ā竚ĐȌƨǴ + tolerationSeconds: 7246782235209217945 + value: "489" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 086----3-893097-0zy976-0--q-90fo4gk.3f--5nwy-m0---063-r-z-n1l3j-4175-x-0---9/s - operator: In - values: - - 79_j570n__.-7_I8.--4-___..1N + - key: m2-8-i--------uzh9-6o0972-3-4.d50v-k47/z._3.x.8iSq-r_5--..dc3doP_.l-3 + operator: Exists matchLabels: - 1h9-z8-35x38iq/V_-q-L34-_D86-Wg: 51_n4a-n.Q_-.__A9-4l_m.A.Zi___Y__YDuzh9N6-...2_.Qa - maxSkew: 1725443144 - topologyKey: "501" - whenUnsatisfiable: ƫƍƙơ卍睊Pǎ玒 + i86t27w417-7-lyzeqr/G.i-F_.TJ.-V6K_.3_58t: lSKp.Iw2__V3T68.W7De.._g + maxSkew: -1190434752 + topologyKey: "498" + whenUnsatisfiable: ŭ飼蒱鄆 volumes: - awsElasticBlockStore: fsType: "67" @@ -936,6 +937,10 @@ template: apiGroup: "193" kind: "194" name: "195" + dataSourceRef: + apiGroup: "196" + kind: "197" + name: "198" resources: limits: ?$矡ȶ网棊ʢ: "891" @@ -1090,4 +1095,4 @@ template: storagePolicyID: "124" storagePolicyName: "123" volumePath: "121" - ttlSecondsAfterFinished: -654972141 + ttlSecondsAfterFinished: 1600150514 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 50bd0460992..1251e93c569 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 @@ -71,24 +71,29 @@ "apiGroup": "28", "kind": "29", "name": "30" + }, + "dataSourceRef": { + "apiGroup": "31", + "kind": "32", + "name": "33" } }, "status": { - "phase": "燴壩卄蓨MĮ?", + "phase": "gɸ=ǤÆ碛,1ZƜ/C龷Ȫ", "accessModes": [ - "ĭÐl恕ɍȇ廄裭4懙" + "l殛瓷雼浢Ü礽" ], "capacity": { - "嵒ƫS捕ɷD¡轫n": "583" + "{囥": "721" }, "conditions": [ { - "type": "Ü郀", - "status": "ƣKʘńw:5塋", - "lastProbeTime": "2588-10-04T08:20:38Z", - "lastTransitionTime": "2095-10-31T02:52:44Z", - "reason": "31", - "message": "32" + "type": "n(鲼ƳÐƣKʘńw:5塋訩塶\"=", + "status": "Ka縳讋ɮ衺勽Ƙq", + "lastProbeTime": "2343-07-10T15:32:16Z", + "lastTransitionTime": "2944-07-13T11:02:13Z", + "reason": "34", + "message": "35" } ] } 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 c73d155ea45..de69094f13d 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.pb differ 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 3d8954ec9ef..9b1068bcdb3 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 @@ -37,6 +37,10 @@ spec: apiGroup: "28" kind: "29" name: "30" + dataSourceRef: + apiGroup: "31" + kind: "32" + name: "33" resources: limits: Ď儇击3ƆìQ喞艋涽託仭w-檮Ǣ: "465" @@ -53,14 +57,14 @@ spec: volumeName: "26" status: accessModes: - - ĭÐl恕ɍȇ廄裭4懙 + - l殛瓷雼浢Ü礽 capacity: - 嵒ƫS捕ɷD¡轫n: "583" + '{囥': "721" conditions: - - lastProbeTime: "2588-10-04T08:20:38Z" - lastTransitionTime: "2095-10-31T02:52:44Z" - message: "32" - reason: "31" - status: ƣKʘńw:5塋 - type: Ü郀 - phase: 燴壩卄蓨MĮ? + - lastProbeTime: "2343-07-10T15:32:16Z" + lastTransitionTime: "2944-07-13T11:02:13Z" + message: "35" + reason: "34" + status: Ka縳讋ɮ衺勽Ƙq + type: n(鲼ƳÐƣKʘńw:5塋訩塶"= + phase: gɸ=ǤÆ碛,1ZƜ/C龷Ȫ 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 189039c83e2..3ca76e1716b 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 @@ -385,6 +385,11 @@ "apiGroup": "151", "kind": "152", "name": "153" + }, + "dataSourceRef": { + "apiGroup": "154", + "kind": "155", + "name": "156" } } } @@ -393,59 +398,59 @@ ], "initContainers": [ { - "name": "154", - "image": "155", + "name": "157", + "image": "158", "command": [ - "156" + "159" ], "args": [ - "157" + "160" ], - "workingDir": "158", + "workingDir": "161", "ports": [ { - "name": "159", - "hostPort": 664393458, - "containerPort": -573382936, - "protocol": "嫫猤痈C*ĕʄő芖{|ǘ\"^饣V", - "hostIP": "160" + "name": "162", + "hostPort": 869879222, + "containerPort": -1746427184, + "protocol": "ŏ{", + "hostIP": "163" } ], "envFrom": [ { - "prefix": "161", + "prefix": "164", "configMapRef": { - "name": "162", + "name": "165", "optional": false }, "secretRef": { - "name": "163", + "name": "166", "optional": true } } ], "env": [ { - "name": "164", - "value": "165", + "name": "167", + "value": "168", "valueFrom": { "fieldRef": { - "apiVersion": "166", - "fieldPath": "167" + "apiVersion": "169", + "fieldPath": "170" }, "resourceFieldRef": { - "containerName": "168", - "resource": "169", - "divisor": "275" + "containerName": "171", + "resource": "172", + "divisor": "877" }, "configMapKeyRef": { - "name": "170", - "key": "171", + "name": "173", + "key": "174", "optional": true }, "secretKeyRef": { - "name": "172", - "key": "173", + "name": "175", + "key": "176", "optional": false } } @@ -453,259 +458,256 @@ ], "resources": { "limits": { - "ǝ鿟ldg滠鼍ƭt?QȫşŇɜ": "211" + "É/p": "144" }, "requests": { - "VzÏ抴ŨfZhUʎ浵ɲõ": "303" + "$妻ƅTGS": "845" } }, "volumeMounts": [ { - "name": "174", + "name": "177", "readOnly": true, - "mountPath": "175", - "subPath": "176", - "mountPropagation": "Ť倱\u003cįXŋ朘瑥A", - "subPathExpr": "177" + "mountPath": "178", + "subPath": "179", + "mountPropagation": "^}穠C]躢|)黰eȪ嵛4$%QɰV", + "subPathExpr": "180" } ], "volumeDevices": [ { - "name": "178", - "devicePath": "179" + "name": "181", + "devicePath": "182" } ], "livenessProbe": { "exec": { "command": [ - "180" + "183" ] }, "httpGet": { - "path": "181", - "port": "182", - "host": "183", - "scheme": "0åȂ町恰nj揠8lj", + "path": "184", + "port": -522879476, + "host": "185", + "scheme": "N", "httpHeaders": [ { - "name": "184", - "value": "185" + "name": "186", + "value": "187" } ] }, "tcpSocket": { - "port": -2049272966, - "host": "186" + "port": "188", + "host": "189" }, - "initialDelaySeconds": -1188153605, - "timeoutSeconds": -427769948, - "periodSeconds": 912004803, - "successThreshold": -2098817064, - "failureThreshold": 1231820696, - "terminationGracePeriodSeconds": 5366407347694307113 + "initialDelaySeconds": -687313111, + "timeoutSeconds": -131161294, + "periodSeconds": 1730325900, + "successThreshold": -828368050, + "failureThreshold": 952979935, + "terminationGracePeriodSeconds": 3485267088372060587 }, "readinessProbe": { "exec": { "command": [ - "187" + "190" ] }, "httpGet": { - "path": "188", - "port": 1322581021, - "host": "189", - "scheme": "坩O`涁İ而踪鄌eÞ", + "path": "191", + "port": -1893103047, + "host": "192", + "scheme": "įXŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "193", + "value": "194" } ] }, "tcpSocket": { - "port": -1319491110, - "host": "192" + "port": "195", + "host": "196" }, - "initialDelaySeconds": 565789036, - "timeoutSeconds": -1572269414, - "periodSeconds": -582473401, - "successThreshold": -1252931244, - "failureThreshold": 1569992019, - "terminationGracePeriodSeconds": 4559267523176571 + "initialDelaySeconds": 1836896522, + "timeoutSeconds": -2101285839, + "periodSeconds": 2064656704, + "successThreshold": -1940723300, + "failureThreshold": 749147575, + "terminationGracePeriodSeconds": 2131277878630553496 }, "startupProbe": { "exec": { "command": [ - "193" + "197" ] }, "httpGet": { - "path": "194", - "port": "195", - "host": "196", - "scheme": "鹎ğ#咻痗ȡmƴy綸_Ú8參遼", + "path": "198", + "port": "199", + "host": "200", "httpHeaders": [ { - "name": "197", - "value": "198" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "199", - "host": "200" + "port": 675406340, + "host": "203" }, - "initialDelaySeconds": -997191789, - "timeoutSeconds": -935589762, - "periodSeconds": -918862259, - "successThreshold": 655980302, - "failureThreshold": 741871873, - "terminationGracePeriodSeconds": 1919118248821998564 + "initialDelaySeconds": 994527057, + "timeoutSeconds": -1482763519, + "periodSeconds": -1346458591, + "successThreshold": 1234551517, + "failureThreshold": -1618937335, + "terminationGracePeriodSeconds": -8171267464271993058 }, "lifecycle": { "postStart": { "exec": { "command": [ - "201" + "204" ] }, "httpGet": { - "path": "202", - "port": "203", - "host": "204", - "scheme": "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", + "path": "205", + "port": -1296140, + "host": "206", + "scheme": "Y籎顒ǥŴ", "httpHeaders": [ { - "name": "205", - "value": "206" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": 1180382332, - "host": "207" + "port": 1061537, + "host": "209" } }, "preStop": { "exec": { "command": [ - "208" + "210" ] }, "httpGet": { - "path": "209", - "port": "210", - "host": "211", - "scheme": "蕵ɢ", + "path": "211", + "port": "212", + "host": "213", + "scheme": "墴1Rƥ贫d", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "214", + "value": "215" } ] }, "tcpSocket": { - "port": "214", - "host": "215" + "port": -33154680, + "host": "216" } } }, - "terminationMessagePath": "216", - "terminationMessagePolicy": "ńMǰ溟ɴ扵閝", - "imagePullPolicy": "垁鷌辪", + "terminationMessagePath": "217", + "terminationMessagePolicy": "跾|@?鷅bȻN+ņ榱*", "securityContext": { "capabilities": { "add": [ - "珝Żwʮ馜ü" + "閼咎櫸eʔŊ" ], "drop": [ - "șƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧" + "究:hoĂɋ瀐\u003cɉ湨" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "217", - "role": "218", - "type": "219", - "level": "220" + "user": "218", + "role": "219", + "type": "220", + "level": "221" }, "windowsOptions": { - "gmsaCredentialSpecName": "221", - "gmsaCredentialSpec": "222", - "runAsUserName": "223", + "gmsaCredentialSpecName": "222", + "gmsaCredentialSpec": "223", + "runAsUserName": "224", "hostProcess": true }, - "runAsUser": 42649466061901501, - "runAsGroup": -4525194116194020035, + "runAsUser": 5069703513298030462, + "runAsGroup": -879001843196053690, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": ":贅wE@Ȗs«öʮĀ\u003cé瞾", + "procMount": "Ǯń", "seccompProfile": { - "type": "NŬɨǙÄr蛏豈ɃHŠơŴĿ", - "localhostProfile": "224" + "type": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳", + "localhostProfile": "225" } }, "stdin": true, - "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "225", - "image": "226", + "name": "226", + "image": "227", "command": [ - "227" - ], - "args": [ "228" ], - "workingDir": "229", + "args": [ + "229" + ], + "workingDir": "230", "ports": [ { - "name": "230", - "hostPort": 804417065, - "containerPort": 1348377429, - "protocol": "廷s{Ⱦdz@ùƸʋŀ樺ȃv渟7", - "hostIP": "231" + "name": "231", + "hostPort": 483512911, + "containerPort": -1941847253, + "protocol": "=6}ɡ", + "hostIP": "232" } ], "envFrom": [ { - "prefix": "232", + "prefix": "233", "configMapRef": { - "name": "233", + "name": "234", "optional": true }, "secretRef": { - "name": "234", + "name": "235", "optional": true } } ], "env": [ { - "name": "235", - "value": "236", + "name": "236", + "value": "237", "valueFrom": { "fieldRef": { - "apiVersion": "237", - "fieldPath": "238" + "apiVersion": "238", + "fieldPath": "239" }, "resourceFieldRef": { - "containerName": "239", - "resource": "240", - "divisor": "478" + "containerName": "240", + "resource": "241", + "divisor": "421" }, "configMapKeyRef": { - "name": "241", - "key": "242", - "optional": true + "name": "242", + "key": "243", + "optional": false }, "secretKeyRef": { - "name": "243", - "key": "244", + "name": "244", + "key": "245", "optional": false } } @@ -713,127 +715,126 @@ ], "resources": { "limits": { - "0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭": "957" + "_瀹鞎sn芞QÄȻȊ+?": "193" }, "requests": { - "ĨFħ籘Àǒɿʒ": "692" + "@Ȗs«öʮĀ\u003cé瞾": "51" } }, "volumeMounts": [ { - "name": "245", - "readOnly": true, - "mountPath": "246", - "subPath": "247", - "mountPropagation": "o/樝fw[Řż丩Ž", - "subPathExpr": "248" + "name": "246", + "mountPath": "247", + "subPath": "248", + "mountPropagation": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", + "subPathExpr": "249" } ], "volumeDevices": [ { - "name": "249", - "devicePath": "250" + "name": "250", + "devicePath": "251" } ], "livenessProbe": { "exec": { "command": [ - "251" + "252" ] }, "httpGet": { - "path": "252", - "port": 486195690, - "host": "253", - "scheme": "1Ůđ眊ľǎɳ,ǿ飏騀", + "path": "253", + "port": "254", + "host": "255", + "scheme": "{Ⱦdz@", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "256", + "value": "257" } ] }, "tcpSocket": { - "port": -490345684, - "host": "256" + "port": 406308963, + "host": "258" }, - "initialDelaySeconds": 474119379, - "timeoutSeconds": 1923334396, - "periodSeconds": -1343558801, - "successThreshold": 284401429, - "failureThreshold": 1427600698, - "terminationGracePeriodSeconds": -6576869501326512452 + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354, + "terminationGracePeriodSeconds": -1159835821828680707 }, "readinessProbe": { "exec": { "command": [ - "257" + "259" ] }, "httpGet": { - "path": "258", - "port": "259", - "host": "260", - "scheme": "\u003e5姣\u003e懔%熷谟", + "path": "260", + "port": 576428641, + "host": "261", + "scheme": "ƯĖ漘Z剚敍0)鈼¬麄p呝T", "httpHeaders": [ { - "name": "261", - "value": "262" + "name": "262", + "value": "263" } ] }, "tcpSocket": { - "port": -1920661051, - "host": "263" + "port": -1891134534, + "host": "264" }, - "initialDelaySeconds": -1763501586, - "timeoutSeconds": -337240309, - "periodSeconds": -1675041613, - "successThreshold": 963670270, - "failureThreshold": -1180080716, - "terminationGracePeriodSeconds": -6054478692818889553 + "initialDelaySeconds": -1710454086, + "timeoutSeconds": 192146389, + "periodSeconds": 1285027515, + "successThreshold": 111876618, + "failureThreshold": -820458255, + "terminationGracePeriodSeconds": -4763823273964408583 }, "startupProbe": { "exec": { "command": [ - "264" + "265" ] }, "httpGet": { - "path": "265", - "port": -1498229293, - "host": "266", - "scheme": "LƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻", + "path": "266", + "port": -122979840, + "host": "267", + "scheme": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "httpHeaders": [ { - "name": "267", - "value": "268" + "name": "268", + "value": "269" } ] }, "tcpSocket": { - "port": "269", - "host": "270" + "port": "270", + "host": "271" }, - "initialDelaySeconds": -1171167638, - "timeoutSeconds": -1336170981, - "periodSeconds": 1179132251, - "successThreshold": -2123728714, - "failureThreshold": -406148612, - "terminationGracePeriodSeconds": 241615716805649441 + "initialDelaySeconds": 2045456786, + "timeoutSeconds": 988932710, + "periodSeconds": -1537700150, + "successThreshold": -1815868713, + "failureThreshold": 105707873, + "terminationGracePeriodSeconds": -810905585400838367 }, "lifecycle": { "postStart": { "exec": { "command": [ - "271" + "272" ] }, "httpGet": { - "path": "272", - "port": "273", + "path": "273", + "port": 1422435836, "host": "274", - "scheme": "粕擓ƖHVe熼'FD", + "scheme": ",ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ", "httpHeaders": [ { "name": "275", @@ -854,155 +855,156 @@ }, "httpGet": { "path": "280", - "port": 100356493, - "host": "281", - "scheme": "ƮA攤/ɸɎ R§耶FfB", + "port": "281", + "host": "282", + "scheme": "Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄", "httpHeaders": [ { - "name": "282", - "value": "283" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": "284", - "host": "285" + "port": "285", + "host": "286" } } }, - "terminationMessagePath": "286", - "terminationMessagePolicy": "3!Zɾģ毋Ó6", - "imagePullPolicy": "?$矡ȶ网棊ʢ", + "terminationMessagePath": "287", + "terminationMessagePolicy": "ʤî萨zvt莭", + "imagePullPolicy": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", "securityContext": { "capabilities": { "add": [ - "Ǖɳɷ9Ì崟¿瘦ɖ緕" + "sĨɆâĺɗŹ倗S晒嶗U" ], "drop": [ - "Í勅跦Opwǩ曬逴褜1ØœȠƬ" + "_ƮA攤/ɸɎ R§耶FfBl" ] }, "privileged": true, "seLinuxOptions": { - "user": "287", - "role": "288", - "type": "289", - "level": "290" + "user": "288", + "role": "289", + "type": "290", + "level": "291" }, "windowsOptions": { - "gmsaCredentialSpecName": "291", - "gmsaCredentialSpec": "292", - "runAsUserName": "293", - "hostProcess": false + "gmsaCredentialSpecName": "292", + "gmsaCredentialSpec": "293", + "runAsUserName": "294", + "hostProcess": true }, - "runAsUser": 7864982275050120786, - "runAsGroup": 4734307467052060549, + "runAsUser": 3850139838566476547, + "runAsGroup": -7106791338981314910, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "卷", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "娝嘚庎D}埽uʎȺ眖R#yV'", "seccompProfile": { - "type": "J", - "localhostProfile": "294" + "type": "Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "localhostProfile": "295" } }, - "stdin": true + "stdin": true, + "tty": true } ], "ephemeralContainers": [ { - "name": "295", - "image": "296", + "name": "296", + "image": "297", "command": [ - "297" - ], - "args": [ "298" ], - "workingDir": "299", + "args": [ + "299" + ], + "workingDir": "300", "ports": [ { - "name": "300", - "hostPort": -743369977, - "containerPort": -1624574056, - "protocol": "犵殇ŕ-Ɂ圯W:ĸ輦唊#", - "hostIP": "301" + "name": "301", + "hostPort": -1643733106, + "containerPort": -805795167, + "protocol": "8Ƥ熪军g\u003e郵[+", + "hostIP": "302" } ], "envFrom": [ { - "prefix": "302", + "prefix": "303", "configMapRef": { - "name": "303", - "optional": false - }, - "secretRef": { "name": "304", "optional": true + }, + "secretRef": { + "name": "305", + "optional": false } } ], "env": [ { - "name": "305", - "value": "306", + "name": "306", + "value": "307", "valueFrom": { "fieldRef": { - "apiVersion": "307", - "fieldPath": "308" + "apiVersion": "308", + "fieldPath": "309" }, "resourceFieldRef": { - "containerName": "309", - "resource": "310", - "divisor": "626" + "containerName": "310", + "resource": "311", + "divisor": "730" }, "configMapKeyRef": { - "name": "311", - "key": "312", + "name": "312", + "key": "313", "optional": true }, "secretKeyRef": { - "name": "313", - "key": "314", - "optional": true + "name": "314", + "key": "315", + "optional": false } } } ], "resources": { "limits": { - "Ÿ8T 苧yñKJɐ扵": "44" + "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq": "431" }, "requests": { - "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5": "723" + "ē鐭#嬀ơŸ8T 苧yñKJɐ": "894" } }, "volumeMounts": [ { - "name": "315", - "mountPath": "316", - "subPath": "317", - "mountPropagation": "徶đ寳议Ƭƶ氩Ȩ", - "subPathExpr": "318" + "name": "316", + "mountPath": "317", + "subPath": "318", + "mountPropagation": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "subPathExpr": "319" } ], "volumeDevices": [ { - "name": "319", - "devicePath": "320" + "name": "320", + "devicePath": "321" } ], "livenessProbe": { "exec": { "command": [ - "321" + "322" ] }, "httpGet": { - "path": "322", - "port": "323", + "path": "323", + "port": 14304392, "host": "324", - "scheme": "ŕ翑0展}", + "scheme": "寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥贸碔", "httpHeaders": [ { "name": "325", @@ -1014,12 +1016,12 @@ "port": "327", "host": "328" }, - "initialDelaySeconds": -1778952574, - "timeoutSeconds": 1386255869, - "periodSeconds": -778272981, - "successThreshold": 2056774277, - "failureThreshold": -2146674095, - "terminationGracePeriodSeconds": -1117820874616112287 + "initialDelaySeconds": -1296830577, + "timeoutSeconds": -1314967760, + "periodSeconds": 1174240097, + "successThreshold": -1928016742, + "failureThreshold": -787458357, + "terminationGracePeriodSeconds": 342609112008782456 }, "readinessProbe": { "exec": { @@ -1029,9 +1031,9 @@ }, "httpGet": { "path": "330", - "port": 303592056, + "port": -528664199, "host": "331", - "scheme": "獕;跣Hǝcw媀瓄\u0026翜舞拉", + "scheme": "徥淳4揻-$ɽ丟", "httpHeaders": [ { "name": "332", @@ -1043,12 +1045,12 @@ "port": "334", "host": "335" }, - "initialDelaySeconds": 2066735093, - "timeoutSeconds": -190183379, - "periodSeconds": -940334911, - "successThreshold": -341287812, - "failureThreshold": 2030115750, - "terminationGracePeriodSeconds": 7933506142593743951 + "initialDelaySeconds": 468369166, + "timeoutSeconds": 1909548849, + "periodSeconds": 1492642476, + "successThreshold": -367153801, + "failureThreshold": 1907998540, + "terminationGracePeriodSeconds": 8959437085840841638 }, "startupProbe": { "exec": { @@ -1058,47 +1060,48 @@ }, "httpGet": { "path": "337", - "port": -816630929, - "host": "338", + "port": "338", + "host": "339", + "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", "httpHeaders": [ { - "name": "339", - "value": "340" + "name": "340", + "value": "341" } ] }, "tcpSocket": { - "port": 1965273344, - "host": "341" + "port": 458427807, + "host": "342" }, - "initialDelaySeconds": 509813083, - "timeoutSeconds": -1389984716, - "periodSeconds": 204229950, - "successThreshold": 237070189, - "failureThreshold": 1328165061, - "terminationGracePeriodSeconds": -2419752030496149068 + "initialDelaySeconds": -1971421078, + "timeoutSeconds": 1905181464, + "periodSeconds": -1730959016, + "successThreshold": 1272940694, + "failureThreshold": -385597677, + "terminationGracePeriodSeconds": 1813049096022212391 }, "lifecycle": { "postStart": { "exec": { "command": [ - "342" + "343" ] }, "httpGet": { - "path": "343", - "port": -2128108224, - "host": "344", - "scheme": "δ摖", + "path": "344", + "port": 50696420, + "host": "345", + "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", "httpHeaders": [ { - "name": "345", - "value": "346" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": "347", + "port": 802134138, "host": "348" } }, @@ -1110,115 +1113,113 @@ }, "httpGet": { "path": "350", - "port": "351", - "host": "352", + "port": -126958936, + "host": "351", + "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "httpHeaders": [ { - "name": "353", - "value": "354" + "name": "352", + "value": "353" } ] }, "tcpSocket": { - "port": "355", - "host": "356" + "port": "354", + "host": "355" } } }, - "terminationMessagePath": "357", - "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", - "imagePullPolicy": "囌{屿oiɥ嵐sC", + "terminationMessagePath": "356", + "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮", "securityContext": { "capabilities": { "add": [ - "Ǻ鱎ƙ;Nŕ" + "嘢4ʗN,丽饾| 鞤ɱďW賁" ], "drop": [ - "Jih亏yƕ丆録²" + "ɭɪǹ0衷," ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "358", - "role": "359", - "type": "360", - "level": "361" + "user": "357", + "role": "358", + "type": "359", + "level": "360" }, "windowsOptions": { - "gmsaCredentialSpecName": "362", - "gmsaCredentialSpec": "363", - "runAsUserName": "364", + "gmsaCredentialSpecName": "361", + "gmsaCredentialSpec": "362", + "runAsUserName": "363", "hostProcess": true }, - "runAsUser": -5099422937845460309, - "runAsGroup": -4798571027889325171, - "runAsNonRoot": true, + "runAsUser": -1119183212148951030, + "runAsGroup": -7146044409185304665, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "allowPrivilegeEscalation": true, + "procMount": "w妕眵笭/9崍h趭(娕", "seccompProfile": { - "type": "eSvEȤƏ埮pɵ{WOŭW灬p", - "localhostProfile": "365" + "type": "E增猍", + "localhostProfile": "364" } }, - "stdinOnce": true, - "tty": true, - "targetContainerName": "366" + "targetContainerName": "365" } ], - "restartPolicy": "V擭銆j", - "terminationGracePeriodSeconds": -2096491188749634309, - "activeDeadlineSeconds": 4288903380102217677, - "dnsPolicy": "饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM", + "restartPolicy": "xǨŴ壶ƵfȽÃ", + "terminationGracePeriodSeconds": -6480965203152502098, + "activeDeadlineSeconds": -1027633754006304958, + "dnsPolicy": "Ȁĵ鴁", "nodeSelector": { - "367": "368" + "366": "367" }, - "serviceAccountName": "369", - "serviceAccount": "370", + "serviceAccountName": "368", + "serviceAccount": "369", "automountServiceAccountToken": false, - "nodeName": "371", - "hostNetwork": true, - "hostIPC": true, + "nodeName": "370", + "hostPID": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "372", - "role": "373", - "type": "374", - "level": "375" + "user": "371", + "role": "372", + "type": "373", + "level": "374" }, "windowsOptions": { - "gmsaCredentialSpecName": "376", - "gmsaCredentialSpec": "377", - "runAsUserName": "378", - "hostProcess": true + "gmsaCredentialSpecName": "375", + "gmsaCredentialSpec": "376", + "runAsUserName": "377", + "hostProcess": false }, - "runAsUser": -6717020695319852049, - "runAsGroup": -495558749504439559, + "runAsUser": 8749429589533479764, + "runAsGroup": -2587337448078233130, "runAsNonRoot": false, "supplementalGroups": [ - 933334675092942213 + 8748656795747647539 ], - "fsGroup": 2373631082804169687, + "fsGroup": 1362411221198469787, "sysctls": [ { - "name": "379", - "value": "380" + "name": "378", + "value": "379" } ], - "fsGroupChangePolicy": "趭(娕uE增猍ǵ x", + "fsGroupChangePolicy": "輔3璾ėȜv1b繐汚磉反-n覦", "seccompProfile": { - "type": "Ŵ壶ƵfȽÃ茓pȓɻ", - "localhostProfile": "381" + "type": "閈誹ʅ蕉ɼ", + "localhostProfile": "380" } }, "imagePullSecrets": [ { - "name": "382" + "name": "381" } ], - "hostname": "383", - "subdomain": "384", + "hostname": "382", + "subdomain": "383", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1226,19 +1227,19 @@ { "matchExpressions": [ { - "key": "385", - "operator": "ȲǸ|蕎'佉賞ǧĒzŔ", + "key": "384", + "operator": "Ƽ¨Ix糂腂ǂ", "values": [ - "386" + "385" ] } ], "matchFields": [ { - "key": "387", - "operator": "fŭƽ眝{", + "key": "386", + "operator": "zĮ蛋I滞廬耐鷞焬CQ", "values": [ - "388" + "387" ] } ] @@ -1247,23 +1248,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -684167223, + "weight": 1624098740, "preference": { "matchExpressions": [ { - "key": "389", - "operator": "若`l}", + "key": "388", + "operator": "劄奼[ƕƑĝ®E", "values": [ - "390" + "389" ] } ], "matchFields": [ { - "key": "391", - "operator": "", + "key": "390", + "operator": "Ɠ宆!鍲ɋȑoG鄧", "values": [ - "392" + "391" ] } ] @@ -1276,29 +1277,29 @@ { "labelSelector": { "matchLabels": { - "x9-35o-1-5w5z3-d----0p---s-9----747o-3.jr-927--m6-k8-c2---2etfh41ca-z-5g2wco28---6/Dup.2L_s-o779._-k-5___-Qq..csh-3--ZT": "6_31-_I-A-_3bz._8M0U1_-__.71-_-9_._XD" + "K_A-_9_Z_C..7o_x3..-.8-Jp-94": "Tm.__G-8...__.Q_c8.G.b_9_18" }, "matchExpressions": [ { - "key": "8609a-e0--1----v8-2/ck..1Q7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F2", + "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q", "operator": "DoesNotExist" } ] }, "namespaces": [ - "399" + "398" ], - "topologyKey": "400", + "topologyKey": "399", "namespaceSelector": { "matchLabels": { - "780bdw0-1-47rrw8-5tn.0-1y-tw/O-..6W.VK.sTt.-U_--56-.7D.3_KPg___KA-._d.8": "wmiJ4x-_0_5-_.7F3p2_-_AmD-.A" + "4sE4": "B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6" }, "matchExpressions": [ { - "key": "C0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b17ca-p", - "operator": "In", + "key": "0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs", + "operator": "NotIn", "values": [ - "3-3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ_K" + "6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7" ] } ] @@ -1307,30 +1308,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1357609391, + "weight": -688929182, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "23bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/1k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H": "46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e" + "y_-3_L_2--_v2.5p_6": "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q" }, "matchExpressions": [ { - "key": "f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO", - "operator": "DoesNotExist" + "key": "3--51", + "operator": "NotIn", + "values": [ + "C.-e16-O5" + ] } ] }, "namespaces": [ - "413" + "412" ], - "topologyKey": "414", + "topologyKey": "413", "namespaceSelector": { "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" + "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM" }, "matchExpressions": [ { - "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", + "key": "8mtxb__-ex-_1_-ODgC_1-_8__3", "operator": "DoesNotExist" } ] @@ -1344,26 +1348,26 @@ { "labelSelector": { "matchLabels": { - "8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w": "61P_.D8_t..-Ww27" + "K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0": "u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K" }, "matchExpressions": [ { - "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", - "operator": "DoesNotExist" + "key": "sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V", + "operator": "Exists" } ] }, "namespaces": [ - "427" + "426" ], - "topologyKey": "428", + "topologyKey": "427", "namespaceSelector": { "matchLabels": { - "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR" + "e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m": "e.Dx._.W-6..4_MU7iLfS0" }, "matchExpressions": [ { - "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7", + "key": "P6j.u--.K--g__..b", "operator": "DoesNotExist" } ] @@ -1372,31 +1376,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 339079271, + "weight": -616061040, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV" + "L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u": "j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w" }, "matchExpressions": [ { - "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", + "key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X", "operator": "Exists" } ] }, "namespaces": [ - "441" + "440" ], - "topologyKey": "442", + "topologyKey": "441", "namespaceSelector": { "matchLabels": { - "E35H__.B_E": "U..u8gwbk" + "97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a": "ZZ__.-_U-.60--o._8H__lB" }, "matchExpressions": [ { - "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", - "operator": "Exists" + "key": "vi.Z", + "operator": "NotIn", + "values": [ + "03l-_86_u2-7_._qN__A_f_-B3_U__L.H" + ] } ] } @@ -1405,66 +1412,64 @@ ] } }, - "schedulerName": "449", + "schedulerName": "448", "tolerations": [ { - "key": "450", - "operator": "ŭʔb'?舍ȃʥx臥]å摞", - "value": "451", - "tolerationSeconds": 3053978290188957517 + "key": "449", + "operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU", + "value": "450", + "effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ", + "tolerationSeconds": -4322909565451750640 } ], "hostAliases": [ { - "ip": "452", + "ip": "451", "hostnames": [ - "453" + "452" ] } ], - "priorityClassName": "454", - "priority": -340583156, + "priorityClassName": "453", + "priority": 780753434, "dnsConfig": { "nameservers": [ - "455" + "454" ], "searches": [ - "456" + "455" ], "options": [ { - "name": "457", - "value": "458" + "name": "456", + "value": "457" } ] }, "readinessGates": [ { - "conditionType": "țc£PAÎǨȨ栋" + "conditionType": "¤趜磕绘翁揌p:oŇE" } ], - "runtimeClassName": "459", + "runtimeClassName": "458", "enableServiceLinks": false, - "preemptionPolicy": "n{鳻", + "preemptionPolicy": "ħ\\", "overhead": { - "隅DžbİEMǶɼ`|褞": "229" + "kƱ": "313" }, "topologySpreadConstraints": [ { - "maxSkew": 1486667065, - "topologyKey": "460", - "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", + "maxSkew": 1674267790, + "topologyKey": "459", + "whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV", "labelSelector": { "matchLabels": { - "H_55..--E3_2D-1DW__o_-.k": "7" + "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i": "Wq-...Oai.D7-_9..8-8yw..__Yb_8" }, "matchExpressions": [ { - "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", - "operator": "NotIn", - "values": [ - "H1z..j_.r3--T" - ] + "key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1", + "operator": "DoesNotExist" } ] } @@ -1473,168 +1478,168 @@ "setHostnameAsFQDN": false }, "status": { - "phase": "șa汸\u003cƋlɋN磋镮ȺPÈ", + "phase": "VǢɾ纤ą", "conditions": [ { - "type": "偁髕ģƗ鐫?勥穌砊ʑȩ硘(ǒ[", - "status": "闬輙怀¹bCũw¼ ǫđ槴Ċį軠\u003e", - "lastProbeTime": "2446-08-01T12:34:13Z", - "lastTransitionTime": "2721-06-15T10:27:00Z", - "reason": "467", - "message": "468" + "type": "?ɣ蔫椁Ȕ蝬KȴǃmŁȒ|'从", + "status": "{煰", + "lastProbeTime": "2761-08-29T15:09:53Z", + "lastTransitionTime": "2608-03-08T03:06:33Z", + "reason": "466", + "message": "467" } ], - "message": "469", - "reason": "470", - "nominatedNodeName": "471", - "hostIP": "472", - "podIP": "473", + "message": "468", + "reason": "469", + "nominatedNodeName": "470", + "hostIP": "471", + "podIP": "472", "podIPs": [ { - "ip": "474" + "ip": "473" } ], "initContainerStatuses": [ { - "name": "475", + "name": "474", "state": { "waiting": { - "reason": "476", - "message": "477" + "reason": "475", + "message": "476" }, "running": { - "startedAt": "2044-06-19T19:39:57Z" + "startedAt": "2207-07-09T15:21:43Z" }, "terminated": { - "exitCode": -702718077, - "signal": 648978003, - "reason": "478", - "message": "479", - "startedAt": "2298-10-11T07:26:38Z", - "finishedAt": "2953-05-20T20:14:17Z", - "containerID": "480" + "exitCode": 1874682186, + "signal": -768346969, + "reason": "477", + "message": "478", + "startedAt": "2757-03-25T09:04:49Z", + "finishedAt": "2465-03-18T23:55:27Z", + "containerID": "479" } }, "lastState": { "waiting": { - "reason": "481", - "message": "482" + "reason": "480", + "message": "481" }, "running": { - "startedAt": "2909-12-17T10:35:05Z" + "startedAt": "2687-07-04T15:23:41Z" }, "terminated": { - "exitCode": 344566548, - "signal": -1274159576, - "reason": "483", - "message": "484", - "startedAt": "2448-03-03T21:49:58Z", - "finishedAt": "2181-04-23T17:08:11Z", - "containerID": "485" + "exitCode": 1892596557, + "signal": -1952419528, + "reason": "482", + "message": "483", + "startedAt": "2135-06-21T01:04:43Z", + "finishedAt": "2719-07-17T22:00:10Z", + "containerID": "484" } }, "ready": false, - "restartCount": 880515121, - "image": "486", - "imageID": "487", - "containerID": "488", + "restartCount": -391574961, + "image": "485", + "imageID": "486", + "containerID": "487", "started": true } ], "containerStatuses": [ { - "name": "489", + "name": "488", "state": { "waiting": { - "reason": "490", - "message": "491" + "reason": "489", + "message": "490" }, "running": { - "startedAt": "2639-07-13T08:26:34Z" + "startedAt": "2760-10-14T11:51:24Z" }, "terminated": { - "exitCode": -477105883, - "signal": 1266675441, - "reason": "492", - "message": "493", - "startedAt": "2760-06-20T08:13:38Z", - "finishedAt": "2270-10-11T19:35:54Z", - "containerID": "494" + "exitCode": 165747350, + "signal": 470888375, + "reason": "491", + "message": "492", + "startedAt": "2942-12-12T07:01:06Z", + "finishedAt": "2699-11-10T05:45:30Z", + "containerID": "493" } }, "lastState": { "waiting": { - "reason": "495", - "message": "496" + "reason": "494", + "message": "495" }, "running": { - "startedAt": "2018-06-11T20:33:19Z" + "startedAt": "2127-06-24T09:29:52Z" }, "terminated": { - "exitCode": 267482175, - "signal": -724869497, - "reason": "497", - "message": "498", - "startedAt": "2261-09-25T07:35:50Z", - "finishedAt": "2921-08-01T07:23:37Z", - "containerID": "499" - } - }, - "ready": false, - "restartCount": 1996366336, - "image": "500", - "imageID": "501", - "containerID": "502", - "started": true - } - ], - "qosClass": "ɹNL觀嫧酞篐8郫焮3ó緼Ŷ獃夕ƆIJ", - "ephemeralContainerStatuses": [ - { - "name": "503", - "state": { - "waiting": { - "reason": "504", - "message": "505" - }, - "running": { - "startedAt": "2679-03-05T15:56:11Z" - }, - "terminated": { - "exitCode": -678247306, - "signal": -798353979, - "reason": "506", - "message": "507", - "startedAt": "2522-07-17T20:42:05Z", - "finishedAt": "2671-06-02T09:10:05Z", - "containerID": "508" - } - }, - "lastState": { - "waiting": { - "reason": "509", - "message": "510" - }, - "running": { - "startedAt": "2470-09-16T06:10:29Z" - }, - "terminated": { - "exitCode": -379260195, - "signal": 1724179157, - "reason": "511", - "message": "512", - "startedAt": "2713-05-24T08:16:36Z", - "finishedAt": "2940-09-11T05:49:16Z", - "containerID": "513" + "exitCode": 1574959758, + "signal": 1657812021, + "reason": "496", + "message": "497", + "startedAt": "2153-04-02T23:06:37Z", + "finishedAt": "2299-04-20T19:57:50Z", + "containerID": "498" } }, "ready": true, - "restartCount": -579160123, - "image": "514", - "imageID": "515", - "containerID": "516", + "restartCount": 2015720150, + "image": "499", + "imageID": "500", + "containerID": "501", "started": false } + ], + "qosClass": "澵貛香\"砻B", + "ephemeralContainerStatuses": [ + { + "name": "502", + "state": { + "waiting": { + "reason": "503", + "message": "504" + }, + "running": { + "startedAt": "2513-06-23T10:07:34Z" + }, + "terminated": { + "exitCode": -1155216843, + "signal": 839330574, + "reason": "505", + "message": "506", + "startedAt": "2296-08-29T04:36:22Z", + "finishedAt": "2685-03-12T10:07:19Z", + "containerID": "507" + } + }, + "lastState": { + "waiting": { + "reason": "508", + "message": "509" + }, + "running": { + "startedAt": "2100-10-03T01:21:07Z" + }, + "terminated": { + "exitCode": -1308926448, + "signal": 1208014329, + "reason": "510", + "message": "511", + "startedAt": "2915-11-30T10:57:55Z", + "finishedAt": "2358-12-25T12:18:48Z", + "containerID": "512" + } + }, + "ready": true, + "restartCount": 1093414706, + "image": "513", + "imageID": "514", + "containerID": "515", + "started": true + } ] } } \ No newline at end of file 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 4e506ee0351..e6760c4400a 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml index 54076304e25..5b24fe836b5 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml @@ -31,154 +31,159 @@ metadata: selfLink: "5" uid: "7" spec: - activeDeadlineSeconds: 4288903380102217677 + activeDeadlineSeconds: -1027633754006304958 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "389" - operator: 若`l} + - key: "388" + operator: 劄奼[ƕƑĝ®E values: - - "390" + - "389" matchFields: - - key: "391" - operator: "" + - key: "390" + operator: Ɠ宆!鍲ɋȑoG鄧 values: - - "392" - weight: -684167223 + - "391" + weight: 1624098740 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "385" - operator: ȲǸ|蕎'佉賞ǧĒzŔ + - key: "384" + operator: Ƽ¨Ix糂腂ǂ values: - - "386" + - "385" matchFields: - - key: "387" - operator: fŭƽ眝{ + - key: "386" + operator: zĮ蛋I滞廬耐鷞焬CQ values: - - "388" + - "387" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO - operator: DoesNotExist + - key: 3--51 + operator: NotIn + values: + - C.-e16-O5 matchLabels: - 23bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/1k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H: 46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e + y_-3_L_2--_v2.5p_6: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q namespaceSelector: matchExpressions: - - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p + - key: 8mtxb__-ex-_1_-ODgC_1-_8__3 operator: DoesNotExist 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 + 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM namespaces: - - "413" - topologyKey: "414" - weight: 1357609391 + - "412" + topologyKey: "413" + weight: -688929182 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 8609a-e0--1----v8-2/ck..1Q7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F2 + - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q operator: DoesNotExist matchLabels: - x9-35o-1-5w5z3-d----0p---s-9----747o-3.jr-927--m6-k8-c2---2etfh41ca-z-5g2wco28---6/Dup.2L_s-o779._-k-5___-Qq..csh-3--ZT: 6_31-_I-A-_3bz._8M0U1_-__.71-_-9_._XD + K_A-_9_Z_C..7o_x3..-.8-Jp-94: Tm.__G-8...__.Q_c8.G.b_9_18 namespaceSelector: matchExpressions: - - key: C0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b17ca-p - operator: In + - key: 0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs + operator: NotIn values: - - 3-3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ_K + - 6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7 matchLabels: - 780bdw0-1-47rrw8-5tn.0-1y-tw/O-..6W.VK.sTt.-U_--56-.7D.3_KPg___KA-._d.8: wmiJ4x-_0_5-_.7F3p2_-_AmD-.A + 4sE4: B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6 namespaces: - - "399" - topologyKey: "400" + - "398" + topologyKey: "399" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5 + - key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X operator: Exists matchLabels: - ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV + L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u: j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w namespaceSelector: matchExpressions: - - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i - operator: Exists + - key: vi.Z + operator: NotIn + values: + - 03l-_86_u2-7_._qN__A_f_-B3_U__L.H matchLabels: - E35H__.B_E: U..u8gwbk + 97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a: ZZ__.-_U-.60--o._8H__lB namespaces: - - "441" - topologyKey: "442" - weight: 339079271 + - "440" + topologyKey: "441" + weight: -616061040 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 - operator: DoesNotExist + - key: sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V + operator: Exists matchLabels: - 8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w: 61P_.D8_t..-Ww27 + K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0: u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K namespaceSelector: matchExpressions: - - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7 + - key: P6j.u--.K--g__..b operator: DoesNotExist matchLabels: - "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR + ? e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m + : e.Dx._.W-6..4_MU7iLfS0 namespaces: - - "427" - topologyKey: "428" + - "426" + topologyKey: "427" automountServiceAccountToken: false containers: - args: - - "228" + - "229" command: - - "227" + - "228" env: - - name: "235" - value: "236" + - name: "236" + value: "237" valueFrom: configMapKeyRef: - key: "242" - name: "241" - optional: true + key: "243" + name: "242" + optional: false fieldRef: - apiVersion: "237" - fieldPath: "238" + apiVersion: "238" + fieldPath: "239" resourceFieldRef: - containerName: "239" - divisor: "478" - resource: "240" + containerName: "240" + divisor: "421" + resource: "241" secretKeyRef: - key: "244" - name: "243" + key: "245" + name: "244" optional: false envFrom: - configMapRef: - name: "233" - optional: true - prefix: "232" - secretRef: name: "234" optional: true - image: "226" - imagePullPolicy: ?$矡ȶ网棊ʢ + prefix: "233" + secretRef: + name: "235" + optional: true + image: "227" + imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p lifecycle: postStart: exec: command: - - "271" + - "272" httpGet: host: "274" httpHeaders: - name: "275" value: "276" - path: "272" - port: "273" - scheme: 粕擓ƖHVe熼'FD + path: "273" + port: 1422435836 + scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ' tcpSocket: host: "278" port: "277" @@ -187,571 +192,566 @@ spec: command: - "279" httpGet: - host: "281" + host: "282" httpHeaders: - - name: "282" - value: "283" + - name: "283" + value: "284" path: "280" - port: 100356493 - scheme: ƮA攤/ɸɎ R§耶FfB + port: "281" + scheme: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 tcpSocket: - host: "285" - port: "284" + host: "286" + port: "285" livenessProbe: exec: command: - - "251" - failureThreshold: 1427600698 + - "252" + failureThreshold: 208045354 httpGet: - host: "253" + host: "255" httpHeaders: - - name: "254" - value: "255" - path: "252" - port: 486195690 - scheme: 1Ůđ眊ľǎɳ,ǿ飏騀 - initialDelaySeconds: 474119379 - periodSeconds: -1343558801 - successThreshold: 284401429 + - name: "256" + value: "257" + path: "253" + port: "254" + scheme: '{Ⱦdz@' + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 tcpSocket: - host: "256" - port: -490345684 - terminationGracePeriodSeconds: -6576869501326512452 - timeoutSeconds: 1923334396 - name: "225" + host: "258" + port: 406308963 + terminationGracePeriodSeconds: -1159835821828680707 + timeoutSeconds: 2026784878 + name: "226" ports: - - containerPort: 1348377429 - hostIP: "231" - hostPort: 804417065 - name: "230" - protocol: 廷s{Ⱦdz@ùƸʋŀ樺ȃv渟7 + - containerPort: -1941847253 + hostIP: "232" + hostPort: 483512911 + name: "231" + protocol: =6}ɡ readinessProbe: exec: command: - - "257" - failureThreshold: -1180080716 + - "259" + failureThreshold: -820458255 httpGet: - host: "260" + host: "261" httpHeaders: - - name: "261" - value: "262" - path: "258" - port: "259" - scheme: '>5姣>懔%熷谟' - initialDelaySeconds: -1763501586 - periodSeconds: -1675041613 - successThreshold: 963670270 + - name: "262" + value: "263" + path: "260" + port: 576428641 + scheme: ƯĖ漘Z剚敍0)鈼¬麄p呝T + initialDelaySeconds: -1710454086 + periodSeconds: 1285027515 + successThreshold: 111876618 tcpSocket: - host: "263" - port: -1920661051 - terminationGracePeriodSeconds: -6054478692818889553 - timeoutSeconds: -337240309 + host: "264" + port: -1891134534 + terminationGracePeriodSeconds: -4763823273964408583 + timeoutSeconds: 192146389 resources: limits: - 0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭: "957" + _瀹鞎sn芞QÄȻȊ+?: "193" requests: - ĨFħ籘Àǒɿʒ: "692" + '@Ȗs«öʮĀ<é瞾': "51" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Ǖɳɷ9Ì崟¿瘦ɖ緕 + - sĨɆâĺɗŹ倗S晒嶗U drop: - - Í勅跦Opwǩ曬逴褜1ØœȠƬ + - _ƮA攤/ɸɎ R§耶FfBl privileged: true - procMount: 卷 - readOnlyRootFilesystem: true - runAsGroup: 4734307467052060549 + procMount: 娝嘚庎D}埽uʎȺ眖R#yV' + readOnlyRootFilesystem: false + runAsGroup: -7106791338981314910 runAsNonRoot: true - runAsUser: 7864982275050120786 + runAsUser: 3850139838566476547 seLinuxOptions: - level: "290" - role: "288" - type: "289" - user: "287" + level: "291" + role: "289" + type: "290" + user: "288" seccompProfile: - localhostProfile: "294" - type: J + localhostProfile: "295" + type: Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ windowsOptions: - gmsaCredentialSpec: "292" - gmsaCredentialSpecName: "291" - hostProcess: false - runAsUserName: "293" + gmsaCredentialSpec: "293" + gmsaCredentialSpecName: "292" + hostProcess: true + runAsUserName: "294" startupProbe: exec: command: - - "264" - failureThreshold: -406148612 + - "265" + failureThreshold: 105707873 httpGet: - host: "266" + host: "267" httpHeaders: - - name: "267" - value: "268" - path: "265" - port: -1498229293 - scheme: LƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻 - initialDelaySeconds: -1171167638 - periodSeconds: 1179132251 - successThreshold: -2123728714 + - name: "268" + value: "269" + path: "266" + port: -122979840 + scheme: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 + initialDelaySeconds: 2045456786 + periodSeconds: -1537700150 + successThreshold: -1815868713 tcpSocket: - host: "270" - port: "269" - terminationGracePeriodSeconds: 241615716805649441 - timeoutSeconds: -1336170981 + host: "271" + port: "270" + terminationGracePeriodSeconds: -810905585400838367 + timeoutSeconds: 988932710 stdin: true - terminationMessagePath: "286" - terminationMessagePolicy: 3!Zɾģ毋Ó6 + terminationMessagePath: "287" + terminationMessagePolicy: ʤî萨zvt莭 + tty: true volumeDevices: - - devicePath: "250" - name: "249" + - devicePath: "251" + name: "250" volumeMounts: - - mountPath: "246" - mountPropagation: o/樝fw[Řż丩Ž - name: "245" - readOnly: true - subPath: "247" - subPathExpr: "248" - workingDir: "229" + - mountPath: "247" + mountPropagation: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + name: "246" + subPath: "248" + subPathExpr: "249" + workingDir: "230" dnsConfig: nameservers: - - "455" + - "454" options: - - name: "457" - value: "458" + - name: "456" + value: "457" searches: - - "456" - dnsPolicy: 饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM + - "455" + dnsPolicy: Ȁĵ鴁 enableServiceLinks: false ephemeralContainers: - args: - - "298" + - "299" command: - - "297" + - "298" env: - - name: "305" - value: "306" + - name: "306" + value: "307" valueFrom: configMapKeyRef: - key: "312" - name: "311" + key: "313" + name: "312" optional: true fieldRef: - apiVersion: "307" - fieldPath: "308" + apiVersion: "308" + fieldPath: "309" resourceFieldRef: - containerName: "309" - divisor: "626" - resource: "310" + containerName: "310" + divisor: "730" + resource: "311" secretKeyRef: - key: "314" - name: "313" - optional: true + key: "315" + name: "314" + optional: false envFrom: - configMapRef: - name: "303" - optional: false - prefix: "302" - secretRef: name: "304" optional: true - image: "296" - imagePullPolicy: 囌{屿oiɥ嵐sC + prefix: "303" + secretRef: + name: "305" + optional: false + image: "297" + imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮 lifecycle: postStart: exec: command: - - "342" + - "343" httpGet: - host: "344" + host: "345" httpHeaders: - - name: "345" - value: "346" - path: "343" - port: -2128108224 - scheme: δ摖 + - name: "346" + value: "347" + path: "344" + port: 50696420 + scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ tcpSocket: host: "348" - port: "347" + port: 802134138 preStop: exec: command: - "349" httpGet: - host: "352" + host: "351" httpHeaders: - - name: "353" - value: "354" + - name: "352" + value: "353" path: "350" - port: "351" + port: -126958936 + scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 tcpSocket: - host: "356" - port: "355" + host: "355" + port: "354" livenessProbe: exec: command: - - "321" - failureThreshold: -2146674095 + - "322" + failureThreshold: -787458357 httpGet: host: "324" httpHeaders: - name: "325" value: "326" - path: "322" - port: "323" - scheme: ŕ翑0展} - initialDelaySeconds: -1778952574 - periodSeconds: -778272981 - successThreshold: 2056774277 + path: "323" + port: 14304392 + scheme: 寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥贸碔 + initialDelaySeconds: -1296830577 + periodSeconds: 1174240097 + successThreshold: -1928016742 tcpSocket: host: "328" port: "327" - terminationGracePeriodSeconds: -1117820874616112287 - timeoutSeconds: 1386255869 - name: "295" + terminationGracePeriodSeconds: 342609112008782456 + timeoutSeconds: -1314967760 + name: "296" ports: - - containerPort: -1624574056 - hostIP: "301" - hostPort: -743369977 - name: "300" - protocol: 犵殇ŕ-Ɂ圯W:ĸ輦唊# + - containerPort: -805795167 + hostIP: "302" + hostPort: -1643733106 + name: "301" + protocol: 8Ƥ熪军g>郵[+ readinessProbe: exec: command: - "329" - failureThreshold: 2030115750 + failureThreshold: 1907998540 httpGet: host: "331" httpHeaders: - name: "332" value: "333" path: "330" - port: 303592056 - scheme: 獕;跣Hǝcw媀瓄&翜舞拉 - initialDelaySeconds: 2066735093 - periodSeconds: -940334911 - successThreshold: -341287812 + port: -528664199 + scheme: 徥淳4揻-$ɽ丟 + initialDelaySeconds: 468369166 + periodSeconds: 1492642476 + successThreshold: -367153801 tcpSocket: host: "335" port: "334" - terminationGracePeriodSeconds: 7933506142593743951 - timeoutSeconds: -190183379 + terminationGracePeriodSeconds: 8959437085840841638 + timeoutSeconds: 1909548849 resources: limits: - Ÿ8T 苧yñKJɐ扵: "44" + 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq: "431" requests: - û咡W<敄lu|榝$î.Ȏ蝪ʜ5: "723" + ē鐭#嬀ơŸ8T 苧yñKJɐ: "894" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - Ǻ鱎ƙ;Nŕ + - 嘢4ʗN,丽饾| 鞤ɱďW賁 drop: - - Jih亏yƕ丆録² - privileged: false - procMount: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + - ɭɪǹ0衷, + privileged: true + procMount: w妕眵笭/9崍h趭(娕 readOnlyRootFilesystem: true - runAsGroup: -4798571027889325171 - runAsNonRoot: true - runAsUser: -5099422937845460309 + runAsGroup: -7146044409185304665 + runAsNonRoot: false + runAsUser: -1119183212148951030 seLinuxOptions: - level: "361" - role: "359" - type: "360" - user: "358" + level: "360" + role: "358" + type: "359" + user: "357" seccompProfile: - localhostProfile: "365" - type: eSvEȤƏ埮pɵ{WOŭW灬p + localhostProfile: "364" + type: E增猍 windowsOptions: - gmsaCredentialSpec: "363" - gmsaCredentialSpecName: "362" + gmsaCredentialSpec: "362" + gmsaCredentialSpecName: "361" hostProcess: true - runAsUserName: "364" + runAsUserName: "363" startupProbe: exec: command: - "336" - failureThreshold: 1328165061 + failureThreshold: -385597677 httpGet: - host: "338" + host: "339" httpHeaders: - - name: "339" - value: "340" + - name: "340" + value: "341" path: "337" - port: -816630929 - initialDelaySeconds: 509813083 - periodSeconds: 204229950 - successThreshold: 237070189 + port: "338" + scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + initialDelaySeconds: -1971421078 + periodSeconds: -1730959016 + successThreshold: 1272940694 tcpSocket: - host: "341" - port: 1965273344 - terminationGracePeriodSeconds: -2419752030496149068 - timeoutSeconds: -1389984716 - stdinOnce: true - targetContainerName: "366" - terminationMessagePath: "357" - terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź - tty: true + host: "342" + port: 458427807 + terminationGracePeriodSeconds: 1813049096022212391 + timeoutSeconds: 1905181464 + targetContainerName: "365" + terminationMessagePath: "356" + terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS volumeDevices: - - devicePath: "320" - name: "319" + - devicePath: "321" + name: "320" volumeMounts: - - mountPath: "316" - mountPropagation: 徶đ寳议Ƭƶ氩Ȩ - name: "315" - subPath: "317" - subPathExpr: "318" - workingDir: "299" + - mountPath: "317" + mountPropagation: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 + name: "316" + subPath: "318" + subPathExpr: "319" + workingDir: "300" hostAliases: - hostnames: - - "453" - ip: "452" - hostIPC: true - hostNetwork: true - hostname: "383" + - "452" + ip: "451" + hostPID: true + hostname: "382" imagePullSecrets: - - name: "382" + - name: "381" initContainers: - args: - - "157" + - "160" command: - - "156" + - "159" env: - - name: "164" - value: "165" + - name: "167" + value: "168" valueFrom: configMapKeyRef: - key: "171" - name: "170" + key: "174" + name: "173" optional: true fieldRef: - apiVersion: "166" - fieldPath: "167" + apiVersion: "169" + fieldPath: "170" resourceFieldRef: - containerName: "168" - divisor: "275" - resource: "169" + containerName: "171" + divisor: "877" + resource: "172" secretKeyRef: - key: "173" - name: "172" + key: "176" + name: "175" optional: false envFrom: - configMapRef: - name: "162" + name: "165" optional: false - prefix: "161" + prefix: "164" secretRef: - name: "163" + name: "166" optional: true - image: "155" - imagePullPolicy: 垁鷌辪 + image: "158" lifecycle: postStart: exec: command: - - "201" + - "204" httpGet: - host: "204" + host: "206" httpHeaders: - - name: "205" - value: "206" - path: "202" - port: "203" - scheme: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + - name: "207" + value: "208" + path: "205" + port: -1296140 + scheme: Y籎顒ǥŴ tcpSocket: - host: "207" - port: 1180382332 + host: "209" + port: 1061537 preStop: exec: command: - - "208" + - "210" httpGet: - host: "211" + host: "213" httpHeaders: - - name: "212" - value: "213" - path: "209" - port: "210" - scheme: 蕵ɢ + - name: "214" + value: "215" + path: "211" + port: "212" + scheme: 墴1Rƥ贫d tcpSocket: - host: "215" - port: "214" + host: "216" + port: -33154680 livenessProbe: exec: command: - - "180" - failureThreshold: 1231820696 + - "183" + failureThreshold: 952979935 httpGet: - host: "183" + host: "185" httpHeaders: - - name: "184" - value: "185" - path: "181" - port: "182" - scheme: 0åȂ町恰nj揠8lj - initialDelaySeconds: -1188153605 - periodSeconds: 912004803 - successThreshold: -2098817064 + - name: "186" + value: "187" + path: "184" + port: -522879476 + scheme: "N" + initialDelaySeconds: -687313111 + periodSeconds: 1730325900 + successThreshold: -828368050 tcpSocket: - host: "186" - port: -2049272966 - terminationGracePeriodSeconds: 5366407347694307113 - timeoutSeconds: -427769948 - name: "154" + host: "189" + port: "188" + terminationGracePeriodSeconds: 3485267088372060587 + timeoutSeconds: -131161294 + name: "157" ports: - - containerPort: -573382936 - hostIP: "160" - hostPort: 664393458 - name: "159" - protocol: 嫫猤痈C*ĕʄő芖{|ǘ"^饣V + - containerPort: -1746427184 + hostIP: "163" + hostPort: 869879222 + name: "162" + protocol: ŏ{ readinessProbe: exec: command: - - "187" - failureThreshold: 1569992019 + - "190" + failureThreshold: 749147575 httpGet: - host: "189" - httpHeaders: - - name: "190" - value: "191" - path: "188" - port: 1322581021 - scheme: 坩O`涁İ而踪鄌eÞ - initialDelaySeconds: 565789036 - periodSeconds: -582473401 - successThreshold: -1252931244 - tcpSocket: host: "192" - port: -1319491110 - terminationGracePeriodSeconds: 4559267523176571 - timeoutSeconds: -1572269414 + httpHeaders: + - name: "193" + value: "194" + path: "191" + port: -1893103047 + scheme: įXŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ + initialDelaySeconds: 1836896522 + periodSeconds: 2064656704 + successThreshold: -1940723300 + tcpSocket: + host: "196" + port: "195" + terminationGracePeriodSeconds: 2131277878630553496 + timeoutSeconds: -2101285839 resources: limits: - ǝ鿟ldg滠鼍ƭt?QȫşŇɜ: "211" + É/p: "144" requests: - VzÏ抴ŨfZhUʎ浵ɲõ: "303" + $妻ƅTGS: "845" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 珝Żwʮ馜ü + - 閼咎櫸eʔŊ drop: - - șƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧 - privileged: true - procMount: :贅wE@Ȗs«öʮĀ<é瞾 + - 究:hoĂɋ瀐<ɉ湨 + privileged: false + procMount: Ǯń readOnlyRootFilesystem: true - runAsGroup: -4525194116194020035 + runAsGroup: -879001843196053690 runAsNonRoot: true - runAsUser: 42649466061901501 + runAsUser: 5069703513298030462 seLinuxOptions: - level: "220" - role: "218" - type: "219" - user: "217" + level: "221" + role: "219" + type: "220" + user: "218" seccompProfile: - localhostProfile: "224" - type: NŬɨǙÄr蛏豈ɃHŠơŴĿ + localhostProfile: "225" + type: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳 windowsOptions: - gmsaCredentialSpec: "222" - gmsaCredentialSpecName: "221" + gmsaCredentialSpec: "223" + gmsaCredentialSpecName: "222" hostProcess: true - runAsUserName: "223" + runAsUserName: "224" startupProbe: exec: command: - - "193" - failureThreshold: 741871873 + - "197" + failureThreshold: -1618937335 httpGet: - host: "196" - httpHeaders: - - name: "197" - value: "198" - path: "194" - port: "195" - scheme: 鹎ğ#咻痗ȡmƴy綸_Ú8參遼 - initialDelaySeconds: -997191789 - periodSeconds: -918862259 - successThreshold: 655980302 - tcpSocket: host: "200" + httpHeaders: + - name: "201" + value: "202" + path: "198" port: "199" - terminationGracePeriodSeconds: 1919118248821998564 - timeoutSeconds: -935589762 + initialDelaySeconds: 994527057 + periodSeconds: -1346458591 + successThreshold: 1234551517 + tcpSocket: + host: "203" + port: 675406340 + terminationGracePeriodSeconds: -8171267464271993058 + timeoutSeconds: -1482763519 stdin: true - stdinOnce: true - terminationMessagePath: "216" - terminationMessagePolicy: ńMǰ溟ɴ扵閝 + terminationMessagePath: "217" + terminationMessagePolicy: 跾|@?鷅bȻN+ņ榱* tty: true volumeDevices: - - devicePath: "179" - name: "178" + - devicePath: "182" + name: "181" volumeMounts: - - mountPath: "175" - mountPropagation: Ť倱<įXŋ朘瑥A - name: "174" + - mountPath: "178" + mountPropagation: ^}穠C]躢|)黰eȪ嵛4$%QɰV + name: "177" readOnly: true - subPath: "176" - subPathExpr: "177" - workingDir: "158" - nodeName: "371" + subPath: "179" + subPathExpr: "180" + workingDir: "161" + nodeName: "370" nodeSelector: - "367": "368" + "366": "367" overhead: - 隅DžbİEMǶɼ`|褞: "229" - preemptionPolicy: n{鳻 - priority: -340583156 - priorityClassName: "454" + kƱ: "313" + preemptionPolicy: ħ\ + priority: 780753434 + priorityClassName: "453" readinessGates: - - conditionType: țc£PAÎǨȨ栋 - restartPolicy: V擭銆j - runtimeClassName: "459" - schedulerName: "449" + - conditionType: ¤趜磕绘翁揌p:oŇE + restartPolicy: xǨŴ壶ƵfȽà + runtimeClassName: "458" + schedulerName: "448" securityContext: - fsGroup: 2373631082804169687 - fsGroupChangePolicy: 趭(娕uE增猍ǵ x - runAsGroup: -495558749504439559 + fsGroup: 1362411221198469787 + fsGroupChangePolicy: 輔3璾ėȜv1b繐汚磉反-n覦 + runAsGroup: -2587337448078233130 runAsNonRoot: false - runAsUser: -6717020695319852049 + runAsUser: 8749429589533479764 seLinuxOptions: - level: "375" - role: "373" - type: "374" - user: "372" + level: "374" + role: "372" + type: "373" + user: "371" seccompProfile: - localhostProfile: "381" - type: Ŵ壶ƵfȽÃ茓pȓɻ + localhostProfile: "380" + type: 閈誹ʅ蕉ɼ supplementalGroups: - - 933334675092942213 + - 8748656795747647539 sysctls: - - name: "379" - value: "380" + - name: "378" + value: "379" windowsOptions: - gmsaCredentialSpec: "377" - gmsaCredentialSpecName: "376" - hostProcess: true - runAsUserName: "378" - serviceAccount: "370" - serviceAccountName: "369" + gmsaCredentialSpec: "376" + gmsaCredentialSpecName: "375" + hostProcess: false + runAsUserName: "377" + serviceAccount: "369" + serviceAccountName: "368" setHostnameAsFQDN: false shareProcessNamespace: false - subdomain: "384" - terminationGracePeriodSeconds: -2096491188749634309 + subdomain: "383" + terminationGracePeriodSeconds: -6480965203152502098 tolerations: - - key: "450" - operator: ŭʔb'?舍ȃʥx臥]å摞 - tolerationSeconds: 3053978290188957517 - value: "451" + - effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ + key: "449" + operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU + tolerationSeconds: -4322909565451750640 + value: "450" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b - operator: NotIn - values: - - H1z..j_.r3--T + - key: h---dY7_M_-._M5..-N_H_55..--E3_2D1 + operator: DoesNotExist matchLabels: - H_55..--E3_2D-1DW__o_-.k: "7" - maxSkew: 1486667065 - topologyKey: "460" - whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 + Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i: Wq-...Oai.D7-_9..8-8yw..__Yb_8 + maxSkew: 1674267790 + topologyKey: "459" + whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV volumes: - awsElasticBlockStore: fsType: "25" @@ -851,6 +851,10 @@ spec: apiGroup: "151" kind: "152" name: "153" + dataSourceRef: + apiGroup: "154" + kind: "155" + name: "156" resources: limits: ɜ曢\%枅:=ǛƓɥ踓Ǻǧ湬: "530" @@ -1004,126 +1008,126 @@ spec: volumePath: "79" status: conditions: - - lastProbeTime: "2446-08-01T12:34:13Z" - lastTransitionTime: "2721-06-15T10:27:00Z" - message: "468" - reason: "467" - status: 闬輙怀¹bCũw¼ ǫđ槴Ċį軠> - type: 偁髕ģƗ鐫?勥穌砊ʑȩ硘(ǒ[ + - lastProbeTime: "2761-08-29T15:09:53Z" + lastTransitionTime: "2608-03-08T03:06:33Z" + message: "467" + reason: "466" + status: '{煰' + type: ?ɣ蔫椁Ȕ蝬KȴǃmŁȒ|'从 containerStatuses: - - containerID: "502" - image: "500" - imageID: "501" + - containerID: "501" + image: "499" + imageID: "500" lastState: running: - startedAt: "2018-06-11T20:33:19Z" + startedAt: "2127-06-24T09:29:52Z" terminated: - containerID: "499" - exitCode: 267482175 - finishedAt: "2921-08-01T07:23:37Z" - message: "498" - reason: "497" - signal: -724869497 - startedAt: "2261-09-25T07:35:50Z" + containerID: "498" + exitCode: 1574959758 + finishedAt: "2299-04-20T19:57:50Z" + message: "497" + reason: "496" + signal: 1657812021 + startedAt: "2153-04-02T23:06:37Z" waiting: - message: "496" - reason: "495" - name: "489" - ready: false - restartCount: 1996366336 - started: true - state: - running: - startedAt: "2639-07-13T08:26:34Z" - terminated: - containerID: "494" - exitCode: -477105883 - finishedAt: "2270-10-11T19:35:54Z" - message: "493" - reason: "492" - signal: 1266675441 - startedAt: "2760-06-20T08:13:38Z" - waiting: - message: "491" - reason: "490" - ephemeralContainerStatuses: - - containerID: "516" - image: "514" - imageID: "515" - lastState: - running: - startedAt: "2470-09-16T06:10:29Z" - terminated: - containerID: "513" - exitCode: -379260195 - finishedAt: "2940-09-11T05:49:16Z" - message: "512" - reason: "511" - signal: 1724179157 - startedAt: "2713-05-24T08:16:36Z" - waiting: - message: "510" - reason: "509" - name: "503" + message: "495" + reason: "494" + name: "488" ready: true - restartCount: -579160123 + restartCount: 2015720150 started: false state: running: - startedAt: "2679-03-05T15:56:11Z" + startedAt: "2760-10-14T11:51:24Z" terminated: - containerID: "508" - exitCode: -678247306 - finishedAt: "2671-06-02T09:10:05Z" - message: "507" - reason: "506" - signal: -798353979 - startedAt: "2522-07-17T20:42:05Z" + containerID: "493" + exitCode: 165747350 + finishedAt: "2699-11-10T05:45:30Z" + message: "492" + reason: "491" + signal: 470888375 + startedAt: "2942-12-12T07:01:06Z" waiting: - message: "505" - reason: "504" - hostIP: "472" - initContainerStatuses: - - containerID: "488" - image: "486" - imageID: "487" + message: "490" + reason: "489" + ephemeralContainerStatuses: + - containerID: "515" + image: "513" + imageID: "514" lastState: running: - startedAt: "2909-12-17T10:35:05Z" + startedAt: "2100-10-03T01:21:07Z" terminated: - containerID: "485" - exitCode: 344566548 - finishedAt: "2181-04-23T17:08:11Z" - message: "484" - reason: "483" - signal: -1274159576 - startedAt: "2448-03-03T21:49:58Z" + containerID: "512" + exitCode: -1308926448 + finishedAt: "2358-12-25T12:18:48Z" + message: "511" + reason: "510" + signal: 1208014329 + startedAt: "2915-11-30T10:57:55Z" waiting: - message: "482" - reason: "481" - name: "475" - ready: false - restartCount: 880515121 + message: "509" + reason: "508" + name: "502" + ready: true + restartCount: 1093414706 started: true state: running: - startedAt: "2044-06-19T19:39:57Z" + startedAt: "2513-06-23T10:07:34Z" terminated: - containerID: "480" - exitCode: -702718077 - finishedAt: "2953-05-20T20:14:17Z" - message: "479" - reason: "478" - signal: 648978003 - startedAt: "2298-10-11T07:26:38Z" + containerID: "507" + exitCode: -1155216843 + finishedAt: "2685-03-12T10:07:19Z" + message: "506" + reason: "505" + signal: 839330574 + startedAt: "2296-08-29T04:36:22Z" waiting: - message: "477" - reason: "476" - message: "469" - nominatedNodeName: "471" - phase: șa汸<ƋlɋN磋镮ȺPÈ - podIP: "473" + message: "504" + reason: "503" + hostIP: "471" + initContainerStatuses: + - containerID: "487" + image: "485" + imageID: "486" + lastState: + running: + startedAt: "2687-07-04T15:23:41Z" + terminated: + containerID: "484" + exitCode: 1892596557 + finishedAt: "2719-07-17T22:00:10Z" + message: "483" + reason: "482" + signal: -1952419528 + startedAt: "2135-06-21T01:04:43Z" + waiting: + message: "481" + reason: "480" + name: "474" + ready: false + restartCount: -391574961 + started: true + state: + running: + startedAt: "2207-07-09T15:21:43Z" + terminated: + containerID: "479" + exitCode: 1874682186 + finishedAt: "2465-03-18T23:55:27Z" + message: "478" + reason: "477" + signal: -768346969 + startedAt: "2757-03-25T09:04:49Z" + waiting: + message: "476" + reason: "475" + message: "468" + nominatedNodeName: "470" + phase: VǢɾ纤ą + podIP: "472" podIPs: - - ip: "474" - qosClass: ɹNL觀嫧酞篐8郫焮3ó緼Ŷ獃夕ƆIJ - reason: "470" + - ip: "473" + qosClass: 澵貛香"砻B + reason: "469" 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 520e147a2bc..fede0026eec 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 @@ -428,6 +428,11 @@ "apiGroup": "169", "kind": "170", "name": "171" + }, + "dataSourceRef": { + "apiGroup": "172", + "kind": "173", + "name": "174" } } } @@ -436,371 +441,372 @@ ], "initContainers": [ { - "name": "172", - "image": "173", + "name": "175", + "image": "176", "command": [ - "174" + "177" ], "args": [ - "175" + "178" ], - "workingDir": "176", + "workingDir": "179", "ports": [ { - "name": "177", - "hostPort": 949227156, - "containerPort": 231063530, - "protocol": "8參遼ūPH炮掊°n", - "hostIP": "178" + "name": "180", + "hostPort": -379514302, + "containerPort": 173916181, + "protocol": "鷅bȻN+ņ榱*Gưoɘ檲ɨ銦", + "hostIP": "181" } ], "envFrom": [ { - "prefix": "179", + "prefix": "182", "configMapRef": { - "name": "180", - "optional": true + "name": "183", + "optional": false }, "secretRef": { - "name": "181", - "optional": false + "name": "184", + "optional": true } } ], "env": [ { - "name": "182", - "value": "183", + "name": "185", + "value": "186", "valueFrom": { "fieldRef": { - "apiVersion": "184", - "fieldPath": "185" + "apiVersion": "187", + "fieldPath": "188" }, "resourceFieldRef": { - "containerName": "186", - "resource": "187", - "divisor": "577" + "containerName": "189", + "resource": "190", + "divisor": "959" }, "configMapKeyRef": { - "name": "188", - "key": "189", + "name": "191", + "key": "192", "optional": false }, "secretKeyRef": { - "name": "190", - "key": "191", - "optional": true + "name": "193", + "key": "194", + "optional": false } } } ], "resources": { "limits": { - "hoĂɋ": "206" + "瓷碑": "809" }, "requests": { - "瓷碑": "809" + "=å睫}堇硲蕵ɢ苆ǮńMǰ溟ɴ扵閝ȝ": "829" } }, "volumeMounts": [ { - "name": "192", - "mountPath": "193", - "subPath": "194", - "mountPropagation": "å睫}堇硲蕵ɢ苆", - "subPathExpr": "195" + "name": "195", + "mountPath": "196", + "subPath": "197", + "mountPropagation": "虽U珝Żwʮ馜üNșƶ4ĩĉş蝿ɖȃ", + "subPathExpr": "198" } ], "volumeDevices": [ { - "name": "196", - "devicePath": "197" + "name": "199", + "devicePath": "200" } ], "livenessProbe": { "exec": { "command": [ - "198" + "201" ] }, "httpGet": { - "path": "199", - "port": -57352147, - "host": "200", - "scheme": "Y鶪5w垁鷌辪虽U珝", + "path": "202", + "port": "203", + "host": "204", + "scheme": "|dk_瀹鞎sn芞QÄȻȊ+?", "httpHeaders": [ { - "name": "201", - "value": "202" + "name": "205", + "value": "206" } ] }, "tcpSocket": { - "port": "203", - "host": "204" + "port": 1094670193, + "host": "207" }, - "initialDelaySeconds": 411878451, - "timeoutSeconds": 1676588692, - "periodSeconds": -254454655, - "successThreshold": -1925916855, - "failureThreshold": -1553779100, - "terminationGracePeriodSeconds": 8334895174951990407 + "initialDelaySeconds": 905846572, + "timeoutSeconds": -396185898, + "periodSeconds": 166278802, + "successThreshold": -2005424724, + "failureThreshold": 462729263, + "terminationGracePeriodSeconds": -2545119488724336295 }, "readinessProbe": { "exec": { "command": [ - "205" + "208" ] }, "httpGet": { - "path": "206", - "port": 1463207240, - "host": "207", - "scheme": "蝿", + "path": "209", + "port": 1054302708, + "host": "210", "httpHeaders": [ { - "name": "208", - "value": "209" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": "210", - "host": "211" + "port": "213", + "host": "214" }, - "initialDelaySeconds": 1435507444, - "timeoutSeconds": -1430577593, - "periodSeconds": 524249411, - "successThreshold": -1617359505, - "failureThreshold": -1801400049, - "terminationGracePeriodSeconds": -5734988028820567880 + "initialDelaySeconds": -2093767566, + "timeoutSeconds": -1718681455, + "periodSeconds": 386652373, + "successThreshold": -1157800046, + "failureThreshold": 1577445629, + "terminationGracePeriodSeconds": 562397907094900922 }, "startupProbe": { "exec": { "command": [ - "212" + "215" ] }, "httpGet": { - "path": "213", - "port": "214", - "host": "215", - "scheme": "十Oɢǵʭd鲡:", + "path": "216", + "port": "217", + "host": "218", + "scheme": "C'ɵK.Q貇£ȹ嫰ƹǔw÷nI粛", "httpHeaders": [ { - "name": "216", - "value": "217" + "name": "219", + "value": "220" } ] }, "tcpSocket": { - "port": -2037320199, - "host": "218" + "port": "221", + "host": "222" }, - "initialDelaySeconds": 185639167, - "timeoutSeconds": 1487007476, - "periodSeconds": 393169267, - "successThreshold": 1381010768, - "failureThreshold": -722355061, - "terminationGracePeriodSeconds": 6388225771169951791 + "initialDelaySeconds": 800220849, + "timeoutSeconds": -1429994426, + "periodSeconds": 135036402, + "successThreshold": -1650568978, + "failureThreshold": 304141309, + "terminationGracePeriodSeconds": -378701183370790036 }, "lifecycle": { "postStart": { "exec": { "command": [ - "219" + "223" ] }, "httpGet": { - "path": "220", - "port": "221", - "host": "222", - "scheme": "Ĭ4y£軶", + "path": "224", + "port": 1791729314, + "host": "225", + "scheme": "漘Z剚敍0)", "httpHeaders": [ { - "name": "223", - "value": "224" + "name": "226", + "value": "227" } ] }, "tcpSocket": { - "port": "225", - "host": "226" + "port": 424236719, + "host": "228" } }, "preStop": { "exec": { "command": [ - "227" + "229" ] }, "httpGet": { - "path": "228", - "port": "229", - "host": "230", - "scheme": "ɃHŠơŴĿǹ_Áȉ彂Ŵ廷", + "path": "230", + "port": -1131820775, + "host": "231", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "231", - "value": "232" + "name": "232", + "value": "233" } ] }, "tcpSocket": { - "port": "233", - "host": "234" + "port": "234", + "host": "235" } } }, - "terminationMessagePath": "235", - "terminationMessagePolicy": "Ⱦdz@ùƸʋŀ", - "imagePullPolicy": "ǐƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ", + "terminationMessagePath": "236", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF" + "" ], "drop": [ - "籘Àǒɿʒ刽ʼn" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, "privileged": false, "seLinuxOptions": { - "user": "236", - "role": "237", - "type": "238", - "level": "239" + "user": "237", + "role": "238", + "type": "239", + "level": "240" }, "windowsOptions": { - "gmsaCredentialSpecName": "240", - "gmsaCredentialSpec": "241", - "runAsUserName": "242", - "hostProcess": false + "gmsaCredentialSpecName": "241", + "gmsaCredentialSpec": "242", + "runAsUserName": "243", + "hostProcess": true }, - "runAsUser": 8519427267030036521, - "runAsGroup": -4151726557168738613, + "runAsUser": 301534795599983361, + "runAsGroup": -505892685699484816, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ", + "procMount": "", "seccompProfile": { - "type": "ǣ萭", - "localhostProfile": "243" + "type": "Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄", + "localhostProfile": "244" } }, - "stdin": true + "stdin": true, + "stdinOnce": true } ], "containers": [ { - "name": "244", - "image": "245", + "name": "245", + "image": "246", "command": [ - "246" - ], - "args": [ "247" ], - "workingDir": "248", + "args": [ + "248" + ], + "workingDir": "249", "ports": [ { - "name": "249", - "hostPort": 70206540, - "containerPort": -1694108493, - "protocol": "ǂ\u003e5姣\u003e懔%熷", - "hostIP": "250" + "name": "250", + "hostPort": -421846800, + "containerPort": 62799871, + "protocol": "vt莭琽§ć\\ ïì«", + "hostIP": "251" } ], "envFrom": [ { - "prefix": "251", + "prefix": "252", "configMapRef": { - "name": "252", - "optional": true - }, - "secretRef": { "name": "253", "optional": false + }, + "secretRef": { + "name": "254", + "optional": true } } ], "env": [ { - "name": "254", - "value": "255", + "name": "255", + "value": "256", "valueFrom": { "fieldRef": { - "apiVersion": "256", - "fieldPath": "257" + "apiVersion": "257", + "fieldPath": "258" }, "resourceFieldRef": { - "containerName": "258", - "resource": "259", - "divisor": "138" + "containerName": "259", + "resource": "260", + "divisor": "804" }, "configMapKeyRef": { - "name": "260", - "key": "261", + "name": "261", + "key": "262", "optional": true }, "secretKeyRef": { - "name": "262", - "key": "263", - "optional": false + "name": "263", + "key": "264", + "optional": true } } } ], "resources": { "limits": { - "脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻": "575" + "粕擓ƖHVe熼'FD": "235" }, "requests": { - "丯Ƙ枛牐ɺ皚|": "933" + "嶗U": "647" } }, "volumeMounts": [ { - "name": "264", - "mountPath": "265", - "subPath": "266", - "mountPropagation": "[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ", - "subPathExpr": "267" + "name": "265", + "mountPath": "266", + "subPath": "267", + "mountPropagation": "i酛3ƁÀ*f\u003c鴒翁杙Ŧ癃", + "subPathExpr": "268" } ], "volumeDevices": [ { - "name": "268", - "devicePath": "269" + "name": "269", + "devicePath": "270" } ], "livenessProbe": { "exec": { "command": [ - "270" + "271" ] }, "httpGet": { - "path": "271", - "port": 1087851818, - "host": "272", + "path": "272", + "port": 630004123, + "host": "273", + "scheme": "ɾģ毋Ó6dz娝嘚", "httpHeaders": [ { - "name": "273", - "value": "274" + "name": "274", + "value": "275" } ] }, "tcpSocket": { - "port": "275", + "port": -1213051101, "host": "276" }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 + "initialDelaySeconds": 1451056156, + "timeoutSeconds": 267768240, + "periodSeconds": -127849333, + "successThreshold": -1455098755, + "failureThreshold": -1140531048, + "terminationGracePeriodSeconds": -8648209499645539653 }, "readinessProbe": { "exec": { @@ -810,200 +816,199 @@ }, "httpGet": { "path": "278", - "port": -331283026, - "host": "279", - "scheme": "ȉ", + "port": "279", + "host": "280", + "scheme": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", "httpHeaders": [ { - "name": "280", - "value": "281" + "name": "281", + "value": "282" } ] }, "tcpSocket": { - "port": 714088955, - "host": "282" + "port": -36782737, + "host": "283" }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 + "initialDelaySeconds": -1738069460, + "timeoutSeconds": -1643733106, + "periodSeconds": -805795167, + "successThreshold": 1791615594, + "failureThreshold": 785984384, + "terminationGracePeriodSeconds": 830921445879518469 }, "startupProbe": { "exec": { "command": [ - "283" + "284" ] }, "httpGet": { - "path": "284", - "port": -361442565, - "host": "285", - "scheme": "w", + "path": "285", + "port": 622267234, + "host": "286", + "scheme": "[+扴ȨŮ+朷Ǝ膯ljV", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "287", + "value": "288" } ] }, "tcpSocket": { - "port": -1099429189, - "host": "288" + "port": "289", + "host": "290" }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 + "initialDelaySeconds": -171684192, + "timeoutSeconds": -602419938, + "periodSeconds": 1040396664, + "successThreshold": -979584143, + "failureThreshold": -1748648882, + "terminationGracePeriodSeconds": -1030117900836778816 }, "lifecycle": { "postStart": { "exec": { "command": [ - "289" + "291" ] }, "httpGet": { - "path": "290", - "port": -1109619518, - "host": "291", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", + "path": "292", + "port": 415947324, + "host": "293", + "scheme": "v铿ʩȂ4ē鐭#嬀ơŸ8T 苧yñ", "httpHeaders": [ { - "name": "292", - "value": "293" + "name": "294", + "value": "295" } ] }, "tcpSocket": { - "port": "294", - "host": "295" + "port": "296", + "host": "297" } }, "preStop": { "exec": { "command": [ - "296" + "298" ] }, "httpGet": { - "path": "297", - "port": 461585849, - "host": "298", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "path": "299", + "port": "300", + "host": "301", + "scheme": "鐫û咡W\u003c敄lu|榝", "httpHeaders": [ { - "name": "299", - "value": "300" + "name": "302", + "value": "303" } ] }, "tcpSocket": { - "port": 467291328, - "host": "301" + "port": 102215089, + "host": "304" } } }, - "terminationMessagePath": "302", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", + "terminationMessagePath": "305", + "terminationMessagePolicy": "Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ", + "imagePullPolicy": "Ļǟi\u0026", "securityContext": { "capabilities": { "add": [ - "埄趛" + "碔" ], "drop": [ - "ʁ岼昕ĬÇ" + "NKƙ順\\E¦队偯J僳徥淳4揻-$" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "303", - "role": "304", - "type": "305", - "level": "306" + "user": "306", + "role": "307", + "type": "308", + "level": "309" }, "windowsOptions": { - "gmsaCredentialSpecName": "307", - "gmsaCredentialSpec": "308", - "runAsUserName": "309", + "gmsaCredentialSpecName": "310", + "gmsaCredentialSpec": "311", + "runAsUserName": "312", "hostProcess": false }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, + "runAsUser": 8025933883888025358, + "runAsGroup": 8201449858636177397, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "310" + "type": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:", + "localhostProfile": "313" } }, "stdin": true, - "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "311", - "image": "312", + "name": "314", + "image": "315", "command": [ - "313" + "316" ], "args": [ - "314" + "317" ], - "workingDir": "315", + "workingDir": "318", "ports": [ { - "name": "316", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "317" + "name": "319", + "hostPort": -116224247, + "containerPort": -2097329452, + "protocol": "屿oiɥ嵐sC8?", + "hostIP": "320" } ], "envFrom": [ { - "prefix": "318", + "prefix": "321", "configMapRef": { - "name": "319", - "optional": true + "name": "322", + "optional": false }, "secretRef": { - "name": "320", - "optional": false + "name": "323", + "optional": true } } ], "env": [ { - "name": "321", - "value": "322", + "name": "324", + "value": "325", "valueFrom": { "fieldRef": { - "apiVersion": "323", - "fieldPath": "324" + "apiVersion": "326", + "fieldPath": "327" }, "resourceFieldRef": { - "containerName": "325", - "resource": "326", - "divisor": "271" + "containerName": "328", + "resource": "329", + "divisor": "974" }, "configMapKeyRef": { - "name": "327", - "key": "328", - "optional": false + "name": "330", + "key": "331", + "optional": true }, "secretKeyRef": { - "name": "329", - "key": "330", + "name": "332", + "key": "333", "optional": true } } @@ -1011,257 +1016,256 @@ ], "resources": { "limits": { - "庰%皧V": "116" + "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻": "838" }, "requests": { - "": "289" + "i騎C\"6x$1sȣ±p鋄5弢ȹ均": "582" } }, "volumeMounts": [ { - "name": "331", + "name": "334", "readOnly": true, - "mountPath": "332", - "subPath": "333", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "334" + "mountPath": "335", + "subPath": "336", + "mountPropagation": "vEȤƏ埮p", + "subPathExpr": "337" } ], "volumeDevices": [ { - "name": "335", - "devicePath": "336" + "name": "338", + "devicePath": "339" } ], "livenessProbe": { "exec": { "command": [ - "337" + "340" ] }, "httpGet": { - "path": "338", - "port": 1907998540, - "host": "339", - "scheme": ",ŕ", + "path": "341", + "port": 1473407401, + "host": "342", + "scheme": "ʐşƧ", "httpHeaders": [ { - "name": "340", - "value": "341" + "name": "343", + "value": "344" } ] }, "tcpSocket": { - "port": "342", - "host": "343" + "port": 199049889, + "host": "345" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1947032456, + "timeoutSeconds": 1233904535, + "periodSeconds": -969533986, + "successThreshold": 299741709, + "failureThreshold": -488127393, + "terminationGracePeriodSeconds": 4883846315878203110 }, "readinessProbe": { "exec": { "command": [ - "344" + "346" ] }, "httpGet": { - "path": "345", - "port": 1315054653, - "host": "346", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "path": "347", + "port": "348", + "host": "349", + "scheme": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", "httpHeaders": [ { - "name": "347", - "value": "348" + "name": "350", + "value": "351" } ] }, "tcpSocket": { - "port": "349", - "host": "350" + "port": "352", + "host": "353" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": -200074798, + "timeoutSeconds": 556036216, + "periodSeconds": -1838917931, + "successThreshold": -1563928252, + "failureThreshold": -302933400, + "terminationGracePeriodSeconds": 7094149050088640176 }, "startupProbe": { "exec": { "command": [ - "351" + "354" ] }, "httpGet": { - "path": "352", - "port": 1013673874, - "host": "353", - "scheme": "ə娯Ȱ囌{", + "path": "355", + "port": -832681001, + "host": "356", + "scheme": "h趭", "httpHeaders": [ { - "name": "354", - "value": "355" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1829146875, - "host": "356" + "port": "359", + "host": "360" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -1969828011, + "timeoutSeconds": -1186720090, + "periodSeconds": -748525373, + "successThreshold": 805162379, + "failureThreshold": 1486914884, + "terminationGracePeriodSeconds": -2753079965660681160 }, "lifecycle": { "postStart": { "exec": { "command": [ - "357" + "361" ] }, "httpGet": { - "path": "358", - "port": -1021949447, - "host": "359", - "scheme": "B芭", + "path": "362", + "port": -819013491, + "host": "363", + "scheme": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎", "httpHeaders": [ { - "name": "360", - "value": "361" + "name": "364", + "value": "365" } ] }, "tcpSocket": { - "port": "362", - "host": "363" + "port": "366", + "host": "367" } }, "preStop": { "exec": { "command": [ - "364" + "368" ] }, "httpGet": { - "path": "365", - "port": "366", - "host": "367", - "scheme": "yƕ丆録²Ŏ)", + "path": "369", + "port": "370", + "host": "371", + "scheme": "(ť1ùfŭƽ", "httpHeaders": [ { - "name": "368", - "value": "369" + "name": "372", + "value": "373" } ] }, "tcpSocket": { - "port": 507384491, - "host": "370" + "port": "374", + "host": "375" } } }, - "terminationMessagePath": "371", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "376", + "terminationMessagePolicy": "æ盪泙若`l}Ñ蠂Ü", + "imagePullPolicy": "覦灲閈誹ʅ蕉", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "ǭ濑箨ʨIk" ], "drop": [ - "" + "dŊiɢ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "372", - "role": "373", - "type": "374", - "level": "375" + "user": "377", + "role": "378", + "type": "379", + "level": "380" }, "windowsOptions": { - "gmsaCredentialSpecName": "376", - "gmsaCredentialSpec": "377", - "runAsUserName": "378", - "hostProcess": false + "gmsaCredentialSpecName": "381", + "gmsaCredentialSpec": "382", + "runAsUserName": "383", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, + "runAsUser": 3835909844513980271, + "runAsGroup": -4911894469676245979, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "ş", + "procMount": "Qm坊柩劄", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "379" + "type": "[ƕƑĝ®EĨǔvÄÚ", + "localhostProfile": "384" } }, + "stdin": true, "stdinOnce": true, - "targetContainerName": "380" + "tty": true, + "targetContainerName": "385" } ], - "restartPolicy": "4ʗN,丽饾| 鞤ɱď", - "terminationGracePeriodSeconds": 5667186155078596628, - "activeDeadlineSeconds": 8952305945735902812, - "dnsPolicy": "µņP)DŽ髐njʉBn(fǂǢ", + "restartPolicy": "鬷m罂", + "terminationGracePeriodSeconds": 6757106584708307313, + "activeDeadlineSeconds": -8137450023376708507, + "dnsPolicy": "żLj捲攻xƂ9阠$嬏wy¶熀", "nodeSelector": { - "381": "382" + "386": "387" }, - "serviceAccountName": "383", - "serviceAccount": "384", - "automountServiceAccountToken": false, - "nodeName": "385", - "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "388", + "serviceAccount": "389", + "automountServiceAccountToken": true, + "nodeName": "390", + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "386", - "role": "387", - "type": "388", - "level": "389" + "user": "391", + "role": "392", + "type": "393", + "level": "394" }, "windowsOptions": { - "gmsaCredentialSpecName": "390", - "gmsaCredentialSpec": "391", - "runAsUserName": "392", - "hostProcess": true + "gmsaCredentialSpecName": "395", + "gmsaCredentialSpec": "396", + "runAsUserName": "397", + "hostProcess": false }, - "runAsUser": 2373631082804169687, - "runAsGroup": 6942343986058351509, + "runAsUser": 8790792169692841191, + "runAsGroup": 5680561050872693436, "runAsNonRoot": true, "supplementalGroups": [ - 3174735363260936461 + 7768299165267384830 ], - "fsGroup": -8460346884535567850, + "fsGroup": -838253411893392910, "sysctls": [ { - "name": "393", - "value": "394" + "name": "398", + "value": "399" } ], - "fsGroupChangePolicy": "8", + "fsGroupChangePolicy": "槃JŵǤ桒ɴ鉂WJ", "seccompProfile": { - "type": "T[", - "localhostProfile": "395" + "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", + "localhostProfile": "400" } }, "imagePullSecrets": [ { - "name": "396" + "name": "401" } ], - "hostname": "397", - "subdomain": "398", + "hostname": "402", + "subdomain": "403", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1269,19 +1273,19 @@ { "matchExpressions": [ { - "key": "399", - "operator": "Ƶf", + "key": "404", + "operator": "鑠ĭ$#卛8ð仁Q橱9", "values": [ - "400" + "405" ] } ], "matchFields": [ { - "key": "401", - "operator": "X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞", + "key": "406", + "operator": "斢杧ż鯀1'鸔", "values": [ - "402" + "407" ] } ] @@ -1290,23 +1294,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1519458130, + "weight": -585628051, "preference": { "matchExpressions": [ { - "key": "403", - "operator": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", + "key": "408", + "operator": "炙B餸硷张q櫞繡旹翃ɾ氒ĺʈʫ羶剹", "values": [ - "404" + "409" ] } ], "matchFields": [ { - "key": "405", - "operator": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "key": "410", + "operator": "嬯t{", "values": [ - "406" + "411" ] } ] @@ -1319,30 +1323,30 @@ { "labelSelector": { "matchLabels": { - "f.-zv._._.5-H.T.-.-.T-V_D_0-K_AS": "NZ_C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_9_18" + "4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP" }, "matchExpressions": [ { - "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q", - "operator": "DoesNotExist" + "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", + "operator": "NotIn", + "values": [ + "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" + ] } ] }, "namespaces": [ - "413" + "418" ], - "topologyKey": "414", + "topologyKey": "419", "namespaceSelector": { "matchLabels": { - "4sE4": "B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6" + "3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O" }, "matchExpressions": [ { - "key": "0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs", - "operator": "NotIn", - "values": [ - "6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7" - ] + "key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a", + "operator": "Exists" } ] } @@ -1350,34 +1354,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -688929182, + "weight": 957174721, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "y_-3_L_2--_v2.5p_6": "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q" + "o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C" }, "matchExpressions": [ { - "key": "3--51", + "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": [ - "C.-e16-O5" + "N7_B_r" ] } ] }, "namespaces": [ - "427" + "432" ], - "topologyKey": "428", + "topologyKey": "433", "namespaceSelector": { "matchLabels": { - "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM" + "O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr" }, "matchExpressions": [ { - "key": "8mtxb__-ex-_1_-ODgC_1-_8__3", - "operator": "DoesNotExist" + "key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T", + "operator": "Exists" } ] } @@ -1390,27 +1394,33 @@ { "labelSelector": { "matchLabels": { - "K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0": "u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K" + "ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV" }, "matchExpressions": [ { - "key": "sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V", - "operator": "Exists" + "key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W", + "operator": "In", + "values": [ + "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx" + ] } ] }, "namespaces": [ - "441" + "446" ], - "topologyKey": "442", + "topologyKey": "447", "namespaceSelector": { "matchLabels": { - "e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m": "e.Dx._.W-6..4_MU7iLfS0" + "2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J" }, "matchExpressions": [ { - "key": "P6j.u--.K--g__..b", - "operator": "DoesNotExist" + "key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo", + "operator": "NotIn", + "values": [ + "0--_qv4--_.6_N_9X-B.s8.B" + ] } ] } @@ -1418,33 +1428,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -616061040, + "weight": -1832836223, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u": "j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w" + "BQ.9-_.m7-Q____vSW_4-__h": "w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj" }, "matchExpressions": [ { - "key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X", + "key": "dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A", "operator": "Exists" } ] }, "namespaces": [ - "455" + "460" ], - "topologyKey": "456", + "topologyKey": "461", "namespaceSelector": { "matchLabels": { - "97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a": "ZZ__.-_U-.60--o._8H__lB" + "8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO" }, "matchExpressions": [ { - "key": "vi.Z", + "key": "006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W", "operator": "NotIn", "values": [ - "03l-_86_u2-7_._qN__A_f_-B3_U__L.H" + "z87_2---2.E.p9-.-3.__a.bl_--..-A" ] } ] @@ -1454,63 +1464,63 @@ ] } }, - "schedulerName": "463", + "schedulerName": "468", "tolerations": [ { - "key": "464", - "operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU", - "value": "465", - "effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ", - "tolerationSeconds": -4322909565451750640 + "key": "469", + "operator": "Ü", + "value": "470", + "effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ", + "tolerationSeconds": 8594241010639209901 } ], "hostAliases": [ { - "ip": "466", + "ip": "471", "hostnames": [ - "467" + "472" ] } ], - "priorityClassName": "468", - "priority": 780753434, + "priorityClassName": "473", + "priority": 878153992, "dnsConfig": { "nameservers": [ - "469" + "474" ], "searches": [ - "470" + "475" ], "options": [ { - "name": "471", - "value": "472" + "name": "476", + "value": "477" } ] }, "readinessGates": [ { - "conditionType": "¤趜磕绘翁揌p:oŇE" + "conditionType": "=ȑ-A敲ʉ" } ], - "runtimeClassName": "473", + "runtimeClassName": "478", "enableServiceLinks": false, - "preemptionPolicy": "ħ\\", + "preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa", "overhead": { - "kƱ": "313" + "\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ": "283" }, "topologySpreadConstraints": [ { - "maxSkew": 1674267790, - "topologyKey": "474", - "whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV", + "maxSkew": -702578810, + "topologyKey": "479", + "whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw", "labelSelector": { "matchLabels": { - "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i": "Wq-...Oai.D7-_9..8-8yw..__Yb_8" + "N-_.F": "09z2" }, "matchExpressions": [ { - "key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1", + "key": "z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0", "operator": "DoesNotExist" } ] 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 97970c0e140..b8f32d80550 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb differ 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 3cc850923ee..9a4b737ab9d 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 @@ -62,731 +62,733 @@ template: selfLink: "23" uid: SǡƏ spec: - activeDeadlineSeconds: 8952305945735902812 + activeDeadlineSeconds: -8137450023376708507 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "403" - operator: Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n + - key: "408" + operator: 炙B餸硷张q櫞繡旹翃ɾ氒ĺʈʫ羶剹 values: - - "404" + - "409" matchFields: - - key: "405" - operator: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ + - key: "410" + operator: 嬯t{ values: - - "406" - weight: -1519458130 + - "411" + weight: -585628051 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "399" - operator: Ƶf + - key: "404" + operator: 鑠ĭ$#卛8ð仁Q橱9 values: - - "400" + - "405" matchFields: - - key: "401" - operator: X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞 + - key: "406" + operator: 斢杧ż鯀1'鸔 values: - - "402" + - "407" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3--51 + - 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: - - C.-e16-O5 + - N7_B_r matchLabels: - y_-3_L_2--_v2.5p_6: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q + o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C namespaceSelector: matchExpressions: - - key: 8mtxb__-ex-_1_-ODgC_1-_8__3 - operator: DoesNotExist + - key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T + operator: Exists matchLabels: - 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM + O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr namespaces: - - "427" - topologyKey: "428" - weight: -688929182 + - "432" + topologyKey: "433" + weight: 957174721 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q - operator: DoesNotExist - matchLabels: - f.-zv._._.5-H.T.-.-.T-V_D_0-K_AS: NZ_C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_9_18 - namespaceSelector: - matchExpressions: - - key: 0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs + - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v operator: NotIn values: - - 6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7 + - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc matchLabels: - 4sE4: B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6 + 4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP + namespaceSelector: + matchExpressions: + - key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a + operator: Exists + matchLabels: + 3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O namespaces: - - "413" - topologyKey: "414" + - "418" + topologyKey: "419" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X + - key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A operator: Exists matchLabels: - L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u: j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w + BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj namespaceSelector: matchExpressions: - - key: vi.Z + - key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W operator: NotIn values: - - 03l-_86_u2-7_._qN__A_f_-B3_U__L.H + - z87_2---2.E.p9-.-3.__a.bl_--..-A matchLabels: - 97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a: ZZ__.-_U-.60--o._8H__lB + 8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO namespaces: - - "455" - topologyKey: "456" - weight: -616061040 + - "460" + topologyKey: "461" + weight: -1832836223 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V - operator: Exists + - key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W + operator: In + values: + - U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx matchLabels: - K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0: u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K + ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV namespaceSelector: matchExpressions: - - key: P6j.u--.K--g__..b - operator: DoesNotExist + - key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo + operator: NotIn + values: + - 0--_qv4--_.6_N_9X-B.s8.B matchLabels: - ? e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m - : e.Dx._.W-6..4_MU7iLfS0 + 2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J namespaces: - - "441" - topologyKey: "442" - automountServiceAccountToken: false + - "446" + topologyKey: "447" + automountServiceAccountToken: true containers: - args: - - "247" + - "248" command: - - "246" + - "247" env: - - name: "254" - value: "255" + - name: "255" + value: "256" valueFrom: configMapKeyRef: - key: "261" - name: "260" + key: "262" + name: "261" optional: true fieldRef: - apiVersion: "256" - fieldPath: "257" + apiVersion: "257" + fieldPath: "258" resourceFieldRef: - containerName: "258" - divisor: "138" - resource: "259" + containerName: "259" + divisor: "804" + resource: "260" secretKeyRef: - key: "263" - name: "262" - optional: false + key: "264" + name: "263" + optional: true envFrom: - configMapRef: - name: "252" - optional: true - prefix: "251" - secretRef: name: "253" optional: false - image: "245" - imagePullPolicy: r嚧 + prefix: "252" + secretRef: + name: "254" + optional: true + image: "246" + imagePullPolicy: Ļǟi& lifecycle: postStart: exec: command: - - "289" + - "291" httpGet: - host: "291" + host: "293" httpHeaders: - - name: "292" - value: "293" - path: "290" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 + - name: "294" + value: "295" + path: "292" + port: 415947324 + scheme: v铿ʩȂ4ē鐭#嬀ơŸ8T 苧yñ tcpSocket: - host: "295" - port: "294" + host: "297" + port: "296" preStop: exec: command: - - "296" + - "298" httpGet: - host: "298" - httpHeaders: - - name: "299" - value: "300" - path: "297" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: host: "301" - port: 467291328 + httpHeaders: + - name: "302" + value: "303" + path: "299" + port: "300" + scheme: 鐫û咡W<敄lu|榝 + tcpSocket: + host: "304" + port: 102215089 livenessProbe: exec: command: - - "270" - failureThreshold: -93157681 + - "271" + failureThreshold: -1140531048 httpGet: - host: "272" + host: "273" httpHeaders: - - name: "273" - value: "274" - path: "271" - port: 1087851818 - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "274" + value: "275" + path: "272" + port: 630004123 + scheme: ɾģ毋Ó6dz娝嘚 + initialDelaySeconds: 1451056156 + periodSeconds: -127849333 + successThreshold: -1455098755 tcpSocket: host: "276" - port: "275" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "244" + port: -1213051101 + terminationGracePeriodSeconds: -8648209499645539653 + timeoutSeconds: 267768240 + name: "245" ports: - - containerPort: -1694108493 - hostIP: "250" - hostPort: 70206540 - name: "249" - protocol: ǂ>5姣>懔%熷 + - containerPort: 62799871 + hostIP: "251" + hostPort: -421846800 + name: "250" + protocol: vt莭琽§ć\ ïì« readinessProbe: exec: command: - "277" - failureThreshold: 513341278 + failureThreshold: 785984384 httpGet: - host: "279" + host: "280" httpHeaders: - - name: "280" - value: "281" + - name: "281" + value: "282" path: "278" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + port: "279" + scheme: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + initialDelaySeconds: -1738069460 + periodSeconds: -805795167 + successThreshold: 1791615594 tcpSocket: - host: "282" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "283" + port: -36782737 + terminationGracePeriodSeconds: 830921445879518469 + timeoutSeconds: -1643733106 resources: limits: - 脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻: "575" + 粕擓ƖHVe熼'FD: "235" requests: - 丯Ƙ枛牐ɺ皚|: "933" + 嶗U: "647" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 埄趛 + - 碔 drop: - - ʁ岼昕ĬÇ - privileged: true - procMount: 鐫û咡W<敄lu|榝 - readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + - NKƙ順\E¦队偯J僳徥淳4揻-$ + privileged: false + procMount: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ + readOnlyRootFilesystem: true + runAsGroup: 8201449858636177397 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 8025933883888025358 seLinuxOptions: - level: "306" - role: "304" - type: "305" - user: "303" + level: "309" + role: "307" + type: "308" + user: "306" seccompProfile: - localhostProfile: "310" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "313" + type: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' windowsOptions: - gmsaCredentialSpec: "308" - gmsaCredentialSpecName: "307" + gmsaCredentialSpec: "311" + gmsaCredentialSpecName: "310" hostProcess: false - runAsUserName: "309" + runAsUserName: "312" startupProbe: exec: command: - - "283" - failureThreshold: -1364571630 + - "284" + failureThreshold: -1748648882 httpGet: - host: "285" + host: "286" httpHeaders: - - name: "286" - value: "287" - path: "284" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "287" + value: "288" + path: "285" + port: 622267234 + scheme: '[+扴ȨŮ+朷Ǝ膯ljV' + initialDelaySeconds: -171684192 + periodSeconds: 1040396664 + successThreshold: -979584143 tcpSocket: - host: "288" - port: -1099429189 - terminationGracePeriodSeconds: 7258403424756645907 - timeoutSeconds: 1752155096 + host: "290" + port: "289" + terminationGracePeriodSeconds: -1030117900836778816 + timeoutSeconds: -602419938 stdin: true - stdinOnce: true - terminationMessagePath: "302" - terminationMessagePolicy: ĸ輦唊 + terminationMessagePath: "305" + terminationMessagePolicy: Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ tty: true volumeDevices: - - devicePath: "269" - name: "268" + - devicePath: "270" + name: "269" volumeMounts: - - mountPath: "265" - mountPropagation: '[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ' - name: "264" - subPath: "266" - subPathExpr: "267" - workingDir: "248" + - mountPath: "266" + mountPropagation: i酛3ƁÀ*f<鴒翁杙Ŧ癃 + name: "265" + subPath: "267" + subPathExpr: "268" + workingDir: "249" dnsConfig: nameservers: - - "469" + - "474" options: - - name: "471" - value: "472" + - name: "476" + value: "477" searches: - - "470" - dnsPolicy: µņP)DŽ髐njʉBn(fǂǢ + - "475" + dnsPolicy: żLj捲攻xƂ9阠$嬏wy¶熀 enableServiceLinks: false ephemeralContainers: - args: - - "314" + - "317" command: - - "313" + - "316" env: - - name: "321" - value: "322" + - name: "324" + value: "325" valueFrom: configMapKeyRef: - key: "328" - name: "327" - optional: false + key: "331" + name: "330" + optional: true fieldRef: - apiVersion: "323" - fieldPath: "324" + apiVersion: "326" + fieldPath: "327" resourceFieldRef: - containerName: "325" - divisor: "271" - resource: "326" + containerName: "328" + divisor: "974" + resource: "329" secretKeyRef: - key: "330" - name: "329" + key: "333" + name: "332" optional: true envFrom: - configMapRef: - name: "319" - optional: true - prefix: "318" - secretRef: - name: "320" + name: "322" optional: false - image: "312" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "321" + secretRef: + name: "323" + optional: true + image: "315" + imagePullPolicy: 覦灲閈誹ʅ蕉 lifecycle: postStart: exec: command: - - "357" + - "361" httpGet: - host: "359" - httpHeaders: - - name: "360" - value: "361" - path: "358" - port: -1021949447 - scheme: B芭 - tcpSocket: host: "363" - port: "362" + httpHeaders: + - name: "364" + value: "365" + path: "362" + port: -819013491 + scheme: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎 + tcpSocket: + host: "367" + port: "366" preStop: exec: command: - - "364" + - "368" httpGet: - host: "367" + host: "371" httpHeaders: - - name: "368" - value: "369" - path: "365" - port: "366" - scheme: yƕ丆録²Ŏ) + - name: "372" + value: "373" + path: "369" + port: "370" + scheme: (ť1ùfŭƽ tcpSocket: - host: "370" - port: 507384491 + host: "375" + port: "374" livenessProbe: exec: command: - - "337" - failureThreshold: 1156888068 + - "340" + failureThreshold: -488127393 httpGet: - host: "339" + host: "342" httpHeaders: - - name: "340" - value: "341" - path: "338" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 + - name: "343" + value: "344" + path: "341" + port: 1473407401 + scheme: ʐşƧ + initialDelaySeconds: 1947032456 + periodSeconds: -969533986 + successThreshold: 299741709 tcpSocket: - host: "343" - port: "342" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "311" + host: "345" + port: 199049889 + terminationGracePeriodSeconds: 4883846315878203110 + timeoutSeconds: 1233904535 + name: "314" ports: - - containerPort: 1714588921 - hostIP: "317" - hostPort: -370386363 - name: "316" - protocol: Ư貾 + - containerPort: -2097329452 + hostIP: "320" + hostPort: -116224247 + name: "319" + protocol: 屿oiɥ嵐sC8? readinessProbe: exec: command: - - "344" - failureThreshold: 422133388 + - "346" + failureThreshold: -302933400 httpGet: - host: "346" + host: "349" httpHeaders: - - name: "347" - value: "348" - path: "345" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + - name: "350" + value: "351" + path: "347" + port: "348" + scheme: ' 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎' + initialDelaySeconds: -200074798 + periodSeconds: -1838917931 + successThreshold: -1563928252 tcpSocket: - host: "350" - port: "349" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 + host: "353" + port: "352" + terminationGracePeriodSeconds: 7094149050088640176 + timeoutSeconds: 556036216 resources: limits: - 庰%皧V: "116" + 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻: "838" requests: - "": "289" + i騎C"6x$1sȣ±p鋄5弢ȹ均: "582" securityContext: allowPrivilegeEscalation: false capabilities: add: - - p鋄5弢ȹ均i绝5 + - ǭ濑箨ʨIk drop: - - "" - privileged: true - procMount: ş + - dŊiɢ + privileged: false + procMount: Qm坊柩劄 readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 + runAsGroup: -4911894469676245979 runAsNonRoot: false - runAsUser: -3385088507022597813 + runAsUser: 3835909844513980271 seLinuxOptions: - level: "375" - role: "373" - type: "374" - user: "372" + level: "380" + role: "378" + type: "379" + user: "377" seccompProfile: - localhostProfile: "379" - type: 諔迮ƙ + localhostProfile: "384" + type: '[ƕƑĝ®EĨǔvÄÚ' windowsOptions: - gmsaCredentialSpec: "377" - gmsaCredentialSpecName: "376" - hostProcess: false - runAsUserName: "378" + gmsaCredentialSpec: "382" + gmsaCredentialSpecName: "381" + hostProcess: true + runAsUserName: "383" startupProbe: exec: command: - - "351" - failureThreshold: 353361793 + - "354" + failureThreshold: 1486914884 httpGet: - host: "353" - httpHeaders: - - name: "354" - value: "355" - path: "352" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 - tcpSocket: host: "356" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 + httpHeaders: + - name: "357" + value: "358" + path: "355" + port: -832681001 + scheme: h趭 + initialDelaySeconds: -1969828011 + periodSeconds: -748525373 + successThreshold: 805162379 + tcpSocket: + host: "360" + port: "359" + terminationGracePeriodSeconds: -2753079965660681160 + timeoutSeconds: -1186720090 + stdin: true stdinOnce: true - targetContainerName: "380" - terminationMessagePath: "371" - terminationMessagePolicy: "3" + targetContainerName: "385" + terminationMessagePath: "376" + terminationMessagePolicy: æ盪泙若`l}Ñ蠂Ü + tty: true volumeDevices: - - devicePath: "336" - name: "335" + - devicePath: "339" + name: "338" volumeMounts: - - mountPath: "332" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "331" + - mountPath: "335" + mountPropagation: vEȤƏ埮p + name: "334" readOnly: true - subPath: "333" - subPathExpr: "334" - workingDir: "315" + subPath: "336" + subPathExpr: "337" + workingDir: "318" hostAliases: - hostnames: - - "467" - ip: "466" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "397" + - "472" + ip: "471" + hostname: "402" imagePullSecrets: - - name: "396" + - name: "401" initContainers: - args: - - "175" + - "178" command: - - "174" + - "177" env: - - name: "182" - value: "183" + - name: "185" + value: "186" valueFrom: configMapKeyRef: - key: "189" - name: "188" + key: "192" + name: "191" optional: false fieldRef: - apiVersion: "184" - fieldPath: "185" + apiVersion: "187" + fieldPath: "188" resourceFieldRef: - containerName: "186" - divisor: "577" - resource: "187" + containerName: "189" + divisor: "959" + resource: "190" secretKeyRef: - key: "191" - name: "190" - optional: true + key: "194" + name: "193" + optional: false envFrom: - configMapRef: - name: "180" - optional: true - prefix: "179" - secretRef: - name: "181" + name: "183" optional: false - image: "173" - imagePullPolicy: ǐƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ + prefix: "182" + secretRef: + name: "184" + optional: true + image: "176" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "219" + - "223" httpGet: - host: "222" + host: "225" httpHeaders: - - name: "223" - value: "224" - path: "220" - port: "221" - scheme: Ĭ4y£軶 + - name: "226" + value: "227" + path: "224" + port: 1791729314 + scheme: 漘Z剚敍0) tcpSocket: - host: "226" - port: "225" + host: "228" + port: 424236719 preStop: exec: command: - - "227" + - "229" httpGet: - host: "230" + host: "231" httpHeaders: - - name: "231" - value: "232" - path: "228" - port: "229" - scheme: ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 + - name: "232" + value: "233" + path: "230" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "234" - port: "233" + host: "235" + port: "234" livenessProbe: exec: command: - - "198" - failureThreshold: -1553779100 + - "201" + failureThreshold: 462729263 httpGet: - host: "200" - httpHeaders: - - name: "201" - value: "202" - path: "199" - port: -57352147 - scheme: Y鶪5w垁鷌辪虽U珝 - initialDelaySeconds: 411878451 - periodSeconds: -254454655 - successThreshold: -1925916855 - tcpSocket: host: "204" + httpHeaders: + - name: "205" + value: "206" + path: "202" port: "203" - terminationGracePeriodSeconds: 8334895174951990407 - timeoutSeconds: 1676588692 - name: "172" + scheme: '|dk_瀹鞎sn芞QÄȻȊ+?' + initialDelaySeconds: 905846572 + periodSeconds: 166278802 + successThreshold: -2005424724 + tcpSocket: + host: "207" + port: 1094670193 + terminationGracePeriodSeconds: -2545119488724336295 + timeoutSeconds: -396185898 + name: "175" ports: - - containerPort: 231063530 - hostIP: "178" - hostPort: 949227156 - name: "177" - protocol: 8參遼ūPH炮掊°n + - containerPort: 173916181 + hostIP: "181" + hostPort: -379514302 + name: "180" + protocol: 鷅bȻN+ņ榱*Gưoɘ檲ɨ銦 readinessProbe: exec: command: - - "205" - failureThreshold: -1801400049 + - "208" + failureThreshold: 1577445629 httpGet: - host: "207" + host: "210" httpHeaders: - - name: "208" - value: "209" - path: "206" - port: 1463207240 - scheme: 蝿 - initialDelaySeconds: 1435507444 - periodSeconds: 524249411 - successThreshold: -1617359505 + - name: "211" + value: "212" + path: "209" + port: 1054302708 + initialDelaySeconds: -2093767566 + periodSeconds: 386652373 + successThreshold: -1157800046 tcpSocket: - host: "211" - port: "210" - terminationGracePeriodSeconds: -5734988028820567880 - timeoutSeconds: -1430577593 + host: "214" + port: "213" + terminationGracePeriodSeconds: 562397907094900922 + timeoutSeconds: -1718681455 resources: limits: - hoĂɋ: "206" - requests: 瓷碑: "809" + requests: + =å睫}堇硲蕵ɢ苆ǮńMǰ溟ɴ扵閝ȝ: "829" securityContext: allowPrivilegeEscalation: false capabilities: add: - - p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + - "" drop: - - 籘Àǒɿʒ刽ʼn + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ privileged: false - procMount: x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ - readOnlyRootFilesystem: true - runAsGroup: -4151726557168738613 + procMount: "" + readOnlyRootFilesystem: false + runAsGroup: -505892685699484816 runAsNonRoot: true - runAsUser: 8519427267030036521 + runAsUser: 301534795599983361 seLinuxOptions: - level: "239" - role: "237" - type: "238" - user: "236" + level: "240" + role: "238" + type: "239" + user: "237" seccompProfile: - localhostProfile: "243" - type: ǣ萭 + localhostProfile: "244" + type: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 windowsOptions: - gmsaCredentialSpec: "241" - gmsaCredentialSpecName: "240" - hostProcess: false - runAsUserName: "242" + gmsaCredentialSpec: "242" + gmsaCredentialSpecName: "241" + hostProcess: true + runAsUserName: "243" startupProbe: exec: command: - - "212" - failureThreshold: -722355061 + - "215" + failureThreshold: 304141309 httpGet: - host: "215" - httpHeaders: - - name: "216" - value: "217" - path: "213" - port: "214" - scheme: '十Oɢǵʭd鲡:' - initialDelaySeconds: 185639167 - periodSeconds: 393169267 - successThreshold: 1381010768 - tcpSocket: host: "218" - port: -2037320199 - terminationGracePeriodSeconds: 6388225771169951791 - timeoutSeconds: 1487007476 + httpHeaders: + - name: "219" + value: "220" + path: "216" + port: "217" + scheme: C'ɵK.Q貇£ȹ嫰ƹǔw÷nI粛 + initialDelaySeconds: 800220849 + periodSeconds: 135036402 + successThreshold: -1650568978 + tcpSocket: + host: "222" + port: "221" + terminationGracePeriodSeconds: -378701183370790036 + timeoutSeconds: -1429994426 stdin: true - terminationMessagePath: "235" - terminationMessagePolicy: Ⱦdz@ùƸʋŀ + stdinOnce: true + terminationMessagePath: "236" + terminationMessagePolicy: 焗捏 volumeDevices: - - devicePath: "197" - name: "196" + - devicePath: "200" + name: "199" volumeMounts: - - mountPath: "193" - mountPropagation: å睫}堇硲蕵ɢ苆 - name: "192" - subPath: "194" - subPathExpr: "195" - workingDir: "176" - nodeName: "385" + - mountPath: "196" + mountPropagation: 虽U珝Żwʮ馜üNșƶ4ĩĉş蝿ɖȃ + name: "195" + subPath: "197" + subPathExpr: "198" + workingDir: "179" + nodeName: "390" nodeSelector: - "381": "382" + "386": "387" overhead: - kƱ: "313" - preemptionPolicy: ħ\ - priority: 780753434 - priorityClassName: "468" + <ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283" + preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa + priority: 878153992 + priorityClassName: "473" readinessGates: - - conditionType: ¤趜磕绘翁揌p:oŇE - restartPolicy: 4ʗN,丽饾| 鞤ɱď - runtimeClassName: "473" - schedulerName: "463" + - conditionType: =ȑ-A敲ʉ + restartPolicy: 鬷m罂 + runtimeClassName: "478" + schedulerName: "468" securityContext: - fsGroup: -8460346884535567850 - fsGroupChangePolicy: "8" - runAsGroup: 6942343986058351509 + fsGroup: -838253411893392910 + fsGroupChangePolicy: 槃JŵǤ桒ɴ鉂WJ + runAsGroup: 5680561050872693436 runAsNonRoot: true - runAsUser: 2373631082804169687 + runAsUser: 8790792169692841191 seLinuxOptions: - level: "389" - role: "387" - type: "388" - user: "386" + level: "394" + role: "392" + type: "393" + user: "391" seccompProfile: - localhostProfile: "395" - type: T[ + localhostProfile: "400" + type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ supplementalGroups: - - 3174735363260936461 + - 7768299165267384830 sysctls: - - name: "393" - value: "394" + - name: "398" + value: "399" windowsOptions: - gmsaCredentialSpec: "391" - gmsaCredentialSpecName: "390" - hostProcess: true - runAsUserName: "392" - serviceAccount: "384" - serviceAccountName: "383" + gmsaCredentialSpec: "396" + gmsaCredentialSpecName: "395" + hostProcess: false + runAsUserName: "397" + serviceAccount: "389" + serviceAccountName: "388" setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "398" - terminationGracePeriodSeconds: 5667186155078596628 + shareProcessNamespace: false + subdomain: "403" + terminationGracePeriodSeconds: 6757106584708307313 tolerations: - - effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ - key: "464" - operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU - tolerationSeconds: -4322909565451750640 - value: "465" + - effect: 貛香"砻B鷋RȽXv*!ɝ茀Ǩ + key: "469" + operator: Ü + tolerationSeconds: 8594241010639209901 + value: "470" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: h---dY7_M_-._M5..-N_H_55..--E3_2D1 + - key: z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0 operator: DoesNotExist matchLabels: - Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i: Wq-...Oai.D7-_9..8-8yw..__Yb_8 - maxSkew: 1674267790 - topologyKey: "474" - whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV + N-_.F: 09z2 + maxSkew: -702578810 + topologyKey: "479" + whenUnsatisfiable: Ž氮怉ƥ;"薑Ȣ#闬輙怀¹bCũw volumes: - awsElasticBlockStore: fsType: "43" @@ -885,6 +887,10 @@ template: apiGroup: "169" kind: "170" name: "171" + dataSourceRef: + apiGroup: "172" + kind: "173" + name: "174" resources: limits: Y籎顒ǥŴ: "744" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json index 0c4c54545db..4771d972309 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json @@ -433,6 +433,11 @@ "apiGroup": "171", "kind": "172", "name": "173" + }, + "dataSourceRef": { + "apiGroup": "174", + "kind": "175", + "name": "176" } } } @@ -441,59 +446,58 @@ ], "initContainers": [ { - "name": "174", - "image": "175", + "name": "177", + "image": "178", "command": [ - "176" + "179" ], "args": [ - "177" + "180" ], - "workingDir": "178", + "workingDir": "181", "ports": [ { - "name": "179", - "hostPort": -1872407654, - "containerPort": 32378685, - "protocol": "ş蝿ɖȃ賲鐅臬", - "hostIP": "180" + "name": "182", + "hostPort": 118729776, + "containerPort": -614785801, + "hostIP": "183" } ], "envFrom": [ { - "prefix": "181", + "prefix": "184", "configMapRef": { - "name": "182", - "optional": false + "name": "185", + "optional": true }, "secretRef": { - "name": "183", + "name": "186", "optional": true } } ], "env": [ { - "name": "184", - "value": "185", + "name": "187", + "value": "188", "valueFrom": { "fieldRef": { - "apiVersion": "186", - "fieldPath": "187" + "apiVersion": "189", + "fieldPath": "190" }, "resourceFieldRef": { - "containerName": "188", - "resource": "189", - "divisor": "117" + "containerName": "191", + "resource": "192", + "divisor": "421" }, "configMapKeyRef": { - "name": "190", - "key": "191", - "optional": true + "name": "193", + "key": "194", + "optional": false }, "secretKeyRef": { - "name": "192", - "key": "193", + "name": "195", + "key": "196", "optional": false } } @@ -501,406 +505,407 @@ ], "resources": { "limits": { - "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN": "197" + "_瀹鞎sn芞QÄȻȊ+?": "193" }, "requests": { - "軶ǃ*ʙ嫙\u0026蒒5靇": "813" + "@Ȗs«öʮĀ\u003cé瞾": "51" } }, "volumeMounts": [ { - "name": "194", - "mountPath": "195", - "subPath": "196", - "mountPropagation": "ǹ_Áȉ彂Ŵ廷s", - "subPathExpr": "197" + "name": "197", + "mountPath": "198", + "subPath": "199", + "mountPropagation": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", + "subPathExpr": "200" } ], "volumeDevices": [ { - "name": "198", - "devicePath": "199" + "name": "201", + "devicePath": "202" } ], "livenessProbe": { "exec": { "command": [ - "200" + "203" ] }, "httpGet": { - "path": "201", - "port": 1923650413, - "host": "202", - "scheme": "I粛E煹ǐƲE'iþŹʣy", + "path": "204", + "port": "205", + "host": "206", + "scheme": "{Ⱦdz@", "httpHeaders": [ { - "name": "203", - "value": "204" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": "205", - "host": "206" + "port": 406308963, + "host": "209" }, - "initialDelaySeconds": -1961863213, - "timeoutSeconds": -103588794, - "periodSeconds": -1045704964, - "successThreshold": 1089147958, - "failureThreshold": -1273036797, - "terminationGracePeriodSeconds": 2787866729016106782 + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354, + "terminationGracePeriodSeconds": -1159835821828680707 }, "readinessProbe": { "exec": { "command": [ - "207" + "210" ] }, "httpGet": { - "path": "208", - "port": 859639931, - "host": "209", - "scheme": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", + "path": "211", + "port": 576428641, + "host": "212", + "scheme": "ƯĖ漘Z剚敍0)鈼¬麄p呝T", "httpHeaders": [ { - "name": "210", - "value": "211" + "name": "213", + "value": "214" } ] }, "tcpSocket": { - "port": "212", - "host": "213" + "port": -1891134534, + "host": "215" }, - "initialDelaySeconds": 1380874688, - "timeoutSeconds": -1018741501, - "periodSeconds": -674091068, - "successThreshold": -2061678740, - "failureThreshold": -495373547, - "terminationGracePeriodSeconds": -703684984628150402 + "initialDelaySeconds": -1710454086, + "timeoutSeconds": 192146389, + "periodSeconds": 1285027515, + "successThreshold": 111876618, + "failureThreshold": -820458255, + "terminationGracePeriodSeconds": -4763823273964408583 }, "startupProbe": { "exec": { "command": [ - "214" + "216" ] }, "httpGet": { - "path": "215", - "port": 1255169591, - "host": "216", - "scheme": "褎weLJèux", + "path": "217", + "port": -122979840, + "host": "218", + "scheme": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "httpHeaders": [ { - "name": "217", - "value": "218" + "name": "219", + "value": "220" } ] }, "tcpSocket": { - "port": "219", - "host": "220" + "port": "221", + "host": "222" }, - "initialDelaySeconds": -1133499416, - "timeoutSeconds": 486195690, - "periodSeconds": 1157241180, - "successThreshold": -1810997540, - "failureThreshold": -1681029343, - "terminationGracePeriodSeconds": -6826008110504741173 + "initialDelaySeconds": 2045456786, + "timeoutSeconds": 988932710, + "periodSeconds": -1537700150, + "successThreshold": -1815868713, + "failureThreshold": 105707873, + "terminationGracePeriodSeconds": -810905585400838367 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "223" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "LLȊɞ-uƻ悖ȩ0Ƹ[Ęİ榌", + "path": "224", + "port": 1422435836, + "host": "225", + "scheme": ",ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "226", + "value": "227" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "228", + "host": "229" } }, "preStop": { "exec": { "command": [ - "229" + "230" ] }, "httpGet": { - "path": "230", - "port": "231", - "host": "232", - "scheme": "懔%熷谟", + "path": "231", + "port": "232", + "host": "233", + "scheme": "Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄", "httpHeaders": [ { - "name": "233", - "value": "234" + "name": "234", + "value": "235" } ] }, "tcpSocket": { - "port": -1920661051, - "host": "235" + "port": "236", + "host": "237" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3", - "imagePullPolicy": "vt莭琽§ć\\ ïì«", + "terminationMessagePath": "238", + "terminationMessagePolicy": "ʤî萨zvt莭", + "imagePullPolicy": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", "securityContext": { "capabilities": { "add": [ - "枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F" + "sĨɆâĺɗŹ倗S晒嶗U" ], "drop": [ - "剂讼ɓȌʟni酛3Ɓ" + "_ƮA攤/ɸɎ R§耶FfBl" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "239", + "role": "240", + "type": "241", + "level": "242" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false + "gmsaCredentialSpecName": "243", + "gmsaCredentialSpec": "244", + "runAsUserName": "245", + "hostProcess": true }, - "runAsUser": 4530581071337252406, - "runAsGroup": 708875421817317137, + "runAsUser": 3850139838566476547, + "runAsGroup": -7106791338981314910, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "鸖ɱJȉ罴ņ螡źȰ", + "procMount": "娝嘚庎D}埽uʎȺ眖R#yV'", "seccompProfile": { - "type": "$矡ȶ", - "localhostProfile": "244" + "type": "Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "localhostProfile": "246" } }, - "stdinOnce": true, + "stdin": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "247", + "image": "248", "command": [ - "247" + "249" ], "args": [ - "248" + "250" ], - "workingDir": "249", + "workingDir": "251", "ports": [ { - "name": "250", - "hostPort": -1905643191, - "containerPort": -2717401, - "protocol": "ɳɷ9Ì", - "hostIP": "251" + "name": "252", + "hostPort": -1643733106, + "containerPort": -805795167, + "protocol": "8Ƥ熪军g\u003e郵[+", + "hostIP": "253" } ], "envFrom": [ { - "prefix": "252", + "prefix": "254", "configMapRef": { - "name": "253", - "optional": false + "name": "255", + "optional": true }, "secretRef": { - "name": "254", - "optional": true + "name": "256", + "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "257", + "value": "258", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "259", + "fieldPath": "260" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "800" + "containerName": "261", + "resource": "262", + "divisor": "730" }, "configMapKeyRef": { - "name": "261", - "key": "262", - "optional": false - }, - "secretKeyRef": { "name": "263", "key": "264", "optional": true + }, + "secretKeyRef": { + "name": "265", + "key": "266", + "optional": false } } } ], "resources": { "limits": { - "pw": "934" + "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq": "431" }, "requests": { - "輓Ɔȓ蹣ɐǛv+8": "375" + "ē鐭#嬀ơŸ8T 苧yñKJɐ": "894" } }, "volumeMounts": [ { - "name": "265", - "mountPath": "266", - "subPath": "267", - "mountPropagation": "颐o", - "subPathExpr": "268" + "name": "267", + "mountPath": "268", + "subPath": "269", + "mountPropagation": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "subPathExpr": "270" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "271", + "devicePath": "272" } ], "livenessProbe": { "exec": { "command": [ - "271" + "273" ] }, "httpGet": { - "path": "272", - "port": 972978563, - "host": "273", - "scheme": "ȨŮ+朷Ǝ膯", + "path": "274", + "port": 14304392, + "host": "275", + "scheme": "寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥贸碔", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": -1506633471, - "host": "276" + "port": "278", + "host": "279" }, - "initialDelaySeconds": -249989919, - "timeoutSeconds": -171684192, - "periodSeconds": -602419938, - "successThreshold": 1040396664, - "failureThreshold": -979584143, - "terminationGracePeriodSeconds": -7510389757339505131 + "initialDelaySeconds": -1296830577, + "timeoutSeconds": -1314967760, + "periodSeconds": 1174240097, + "successThreshold": -1928016742, + "failureThreshold": -787458357, + "terminationGracePeriodSeconds": 342609112008782456 }, "readinessProbe": { "exec": { "command": [ - "277" + "280" ] }, "httpGet": { - "path": "278", - "port": -1538905728, - "host": "279", - "scheme": "ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢xɮ", + "path": "281", + "port": -528664199, + "host": "282", + "scheme": "徥淳4揻-$ɽ丟", "httpHeaders": [ { - "name": "280", - "value": "281" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": "282", - "host": "283" + "port": "285", + "host": "286" }, - "initialDelaySeconds": -1817291584, - "timeoutSeconds": 1224868165, - "periodSeconds": 582041100, - "successThreshold": 509188266, - "failureThreshold": -940514142, - "terminationGracePeriodSeconds": 6764431850409848860 + "initialDelaySeconds": 468369166, + "timeoutSeconds": 1909548849, + "periodSeconds": 1492642476, + "successThreshold": -367153801, + "failureThreshold": 1907998540, + "terminationGracePeriodSeconds": 8959437085840841638 }, "startupProbe": { "exec": { "command": [ - "284" + "287" ] }, "httpGet": { - "path": "285", - "port": -331594625, - "host": "286", - "scheme": "lu|榝$î.", + "path": "288", + "port": "289", + "host": "290", + "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "291", + "value": "292" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": 458427807, + "host": "293" }, - "initialDelaySeconds": -1505188927, - "timeoutSeconds": -2133054549, - "periodSeconds": 2083727489, - "successThreshold": 486365838, - "failureThreshold": 133009177, - "terminationGracePeriodSeconds": -6177393256425700216 + "initialDelaySeconds": -1971421078, + "timeoutSeconds": 1905181464, + "periodSeconds": -1730959016, + "successThreshold": 1272940694, + "failureThreshold": -385597677, + "terminationGracePeriodSeconds": 1813049096022212391 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "294" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", + "path": "295", + "port": 50696420, + "host": "296", + "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "297", + "value": "298" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": 802134138, + "host": "299" } }, "preStop": { "exec": { "command": [ - "299" + "300" ] }, "httpGet": { - "path": "300", - "port": "301", + "path": "301", + "port": -126958936, "host": "302", - "scheme": "跩aŕ翑", + "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "httpHeaders": [ { "name": "303", @@ -915,17 +920,18 @@ } }, "terminationMessagePath": "307", - "imagePullPolicy": "\u0026皥贸碔lNKƙ順\\E¦队偯", + "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮", "securityContext": { "capabilities": { "add": [ - "徥淳4揻-$ɽ丟" + "嘢4ʗN,丽饾| 鞤ɱďW賁" ], "drop": [ - "" + "ɭɪǹ0衷," ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { "user": "308", "role": "309", @@ -936,21 +942,19 @@ "gmsaCredentialSpecName": "312", "gmsaCredentialSpec": "313", "runAsUserName": "314", - "hostProcess": false + "hostProcess": true }, - "runAsUser": -816831389119959689, - "runAsGroup": 8194791334069427324, + "runAsUser": -1119183212148951030, + "runAsGroup": -7146044409185304665, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "procMount": "w妕眵笭/9崍h趭(娕", "seccompProfile": { - "type": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", + "type": "E增猍", "localhostProfile": "315" } - }, - "stdinOnce": true, - "tty": true + } } ], "ephemeralContainers": [ @@ -967,9 +971,9 @@ "ports": [ { "name": "321", - "hostPort": 1504385614, - "containerPort": 865289071, - "protocol": "iɥ嵐sC8", + "hostPort": 601942575, + "containerPort": -1320027474, + "protocol": "Ƶf", "hostIP": "322" } ], @@ -978,11 +982,11 @@ "prefix": "323", "configMapRef": { "name": "324", - "optional": false + "optional": true }, "secretRef": { "name": "325", - "optional": false + "optional": true } } ], @@ -998,7 +1002,7 @@ "resourceFieldRef": { "containerName": "330", "resource": "331", - "divisor": "832" + "divisor": "179" }, "configMapKeyRef": { "name": "332", @@ -1015,10 +1019,10 @@ ], "resources": { "limits": { - "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻": "127" + "阎l": "464" }, "requests": { - "C\"6x$1s": "463" + "'佉": "633" } }, "volumeMounts": [ @@ -1026,7 +1030,7 @@ "name": "336", "mountPath": "337", "subPath": "338", - "mountPropagation": "P­蜷ɔ幩šeSvEȤƏ埮pɵ{W", + "mountPropagation": "(ť1ùfŭƽ", "subPathExpr": "339" } ], @@ -1044,9 +1048,9 @@ }, "httpGet": { "path": "343", - "port": -1700828941, + "port": -684167223, "host": "344", - "scheme": "諔迮ƙ", + "scheme": "1b", "httpHeaders": [ { "name": "345", @@ -1058,12 +1062,12 @@ "port": "347", "host": "348" }, - "initialDelaySeconds": -969533986, - "timeoutSeconds": 299741709, - "periodSeconds": -488127393, - "successThreshold": 1137109081, - "failureThreshold": -1896415283, - "terminationGracePeriodSeconds": 6618112330449141397 + "initialDelaySeconds": -47594442, + "timeoutSeconds": -2064284357, + "periodSeconds": 725624946, + "successThreshold": -34803208, + "failureThreshold": -313085430, + "terminationGracePeriodSeconds": -7686796864837350582 }, "readinessProbe": { "exec": { @@ -1073,55 +1077,55 @@ }, "httpGet": { "path": "350", - "port": "351", - "host": "352", - "scheme": "ɱďW賁Ě", + "port": 1611386356, + "host": "351", + "scheme": "ɼ搳ǭ濑箨ʨIk(", "httpHeaders": [ { - "name": "353", - "value": "354" + "name": "352", + "value": "353" } ] }, "tcpSocket": { - "port": 1436222565, - "host": "355" + "port": 2115799218, + "host": "354" }, - "initialDelaySeconds": -674445196, - "timeoutSeconds": 1239158543, - "periodSeconds": -543432015, - "successThreshold": -515370067, - "failureThreshold": 2073046460, - "terminationGracePeriodSeconds": 7270263763744228913 + "initialDelaySeconds": 1984241264, + "timeoutSeconds": -758033170, + "periodSeconds": -487434422, + "successThreshold": -370404018, + "failureThreshold": -1844150067, + "terminationGracePeriodSeconds": 1778358283914418699 }, "startupProbe": { "exec": { "command": [ - "356" + "355" ] }, "httpGet": { - "path": "357", - "port": "358", - "host": "359", - "scheme": "XW疪鑳w妕眵", + "path": "356", + "port": "357", + "host": "358", + "scheme": "焬CQm坊柩", "httpHeaders": [ { - "name": "360", - "value": "361" + "name": "359", + "value": "360" } ] }, "tcpSocket": { - "port": 455919108, + "port": "361", "host": "362" }, - "initialDelaySeconds": -832681001, - "timeoutSeconds": 1616390418, - "periodSeconds": -1337533938, - "successThreshold": 1473765654, - "failureThreshold": 252309773, - "terminationGracePeriodSeconds": -8460346884535567850 + "initialDelaySeconds": -135823101, + "timeoutSeconds": -1345219897, + "periodSeconds": 1141812777, + "successThreshold": -1830926023, + "failureThreshold": -320410537, + "terminationGracePeriodSeconds": 8766190045617353809 }, "lifecycle": { "postStart": { @@ -1132,18 +1136,18 @@ }, "httpGet": { "path": "364", - "port": -869776221, - "host": "365", - "scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "port": "365", + "host": "366", + "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": "368", + "port": 1333166203, "host": "369" } }, @@ -1155,9 +1159,9 @@ }, "httpGet": { "path": "371", - "port": -1917609921, + "port": 758604605, "host": "372", - "scheme": "耗", + "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", "httpHeaders": [ { "name": "373", @@ -1172,15 +1176,15 @@ } }, "terminationMessagePath": "377", - "terminationMessagePolicy": "ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[", - "imagePullPolicy": "灲閈誹ʅ蕉ɼ搳", + "terminationMessagePolicy": "釼aTGÒ鵌", + "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ", "securityContext": { "capabilities": { "add": [ - "箨ʨIk(dŊiɢ" + "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á" ], "drop": [ - "Į蛋I滞廬耐鷞焬CQ" + "tl敷斢杧ż鯀" ] }, "privileged": true, @@ -1194,29 +1198,27 @@ "gmsaCredentialSpecName": "382", "gmsaCredentialSpec": "383", "runAsUserName": "384", - "hostProcess": false + "hostProcess": true }, - "runAsUser": -506227444233847191, - "runAsGroup": -583355774536171734, - "runAsNonRoot": false, + "runAsUser": -3379825899840103887, + "runAsGroup": -6950412587983829837, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "EĨǔvÄÚ×p", + "allowPrivilegeEscalation": true, + "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", "seccompProfile": { - "type": "m罂o3ǰ廋i乳'ȘUɻ", + "type": "咑耖p^鏋蛹Ƚȿ醏g", "localhostProfile": "385" } }, - "stdin": true, - "stdinOnce": true, "tty": true, "targetContainerName": "386" } ], - "restartPolicy": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", - "terminationGracePeriodSeconds": -3877666641335425693, - "activeDeadlineSeconds": -2391833818948531474, - "dnsPolicy": "Ƒ[澔", + "restartPolicy": "飂廤Ƌʙcx", + "terminationGracePeriodSeconds": -4767735291842597991, + "activeDeadlineSeconds": -7888525810745339742, + "dnsPolicy": "h`職铳s44矕Ƈ", "nodeSelector": { "387": "388" }, @@ -1224,7 +1226,7 @@ "serviceAccount": "390", "automountServiceAccountToken": true, "nodeName": "391", - "hostPID": true, + "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { @@ -1239,22 +1241,22 @@ "runAsUserName": "398", "hostProcess": false }, - "runAsUser": 7177254483209867257, - "runAsGroup": 7721939829013914482, - "runAsNonRoot": true, + "runAsUser": 5422399684456852309, + "runAsGroup": -4636770370363077377, + "runAsNonRoot": false, "supplementalGroups": [ - -5080569150241191388 + -5728960352366086876 ], - "fsGroup": -6486306216295496187, + "fsGroup": 1712752437570220896, "sysctls": [ { "name": "399", "value": "400" } ], - "fsGroupChangePolicy": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "崖S«V¯Á", + "type": "#", "localhostProfile": "401" } }, @@ -1273,7 +1275,7 @@ "matchExpressions": [ { "key": "405", - "operator": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o", + "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3", "values": [ "406" ] @@ -1282,7 +1284,7 @@ "matchFields": [ { "key": "407", - "operator": "旹翃ɾ氒ĺʈʫ", + "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", "values": [ "408" ] @@ -1293,12 +1295,12 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -855547676, + "weight": 687140791, "preference": { "matchExpressions": [ { "key": "409", - "operator": "F豎穜姰l咑耖p^鏋蛹Ƚȿ", + "operator": "ļǹʅŚO虀", "values": [ "410" ] @@ -1307,7 +1309,7 @@ "matchFields": [ { "key": "411", - "operator": "ò", + "operator": "ɴĶ烷Ľthp像-觗裓6Ř", "values": [ "412" ] @@ -1322,14 +1324,14 @@ { "labelSelector": { "matchLabels": { - "4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP" + "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" }, "matchExpressions": [ { - "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", - "operator": "NotIn", + "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", + "operator": "In", "values": [ - "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" + "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] @@ -1340,11 +1342,11 @@ "topologyKey": "420", "namespaceSelector": { "matchLabels": { - "3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O" + "4eq5": "" }, "matchExpressions": [ { - "key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a", + "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", "operator": "Exists" } ] @@ -1353,18 +1355,18 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 957174721, + "weight": 888976270, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C" + "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" }, "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", + "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0", + "operator": "In", "values": [ - "N7_B_r" + "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ" ] } ] @@ -1375,12 +1377,15 @@ "topologyKey": "434", "namespaceSelector": { "matchLabels": { - "O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr" + "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R" }, "matchExpressions": [ { - "key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T", - "operator": "Exists" + "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V", + "operator": "In", + "values": [ + "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7" + ] } ] } @@ -1393,15 +1398,12 @@ { "labelSelector": { "matchLabels": { - "ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV" + "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr" }, "matchExpressions": [ { - "key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W", - "operator": "In", - "values": [ - "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx" - ] + "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", + "operator": "Exists" } ] }, @@ -1411,14 +1413,14 @@ "topologyKey": "448", "namespaceSelector": { "matchLabels": { - "2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J" + "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" }, "matchExpressions": [ { - "key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo", - "operator": "NotIn", + "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", + "operator": "In", "values": [ - "0--_qv4--_.6_N_9X-B.s8.B" + "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" ] } ] @@ -1427,15 +1429,15 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1832836223, + "weight": -1668452490, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "BQ.9-_.m7-Q____vSW_4-__h": "w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj" + "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t" }, "matchExpressions": [ { - "key": "dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A", + "key": "6W74-R_Z_Tz.a3_Ho", "operator": "Exists" } ] @@ -1446,14 +1448,14 @@ "topologyKey": "462", "namespaceSelector": { "matchLabels": { - "8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W", - "operator": "NotIn", + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", "values": [ - "z87_2---2.E.p9-.-3.__a.bl_--..-A" + "x3___-..f5-6x-_-o_6O_If-5_-_.F" ] } ] @@ -1467,10 +1469,10 @@ "tolerations": [ { "key": "470", - "operator": "Ü", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", "value": "471", - "effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ", - "tolerationSeconds": 8594241010639209901 + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ @@ -1482,7 +1484,7 @@ } ], "priorityClassName": "474", - "priority": 878153992, + "priority": 743241089, "dnsConfig": { "nameservers": [ "475" @@ -1499,48 +1501,51 @@ }, "readinessGates": [ { - "conditionType": "=ȑ-A敲ʉ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], "runtimeClassName": "479", "enableServiceLinks": false, - "preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ": "283" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -702578810, + "maxSkew": -174245111, "topologyKey": "480", - "whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "N-_.F": "09z2" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0", - "operator": "DoesNotExist" + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", + "values": [ + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } } }, "status": { - "replicas": 432535745, - "fullyLabeledReplicas": 2073220944, - "readyReplicas": -141868138, - "availableReplicas": -1324418171, - "observedGeneration": -5431516755862952643, + "replicas": 1205668420, + "fullyLabeledReplicas": -1754098513, + "readyReplicas": -877836536, + "availableReplicas": 138992869, + "observedGeneration": -7169014491472696647, "conditions": [ { - "type": "ƻ舁Ȁ贠ȇö匉a揘O 籇", - "status": "楅©Ǫ壿/š^劶äɲ泒欞尟燬Ǻ媳ɦ", - "lastTransitionTime": "2169-06-15T23:50:17Z", + "type": "零șPî壣V礆á¤拈tY圻醆锛[", + "status": "嬜Š\u0026?鳢.ǀŭ瘢颦z疵", + "lastTransitionTime": "2455-07-16T22:37:15Z", "reason": "487", "message": "488" } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.pb index 411dd51bc59..b4b86630de0 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml index 91ba5964671..d6bb0f5b883 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml @@ -67,32 +67,32 @@ spec: selfLink: "25" uid: '*齧獚敆Ȏțêɘ' spec: - activeDeadlineSeconds: -2391833818948531474 + activeDeadlineSeconds: -7888525810745339742 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - key: "409" - operator: F豎穜姰l咑耖p^鏋蛹Ƚȿ + operator: ļǹʅŚO虀 values: - "410" matchFields: - key: "411" - operator: ò + operator: ɴĶ烷Ľthp像-觗裓6Ř values: - "412" - weight: -855547676 + weight: 687140791 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: "405" - operator: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o + operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3 values: - "406" matchFields: - key: "407" - operator: 旹翃ɾ氒ĺʈʫ + operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿' values: - "408" podAffinity: @@ -100,37 +100,39 @@ spec: - podAffinityTerm: 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 + - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0 + operator: In values: - - N7_B_r + - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ matchLabels: - o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C + z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n namespaceSelector: matchExpressions: - - key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T - operator: Exists + - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V + operator: In + values: + - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7 matchLabels: - O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr + vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R namespaces: - "433" topologyKey: "434" - weight: 957174721 + weight: 888976270 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v - operator: NotIn + - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o + operator: In values: - - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc + - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - 4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP + "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 namespaceSelector: matchExpressions: - - key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a + - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z operator: Exists matchLabels: - 3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O + 4eq5: "" namespaces: - "419" topologyKey: "420" @@ -139,174 +141,173 @@ spec: - podAffinityTerm: labelSelector: matchExpressions: - - key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A + - key: 6W74-R_Z_Tz.a3_Ho operator: Exists matchLabels: - BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj + n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t namespaceSelector: matchExpressions: - - key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W - operator: NotIn + - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV + operator: In values: - - z87_2---2.E.p9-.-3.__a.bl_--..-A + - x3___-..f5-6x-_-o_6O_If-5_-_.F matchLabels: - 8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO + h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i namespaces: - "461" topologyKey: "462" - weight: -1832836223 + weight: -1668452490 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W - operator: In - values: - - U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx + - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8 + operator: Exists matchLabels: - ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV + 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr namespaceSelector: matchExpressions: - - key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo - operator: NotIn + - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s + operator: In values: - - 0--_qv4--_.6_N_9X-B.s8.B + - V._qN__A_f_-B3_U__L.KH6K.RwsfI2 matchLabels: - 2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J + u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E namespaces: - "447" topologyKey: "448" automountServiceAccountToken: true containers: - args: - - "248" + - "250" command: - - "247" + - "249" env: - - name: "255" - value: "256" + - name: "257" + value: "258" valueFrom: configMapKeyRef: - key: "262" - name: "261" - optional: false - fieldRef: - apiVersion: "257" - fieldPath: "258" - resourceFieldRef: - containerName: "259" - divisor: "800" - resource: "260" - secretKeyRef: key: "264" name: "263" optional: true + fieldRef: + apiVersion: "259" + fieldPath: "260" + resourceFieldRef: + containerName: "261" + divisor: "730" + resource: "262" + secretKeyRef: + key: "266" + name: "265" + optional: false envFrom: - configMapRef: - name: "253" - optional: false - prefix: "252" - secretRef: - name: "254" + name: "255" optional: true - image: "246" - imagePullPolicy: '&皥贸碔lNKƙ順\E¦队偯' + prefix: "254" + secretRef: + name: "256" + optional: false + image: "248" + imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮 lifecycle: postStart: exec: command: - - "291" + - "294" httpGet: - host: "294" + host: "296" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" + - name: "297" + value: "298" + path: "295" + port: 50696420 + scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ tcpSocket: - host: "298" - port: "297" + host: "299" + port: 802134138 preStop: exec: command: - - "299" + - "300" httpGet: host: "302" httpHeaders: - name: "303" value: "304" - path: "300" - port: "301" - scheme: 跩aŕ翑 + path: "301" + port: -126958936 + scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 tcpSocket: host: "306" port: "305" livenessProbe: exec: command: - - "271" - failureThreshold: -979584143 + - "273" + failureThreshold: -787458357 httpGet: - host: "273" + host: "275" httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 972978563 - scheme: ȨŮ+朷Ǝ膯 - initialDelaySeconds: -249989919 - periodSeconds: -602419938 - successThreshold: 1040396664 + - name: "276" + value: "277" + path: "274" + port: 14304392 + scheme: 寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥贸碔 + initialDelaySeconds: -1296830577 + periodSeconds: 1174240097 + successThreshold: -1928016742 tcpSocket: - host: "276" - port: -1506633471 - terminationGracePeriodSeconds: -7510389757339505131 - timeoutSeconds: -171684192 - name: "245" + host: "279" + port: "278" + terminationGracePeriodSeconds: 342609112008782456 + timeoutSeconds: -1314967760 + name: "247" ports: - - containerPort: -2717401 - hostIP: "251" - hostPort: -1905643191 - name: "250" - protocol: ɳɷ9Ì + - containerPort: -805795167 + hostIP: "253" + hostPort: -1643733106 + name: "252" + protocol: 8Ƥ熪军g>郵[+ readinessProbe: exec: command: - - "277" - failureThreshold: -940514142 + - "280" + failureThreshold: 1907998540 httpGet: - host: "279" + host: "282" httpHeaders: - - name: "280" - value: "281" - path: "278" - port: -1538905728 - scheme: ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢xɮ - initialDelaySeconds: -1817291584 - periodSeconds: 582041100 - successThreshold: 509188266 + - name: "283" + value: "284" + path: "281" + port: -528664199 + scheme: 徥淳4揻-$ɽ丟 + initialDelaySeconds: 468369166 + periodSeconds: 1492642476 + successThreshold: -367153801 tcpSocket: - host: "283" - port: "282" - terminationGracePeriodSeconds: 6764431850409848860 - timeoutSeconds: 1224868165 + host: "286" + port: "285" + terminationGracePeriodSeconds: 8959437085840841638 + timeoutSeconds: 1909548849 resources: limits: - pw: "934" + 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq: "431" requests: - 輓Ɔȓ蹣ɐǛv+8: "375" + ē鐭#嬀ơŸ8T 苧yñKJɐ: "894" securityContext: allowPrivilegeEscalation: true capabilities: add: - - 徥淳4揻-$ɽ丟 + - 嘢4ʗN,丽饾| 鞤ɱďW賁 drop: - - "" - privileged: false - procMount: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - readOnlyRootFilesystem: false - runAsGroup: 8194791334069427324 + - ɭɪǹ0衷, + privileged: true + procMount: w妕眵笭/9崍h趭(娕 + readOnlyRootFilesystem: true + runAsGroup: -7146044409185304665 runAsNonRoot: false - runAsUser: -816831389119959689 + runAsUser: -1119183212148951030 seLinuxOptions: level: "311" role: "309" @@ -314,46 +315,45 @@ spec: user: "308" seccompProfile: localhostProfile: "315" - type: ȱğ_<ǬëJ橈'琕鶫:顇ə + type: E增猍 windowsOptions: gmsaCredentialSpec: "313" gmsaCredentialSpecName: "312" - hostProcess: false + hostProcess: true runAsUserName: "314" startupProbe: exec: command: - - "284" - failureThreshold: 133009177 + - "287" + failureThreshold: -385597677 httpGet: - host: "286" - httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -331594625 - scheme: lu|榝$î. - initialDelaySeconds: -1505188927 - periodSeconds: 2083727489 - successThreshold: 486365838 - tcpSocket: host: "290" + httpHeaders: + - name: "291" + value: "292" + path: "288" port: "289" - terminationGracePeriodSeconds: -6177393256425700216 - timeoutSeconds: -2133054549 - stdinOnce: true + scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ + initialDelaySeconds: -1971421078 + periodSeconds: -1730959016 + successThreshold: 1272940694 + tcpSocket: + host: "293" + port: 458427807 + terminationGracePeriodSeconds: 1813049096022212391 + timeoutSeconds: 1905181464 terminationMessagePath: "307" - tty: true + terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "272" + name: "271" volumeMounts: - - mountPath: "266" - mountPropagation: 颐o - name: "265" - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "268" + mountPropagation: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 + name: "267" + subPath: "269" + subPathExpr: "270" + workingDir: "251" dnsConfig: nameservers: - "475" @@ -362,7 +362,7 @@ spec: value: "478" searches: - "476" - dnsPolicy: Ƒ[澔 + dnsPolicy: h`職铳s44矕Ƈ enableServiceLinks: false ephemeralContainers: - args: @@ -382,7 +382,7 @@ spec: fieldPath: "329" resourceFieldRef: containerName: "330" - divisor: "832" + divisor: "179" resource: "331" secretKeyRef: key: "335" @@ -391,29 +391,29 @@ spec: envFrom: - configMapRef: name: "324" - optional: false + optional: true prefix: "323" secretRef: name: "325" - optional: false + optional: true image: "317" - imagePullPolicy: 灲閈誹ʅ蕉ɼ搳 + imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ lifecycle: postStart: exec: command: - "363" httpGet: - host: "365" + host: "366" httpHeaders: - - name: "366" - value: "367" + - name: "367" + value: "368" path: "364" - port: -869776221 - scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + port: "365" + scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj' tcpSocket: host: "369" - port: "368" + port: 1333166203 preStop: exec: command: @@ -424,8 +424,8 @@ spec: - name: "373" value: "374" path: "371" - port: -1917609921 - scheme: 耗 + port: 758604605 + scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 tcpSocket: host: "376" port: "375" @@ -433,69 +433,69 @@ spec: exec: command: - "342" - failureThreshold: -1896415283 + failureThreshold: -313085430 httpGet: host: "344" httpHeaders: - name: "345" value: "346" path: "343" - port: -1700828941 - scheme: 諔迮ƙ - initialDelaySeconds: -969533986 - periodSeconds: -488127393 - successThreshold: 1137109081 + port: -684167223 + scheme: 1b + initialDelaySeconds: -47594442 + periodSeconds: 725624946 + successThreshold: -34803208 tcpSocket: host: "348" port: "347" - terminationGracePeriodSeconds: 6618112330449141397 - timeoutSeconds: 299741709 + terminationGracePeriodSeconds: -7686796864837350582 + timeoutSeconds: -2064284357 name: "316" ports: - - containerPort: 865289071 + - containerPort: -1320027474 hostIP: "322" - hostPort: 1504385614 + hostPort: 601942575 name: "321" - protocol: iɥ嵐sC8 + protocol: Ƶf readinessProbe: exec: command: - "349" - failureThreshold: 2073046460 + failureThreshold: -1844150067 httpGet: - host: "352" + host: "351" httpHeaders: - - name: "353" - value: "354" + - name: "352" + value: "353" path: "350" - port: "351" - scheme: ɱďW賁Ě - initialDelaySeconds: -674445196 - periodSeconds: -543432015 - successThreshold: -515370067 + port: 1611386356 + scheme: ɼ搳ǭ濑箨ʨIk( + initialDelaySeconds: 1984241264 + periodSeconds: -487434422 + successThreshold: -370404018 tcpSocket: - host: "355" - port: 1436222565 - terminationGracePeriodSeconds: 7270263763744228913 - timeoutSeconds: 1239158543 + host: "354" + port: 2115799218 + terminationGracePeriodSeconds: 1778358283914418699 + timeoutSeconds: -758033170 resources: limits: - h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻: "127" + 阎l: "464" requests: - C"6x$1s: "463" + '''佉': "633" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 箨ʨIk(dŊiɢ + - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á drop: - - Į蛋I滞廬耐鷞焬CQ + - tl敷斢杧ż鯀 privileged: true - procMount: EĨǔvÄÚ×p + procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰 readOnlyRootFilesystem: false - runAsGroup: -583355774536171734 - runAsNonRoot: false - runAsUser: -506227444233847191 + runAsGroup: -6950412587983829837 + runAsNonRoot: true + runAsUser: -3379825899840103887 seLinuxOptions: level: "381" role: "379" @@ -503,45 +503,43 @@ spec: user: "378" seccompProfile: localhostProfile: "385" - type: m罂o3ǰ廋i乳'ȘUɻ + type: 咑耖p^鏋蛹Ƚȿ醏g windowsOptions: gmsaCredentialSpec: "383" gmsaCredentialSpecName: "382" - hostProcess: false + hostProcess: true runAsUserName: "384" startupProbe: exec: command: - - "356" - failureThreshold: 252309773 + - "355" + failureThreshold: -320410537 httpGet: - host: "359" + host: "358" httpHeaders: - - name: "360" - value: "361" - path: "357" - port: "358" - scheme: XW疪鑳w妕眵 - initialDelaySeconds: -832681001 - periodSeconds: -1337533938 - successThreshold: 1473765654 + - name: "359" + value: "360" + path: "356" + port: "357" + scheme: 焬CQm坊柩 + initialDelaySeconds: -135823101 + periodSeconds: 1141812777 + successThreshold: -1830926023 tcpSocket: host: "362" - port: 455919108 - terminationGracePeriodSeconds: -8460346884535567850 - timeoutSeconds: 1616390418 - stdin: true - stdinOnce: true + port: "361" + terminationGracePeriodSeconds: 8766190045617353809 + timeoutSeconds: -1345219897 targetContainerName: "386" terminationMessagePath: "377" - terminationMessagePolicy: ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[ + terminationMessagePolicy: 釼aTGÒ鵌 tty: true volumeDevices: - devicePath: "341" name: "340" volumeMounts: - mountPath: "337" - mountPropagation: P­蜷ɔ幩šeSvEȤƏ埮pɵ{W + mountPropagation: (ť1ùfŭƽ name: "336" subPath: "338" subPathExpr: "339" @@ -550,209 +548,208 @@ spec: - hostnames: - "473" ip: "472" - hostPID: true + hostIPC: true hostname: "403" imagePullSecrets: - name: "402" initContainers: - args: - - "177" + - "180" command: - - "176" + - "179" env: - - name: "184" - value: "185" + - name: "187" + value: "188" valueFrom: configMapKeyRef: - key: "191" - name: "190" - optional: true + key: "194" + name: "193" + optional: false fieldRef: - apiVersion: "186" - fieldPath: "187" + apiVersion: "189" + fieldPath: "190" resourceFieldRef: - containerName: "188" - divisor: "117" - resource: "189" + containerName: "191" + divisor: "421" + resource: "192" secretKeyRef: - key: "193" - name: "192" + key: "196" + name: "195" optional: false envFrom: - configMapRef: - name: "182" - optional: false - prefix: "181" - secretRef: - name: "183" + name: "185" optional: true - image: "175" - imagePullPolicy: vt莭琽§ć\ ïì« + prefix: "184" + secretRef: + name: "186" + optional: true + image: "178" + imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p lifecycle: postStart: exec: command: - - "221" + - "223" httpGet: - host: "224" + host: "225" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: LLȊɞ-uƻ悖ȩ0Ƹ[Ęİ榌 + - name: "226" + value: "227" + path: "224" + port: 1422435836 + scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ' tcpSocket: - host: "228" - port: "227" + host: "229" + port: "228" preStop: exec: command: - - "229" + - "230" httpGet: - host: "232" + host: "233" httpHeaders: - - name: "233" - value: "234" - path: "230" - port: "231" - scheme: 懔%熷谟 + - name: "234" + value: "235" + path: "231" + port: "232" + scheme: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 tcpSocket: - host: "235" - port: -1920661051 + host: "237" + port: "236" livenessProbe: exec: command: - - "200" - failureThreshold: -1273036797 + - "203" + failureThreshold: 208045354 httpGet: - host: "202" - httpHeaders: - - name: "203" - value: "204" - path: "201" - port: 1923650413 - scheme: I粛E煹ǐƲE'iþŹʣy - initialDelaySeconds: -1961863213 - periodSeconds: -1045704964 - successThreshold: 1089147958 - tcpSocket: host: "206" + httpHeaders: + - name: "207" + value: "208" + path: "204" port: "205" - terminationGracePeriodSeconds: 2787866729016106782 - timeoutSeconds: -103588794 - name: "174" + scheme: '{Ⱦdz@' + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "209" + port: 406308963 + terminationGracePeriodSeconds: -1159835821828680707 + timeoutSeconds: 2026784878 + name: "177" ports: - - containerPort: 32378685 - hostIP: "180" - hostPort: -1872407654 - name: "179" - protocol: ş蝿ɖȃ賲鐅臬 + - containerPort: -614785801 + hostIP: "183" + hostPort: 118729776 + name: "182" readinessProbe: exec: command: - - "207" - failureThreshold: -495373547 + - "210" + failureThreshold: -820458255 httpGet: - host: "209" + host: "212" httpHeaders: - - name: "210" - value: "211" - path: "208" - port: 859639931 - scheme: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF - initialDelaySeconds: 1380874688 - periodSeconds: -674091068 - successThreshold: -2061678740 + - name: "213" + value: "214" + path: "211" + port: 576428641 + scheme: ƯĖ漘Z剚敍0)鈼¬麄p呝T + initialDelaySeconds: -1710454086 + periodSeconds: 1285027515 + successThreshold: 111876618 tcpSocket: - host: "213" - port: "212" - terminationGracePeriodSeconds: -703684984628150402 - timeoutSeconds: -1018741501 + host: "215" + port: -1891134534 + terminationGracePeriodSeconds: -4763823273964408583 + timeoutSeconds: 192146389 resources: limits: - ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN: "197" + _瀹鞎sn芞QÄȻȊ+?: "193" requests: - 軶ǃ*ʙ嫙&蒒5靇: "813" + '@Ȗs«öʮĀ<é瞾': "51" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F + - sĨɆâĺɗŹ倗S晒嶗U drop: - - 剂讼ɓȌʟni酛3Ɓ - privileged: false - procMount: 鸖ɱJȉ罴ņ螡źȰ - readOnlyRootFilesystem: true - runAsGroup: 708875421817317137 + - _ƮA攤/ɸɎ R§耶FfBl + privileged: true + procMount: 娝嘚庎D}埽uʎȺ眖R#yV' + readOnlyRootFilesystem: false + runAsGroup: -7106791338981314910 runAsNonRoot: true - runAsUser: 4530581071337252406 + runAsUser: 3850139838566476547 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "242" + role: "240" + type: "241" + user: "239" seccompProfile: - localhostProfile: "244" - type: $矡ȶ + localhostProfile: "246" + type: Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "244" + gmsaCredentialSpecName: "243" + hostProcess: true + runAsUserName: "245" startupProbe: exec: command: - - "214" - failureThreshold: -1681029343 + - "216" + failureThreshold: 105707873 httpGet: - host: "216" + host: "218" httpHeaders: - - name: "217" - value: "218" - path: "215" - port: 1255169591 - scheme: 褎weLJèux - initialDelaySeconds: -1133499416 - periodSeconds: 1157241180 - successThreshold: -1810997540 + - name: "219" + value: "220" + path: "217" + port: -122979840 + scheme: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 + initialDelaySeconds: 2045456786 + periodSeconds: -1537700150 + successThreshold: -1815868713 tcpSocket: - host: "220" - port: "219" - terminationGracePeriodSeconds: -6826008110504741173 - timeoutSeconds: 486195690 - stdinOnce: true - terminationMessagePath: "236" - terminationMessagePolicy: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3 + host: "222" + port: "221" + terminationGracePeriodSeconds: -810905585400838367 + timeoutSeconds: 988932710 + stdin: true + terminationMessagePath: "238" + terminationMessagePolicy: ʤî萨zvt莭 tty: true volumeDevices: - - devicePath: "199" - name: "198" + - devicePath: "202" + name: "201" volumeMounts: - - mountPath: "195" - mountPropagation: ǹ_Áȉ彂Ŵ廷s - name: "194" - subPath: "196" - subPathExpr: "197" - workingDir: "178" + - mountPath: "198" + mountPropagation: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + name: "197" + subPath: "199" + subPathExpr: "200" + workingDir: "181" nodeName: "391" nodeSelector: "387": "388" overhead: - <ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283" - preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa - priority: 878153992 + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 priorityClassName: "474" readinessGates: - - conditionType: =ȑ-A敲ʉ - restartPolicy: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 飂廤Ƌʙcx runtimeClassName: "479" schedulerName: "469" securityContext: - fsGroup: -6486306216295496187 - fsGroupChangePolicy: ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠 - runAsGroup: 7721939829013914482 - runAsNonRoot: true - runAsUser: 7177254483209867257 + fsGroup: 1712752437570220896 + fsGroupChangePolicy: "" + runAsGroup: -4636770370363077377 + runAsNonRoot: false + runAsUser: 5422399684456852309 seLinuxOptions: level: "395" role: "393" @@ -760,9 +757,9 @@ spec: user: "392" seccompProfile: localhostProfile: "401" - type: 崖S«V¯Á + type: '#' supplementalGroups: - - -5080569150241191388 + - -5728960352366086876 sysctls: - name: "399" value: "400" @@ -773,26 +770,28 @@ spec: runAsUserName: "398" serviceAccount: "390" serviceAccountName: "389" - setHostnameAsFQDN: false + setHostnameAsFQDN: true shareProcessNamespace: true subdomain: "404" - terminationGracePeriodSeconds: -3877666641335425693 + terminationGracePeriodSeconds: -4767735291842597991 tolerations: - - effect: 貛香"砻B鷋RȽXv*!ɝ茀Ǩ + - effect: '慰x:' key: "470" - operator: Ü - tolerationSeconds: 8594241010639209901 + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 value: "471" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0 - operator: DoesNotExist + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In + values: + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - N-_.F: 09z2 - maxSkew: -702578810 + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 topologyKey: "480" - whenUnsatisfiable: Ž氮怉ƥ;"薑Ȣ#闬輙怀¹bCũw + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "45" @@ -892,6 +891,10 @@ spec: apiGroup: "171" kind: "172" name: "173" + dataSourceRef: + apiGroup: "174" + kind: "175" + name: "176" resources: limits: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ: "707" @@ -1045,14 +1048,14 @@ spec: storagePolicyName: "101" volumePath: "99" status: - availableReplicas: -1324418171 + availableReplicas: 138992869 conditions: - - lastTransitionTime: "2169-06-15T23:50:17Z" + - lastTransitionTime: "2455-07-16T22:37:15Z" message: "488" reason: "487" - status: 楅©Ǫ壿/š^劶äɲ泒欞尟燬Ǻ媳ɦ - type: ƻ舁Ȁ贠ȇö匉a揘O 籇 - fullyLabeledReplicas: 2073220944 - observedGeneration: -5431516755862952643 - readyReplicas: -141868138 - replicas: 432535745 + status: 嬜Š&?鳢.ǀŭ瘢颦z疵 + type: 零șPî壣V礆á¤拈tY圻醆锛[ + fullyLabeledReplicas: -1754098513 + observedGeneration: -7169014491472696647 + readyReplicas: -877836536 + replicas: 1205668420 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 c463c3f4c40..d3fb9f05c71 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 @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,59 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": -1981710234, - "containerPort": -1109619518, - "protocol": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "hostIP": "184" + "name": "186", + "hostPort": 852780575, + "containerPort": -1252938503, + "protocol": "Opwǩ曬逴褜1ØœȠƬQg鄠", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true + "name": "190", + "optional": false } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "617" + "containerName": "195", + "resource": "196", + "divisor": "139" }, "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": false + "name": "197", + "key": "198", + "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", + "name": "199", + "key": "200", "optional": false } } @@ -510,255 +515,254 @@ ], "resources": { "limits": { - "朷Ǝ膯ljVX1虊谇": "279" + "LĹ]佱¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊": "807" }, "requests": { - "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀": "918" + "嚧ʣq埄": "936" } }, "volumeMounts": [ { - "name": "198", - "mountPath": "199", - "subPath": "200", - "mountPropagation": "ó藢xɮĵȑ6L*", - "subPathExpr": "201" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "202", - "devicePath": "203" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "204" + "207" ] }, "httpGet": { - "path": "205", - "port": "206", - "host": "207", - "scheme": "fʀļ腩墺Ò媁荭gw忊", + "path": "208", + "port": "209", + "host": "210", + "scheme": "u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ", "httpHeaders": [ { - "name": "208", - "value": "209" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -1761398388, - "host": "210" + "port": 1714588921, + "host": "213" }, - "initialDelaySeconds": -1532958330, - "timeoutSeconds": -438588982, - "periodSeconds": 1004325340, - "successThreshold": -1313320434, - "failureThreshold": 14304392, - "terminationGracePeriodSeconds": 2001337664780390084 + "initialDelaySeconds": -1246371817, + "timeoutSeconds": 617318981, + "periodSeconds": 432291364, + "successThreshold": 676578360, + "failureThreshold": -552281772, + "terminationGracePeriodSeconds": -2910346974754087949 }, "readinessProbe": { "exec": { "command": [ - "211" + "214" ] }, "httpGet": { - "path": "212", - "port": -614161319, - "host": "213", - "scheme": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "path": "215", + "port": 656200799, + "host": "216", "httpHeaders": [ { - "name": "214", - "value": "215" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": "216", - "host": "217" + "port": "219", + "host": "220" }, - "initialDelaySeconds": 233282513, - "timeoutSeconds": -518330919, - "periodSeconds": 1313273370, - "successThreshold": -1296830577, - "failureThreshold": -1314967760, - "terminationGracePeriodSeconds": 5043322816247327651 + "initialDelaySeconds": -2165496, + "timeoutSeconds": -1778952574, + "periodSeconds": 1386255869, + "successThreshold": -778272981, + "failureThreshold": 2056774277, + "terminationGracePeriodSeconds": -9219895030215397584 }, "startupProbe": { "exec": { "command": [ - "218" + "221" ] }, "httpGet": { - "path": "219", - "port": "220", - "host": "221", - "scheme": "队偯J僳徥淳4揻", + "path": "222", + "port": "223", + "host": "224", + "scheme": "鬶l獕;跣Hǝcw", "httpHeaders": [ { - "name": "222", - "value": "223" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": 878005329, - "host": "224" + "port": -374766088, + "host": "227" }, - "initialDelaySeconds": -1244119841, - "timeoutSeconds": 1235694147, - "periodSeconds": 348370746, - "successThreshold": 468369166, - "failureThreshold": 1909548849, - "terminationGracePeriodSeconds": 6410850623145248813 + "initialDelaySeconds": -736151561, + "timeoutSeconds": -1515369804, + "periodSeconds": -1856061695, + "successThreshold": 1868683352, + "failureThreshold": -1137436579, + "terminationGracePeriodSeconds": 8876559635423161004 }, "lifecycle": { "postStart": { "exec": { "command": [ - "225" + "228" ] }, "httpGet": { - "path": "226", - "port": "227", - "host": "228", - "scheme": "鰔澝qV訆ƎżŧL²sNƗ¸", + "path": "229", + "port": "230", + "host": "231", + "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", "httpHeaders": [ { - "name": "229", - "value": "230" + "name": "232", + "value": "233" } ] }, "tcpSocket": { - "port": "231", - "host": "232" + "port": 1993268896, + "host": "234" } }, "preStop": { "exec": { "command": [ - "233" + "235" ] }, "httpGet": { - "path": "234", - "port": "235", - "host": "236", - "scheme": "δ摖", + "path": "236", + "port": "237", + "host": "238", + "scheme": "ƿ頀\"冓鍓贯澔 ", "httpHeaders": [ { - "name": "237", - "value": "238" + "name": "239", + "value": "240" } ] }, "tcpSocket": { - "port": "239", - "host": "240" + "port": "241", + "host": "242" } } }, - "terminationMessagePath": "241", - "terminationMessagePolicy": "_\u003cǬëJ橈'琕鶫:顇ə娯Ȱ", - "imagePullPolicy": "ǵɐ鰥Z", + "terminationMessagePath": "243", + "terminationMessagePolicy": "6Ɖ飴ɎiǨź'", + "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ", "securityContext": { "capabilities": { "add": [ - "DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ" + ";Nŕ璻Jih亏yƕ丆録²Ŏ" ], "drop": [ - "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6" + "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "242", - "role": "243", - "type": "244", - "level": "245" + "user": "244", + "role": "245", + "type": "246", + "level": "247" }, "windowsOptions": { - "gmsaCredentialSpecName": "246", - "gmsaCredentialSpec": "247", - "runAsUserName": "248", + "gmsaCredentialSpecName": "248", + "gmsaCredentialSpec": "249", + "runAsUserName": "250", "hostProcess": true }, - "runAsUser": -7299434051955863644, - "runAsGroup": 4041264710404335706, - "runAsNonRoot": false, + "runAsUser": 4041264710404335706, + "runAsGroup": 6453802934472477147, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ȹ均i绝5哇芆斩ìh4Ɋ", + "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ", "seccompProfile": { - "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "localhostProfile": "249" + "type": "V擭銆j", + "localhostProfile": "251" } } } ], "containers": [ { - "name": "250", - "image": "251", + "name": "252", + "image": "253", "command": [ - "252" + "254" ], "args": [ - "253" + "255" ], - "workingDir": "254", + "workingDir": "256", "ports": [ { - "name": "255", - "hostPort": 1540899353, - "containerPort": -1330095135, - "protocol": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", - "hostIP": "256" + "name": "257", + "hostPort": -1408385387, + "containerPort": -1225881740, + "protocol": "撑¼蠾8餑噭", + "hostIP": "258" } ], "envFrom": [ { - "prefix": "257", + "prefix": "259", "configMapRef": { - "name": "258", - "optional": false + "name": "260", + "optional": true }, "secretRef": { - "name": "259", + "name": "261", "optional": false } } ], "env": [ { - "name": "260", - "value": "261", + "name": "262", + "value": "263", "valueFrom": { "fieldRef": { - "apiVersion": "262", - "fieldPath": "263" + "apiVersion": "264", + "fieldPath": "265" }, "resourceFieldRef": { - "containerName": "264", - "resource": "265", - "divisor": "293" + "containerName": "266", + "resource": "267", + "divisor": "834" }, "configMapKeyRef": { - "name": "266", - "key": "267", + "name": "268", + "key": "269", "optional": true }, "secretKeyRef": { - "name": "268", - "key": "269", + "name": "270", + "key": "271", "optional": false } } @@ -766,514 +770,512 @@ ], "resources": { "limits": { - "9崍": "210" + "n(fǂǢ曣ŋayåe躒訙Ǫ": "12" }, "requests": { - ")ǂť嗆u8晲T[irȎ3Ĕ\\ɢX鰨松": "775" + "(娕uE增猍": "264" } }, "volumeMounts": [ { - "name": "270", - "readOnly": true, - "mountPath": "271", - "subPath": "272", - "mountPropagation": "ʠɜ瞍阎lğ Ņ", - "subPathExpr": "273" + "name": "272", + "mountPath": "273", + "subPath": "274", + "mountPropagation": "irȎ3Ĕ\\ɢX鰨松", + "subPathExpr": "275" } ], "volumeDevices": [ { - "name": "274", - "devicePath": "275" + "name": "276", + "devicePath": "277" } ], "livenessProbe": { "exec": { "command": [ - "276" + "278" ] }, "httpGet": { - "path": "277", - "port": 1866529638, - "host": "278", - "scheme": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", + "path": "279", + "port": "280", + "host": "281", + "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "282", + "value": "283" } ] }, "tcpSocket": { - "port": 638012651, - "host": "281" + "port": 317211081, + "host": "284" }, - "initialDelaySeconds": -1161185537, - "timeoutSeconds": 1928937303, - "periodSeconds": 1611386356, - "successThreshold": 821341581, - "failureThreshold": 240657401, - "terminationGracePeriodSeconds": 7806703309589874498 + "initialDelaySeconds": -1934305215, + "timeoutSeconds": -655359985, + "periodSeconds": 875971520, + "successThreshold": 161338049, + "failureThreshold": 65094252, + "terminationGracePeriodSeconds": -6831592407095063988 }, "readinessProbe": { "exec": { "command": [ - "282" + "285" ] }, "httpGet": { - "path": "283", - "port": "284", - "host": "285", - "scheme": "Ik(dŊiɢzĮ蛋I", + "path": "286", + "port": -2126891601, + "host": "287", + "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "288", + "value": "289" } ] }, "tcpSocket": { - "port": "288", - "host": "289" + "port": "290", + "host": "291" }, - "initialDelaySeconds": 571693619, - "timeoutSeconds": 1643238856, - "periodSeconds": -2028546276, - "successThreshold": -2128305760, - "failureThreshold": 1605974497, - "terminationGracePeriodSeconds": 2002344837004307079 + "initialDelaySeconds": 1660454722, + "timeoutSeconds": -1317234078, + "periodSeconds": -1347045470, + "successThreshold": 1169580662, + "failureThreshold": 404234347, + "terminationGracePeriodSeconds": 8560122250231719622 }, "startupProbe": { "exec": { "command": [ - "290" + "292" ] }, "httpGet": { - "path": "291", - "port": "292", - "host": "293", - "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", + "path": "293", + "port": "294", + "host": "295", + "scheme": "ǚŜEuEy竬ʆɞ", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": -1894647727, - "host": "296" + "port": "298", + "host": "299" }, - "initialDelaySeconds": 235623869, - "timeoutSeconds": 564558594, - "periodSeconds": -505848936, - "successThreshold": -1819021257, - "failureThreshold": 1447314009, - "terminationGracePeriodSeconds": -7637760856622746738 + "initialDelaySeconds": 336252010, + "timeoutSeconds": 677650619, + "periodSeconds": 930785927, + "successThreshold": 1624098740, + "failureThreshold": 1419787816, + "terminationGracePeriodSeconds": -506227444233847191 }, "lifecycle": { "postStart": { "exec": { "command": [ - "297" + "300" ] }, "httpGet": { - "path": "298", - "port": 466267060, - "host": "299", - "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", + "path": "301", + "port": "302", + "host": "303", + "scheme": "ĝ®EĨǔvÄÚ×p鬷", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "304", + "value": "305" } ] }, "tcpSocket": { - "port": "302", - "host": "303" + "port": 1673908530, + "host": "306" } }, "preStop": { "exec": { "command": [ - "304" + "307" ] }, "httpGet": { - "path": "305", - "port": "306", - "host": "307", - "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", + "path": "308", + "port": "309", + "host": "310", + "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", "httpHeaders": [ { - "name": "308", - "value": "309" + "name": "311", + "value": "312" } ] }, "tcpSocket": { - "port": "310", - "host": "311" + "port": -1912967242, + "host": "313" } } }, - "terminationMessagePath": "312", - "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", - "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", + "terminationMessagePath": "314", + "terminationMessagePolicy": "漤ŗ坟", + "imagePullPolicy": "-紑浘牬釼aTGÒ鵌", "securityContext": { "capabilities": { "add": [ - "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" + "Nh×DJɶ羹ƞʓ%ʝ`ǭ" ], "drop": [ - "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" + "ñ?卶滿筇ȟP:/a" ] }, "privileged": false, "seLinuxOptions": { - "user": "313", - "role": "314", - "type": "315", - "level": "316" + "user": "315", + "role": "316", + "type": "317", + "level": "318" }, "windowsOptions": { - "gmsaCredentialSpecName": "317", - "gmsaCredentialSpec": "318", - "runAsUserName": "319", - "hostProcess": true + "gmsaCredentialSpecName": "319", + "gmsaCredentialSpec": "320", + "runAsUserName": "321", + "hostProcess": false }, - "runAsUser": -1286199491017539507, - "runAsGroup": -6292316479661489180, + "runAsUser": 308757565294839546, + "runAsGroup": 5797412715505520759, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "cx赮ǒđ\u003e*劶?j", + "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", "seccompProfile": { - "type": "ĭ¥#ƱÁR", - "localhostProfile": "320" + "type": "繽敮ǰ詀ǿ忀oɎƺ", + "localhostProfile": "322" } }, - "stdin": true, "tty": true } ], "ephemeralContainers": [ { - "name": "321", - "image": "322", + "name": "323", + "image": "324", "command": [ - "323" + "325" ], "args": [ - "324" + "326" ], - "workingDir": "325", + "workingDir": "327", "ports": [ { - "name": "326", - "hostPort": 2032588794, - "containerPort": -1371690155, - "protocol": "G昧牱fsǕT衩kƒK07曳wœj堑", - "hostIP": "327" + "name": "328", + "hostPort": 788093377, + "containerPort": -557687916, + "protocol": "_敕", + "hostIP": "329" } ], "envFrom": [ { - "prefix": "328", + "prefix": "330", "configMapRef": { - "name": "329", + "name": "331", "optional": true }, "secretRef": { - "name": "330", + "name": "332", "optional": false } } ], "env": [ { - "name": "331", - "value": "332", + "name": "333", + "value": "334", "valueFrom": { "fieldRef": { - "apiVersion": "333", - "fieldPath": "334" + "apiVersion": "335", + "fieldPath": "336" }, "resourceFieldRef": { - "containerName": "335", - "resource": "336", - "divisor": "473" + "containerName": "337", + "resource": "338", + "divisor": "971" }, "configMapKeyRef": { - "name": "337", - "key": "338", - "optional": false - }, - "secretKeyRef": { "name": "339", "key": "340", "optional": true + }, + "secretKeyRef": { + "name": "341", + "key": "342", + "optional": true } } } ], "resources": { "limits": { - "盌3+Œ": "752" + "湷D谹気Ƀ秮òƬɸĻo:{": "523" }, "requests": { - ")Zq=歍þ": "759" + "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929" } }, "volumeMounts": [ { - "name": "341", - "mountPath": "342", - "subPath": "343", - "mountPropagation": "讅缔m葰賦迾娙ƴ4虵p", - "subPathExpr": "344" + "name": "343", + "readOnly": true, + "mountPath": "344", + "subPath": "345", + "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃", + "subPathExpr": "346" } ], "volumeDevices": [ { - "name": "345", - "devicePath": "346" + "name": "347", + "devicePath": "348" } ], "livenessProbe": { "exec": { "command": [ - "347" + "349" ] }, "httpGet": { - "path": "348", - "port": 1034835933, - "host": "349", - "scheme": "O虀^背遻堣灭ƴɦ燻踸陴", + "path": "350", + "port": "351", + "host": "352", + "scheme": "07曳wœj堑ūM鈱ɖ'蠨", "httpHeaders": [ { - "name": "350", - "value": "351" + "name": "353", + "value": "354" } ] }, "tcpSocket": { - "port": -1744546613, - "host": "352" + "port": "355", + "host": "356" }, - "initialDelaySeconds": 650448405, - "timeoutSeconds": 1943254244, - "periodSeconds": -168773629, - "successThreshold": 2068592383, - "failureThreshold": 1566765016, - "terminationGracePeriodSeconds": -1112599546012453731 + "initialDelaySeconds": -242798806, + "timeoutSeconds": -1940800545, + "periodSeconds": 681004793, + "successThreshold": 2002666266, + "failureThreshold": -2033879721, + "terminationGracePeriodSeconds": -4409241678312226730 }, "readinessProbe": { "exec": { "command": [ - "353" + "357" ] }, "httpGet": { - "path": "354", - "port": "355", - "host": "356", - "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", + "path": "358", + "port": 279062028, + "host": "359", + "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": -943058206, + "host": "362" }, - "initialDelaySeconds": 636493142, - "timeoutSeconds": -192358697, - "periodSeconds": 420595064, - "successThreshold": 1195176401, - "failureThreshold": 902204699, - "terminationGracePeriodSeconds": 9196919020604133323 + "initialDelaySeconds": 725557531, + "timeoutSeconds": -703127031, + "periodSeconds": 741667779, + "successThreshold": -381344241, + "failureThreshold": -2122876628, + "terminationGracePeriodSeconds": 2700145646260085226 }, "startupProbe": { "exec": { "command": [ - "361" + "363" ] }, "httpGet": { - "path": "362", - "port": "363", - "host": "364", - "scheme": "y#t(ȗŜŲ\u0026", + "path": "364", + "port": "365", + "host": "366", + "scheme": "thp像-", "httpHeaders": [ { - "name": "365", - "value": "366" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": 1387858949, - "host": "367" + "port": "369", + "host": "370" }, - "initialDelaySeconds": 156368232, - "timeoutSeconds": -815239246, - "periodSeconds": 44612600, - "successThreshold": -688929182, - "failureThreshold": -1222486879, - "terminationGracePeriodSeconds": 6543873941346781273 + "initialDelaySeconds": 1589417286, + "timeoutSeconds": 445878206, + "periodSeconds": 1874051321, + "successThreshold": -500012714, + "failureThreshold": 1762917570, + "terminationGracePeriodSeconds": 4794571970514469019 }, "lifecycle": { "postStart": { "exec": { "command": [ - "368" + "371" ] }, "httpGet": { - "path": "369", - "port": 1176168596, - "host": "370", - "scheme": "轪d覉;Ĕ", + "path": "372", + "port": "373", + "host": "374", + "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW", "httpHeaders": [ { - "name": "371", - "value": "372" + "name": "375", + "value": "376" } ] }, "tcpSocket": { - "port": "373", - "host": "374" + "port": "377", + "host": "378" } }, "preStop": { "exec": { "command": [ - "375" + "379" ] }, "httpGet": { - "path": "376", - "port": "377", - "host": "378", - "scheme": "ʦŊĊ娮", + "path": "380", + "port": -1743587482, + "host": "381", "httpHeaders": [ { - "name": "379", - "value": "380" + "name": "382", + "value": "383" } ] }, "tcpSocket": { - "port": "381", - "host": "382" + "port": 858034123, + "host": "384" } } }, - "terminationMessagePath": "383", - "terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", - "imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", + "terminationMessagePath": "385", + "terminationMessagePolicy": "喾@潷", + "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l", "securityContext": { "capabilities": { "add": [ - "蓋Cȗä2 ɲ±m嵘厶sȰÖ" + "ɻŶJ詢" ], "drop": [ - "ÆɰŞ襵" + "ǾɁ鍻G鯇ɀ魒Ð扬=惍E" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "384", - "role": "385", - "type": "386", - "level": "387" + "user": "386", + "role": "387", + "type": "388", + "level": "389" }, "windowsOptions": { - "gmsaCredentialSpecName": "388", - "gmsaCredentialSpec": "389", - "runAsUserName": "390", + "gmsaCredentialSpecName": "390", + "gmsaCredentialSpec": "391", + "runAsUserName": "392", "hostProcess": false }, - "runAsUser": -5519662252699559890, - "runAsGroup": -1624551961163368198, + "runAsUser": -5071790362153704411, + "runAsGroup": -2841141127223294729, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "阫Ƈʥ椹ý", + "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ", "seccompProfile": { - "type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷", - "localhostProfile": "391" + "type": "郡ɑ鮽ǍJB膾扉A­1襏櫯³", + "localhostProfile": "393" } }, - "stdin": true, "stdinOnce": true, - "targetContainerName": "392" + "targetContainerName": "394" } ], - "restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI", - "terminationGracePeriodSeconds": 3296766428578159624, - "activeDeadlineSeconds": -8925090445844634303, - "dnsPolicy": "q沷¾!", + "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉", + "terminationGracePeriodSeconds": -1390311149947249535, + "activeDeadlineSeconds": 2684251781701131156, + "dnsPolicy": "厶s", "nodeSelector": { - "393": "394" + "395": "396" }, - "serviceAccountName": "395", - "serviceAccount": "396", + "serviceAccountName": "397", + "serviceAccount": "398", "automountServiceAccountToken": true, - "nodeName": "397", + "nodeName": "399", + "hostPID": true, "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "398", - "role": "399", - "type": "400", - "level": "401" + "user": "400", + "role": "401", + "type": "402", + "level": "403" }, "windowsOptions": { - "gmsaCredentialSpecName": "402", - "gmsaCredentialSpec": "403", - "runAsUserName": "404", + "gmsaCredentialSpecName": "404", + "gmsaCredentialSpec": "405", + "runAsUserName": "406", "hostProcess": true }, - "runAsUser": -3496040522639830925, - "runAsGroup": 2960114664726223450, - "runAsNonRoot": false, + "runAsUser": -3184085461588437523, + "runAsGroup": -2037509302018919599, + "runAsNonRoot": true, "supplementalGroups": [ - 2402603282459663167 + -885564056413671854 ], - "fsGroup": 3564097949592109139, + "fsGroup": 4301352137345790658, "sysctls": [ { - "name": "405", - "value": "406" + "name": "407", + "value": "408" } ], - "fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6", + "fsGroupChangePolicy": "柱栦阫Ƈʥ椹", "seccompProfile": { - "type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ", - "localhostProfile": "407" + "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i", + "localhostProfile": "409" } }, "imagePullSecrets": [ { - "name": "408" + "name": "410" } ], - "hostname": "409", - "subdomain": "410", + "hostname": "411", + "subdomain": "412", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1283,19 @@ { "matchExpressions": [ { - "key": "411", - "operator": "Üɉ愂,wa纝佯fɞ", + "key": "413", + "operator": "șƷK*ƌ驔瓊'", "values": [ - "412" + "414" ] } ], "matchFields": [ { - "key": "413", - "operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;", + "key": "415", + "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧", "values": [ - "414" + "416" ] } ] @@ -1302,23 +1304,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1690937616, + "weight": 836045166, "preference": { "matchExpressions": [ { - "key": "415", - "operator": "襉{遠", + "key": "417", + "operator": "ȋ灋槊盘", "values": [ - "416" + "418" ] } ], "matchFields": [ { - "key": "417", - "operator": "诰ðÈ娒Ġ滔xvŗÑ\"", + "key": "419", + "operator": "牬庘颮6(", "values": [ - "418" + "420" ] } ] @@ -1331,27 +1333,30 @@ { "labelSelector": { "matchLabels": { - "lx..w": "t-_.5.40w" + "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B" }, "matchExpressions": [ { - "key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0", - "operator": "DoesNotExist" + "key": "z_o_2.--4Z7__i1T.miw_a", + "operator": "NotIn", + "values": [ + "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t" + ] } ] }, "namespaces": [ - "425" + "427" ], - "topologyKey": "426", + "topologyKey": "428", "namespaceSelector": { "matchLabels": { - "8V": "3sn-03" + "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B" }, "matchExpressions": [ { - "key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3", - "operator": "Exists" + "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh", + "operator": "DoesNotExist" } ] } @@ -1359,34 +1364,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -947725955, + "weight": -585767440, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e" + "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0" }, "matchExpressions": [ { - "key": "3--_9QW2JkU27_.-4T-I.-..K.2", - "operator": "In", + "key": "n", + "operator": "NotIn", "values": [ - "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8" + "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP" ] } ] }, "namespaces": [ - "439" + "441" ], - "topologyKey": "440", + "topologyKey": "442", "namespaceSelector": { "matchLabels": { - "7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz" + "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e" }, "matchExpressions": [ { - "key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6", - "operator": "DoesNotExist" + "key": "34G._--u.._.105-4_ed-0-H", + "operator": "NotIn", + "values": [ + "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q" + ] } ] } @@ -1399,27 +1407,27 @@ { "labelSelector": { "matchLabels": { - "uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": "" + "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27" }, "matchExpressions": [ { - "key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1", - "operator": "Exists" + "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "453" + "455" ], - "topologyKey": "454", + "topologyKey": "456", "namespaceSelector": { "matchLabels": { - "d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z" + "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR" }, "matchExpressions": [ { - "key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT", - "operator": "Exists" + "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7", + "operator": "DoesNotExist" } ] } @@ -1427,34 +1435,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1819321475, + "weight": 339079271, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7" + "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV" }, "matchExpressions": [ { - "key": "62o787-7lk2/L.--4P--_q-.9", + "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", "operator": "Exists" } ] }, "namespaces": [ - "467" + "469" ], - "topologyKey": "468", + "topologyKey": "470", "namespaceSelector": { "matchLabels": { - "j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e" + "E35H__.B_E": "U..u8gwbk" }, "matchExpressions": [ { - "key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8", - "operator": "In", - "values": [ - "x3___-..f5-6x-_-o_6O_If-5_-_.F" - ] + "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", + "operator": "Exists" } ] } @@ -1463,103 +1468,102 @@ ] } }, - "schedulerName": "475", + "schedulerName": "477", "tolerations": [ { - "key": "476", - "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", - "value": "477", - "effect": "慰x:", - "tolerationSeconds": 3362400521064014157 + "key": "478", + "operator": "ŭʔb'?舍ȃʥx臥]å摞", + "value": "479", + "tolerationSeconds": 3053978290188957517 } ], "hostAliases": [ { - "ip": "478", + "ip": "480", "hostnames": [ - "479" + "481" ] } ], - "priorityClassName": "480", - "priority": 743241089, + "priorityClassName": "482", + "priority": -340583156, "dnsConfig": { "nameservers": [ - "481" + "483" ], "searches": [ - "482" + "484" ], "options": [ { - "name": "483", - "value": "484" + "name": "485", + "value": "486" } ] }, "readinessGates": [ { - "conditionType": "0yVA嬂刲;牆詒ĸąs" + "conditionType": "țc£PAÎǨȨ栋" } ], - "runtimeClassName": "485", + "runtimeClassName": "487", "enableServiceLinks": false, - "preemptionPolicy": "Iƭij韺ʧ\u003e", + "preemptionPolicy": "n{鳻", "overhead": { - "D傕Ɠ栊闔虝巒瀦ŕ": "124" + "隅DžbİEMǶɼ`|褞": "229" }, "topologySpreadConstraints": [ { - "maxSkew": -174245111, - "topologyKey": "486", - "whenUnsatisfiable": "", + "maxSkew": 1486667065, + "topologyKey": "488", + "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", "labelSelector": { "matchLabels": { - "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" + "H_55..--E3_2D-1DW__o_-.k": "7" }, "matchExpressions": [ { - "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", - "operator": "In", + "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", + "operator": "NotIn", "values": [ - "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + "H1z..j_.r3--T" ] } ] } } ], - "setHostnameAsFQDN": true + "setHostnameAsFQDN": false } }, "updateStrategy": { - "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", + "type": "șa汸\u003cƋlɋN磋镮ȺPÈ", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 1559072561, - "templateGeneration": 5029735218517286947, - "revisionHistoryLimit": -69450448 + "minReadySeconds": 1750503412, + "templateGeneration": -360030892563979363, + "revisionHistoryLimit": -900194589 }, "status": { - "currentNumberScheduled": -212409426, - "numberMisscheduled": 17761427, - "desiredNumberScheduled": 1329525670, - "numberReady": -1169406076, - "observedGeneration": -660751236671399271, - "updatedNumberScheduled": 171558604, - "numberAvailable": -161888815, - "numberUnavailable": 1676195855, - "collisionCount": -286154190, + "currentNumberScheduled": 295177820, + "numberMisscheduled": 1576197985, + "desiredNumberScheduled": -702578810, + "numberReady": 1539090224, + "observedGeneration": 1991467680216601344, + "updatedNumberScheduled": -1556190810, + "numberAvailable": -487001726, + "numberUnavailable": 929611261, + "collisionCount": -1535458227, "conditions": [ { - "type": "鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹", - "status": "De½t;Ä", - "lastTransitionTime": "2194-10-19T16:17:18Z", - "reason": "493", - "message": "494" + "type": "Ȣ#", + "status": "罦¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ幦", + "lastTransitionTime": "2721-06-15T10:27:00Z", + "reason": "495", + "message": "496" } ] } 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 4f434abf81d..ecb98780ab4 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb differ 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 33e7ce1739e..19265af843b 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 @@ -31,8 +31,8 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 1559072561 - revisionHistoryLimit: -69450448 + minReadySeconds: 1750503412 + revisionHistoryLimit: -900194589 selector: 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 @@ -73,728 +73,726 @@ spec: selfLink: "29" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -8925090445844634303 + activeDeadlineSeconds: 2684251781701131156 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "415" - operator: 襉{遠 - values: - - "416" - matchFields: - key: "417" - operator: 诰ðÈ娒Ġ滔xvŗÑ" + operator: ȋ灋槊盘 values: - "418" - weight: 1690937616 + matchFields: + - key: "419" + operator: 牬庘颮6( + values: + - "420" + weight: 836045166 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "411" - operator: Üɉ愂,wa纝佯fɞ - values: - - "412" - matchFields: - key: "413" - operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣; + operator: șƷK*ƌ驔瓊' values: - "414" + matchFields: + - key: "415" + operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧 + values: + - "416" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3--_9QW2JkU27_.-4T-I.-..K.2 - operator: In + - key: "n" + operator: NotIn values: - - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8 + - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP matchLabels: - E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e + I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0 namespaceSelector: matchExpressions: - - key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6 - operator: DoesNotExist + - key: 34G._--u.._.105-4_ed-0-H + operator: NotIn + values: + - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q matchLabels: - 7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz + tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e namespaces: - - "439" - topologyKey: "440" - weight: -947725955 + - "441" + topologyKey: "442" + weight: -585767440 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0 - operator: DoesNotExist + - key: z_o_2.--4Z7__i1T.miw_a + operator: NotIn + values: + - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t matchLabels: - lx..w: t-_.5.40w + 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B namespaceSelector: matchExpressions: - - key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3 - operator: Exists + - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh + operator: DoesNotExist matchLabels: - 8V: 3sn-03 + 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B namespaces: - - "425" - topologyKey: "426" + - "427" + topologyKey: "428" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 62o787-7lk2/L.--4P--_q-.9 + - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5 operator: Exists matchLabels: - i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7 + ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV namespaceSelector: matchExpressions: - - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8 - operator: In - values: - - x3___-..f5-6x-_-o_6O_If-5_-_.F + - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i + operator: Exists matchLabels: - j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e + E35H__.B_E: U..u8gwbk namespaces: - - "467" - topologyKey: "468" - weight: 1819321475 + - "469" + topologyKey: "470" + weight: 339079271 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1 - operator: Exists + - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + operator: DoesNotExist matchLabels: - uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: "" + 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27 namespaceSelector: matchExpressions: - - key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT - operator: Exists + - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7 + operator: DoesNotExist matchLabels: - d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z + "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR namespaces: - - "453" - topologyKey: "454" + - "455" + topologyKey: "456" automountServiceAccountToken: true containers: - args: - - "253" + - "255" command: - - "252" + - "254" env: - - name: "260" - value: "261" + - name: "262" + value: "263" valueFrom: configMapKeyRef: - key: "267" - name: "266" - optional: true - fieldRef: - apiVersion: "262" - fieldPath: "263" - resourceFieldRef: - containerName: "264" - divisor: "293" - resource: "265" - secretKeyRef: key: "269" name: "268" + optional: true + fieldRef: + apiVersion: "264" + fieldPath: "265" + resourceFieldRef: + containerName: "266" + divisor: "834" + resource: "267" + secretKeyRef: + key: "271" + name: "270" optional: false envFrom: - configMapRef: - name: "258" - optional: false - prefix: "257" + name: "260" + optional: true + prefix: "259" secretRef: - name: "259" + name: "261" optional: false - image: "251" - imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 + image: "253" + imagePullPolicy: -紑浘牬釼aTGÒ鵌 lifecycle: postStart: exec: command: - - "297" + - "300" httpGet: - host: "299" - httpHeaders: - - name: "300" - value: "301" - path: "298" - port: 466267060 - scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?j - readOnlyRootFilesystem: false - runAsGroup: -6292316479661489180 + procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY + readOnlyRootFilesystem: true + runAsGroup: 5797412715505520759 runAsNonRoot: false - runAsUser: -1286199491017539507 + runAsUser: 308757565294839546 seLinuxOptions: - level: "316" - role: "314" - type: "315" - user: "313" + level: "318" + role: "316" + type: "317" + user: "315" seccompProfile: - localhostProfile: "320" - type: ĭ¥#ƱÁR + localhostProfile: "322" + type: 繽敮ǰ詀ǿ忀oɎƺ windowsOptions: - gmsaCredentialSpec: "318" - gmsaCredentialSpecName: "317" - hostProcess: true - runAsUserName: "319" + gmsaCredentialSpec: "320" + gmsaCredentialSpecName: "319" + hostProcess: false + runAsUserName: "321" startupProbe: exec: command: - - "290" - failureThreshold: 1447314009 + - "292" + failureThreshold: 1419787816 httpGet: - host: "293" + host: "295" httpHeaders: - - name: "294" - value: "295" - path: "291" - port: "292" - scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 - initialDelaySeconds: 235623869 - periodSeconds: -505848936 - successThreshold: -1819021257 + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: ǚŜEuEy竬ʆɞ + initialDelaySeconds: 336252010 + periodSeconds: 930785927 + successThreshold: 1624098740 tcpSocket: - host: "296" - port: -1894647727 - terminationGracePeriodSeconds: -7637760856622746738 - timeoutSeconds: 564558594 - stdin: true - terminationMessagePath: "312" - terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a + host: "299" + port: "298" + terminationGracePeriodSeconds: -506227444233847191 + timeoutSeconds: 677650619 + terminationMessagePath: "314" + terminationMessagePolicy: 漤ŗ坟 tty: true volumeDevices: - - devicePath: "275" - name: "274" + - devicePath: "277" + name: "276" volumeMounts: - - mountPath: "271" - mountPropagation: ʠɜ瞍阎lğ Ņ - name: "270" - readOnly: true - subPath: "272" - subPathExpr: "273" - workingDir: "254" + - mountPath: "273" + mountPropagation: irȎ3Ĕ\ɢX鰨松 + name: "272" + subPath: "274" + subPathExpr: "275" + workingDir: "256" dnsConfig: nameservers: - - "481" + - "483" options: - - name: "483" - value: "484" + - name: "485" + value: "486" searches: - - "482" - dnsPolicy: q沷¾! + - "484" + dnsPolicy: 厶s enableServiceLinks: false ephemeralContainers: - args: - - "324" + - "326" command: - - "323" + - "325" env: - - name: "331" - value: "332" + - name: "333" + value: "334" valueFrom: configMapKeyRef: - key: "338" - name: "337" - optional: false - fieldRef: - apiVersion: "333" - fieldPath: "334" - resourceFieldRef: - containerName: "335" - divisor: "473" - resource: "336" - secretKeyRef: key: "340" name: "339" optional: true + fieldRef: + apiVersion: "335" + fieldPath: "336" + resourceFieldRef: + containerName: "337" + divisor: "971" + resource: "338" + secretKeyRef: + key: "342" + name: "341" + optional: true envFrom: - configMapRef: - name: "329" + name: "331" optional: true - prefix: "328" + prefix: "330" secretRef: - name: "330" + name: "332" optional: false - image: "322" - imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj + image: "324" + imagePullPolicy: '#t(ȗŜŲ&洪y儕l' lifecycle: postStart: exec: command: - - "368" + - "371" httpGet: - host: "370" - httpHeaders: - - name: "371" - value: "372" - path: "369" - port: 1176168596 - scheme: 轪d覉;Ĕ - tcpSocket: host: "374" + httpHeaders: + - name: "375" + value: "376" + path: "372" port: "373" + scheme: b轫ʓ滨ĖRh}颉hȱɷȰW + tcpSocket: + host: "378" + port: "377" preStop: exec: command: - - "375" + - "379" httpGet: - host: "378" + host: "381" httpHeaders: - - name: "379" - value: "380" - path: "376" - port: "377" - scheme: ʦŊĊ娮 + - name: "382" + value: "383" + path: "380" + port: -1743587482 tcpSocket: - host: "382" - port: "381" + host: "384" + port: 858034123 livenessProbe: exec: command: - - "347" - failureThreshold: 1566765016 + - "349" + failureThreshold: -2033879721 httpGet: - host: "349" - httpHeaders: - - name: "350" - value: "351" - path: "348" - port: 1034835933 - scheme: O虀^背遻堣灭ƴɦ燻踸陴 - initialDelaySeconds: 650448405 - periodSeconds: -168773629 - successThreshold: 2068592383 - tcpSocket: host: "352" - port: -1744546613 - terminationGracePeriodSeconds: -1112599546012453731 - timeoutSeconds: 1943254244 - name: "321" + httpHeaders: + - name: "353" + value: "354" + path: "350" + port: "351" + scheme: 07曳wœj堑ūM鈱ɖ'蠨 + initialDelaySeconds: -242798806 + periodSeconds: 681004793 + successThreshold: 2002666266 + tcpSocket: + host: "356" + port: "355" + terminationGracePeriodSeconds: -4409241678312226730 + timeoutSeconds: -1940800545 + name: "323" ports: - - containerPort: -1371690155 - hostIP: "327" - hostPort: 2032588794 - name: "326" - protocol: G昧牱fsǕT衩kƒK07曳wœj堑 + - containerPort: -557687916 + hostIP: "329" + hostPort: 788093377 + name: "328" + protocol: _敕 readinessProbe: exec: command: - - "353" - failureThreshold: 902204699 + - "357" + failureThreshold: -2122876628 httpGet: - host: "356" + host: "359" httpHeaders: - - name: "357" - value: "358" - path: "354" - port: "355" - scheme: b轫ʓ滨ĖRh}颉hȱɷȰW - initialDelaySeconds: 636493142 - periodSeconds: 420595064 - successThreshold: 1195176401 + - name: "360" + value: "361" + path: "358" + port: 279062028 + scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p + initialDelaySeconds: 725557531 + periodSeconds: 741667779 + successThreshold: -381344241 tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: 9196919020604133323 - timeoutSeconds: -192358697 + host: "362" + port: -943058206 + terminationGracePeriodSeconds: 2700145646260085226 + timeoutSeconds: -703127031 resources: limits: - 盌3+Œ: "752" + 湷D谹気Ƀ秮òƬɸĻo:{: "523" requests: - )Zq=歍þ: "759" + 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 蓋Cȗä2 ɲ±m嵘厶sȰÖ + - ɻŶJ詢 drop: - - ÆɰŞ襵 - privileged: true - procMount: 阫Ƈʥ椹ý + - ǾɁ鍻G鯇ɀ魒Ð扬=惍E + privileged: false + procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ readOnlyRootFilesystem: false - runAsGroup: -1624551961163368198 + runAsGroup: -2841141127223294729 runAsNonRoot: false - runAsUser: -5519662252699559890 + runAsUser: -5071790362153704411 seLinuxOptions: - level: "387" - role: "385" - type: "386" - user: "384" + level: "389" + role: "387" + type: "388" + user: "386" seccompProfile: - localhostProfile: "391" - type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷ + localhostProfile: "393" + type: 郡ɑ鮽ǍJB膾扉A­1襏櫯³ windowsOptions: - gmsaCredentialSpec: "389" - gmsaCredentialSpecName: "388" + gmsaCredentialSpec: "391" + gmsaCredentialSpecName: "390" hostProcess: false - runAsUserName: "390" + runAsUserName: "392" startupProbe: exec: command: - - "361" - failureThreshold: -1222486879 + - "363" + failureThreshold: 1762917570 httpGet: - host: "364" + host: "366" httpHeaders: - - name: "365" - value: "366" - path: "362" - port: "363" - scheme: y#t(ȗŜŲ& - initialDelaySeconds: 156368232 - periodSeconds: 44612600 - successThreshold: -688929182 + - name: "367" + value: "368" + path: "364" + port: "365" + scheme: thp像- + initialDelaySeconds: 1589417286 + periodSeconds: 1874051321 + successThreshold: -500012714 tcpSocket: - host: "367" - port: 1387858949 - terminationGracePeriodSeconds: 6543873941346781273 - timeoutSeconds: -815239246 - stdin: true + host: "370" + port: "369" + terminationGracePeriodSeconds: 4794571970514469019 + timeoutSeconds: 445878206 stdinOnce: true - targetContainerName: "392" - terminationMessagePath: "383" - terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 + targetContainerName: "394" + terminationMessagePath: "385" + terminationMessagePolicy: 喾@潷 volumeDevices: - - devicePath: "346" - name: "345" + - devicePath: "348" + name: "347" volumeMounts: - - mountPath: "342" - mountPropagation: 讅缔m葰賦迾娙ƴ4虵p - name: "341" - subPath: "343" - subPathExpr: "344" - workingDir: "325" + - mountPath: "344" + mountPropagation: '|ǓÓ敆OɈÏ 瞍髃' + name: "343" + readOnly: true + subPath: "345" + subPathExpr: "346" + workingDir: "327" hostAliases: - hostnames: - - "479" - ip: "478" + - "481" + ip: "480" hostIPC: true - hostname: "409" + hostPID: true + hostname: "411" imagePullSecrets: - - name: "408" + - name: "410" initContainers: - args: - - "181" + - "184" command: - - "180" + - "183" env: - - name: "188" - value: "189" + - name: "191" + value: "192" valueFrom: configMapKeyRef: - key: "195" - name: "194" - optional: false + key: "198" + name: "197" + optional: true fieldRef: - apiVersion: "190" - fieldPath: "191" + apiVersion: "193" + fieldPath: "194" resourceFieldRef: - containerName: "192" - divisor: "617" - resource: "193" + containerName: "195" + divisor: "139" + resource: "196" secretKeyRef: - key: "197" - name: "196" + key: "200" + name: "199" optional: false envFrom: - configMapRef: - name: "186" - optional: true - prefix: "185" + name: "189" + optional: false + prefix: "188" secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: ǵɐ鰥Z + name: "190" + optional: false + image: "182" + imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ' lifecycle: postStart: exec: command: - - "225" + - "228" httpGet: - host: "228" + host: "231" httpHeaders: - - name: "229" - value: "230" - path: "226" - port: "227" - scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ + - name: "232" + value: "233" + path: "229" + port: "230" + scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ tcpSocket: - host: "232" - port: "231" + host: "234" + port: 1993268896 preStop: exec: command: - - "233" + - "235" httpGet: - host: "236" + host: "238" httpHeaders: - - name: "237" - value: "238" - path: "234" - port: "235" - scheme: δ摖 + - name: "239" + value: "240" + path: "236" + port: "237" + scheme: 'ƿ頀"冓鍓贯澔 ' tcpSocket: - host: "240" - port: "239" + host: "242" + port: "241" livenessProbe: exec: command: - - "204" - failureThreshold: 14304392 + - "207" + failureThreshold: -552281772 httpGet: - host: "207" - httpHeaders: - - name: "208" - value: "209" - path: "205" - port: "206" - scheme: fʀļ腩墺Ò媁荭gw忊 - initialDelaySeconds: -1532958330 - periodSeconds: 1004325340 - successThreshold: -1313320434 - tcpSocket: host: "210" - port: -1761398388 - terminationGracePeriodSeconds: 2001337664780390084 - timeoutSeconds: -438588982 - name: "178" + httpHeaders: + - name: "211" + value: "212" + path: "208" + port: "209" + scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ + initialDelaySeconds: -1246371817 + periodSeconds: 432291364 + successThreshold: 676578360 + tcpSocket: + host: "213" + port: 1714588921 + terminationGracePeriodSeconds: -2910346974754087949 + timeoutSeconds: 617318981 + name: "181" ports: - - containerPort: -1109619518 - hostIP: "184" - hostPort: -1981710234 - name: "183" - protocol: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 + - containerPort: -1252938503 + hostIP: "187" + hostPort: 852780575 + name: "186" + protocol: Opwǩ曬逴褜1ØœȠƬQg鄠 readinessProbe: exec: command: - - "211" - failureThreshold: -1314967760 + - "214" + failureThreshold: 2056774277 httpGet: - host: "213" + host: "216" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -614161319 - scheme: Ȩ<6鄰簳°Ļǟi& - initialDelaySeconds: 233282513 - periodSeconds: 1313273370 - successThreshold: -1296830577 + - name: "217" + value: "218" + path: "215" + port: 656200799 + initialDelaySeconds: -2165496 + periodSeconds: 1386255869 + successThreshold: -778272981 tcpSocket: - host: "217" - port: "216" - terminationGracePeriodSeconds: 5043322816247327651 - timeoutSeconds: -518330919 + host: "220" + port: "219" + terminationGracePeriodSeconds: -9219895030215397584 + timeoutSeconds: -1778952574 resources: limits: - 朷Ǝ膯ljVX1虊谇: "279" + LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807" requests: - 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀: "918" + 嚧ʣq埄: "936" securityContext: allowPrivilegeEscalation: true capabilities: add: - - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ + - ;Nŕ璻Jih亏yƕ丆録²Ŏ drop: - - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - privileged: false - procMount: ȹ均i绝5哇芆斩ìh4Ɋ + - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫 + privileged: true + procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ readOnlyRootFilesystem: true - runAsGroup: 4041264710404335706 - runAsNonRoot: false - runAsUser: -7299434051955863644 + runAsGroup: 6453802934472477147 + runAsNonRoot: true + runAsUser: 4041264710404335706 seLinuxOptions: - level: "245" - role: "243" - type: "244" - user: "242" + level: "247" + role: "245" + type: "246" + user: "244" seccompProfile: - localhostProfile: "249" - type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 + localhostProfile: "251" + type: V擭銆j windowsOptions: - gmsaCredentialSpec: "247" - gmsaCredentialSpecName: "246" + gmsaCredentialSpec: "249" + gmsaCredentialSpecName: "248" hostProcess: true - runAsUserName: "248" + runAsUserName: "250" startupProbe: exec: command: - - "218" - failureThreshold: 1909548849 + - "221" + failureThreshold: -1137436579 httpGet: - host: "221" - httpHeaders: - - name: "222" - value: "223" - path: "219" - port: "220" - scheme: 队偯J僳徥淳4揻 - initialDelaySeconds: -1244119841 - periodSeconds: 348370746 - successThreshold: 468369166 - tcpSocket: host: "224" - port: 878005329 - terminationGracePeriodSeconds: 6410850623145248813 - timeoutSeconds: 1235694147 - terminationMessagePath: "241" - terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: 鬶l獕;跣Hǝcw + initialDelaySeconds: -736151561 + periodSeconds: -1856061695 + successThreshold: 1868683352 + tcpSocket: + host: "227" + port: -374766088 + terminationGracePeriodSeconds: 8876559635423161004 + timeoutSeconds: -1515369804 + terminationMessagePath: "243" + terminationMessagePolicy: 6Ɖ飴ɎiǨź' volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "206" + name: "205" volumeMounts: - - mountPath: "199" - mountPropagation: ó藢xɮĵȑ6L* - name: "198" - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "397" + - mountPath: "202" + mountPropagation: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "399" nodeSelector: - "393": "394" + "395": "396" overhead: - D傕Ɠ栊闔虝巒瀦ŕ: "124" - preemptionPolicy: Iƭij韺ʧ> - priority: 743241089 - priorityClassName: "480" + 隅DžbİEMǶɼ`|褞: "229" + preemptionPolicy: n{鳻 + priority: -340583156 + priorityClassName: "482" readinessGates: - - conditionType: 0yVA嬂刲;牆詒ĸąs - restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI - runtimeClassName: "485" - schedulerName: "475" + - conditionType: țc£PAÎǨȨ栋 + restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉 + runtimeClassName: "487" + schedulerName: "477" securityContext: - fsGroup: 3564097949592109139 - fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6 - runAsGroup: 2960114664726223450 - runAsNonRoot: false - runAsUser: -3496040522639830925 + fsGroup: 4301352137345790658 + fsGroupChangePolicy: 柱栦阫Ƈʥ椹 + runAsGroup: -2037509302018919599 + runAsNonRoot: true + runAsUser: -3184085461588437523 seLinuxOptions: - level: "401" - role: "399" - type: "400" - user: "398" + level: "403" + role: "401" + type: "402" + user: "400" seccompProfile: - localhostProfile: "407" - type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ + localhostProfile: "409" + type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i supplementalGroups: - - 2402603282459663167 + - -885564056413671854 sysctls: - - name: "405" - value: "406" + - name: "407" + value: "408" windowsOptions: - gmsaCredentialSpec: "403" - gmsaCredentialSpecName: "402" + gmsaCredentialSpec: "405" + gmsaCredentialSpecName: "404" hostProcess: true - runAsUserName: "404" - serviceAccount: "396" - serviceAccountName: "395" - setHostnameAsFQDN: true + runAsUserName: "406" + serviceAccount: "398" + serviceAccountName: "397" + setHostnameAsFQDN: false shareProcessNamespace: true - subdomain: "410" - terminationGracePeriodSeconds: 3296766428578159624 + subdomain: "412" + terminationGracePeriodSeconds: -1390311149947249535 tolerations: - - effect: '慰x:' - key: "476" - operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ - tolerationSeconds: 3362400521064014157 - value: "477" + - key: "478" + operator: ŭʔb'?舍ȃʥx臥]å摞 + tolerationSeconds: 3053978290188957517 + value: "479" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - operator: In + - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b + operator: NotIn values: - - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe + - H1z..j_.r3--T matchLabels: - 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a - maxSkew: -174245111 - topologyKey: "486" - whenUnsatisfiable: "" + H_55..--E3_2D-1DW__o_-.k: "7" + maxSkew: 1486667065 + topologyKey: "488" + whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 volumes: - awsElasticBlockStore: fsType: "49" @@ -894,6 +892,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: 'âĺɗŹ倗S晒嶗UÐ_ƮA攤/ɸɎ ': "648" @@ -1047,25 +1049,25 @@ spec: storagePolicyID: "106" storagePolicyName: "105" volumePath: "103" - templateGeneration: 5029735218517286947 + templateGeneration: -360030892563979363 updateStrategy: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& + type: șa汸<ƋlɋN磋镮ȺPÈ status: - collisionCount: -286154190 + collisionCount: -1535458227 conditions: - - lastTransitionTime: "2194-10-19T16:17:18Z" - message: "494" - reason: "493" - status: De½t;Ä - type: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹 - currentNumberScheduled: -212409426 - desiredNumberScheduled: 1329525670 - numberAvailable: -161888815 - numberMisscheduled: 17761427 - numberReady: -1169406076 - numberUnavailable: 1676195855 - observedGeneration: -660751236671399271 - updatedNumberScheduled: 171558604 + - lastTransitionTime: "2721-06-15T10:27:00Z" + message: "496" + reason: "495" + status: 罦¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ幦 + type: Ȣ# + currentNumberScheduled: 295177820 + desiredNumberScheduled: -702578810 + numberAvailable: -487001726 + numberMisscheduled: 1576197985 + numberReady: 1539090224 + numberUnavailable: 929611261 + observedGeneration: 1991467680216601344 + updatedNumberScheduled: -1556190810 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 315bab56582..d341aeeb778 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 @@ -443,6 +443,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -451,388 +456,356 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 1923334396, - "containerPort": -1343558801, - "protocol": "@掇lNdǂ\u003e", - "hostIP": "184" + "name": "186", + "hostPort": 282592353, + "containerPort": 377225334, + "protocol": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", - "optional": true + "name": "189", + "optional": false }, "secretRef": { - "name": "187", - "optional": true - } - } - ], - "env": [ - { - "name": "188", - "value": "189", - "valueFrom": { - "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" - }, - "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "713" - }, - "configMapKeyRef": { - "name": "194", - "key": "195", - "optional": true - }, - "secretKeyRef": { - "name": "196", - "key": "197", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3": "86" - }, - "requests": { - "t莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": -1285424066, - "host": "206", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": "209", - "host": "210" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681, - "terminationGracePeriodSeconds": -4856573944864548413 - }, - "readinessProbe": { - "exec": { - "command": [ - "211" - ] - }, - "httpGet": { - "path": "212", - "port": -331283026, - "host": "213", - "scheme": "ȉ", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 714088955, - "host": "216" - }, - "initialDelaySeconds": 1033766276, - "timeoutSeconds": -1745509819, - "periodSeconds": -859135545, - "successThreshold": -1543701088, - "failureThreshold": 513341278, - "terminationGracePeriodSeconds": 2696007505383404823 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": -361442565, - "host": "219", - "scheme": "w", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": -1099429189, - "host": "222" - }, - "initialDelaySeconds": 994072122, - "timeoutSeconds": 1752155096, - "periodSeconds": -1962065705, - "successThreshold": 1701999128, - "failureThreshold": -1364571630, - "terminationGracePeriodSeconds": 7258403424756645907 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "223" - ] - }, - "httpGet": { - "path": "224", - "port": -1109619518, - "host": "225", - "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", - "httpHeaders": [ - { - "name": "226", - "value": "227" - } - ] - }, - "tcpSocket": { - "port": "228", - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 461585849, - "host": "232", - "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": 467291328, - "host": "235" - } - } - }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "ĸ輦唊", - "imagePullPolicy": "r嚧", - "securityContext": { - "capabilities": { - "add": [ - "埄趛" - ], - "drop": [ - "ʁ岼昕ĬÇ" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243", - "hostProcess": false - }, - "runAsUser": 161123823296532265, - "runAsGroup": -6406791857291159870, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "鐫û咡W\u003c敄lu|榝", - "seccompProfile": { - "type": "î.Ȏ蝪ʜ5遰=", - "localhostProfile": "244" - } - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "245", - "image": "246", - "command": [ - "247" - ], - "args": [ - "248" - ], - "workingDir": "249", - "ports": [ - { - "name": "250", - "hostPort": -370386363, - "containerPort": 1714588921, - "protocol": "Ư貾", - "hostIP": "251" - } - ], - "envFrom": [ - { - "prefix": "252", - "configMapRef": { - "name": "253", - "optional": true - }, - "secretRef": { - "name": "254", + "name": "190", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "271" + "containerName": "195", + "resource": "196", + "divisor": "573" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "197", + "key": "198", "optional": false }, "secretKeyRef": { - "name": "263", - "key": "264", - "optional": true + "name": "199", + "key": "200", + "optional": false } } } ], "resources": { "limits": { - "庰%皧V": "116" + "ǚ灄鸫rʤî萨zvt": "829" }, "requests": { - "": "289" + "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" } }, "volumeMounts": [ { - "name": "265", + "name": "201", "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ", - "subPathExpr": "268" + "mountPath": "202", + "subPath": "203", + "mountPropagation": "ƖHV", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "271" + "207" ] }, "httpGet": { - "path": "272", - "port": 1907998540, - "host": "273", - "scheme": ",ŕ", + "path": "208", + "port": -1196874390, + "host": "209", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": -498930176, + "host": "212" }, - "initialDelaySeconds": -253326525, - "timeoutSeconds": 567263590, - "periodSeconds": 887319241, - "successThreshold": 1559618829, - "failureThreshold": 1156888068, - "terminationGracePeriodSeconds": -5566612115749133989 + "initialDelaySeconds": 1885897314, + "timeoutSeconds": -465677631, + "periodSeconds": 1054858106, + "successThreshold": 232569106, + "failureThreshold": -1150474479, + "terminationGracePeriodSeconds": 3196828455642760911 }, "readinessProbe": { "exec": { "command": [ - "278" + "213" ] }, "httpGet": { - "path": "279", - "port": 1315054653, + "path": "214", + "port": "215", + "host": "216", + "scheme": "3!Zɾģ毋Ó6", + "httpHeaders": [ + { + "name": "217", + "value": "218" + } + ] + }, + "tcpSocket": { + "port": -832805508, + "host": "219" + }, + "initialDelaySeconds": -228822833, + "timeoutSeconds": -970312425, + "periodSeconds": -1213051101, + "successThreshold": 1451056156, + "failureThreshold": 267768240, + "terminationGracePeriodSeconds": -549108701661089463 + }, + "startupProbe": { + "exec": { + "command": [ + "220" + ] + }, + "httpGet": { + "path": "221", + "port": "222", + "host": "223", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "224", + "value": "225" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "226" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737, + "terminationGracePeriodSeconds": -7464951486382552895 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "227" + ] + }, + "httpGet": { + "path": "228", + "port": "229", + "host": "230", + "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "httpHeaders": [ + { + "name": "231", + "value": "232" + } + ] + }, + "tcpSocket": { + "port": "233", + "host": "234" + } + }, + "preStop": { + "exec": { + "command": [ + "235" + ] + }, + "httpGet": { + "path": "236", + "port": -1506633471, + "host": "237", + "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "httpHeaders": [ + { + "name": "238", + "value": "239" + } + ] + }, + "tcpSocket": { + "port": "240", + "host": "241" + } + } + }, + "terminationMessagePath": "242", + "terminationMessagePolicy": "屡ʁ", + "securityContext": { + "capabilities": { + "add": [ + "Ÿ8T 苧yñKJɐ扵" + ], + "drop": [ + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "243", + "role": "244", + "type": "245", + "level": "246" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": true + }, + "runAsUser": 3582457287488712192, + "runAsGroup": -7664873352063067579, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "\u003c6", + "seccompProfile": { + "type": "簳°Ļǟi\u0026皥贸", + "localhostProfile": "250" + } + }, + "stdin": true + } + ], + "containers": [ + { + "name": "251", + "image": "252", + "command": [ + "253" + ], + "args": [ + "254" + ], + "workingDir": "255", + "ports": [ + { + "name": "256", + "hostPort": -1314967760, + "containerPort": 1174240097, + "protocol": "\\E¦队偯J僳徥淳", + "hostIP": "257" + } + ], + "envFrom": [ + { + "prefix": "258", + "configMapRef": { + "name": "259", + "optional": false + }, + "secretRef": { + "name": "260", + "optional": true + } + } + ], + "env": [ + { + "name": "261", + "value": "262", + "valueFrom": { + "fieldRef": { + "apiVersion": "263", + "fieldPath": "264" + }, + "resourceFieldRef": { + "containerName": "265", + "resource": "266", + "divisor": "965" + }, + "configMapKeyRef": { + "name": "267", + "key": "268", + "optional": false + }, + "secretKeyRef": { + "name": "269", + "key": "270", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "4Ǒ輂,ŕĪ": "398" + }, + "requests": { + "V訆Ǝżŧ": "915" + } + }, + "volumeMounts": [ + { + "name": "271", + "readOnly": true, + "mountPath": "272", + "subPath": "273", + "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c", + "subPathExpr": "274" + } + ], + "volumeDevices": [ + { + "name": "275", + "devicePath": "276" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "277" + ] + }, + "httpGet": { + "path": "278", + "port": "279", "host": "280", - "scheme": "蚃ɣľ)酊龨δ摖ȱ", + "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏", "httpHeaders": [ { "name": "281", @@ -841,27 +814,27 @@ ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": -614098868, + "host": "283" }, - "initialDelaySeconds": 1905181464, - "timeoutSeconds": -1730959016, - "periodSeconds": 1272940694, - "successThreshold": -385597677, - "failureThreshold": 422133388, - "terminationGracePeriodSeconds": 8385745044578923915 + "initialDelaySeconds": 234253676, + "timeoutSeconds": 846286700, + "periodSeconds": 1080545253, + "successThreshold": 1843491416, + "failureThreshold": -1204965397, + "terminationGracePeriodSeconds": -2125560879532395341 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "285" + "284" ] }, "httpGet": { - "path": "286", - "port": 1013673874, + "path": "285", + "port": "286", "host": "287", - "scheme": "ə娯Ȱ囌{", + "scheme": "花ª瘡蟦JBʟ鍏", "httpHeaders": [ { "name": "288", @@ -870,158 +843,187 @@ ] }, "tcpSocket": { - "port": -1829146875, - "host": "290" + "port": "290", + "host": "291" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793, - "terminationGracePeriodSeconds": -8939747084334542875 + "initialDelaySeconds": -2062708879, + "timeoutSeconds": 215186711, + "periodSeconds": -141401239, + "successThreshold": -1187301925, + "failureThreshold": -402384013, + "terminationGracePeriodSeconds": -779972051078659613 + }, + "startupProbe": { + "exec": { + "command": [ + "292" + ] + }, + "httpGet": { + "path": "293", + "port": "294", + "host": "295", + "scheme": "İ", + "httpHeaders": [ + { + "name": "296", + "value": "297" + } + ] + }, + "tcpSocket": { + "port": "298", + "host": "299" + }, + "initialDelaySeconds": -1615316902, + "timeoutSeconds": -793616601, + "periodSeconds": -522215271, + "successThreshold": 1374479082, + "failureThreshold": 737722974, + "terminationGracePeriodSeconds": -247950237984551522 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "300" ] }, "httpGet": { - "path": "292", - "port": -1021949447, - "host": "293", - "scheme": "B芭", + "path": "301", + "port": 1502643091, + "host": "302", + "scheme": "­蜷ɔ幩š", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "303", + "value": "304" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": 455833230, + "host": "305" } }, "preStop": { "exec": { "command": [ - "298" + "306" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "yƕ丆録²Ŏ)", + "path": "307", + "port": 1076497581, + "host": "308", + "scheme": "h4ɊHȖ|ʐ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 507384491, - "host": "304" + "port": 248533396, + "host": "311" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "3", - "imagePullPolicy": "汰8ŕİi騎C\"6x$1s", + "terminationMessagePath": "312", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "p鋄5弢ȹ均i绝5" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "" + "ay" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "313", + "role": "314", + "type": "315", + "level": "316" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312", - "hostProcess": false + "gmsaCredentialSpecName": "317", + "gmsaCredentialSpec": "318", + "runAsUserName": "319", + "hostProcess": true }, - "runAsUser": -3385088507022597813, - "runAsGroup": 7023916302283403328, - "runAsNonRoot": false, + "runAsUser": -3576337664396773931, + "runAsGroup": -4786249339103684082, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ş", + "allowPrivilegeEscalation": true, + "procMount": "u8晲", "seccompProfile": { - "type": "諔迮ƙ", - "localhostProfile": "313" + "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "localhostProfile": "320" } }, - "stdinOnce": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "321", + "image": "322", "command": [ - "316" + "323" ], "args": [ - "317" + "324" ], - "workingDir": "318", + "workingDir": "325", "ports": [ { - "name": "319", - "hostPort": -488127393, - "containerPort": 1137109081, - "protocol": "丽饾| 鞤ɱď", - "hostIP": "320" + "name": "326", + "hostPort": 1453852685, + "containerPort": 2037135322, + "protocol": "ǧĒzŔ瘍N", + "hostIP": "327" } ], "envFrom": [ { - "prefix": "321", + "prefix": "328", "configMapRef": { - "name": "322", + "name": "329", "optional": true }, "secretRef": { - "name": "323", - "optional": false + "name": "330", + "optional": true } } ], "env": [ { - "name": "324", - "value": "325", + "name": "331", + "value": "332", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "333", + "fieldPath": "334" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "66" + "containerName": "335", + "resource": "336", + "divisor": "464" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "337", + "key": "338", "optional": true }, "secretKeyRef": { - "name": "332", - "key": "333", + "name": "339", + "key": "340", "optional": false } } @@ -1029,56 +1031,28 @@ ], "resources": { "limits": { - "ƣMț譎懚X": "93" + "汚磉反-n": "653" }, "requests": { - "曣ŋayåe躒訙": "484" + "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999" } }, "volumeMounts": [ { - "name": "334", - "mountPath": "335", - "subPath": "336", - "mountPropagation": "(娕uE增猍", - "subPathExpr": "337" + "name": "341", + "mountPath": "342", + "subPath": "343", + "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩", + "subPathExpr": "344" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "345", + "devicePath": "346" } ], "livenessProbe": { - "exec": { - "command": [ - "340" - ] - }, - "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "httpHeaders": [ - { - "name": "344", - "value": "345" - } - ] - }, - "tcpSocket": { - "port": -819013491, - "host": "346" - }, - "initialDelaySeconds": -1843539391, - "timeoutSeconds": 1238925115, - "periodSeconds": -1758095966, - "successThreshold": 1627026804, - "failureThreshold": -1508967300, - "terminationGracePeriodSeconds": -4548040070833300341 - }, - "readinessProbe": { "exec": { "command": [ "347" @@ -1086,9 +1060,9 @@ }, "httpGet": { "path": "348", - "port": -186532794, + "port": -1088996269, "host": "349", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "scheme": "ƘƵŧ1ƟƓ宆!", "httpHeaders": [ { "name": "350", @@ -1097,80 +1071,86 @@ ] }, "tcpSocket": { - "port": "352", - "host": "353" + "port": -1836225650, + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442, - "terminationGracePeriodSeconds": -8866033802256420471 + "initialDelaySeconds": -1065853311, + "timeoutSeconds": 559999152, + "periodSeconds": -843639240, + "successThreshold": 1573261475, + "failureThreshold": -1211577347, + "terminationGracePeriodSeconds": 6567123901989213629 }, - "startupProbe": { + "readinessProbe": { "exec": { "command": [ - "354" + "353" ] }, "httpGet": { - "path": "355", - "port": -1789721862, - "host": "356", - "scheme": "閈誹ʅ蕉ɼ", + "path": "354", + "port": 705333281, + "host": "355", + "scheme": "xƂ9阠", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": 374862544, - "host": "359" + "port": -916583020, + "host": "358" }, - "initialDelaySeconds": 1518001294, - "timeoutSeconds": 1467189105, - "periodSeconds": -2068583194, - "successThreshold": -29073009, - "failureThreshold": 1190831814, - "terminationGracePeriodSeconds": 7262727411813417219 + "initialDelaySeconds": -606614374, + "timeoutSeconds": -3478003, + "periodSeconds": 498878902, + "successThreshold": 652646450, + "failureThreshold": 757223010, + "terminationGracePeriodSeconds": -8216131738691912586 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "Ů\u003cy鯶縆łƑ[澔", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": 1288391156, + "host": "365" + }, + "initialDelaySeconds": -952255430, + "timeoutSeconds": 1568034275, + "periodSeconds": -824007302, + "successThreshold": -359713104, + "failureThreshold": 1671084780, + "terminationGracePeriodSeconds": 1571605531283019612 }, "lifecycle": { "postStart": { "exec": { "command": [ - "360" + "366" ] }, "httpGet": { - "path": "361", - "port": 890223061, - "host": "362", - "scheme": "uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ", - "httpHeaders": [ - { - "name": "363", - "value": "364" - } - ] - }, - "tcpSocket": { - "port": "365", - "host": "366" - } - }, - "preStop": { - "exec": { - "command": [ - "367" - ] - }, - "httpGet": { - "path": "368", - "port": 797714018, + "path": "367", + "port": "368", "host": "369", - "scheme": "vÄÚ×", + "scheme": "%ʝ`ǭ", "httpHeaders": [ { "name": "370", @@ -1179,104 +1159,126 @@ ] }, "tcpSocket": { - "port": "372", - "host": "373" + "port": -1467648837, + "host": "372" + } + }, + "preStop": { + "exec": { + "command": [ + "373" + ] + }, + "httpGet": { + "path": "374", + "port": "375", + "host": "376", + "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" } } }, - "terminationMessagePath": "374", - "terminationMessagePolicy": "m罂o3ǰ廋i乳'ȘUɻ", - "imagePullPolicy": "阠$嬏", + "terminationMessagePath": "381", + "terminationMessagePolicy": "¯ÁȦtl敷斢", + "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "¶熀ďJZ漤" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "375", - "role": "376", - "type": "377", - "level": "378" + "user": "382", + "role": "383", + "type": "384", + "level": "385" }, "windowsOptions": { - "gmsaCredentialSpecName": "379", - "gmsaCredentialSpec": "380", - "runAsUserName": "381", - "hostProcess": false + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true }, - "runAsUser": 5680561050872693436, - "runAsGroup": -8721643037453811760, + "runAsUser": 4224635496843945227, + "runAsGroup": 73764735411458498, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "槃JŵǤ桒ɴ鉂WJ", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "s44矕Ƈè", "seccompProfile": { - "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ", - "localhostProfile": "382" + "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", + "localhostProfile": "389" } }, - "targetContainerName": "383" + "tty": true, + "targetContainerName": "390" } ], - "restartPolicy": "ȏâ磠", - "terminationGracePeriodSeconds": 5614430095732678823, - "activeDeadlineSeconds": 5204116807884683873, - "dnsPolicy": "8ð仁Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", + "terminationGracePeriodSeconds": -8335674866227004872, + "activeDeadlineSeconds": 3305070661619041050, + "dnsPolicy": "+Œ9两", "nodeSelector": { - "384": "385" + "391": "392" }, - "serviceAccountName": "386", - "serviceAccount": "387", - "automountServiceAccountToken": true, - "nodeName": "388", - "hostNetwork": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": false, + "nodeName": "395", "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "389", - "role": "390", - "type": "391", - "level": "392" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "393", - "gmsaCredentialSpec": "394", - "runAsUserName": "395", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": -3072254610148392250, - "runAsGroup": -935274303703112577, + "runAsUser": 3438266910774132295, + "runAsGroup": 3230705132538051674, "runAsNonRoot": true, "supplementalGroups": [ - 5215323049148402377 + -1600417733583164525 ], - "fsGroup": 2946116477552625615, + "fsGroup": -3964669311891901178, "sysctls": [ { - "name": "396", - "value": "397" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "$鬬$矐_敕", + "fsGroupChangePolicy": "ƴ4虵p", "seccompProfile": { - "type": "嵞嬯t{Eɾ敹Ȯ-湷D谹", - "localhostProfile": "398" + "type": "沥7uPƒw©ɴĶ烷Ľthp", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "399" + "name": "406" } ], - "hostname": "400", - "subdomain": "401", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1284,19 +1286,19 @@ { "matchExpressions": [ { - "key": "402", - "operator": "", + "key": "409", + "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", "values": [ - "403" + "410" ] } ], "matchFields": [ { - "key": "404", - "operator": "ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ", + "key": "411", + "operator": " ", "values": [ - "405" + "412" ] } ] @@ -1305,23 +1307,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -5241849, "preference": { "matchExpressions": [ { - "key": "406", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "413", + "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", "values": [ - "407" + "414" ] } ], "matchFields": [ { - "key": "408", - "operator": "ƒK07曳w", + "key": "415", + "operator": "[y#t(", "values": [ - "409" + "416" ] } ] @@ -1334,27 +1336,30 @@ { "labelSelector": { "matchLabels": { - "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5" + "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "operator": "NotIn", + "values": [ + "0..KpiS.oK-.O--5-yp8q_s-L" + ] } ] }, "namespaces": [ - "416" + "423" ], - "topologyKey": "417", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" }, "matchExpressions": [ { - "key": "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj", - "operator": "Exists" + "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", + "operator": "DoesNotExist" } ] } @@ -1362,31 +1367,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0": "M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", - "operator": "DoesNotExist" + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, "namespaces": [ - "430" + "437" ], - "topologyKey": "431", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h": "ht-E6___-X__H.-39-A_-_l67Q.-t" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1399,30 +1404,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "4b699/B9n.2", + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", "operator": "In", "values": [ - "MM7-.e.x" + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" ] } ] }, "namespaces": [ - "444" + "451" ], - "topologyKey": "445", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "N7.81_-._-_8_.._._a9", + "operator": "In", + "values": [ + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + ] } ] } @@ -1430,33 +1438,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p" + "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" }, "matchExpressions": [ { - "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b", - "operator": "NotIn", - "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" - ] + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "458" + "465" ], - "topologyKey": "459", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" }, "matchExpressions": [ { - "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", + "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", "operator": "DoesNotExist" } ] @@ -1466,66 +1471,66 @@ ] } }, - "schedulerName": "466", + "schedulerName": "473", "tolerations": [ { - "key": "467", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "468", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "474", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", + "value": "475", + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ { - "ip": "469", + "ip": "476", "hostnames": [ - "470" + "477" ] } ], - "priorityClassName": "471", - "priority": -1756088332, + "priorityClassName": "478", + "priority": 347613368, "dnsConfig": { "nameservers": [ - "472" + "479" ], "searches": [ - "473" + "480" ], "options": [ { - "name": "474", - "value": "475" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], - "runtimeClassName": "476", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "483", + "enableServiceLinks": false, + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "477", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -484382570, + "topologyKey": "484", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "labelSelector": { "matchLabels": { - "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] @@ -1536,37 +1541,36 @@ } }, "strategy": { - "type": "卍睊", + "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -212999359, - "revisionHistoryLimit": -866496758, - "paused": true, + "minReadySeconds": 2115665292, + "revisionHistoryLimit": 237456757, "rollbackTo": { - "revision": 5409045697701816557 + "revision": 1498428055681994500 }, - "progressDeadlineSeconds": -1491990975 + "progressDeadlineSeconds": -164140734 }, "status": { - "observedGeneration": 893725404715704439, - "replicas": -611078700, - "updatedReplicas": -280135412, - "readyReplicas": 143932221, - "availableReplicas": 845369726, - "unavailableReplicas": 1757097428, + "observedGeneration": -1635909846206320942, + "replicas": -253906853, + "updatedReplicas": -602665165, + "readyReplicas": -859094691, + "availableReplicas": -1624946983, + "unavailableReplicas": -779806398, "conditions": [ { - "type": ",R譏K", - "status": "埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$\u003cʖ欢", - "lastUpdateTime": "2587-03-02T15:57:31Z", - "lastTransitionTime": "2127-02-15T04:53:58Z", - "reason": "484", - "message": "485" + "type": "mv看ƜZ", + "status": "ȇ\u003e尪璎妽4LM桵Ţ宧ʜ", + "lastUpdateTime": "2322-02-12T18:39:07Z", + "lastTransitionTime": "2398-05-12T06:43:28Z", + "reason": "491", + "message": "492" } ], - "collisionCount": 2000058265 + "collisionCount": 165914268 } } \ 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 9dcd9aa244e..c46fdeaf5d8 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb differ 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 83fbc5f4b30..352c82f5720 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 @@ -31,13 +31,12 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -212999359 - paused: true - progressDeadlineSeconds: -1491990975 + minReadySeconds: 2115665292 + progressDeadlineSeconds: -164140734 replicas: 896585016 - revisionHistoryLimit: -866496758 + revisionHistoryLimit: 237456757 rollbackTo: - revision: 5409045697701816557 + revision: 1498428055681994500 selector: matchExpressions: - 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 @@ -48,7 +47,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 卍睊 + type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj template: metadata: annotations: @@ -81,730 +80,730 @@ spec: selfLink: "29" uid: ?Qȫş spec: - activeDeadlineSeconds: 5204116807884683873 + activeDeadlineSeconds: 3305070661619041050 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "406" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "413" + operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' values: - - "407" + - "414" matchFields: - - key: "408" - operator: ƒK07曳w + - key: "415" + operator: '[y#t(' values: - - "409" - weight: 1805682547 + - "416" + weight: -5241849 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "402" - operator: "" + - key: "409" + operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 values: - - "403" + - "410" matchFields: - - key: "404" - operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ + - key: "411" + operator: ' ' values: - - "405" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr - operator: DoesNotExist - matchLabels: - G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c - namespaceSelector: - matchExpressions: - - key: C-_20 + - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s operator: Exists matchLabels: - 8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t + 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + namespaceSelector: + matchExpressions: + - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np + operator: DoesNotExist + matchLabels: + Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E namespaces: - - "430" - topologyKey: "431" - weight: -450654683 + - "437" + topologyKey: "438" + weight: -234140 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q + operator: NotIn + values: + - 0..KpiS.oK-.O--5-yp8q_s-L matchLabels: - 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5 + rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q namespaceSelector: matchExpressions: - - key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj - operator: Exists + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "416" - topologyKey: "417" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b - operator: NotIn - values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m - matchLabels: - 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p - namespaceSelector: - matchExpressions: - - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T + - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + namespaceSelector: + matchExpressions: + - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 + operator: DoesNotExist + matchLabels: + ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 + : I-._g_.._-hKc.OB_F_--.._m_-9 namespaces: - - "458" - topologyKey: "459" - weight: 1131487788 + - "465" + topologyKey: "466" + weight: 1276377114 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 + - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 operator: In values: - - MM7-.e.x + - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: N7.81_-._-_8_.._._a9 + operator: In + values: + - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh matchLabels: - B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1 + m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT namespaces: - - "444" - topologyKey: "445" - automountServiceAccountToken: true + - "451" + topologyKey: "452" + automountServiceAccountToken: false containers: - args: - - "248" + - "254" command: - - "247" + - "253" env: - - name: "255" - value: "256" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "268" + name: "267" optional: false fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "259" - divisor: "271" - resource: "260" + containerName: "265" + divisor: "965" + resource: "266" secretKeyRef: - key: "264" - name: "263" - optional: true + key: "270" + name: "269" + optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" - secretRef: - name: "254" + name: "259" optional: false - image: "246" - imagePullPolicy: 汰8ŕİi騎C"6x$1s + prefix: "258" + secretRef: + name: "260" + optional: true + image: "252" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "291" + - "300" httpGet: - host: "293" + host: "302" httpHeaders: - - name: "294" - value: "295" - path: "292" - port: -1021949447 - scheme: B芭 + - name: "303" + value: "304" + path: "301" + port: 1502643091 + scheme: ­蜷ɔ幩š tcpSocket: - host: "297" - port: "296" + host: "305" + port: 455833230 preStop: exec: command: - - "298" + - "306" httpGet: - host: "301" + host: "308" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: yƕ丆録²Ŏ) + - name: "309" + value: "310" + path: "307" + port: 1076497581 + scheme: h4ɊHȖ|ʐ tcpSocket: - host: "304" - port: 507384491 + host: "311" + port: 248533396 livenessProbe: exec: command: - - "271" - failureThreshold: 1156888068 - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: 1907998540 - scheme: ',ŕ' - initialDelaySeconds: -253326525 - periodSeconds: 887319241 - successThreshold: 1559618829 - tcpSocket: - host: "277" - port: "276" - terminationGracePeriodSeconds: -5566612115749133989 - timeoutSeconds: 567263590 - name: "245" - ports: - - containerPort: 1714588921 - hostIP: "251" - hostPort: -370386363 - name: "250" - protocol: Ư貾 - readinessProbe: - exec: - command: - - "278" - failureThreshold: 422133388 + - "277" + failureThreshold: -1204965397 httpGet: host: "280" httpHeaders: - name: "281" value: "282" - path: "279" - port: 1315054653 - scheme: 蚃ɣľ)酊龨δ摖ȱ - initialDelaySeconds: 1905181464 - periodSeconds: 1272940694 - successThreshold: -385597677 + path: "278" + port: "279" + scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏 + initialDelaySeconds: 234253676 + periodSeconds: 1080545253 + successThreshold: 1843491416 tcpSocket: - host: "284" - port: "283" - terminationGracePeriodSeconds: 8385745044578923915 - timeoutSeconds: -1730959016 - resources: - limits: - 庰%皧V: "116" - requests: - "": "289" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - p鋄5弢ȹ均i绝5 - drop: - - "" - privileged: true - procMount: ş - readOnlyRootFilesystem: false - runAsGroup: 7023916302283403328 - runAsNonRoot: false - runAsUser: -3385088507022597813 - seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" - seccompProfile: - localhostProfile: "313" - type: 諔迮ƙ - windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - hostProcess: false - runAsUserName: "312" - startupProbe: + host: "283" + port: -614098868 + terminationGracePeriodSeconds: -2125560879532395341 + timeoutSeconds: 846286700 + name: "251" + ports: + - containerPort: 1174240097 + hostIP: "257" + hostPort: -1314967760 + name: "256" + protocol: \E¦队偯J僳徥淳 + readinessProbe: exec: command: - - "285" - failureThreshold: 353361793 + - "284" + failureThreshold: -402384013 httpGet: host: "287" httpHeaders: - name: "288" value: "289" - path: "286" - port: 1013673874 - scheme: ə娯Ȱ囌{ - initialDelaySeconds: -205176266 - periodSeconds: -116469891 - successThreshold: 311083651 + path: "285" + port: "286" + scheme: 花ª瘡蟦JBʟ鍏 + initialDelaySeconds: -2062708879 + periodSeconds: -141401239 + successThreshold: -1187301925 tcpSocket: - host: "290" - port: -1829146875 - terminationGracePeriodSeconds: -8939747084334542875 - timeoutSeconds: 490479437 - stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: "3" + host: "291" + port: "290" + terminationGracePeriodSeconds: -779972051078659613 + timeoutSeconds: 215186711 + resources: + limits: + 4Ǒ輂,ŕĪ: "398" + requests: + V訆Ǝżŧ: "915" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - DŽ髐njʉBn(fǂǢ曣 + drop: + - ay + privileged: false + procMount: u8晲 + readOnlyRootFilesystem: false + runAsGroup: -4786249339103684082 + runAsNonRoot: true + runAsUser: -3576337664396773931 + seLinuxOptions: + level: "316" + role: "314" + type: "315" + user: "313" + seccompProfile: + localhostProfile: "320" + type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' + windowsOptions: + gmsaCredentialSpec: "318" + gmsaCredentialSpecName: "317" + hostProcess: true + runAsUserName: "319" + startupProbe: + exec: + command: + - "292" + failureThreshold: 737722974 + httpGet: + host: "295" + httpHeaders: + - name: "296" + value: "297" + path: "293" + port: "294" + scheme: İ + initialDelaySeconds: -1615316902 + periodSeconds: -522215271 + successThreshold: 1374479082 + tcpSocket: + host: "299" + port: "298" + terminationGracePeriodSeconds: -247950237984551522 + timeoutSeconds: -793616601 + stdin: true + terminationMessagePath: "312" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "266" - mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ - name: "265" + - mountPath: "272" + mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_< + name: "271" readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + subPath: "273" + subPathExpr: "274" + workingDir: "255" dnsConfig: nameservers: - - "472" + - "479" options: - - name: "474" - value: "475" + - name: "481" + value: "482" searches: - - "473" - dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "480" + dnsPolicy: +Œ9两 + enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "324" command: - - "316" + - "323" env: - - name: "324" - value: "325" + - name: "331" + value: "332" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "338" + name: "337" optional: true fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "333" + fieldPath: "334" resourceFieldRef: - containerName: "328" - divisor: "66" - resource: "329" + containerName: "335" + divisor: "464" + resource: "336" secretKeyRef: - key: "333" - name: "332" + key: "340" + name: "339" optional: false envFrom: - configMapRef: - name: "322" + name: "329" optional: true - prefix: "321" + prefix: "328" secretRef: - name: "323" - optional: false - image: "315" - imagePullPolicy: 阠$嬏 + name: "330" + optional: true + image: "322" + imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "360" - httpGet: - host: "362" - httpHeaders: - - name: "363" - value: "364" - path: "361" - port: 890223061 - scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ - tcpSocket: - host: "366" - port: "365" - preStop: - exec: - command: - - "367" + - "366" httpGet: host: "369" httpHeaders: - name: "370" value: "371" - path: "368" - port: 797714018 - scheme: vÄÚ× + path: "367" + port: "368" + scheme: '%ʝ`ǭ' tcpSocket: - host: "373" - port: "372" + host: "372" + port: -1467648837 + preStop: + exec: + command: + - "373" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "374" + port: "375" + scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S + tcpSocket: + host: "380" + port: "379" livenessProbe: - exec: - command: - - "340" - failureThreshold: -1508967300 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "341" - port: "342" - initialDelaySeconds: -1843539391 - periodSeconds: -1758095966 - successThreshold: 1627026804 - tcpSocket: - host: "346" - port: -819013491 - terminationGracePeriodSeconds: -4548040070833300341 - timeoutSeconds: 1238925115 - name: "314" - ports: - - containerPort: 1137109081 - hostIP: "320" - hostPort: -488127393 - name: "319" - protocol: 丽饾| 鞤ɱď - readinessProbe: exec: command: - "347" - failureThreshold: -47594442 + failureThreshold: -1211577347 httpGet: host: "349" httpHeaders: - name: "350" value: "351" path: "348" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + port: -1088996269 + scheme: ƘƵŧ1ƟƓ宆! + initialDelaySeconds: -1065853311 + periodSeconds: -843639240 + successThreshold: 1573261475 tcpSocket: - host: "353" - port: "352" - terminationGracePeriodSeconds: -8866033802256420471 - timeoutSeconds: -894026356 - resources: - limits: - ƣMț譎懚X: "93" - requests: - 曣ŋayåe躒訙: "484" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - ¶熀ďJZ漤 - drop: - - "" - privileged: true - procMount: 槃JŵǤ桒ɴ鉂WJ - readOnlyRootFilesystem: true - runAsGroup: -8721643037453811760 - runAsNonRoot: false - runAsUser: 5680561050872693436 - seLinuxOptions: - level: "378" - role: "376" - type: "377" - user: "375" - seccompProfile: - localhostProfile: "382" - type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ - windowsOptions: - gmsaCredentialSpec: "380" - gmsaCredentialSpecName: "379" - hostProcess: false - runAsUserName: "381" - startupProbe: - exec: - command: - - "354" - failureThreshold: 1190831814 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -1789721862 - scheme: 閈誹ʅ蕉ɼ - initialDelaySeconds: 1518001294 - periodSeconds: -2068583194 - successThreshold: -29073009 - tcpSocket: - host: "359" - port: 374862544 - terminationGracePeriodSeconds: 7262727411813417219 - timeoutSeconds: 1467189105 - targetContainerName: "383" - terminationMessagePath: "374" - terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ - volumeDevices: - - devicePath: "339" - name: "338" - volumeMounts: - - mountPath: "335" - mountPropagation: (娕uE增猍 - name: "334" - subPath: "336" - subPathExpr: "337" - workingDir: "318" - hostAliases: - - hostnames: - - "470" - ip: "469" - hostIPC: true - hostNetwork: true - hostPID: true - hostname: "400" - imagePullSecrets: - - name: "399" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "713" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: false - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: r嚧 - lifecycle: - postStart: - exec: - command: - - "223" - httpGet: - host: "225" - httpHeaders: - - name: "226" - value: "227" - path: "224" - port: -1109619518 - scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 - tcpSocket: - host: "229" - port: "228" - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 461585849 - scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tcpSocket: - host: "235" - port: 467291328 - livenessProbe: - exec: - command: - - "204" - failureThreshold: -93157681 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 - tcpSocket: - host: "210" - port: "209" - terminationGracePeriodSeconds: -4856573944864548413 - timeoutSeconds: -148216266 - name: "178" + host: "352" + port: -1836225650 + terminationGracePeriodSeconds: 6567123901989213629 + timeoutSeconds: 559999152 + name: "321" ports: - - containerPort: -1343558801 - hostIP: "184" - hostPort: 1923334396 - name: "183" - protocol: '@掇lNdǂ>' + - containerPort: 2037135322 + hostIP: "327" + hostPort: 1453852685 + name: "326" + protocol: ǧĒzŔ瘍N readinessProbe: exec: command: - - "211" - failureThreshold: 513341278 + - "353" + failureThreshold: 757223010 httpGet: - host: "213" + host: "355" httpHeaders: - - name: "214" - value: "215" - path: "212" - port: -331283026 - scheme: ȉ - initialDelaySeconds: 1033766276 - periodSeconds: -859135545 - successThreshold: -1543701088 + - name: "356" + value: "357" + path: "354" + port: 705333281 + scheme: xƂ9阠 + initialDelaySeconds: -606614374 + periodSeconds: 498878902 + successThreshold: 652646450 tcpSocket: - host: "216" - port: 714088955 - terminationGracePeriodSeconds: 2696007505383404823 - timeoutSeconds: -1745509819 + host: "358" + port: -916583020 + terminationGracePeriodSeconds: -8216131738691912586 + timeoutSeconds: -3478003 resources: limits: - 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" + 汚磉反-n: "653" requests: - t莭琽§ć\ ïì: "80" + ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 埄趛 + - 鬬$矐_敕ű嵞嬯t{Eɾ drop: - - ʁ岼昕ĬÇ + - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' privileged: true - procMount: 鐫û咡W<敄lu|榝 + procMount: s44矕Ƈè readOnlyRootFilesystem: false - runAsGroup: -6406791857291159870 + runAsGroup: 73764735411458498 runAsNonRoot: false - runAsUser: 161123823296532265 + runAsUser: 4224635496843945227 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "385" + role: "383" + type: "384" + user: "382" seccompProfile: - localhostProfile: "244" - type: î.Ȏ蝪ʜ5遰= + localhostProfile: "389" + type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - hostProcess: false - runAsUserName: "243" + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" startupProbe: exec: command: - - "217" - failureThreshold: -1364571630 + - "359" + failureThreshold: 1671084780 httpGet: - host: "219" + host: "362" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: -361442565 - scheme: w - initialDelaySeconds: 994072122 - periodSeconds: -1962065705 - successThreshold: 1701999128 + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: Ů尪璎妽4LM桵Ţ宧ʜ + type: mv看ƜZ + observedGeneration: -1635909846206320942 + readyReplicas: -859094691 + replicas: -253906853 + unavailableReplicas: -779806398 + updatedReplicas: -602665165 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 81eb214dc7c..b9b471cb494 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 @@ -442,6 +442,11 @@ "apiGroup": "175", "kind": "176", "name": "177" + }, + "dataSourceRef": { + "apiGroup": "178", + "kind": "179", + "name": "180" } } } @@ -450,317 +455,59 @@ ], "initContainers": [ { - "name": "178", - "image": "179", + "name": "181", + "image": "182", "command": [ - "180" + "183" ], "args": [ - "181" + "184" ], - "workingDir": "182", + "workingDir": "185", "ports": [ { - "name": "183", - "hostPort": 424236719, - "containerPort": -2031266553, - "protocol": "呝TG;邪", - "hostIP": "184" + "name": "186", + "hostPort": 747521320, + "containerPort": 859639931, + "protocol": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", + "hostIP": "187" } ], "envFrom": [ { - "prefix": "185", + "prefix": "188", "configMapRef": { - "name": "186", + "name": "189", "optional": true }, "secretRef": { - "name": "187", + "name": "190", "optional": true } } ], "env": [ { - "name": "188", - "value": "189", + "name": "191", + "value": "192", "valueFrom": { "fieldRef": { - "apiVersion": "190", - "fieldPath": "191" + "apiVersion": "193", + "fieldPath": "194" }, "resourceFieldRef": { - "containerName": "192", - "resource": "193", - "divisor": "486" + "containerName": "195", + "resource": "196", + "divisor": "663" }, "configMapKeyRef": { - "name": "194", - "key": "195", + "name": "197", + "key": "198", "optional": true }, "secretKeyRef": { - "name": "196", - "key": "197", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩": "47" - }, - "requests": { - "榜VƋZ1": "932" - } - }, - "volumeMounts": [ - { - "name": "198", - "readOnly": true, - "mountPath": "199", - "subPath": "200", - "mountPropagation": "瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", - "subPathExpr": "201" - } - ], - "volumeDevices": [ - { - "name": "202", - "devicePath": "203" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "204" - ] - }, - "httpGet": { - "path": "205", - "port": 2035347577, - "host": "206", - "scheme": "姣\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾", - "httpHeaders": [ - { - "name": "207", - "value": "208" - } - ] - }, - "tcpSocket": { - "port": -1498229293, - "host": "209" - }, - "initialDelaySeconds": -1155992025, - "timeoutSeconds": -194343002, - "periodSeconds": -850069363, - "successThreshold": 918929368, - "failureThreshold": 1016277253, - "terminationGracePeriodSeconds": -8520337362162976488 - }, - "readinessProbe": { - "exec": { - "command": [ - "210" - ] - }, - "httpGet": { - "path": "211", - "port": "212", - "host": "213", - "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", - "httpHeaders": [ - { - "name": "214", - "value": "215" - } - ] - }, - "tcpSocket": { - "port": 538852927, - "host": "216" - }, - "initialDelaySeconds": -407545915, - "timeoutSeconds": 902535764, - "periodSeconds": 716842280, - "successThreshold": 1479266199, - "failureThreshold": 163512962, - "terminationGracePeriodSeconds": -8521017368802772029 - }, - "startupProbe": { - "exec": { - "command": [ - "217" - ] - }, - "httpGet": { - "path": "218", - "port": 1623772781, - "host": "219", - "scheme": "UÐ_ƮA攤/ɸɎ", - "httpHeaders": [ - { - "name": "220", - "value": "221" - } - ] - }, - "tcpSocket": { - "port": "222", - "host": "223" - }, - "initialDelaySeconds": 1054858106, - "timeoutSeconds": 232569106, - "periodSeconds": -1150474479, - "successThreshold": 744319626, - "failureThreshold": -2107743490, - "terminationGracePeriodSeconds": 8569885835306406695 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "224" - ] - }, - "httpGet": { - "path": "225", - "port": 896430536, - "host": "226", - "scheme": "罴ņ螡źȰ", - "httpHeaders": [ - { - "name": "227", - "value": "228" - } - ] - }, - "tcpSocket": { - "port": 513341278, - "host": "229" - } - }, - "preStop": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 1451056156, - "host": "232", - "scheme": "uʎȺ眖R#", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": "235", - "host": "236" - } - } - }, - "terminationMessagePath": "237", - "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", - "imagePullPolicy": "1ØœȠƬQg鄠", - "securityContext": { - "capabilities": { - "add": [ - "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" - ], - "drop": [ - "W:ĸ輦唊#v" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "238", - "role": "239", - "type": "240", - "level": "241" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "242", - "gmsaCredentialSpec": "243", - "runAsUserName": "244", - "hostProcess": true - }, - "runAsUser": 7510677649797968740, - "runAsGroup": -1629447906545846003, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "8T 苧yñKJɐ扵Gƚ绤fʀ", - "seccompProfile": { - "type": "腩墺Ò媁荭gw忊|E剒蔞|表徶", - "localhostProfile": "245" - } - }, - "stdin": true - } - ], - "containers": [ - { - "name": "246", - "image": "247", - "command": [ - "248" - ], - "args": [ - "249" - ], - "workingDir": "250", - "ports": [ - { - "name": "251", - "hostPort": 59244165, - "containerPort": -614161319, - "protocol": "Ȩ\u003c6鄰簳°Ļǟi\u0026", - "hostIP": "252" - } - ], - "envFrom": [ - { - "prefix": "253", - "configMapRef": { - "name": "254", - "optional": false - }, - "secretRef": { - "name": "255", - "optional": false - } - } - ], - "env": [ - { - "name": "256", - "value": "257", - "valueFrom": { - "fieldRef": { - "apiVersion": "258", - "fieldPath": "259" - }, - "resourceFieldRef": { - "containerName": "260", - "resource": "261", - "divisor": "861" - }, - "configMapKeyRef": { - "name": "262", - "key": "263", - "optional": true - }, - "secretKeyRef": { - "name": "264", - "key": "265", + "name": "199", + "key": "200", "optional": false } } @@ -768,512 +515,769 @@ ], "resources": { "limits": { - "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ": "178" + "ſ盷": "532" }, "requests": { - "Ö闊 鰔澝qV": "752" + "[Řż丩": "47" } }, "volumeMounts": [ { - "name": "266", - "readOnly": true, - "mountPath": "267", - "subPath": "268", - "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", - "subPathExpr": "269" + "name": "201", + "mountPath": "202", + "subPath": "203", + "mountPropagation": "VƋZ1Ůđ眊ľǎɳ,ǿ飏", + "subPathExpr": "204" } ], "volumeDevices": [ { - "name": "270", - "devicePath": "271" + "name": "205", + "devicePath": "206" } ], "livenessProbe": { "exec": { "command": [ - "272" + "207" ] }, "httpGet": { - "path": "273", - "port": "274", - "host": "275", - "scheme": "冓鍓贯", + "path": "208", + "port": 1214895765, + "host": "209", + "scheme": "悖ȩ0Ƹ[Ęİ榌U", "httpHeaders": [ { - "name": "276", - "value": "277" + "name": "210", + "value": "211" } ] }, "tcpSocket": { - "port": "278", - "host": "279" + "port": -187060941, + "host": "212" }, - "initialDelaySeconds": 1290950685, - "timeoutSeconds": 12533543, - "periodSeconds": 1058960779, - "successThreshold": -2133441986, - "failureThreshold": 472742933, - "terminationGracePeriodSeconds": 217739466937954194 + "initialDelaySeconds": -442393168, + "timeoutSeconds": -307373517, + "periodSeconds": 1109079597, + "successThreshold": -646728130, + "failureThreshold": 1684643131, + "terminationGracePeriodSeconds": 5055443896475056676 }, "readinessProbe": { "exec": { "command": [ - "280" + "213" ] }, "httpGet": { - "path": "281", - "port": 1401790459, - "host": "282", - "scheme": "ǵɐ鰥Z", + "path": "214", + "port": "215", + "host": "216", + "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨", "httpHeaders": [ { - "name": "283", - "value": "284" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -1103045151, - "host": "285" + "port": "219", + "host": "220" }, - "initialDelaySeconds": -614098868, - "timeoutSeconds": 234253676, - "periodSeconds": 846286700, - "successThreshold": 1080545253, - "failureThreshold": 1843491416, - "terminationGracePeriodSeconds": -5175286970144973961 + "initialDelaySeconds": 1885896895, + "timeoutSeconds": -1232888129, + "periodSeconds": -1682044542, + "successThreshold": 1182477686, + "failureThreshold": -503805926, + "terminationGracePeriodSeconds": 332054723335023688 }, "startupProbe": { "exec": { "command": [ - "286" + "221" ] }, "httpGet": { - "path": "287", - "port": "288", - "host": "289", - "scheme": "芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj", + "path": "222", + "port": "223", + "host": "224", + "scheme": "«丯Ƙ枛牐ɺ皚", "httpHeaders": [ { - "name": "290", - "value": "291" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": -560238386, - "host": "292" + "port": -1934111455, + "host": "227" }, - "initialDelaySeconds": 1658749995, - "timeoutSeconds": -938421813, - "periodSeconds": 809683205, - "successThreshold": -1615316902, - "failureThreshold": -793616601, - "terminationGracePeriodSeconds": -2242897509815578930 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438, + "terminationGracePeriodSeconds": 4116652091516790056 }, "lifecycle": { "postStart": { "exec": { "command": [ - "293" + "228" ] }, "httpGet": { - "path": "294", - "port": -1699531929, - "host": "295", - "scheme": "Z涬P­蜷ɔ幩šeS", + "path": "229", + "port": -1196874390, + "host": "230", + "scheme": "S晒嶗UÐ_ƮA攤", "httpHeaders": [ { - "name": "296", - "value": "297" + "name": "231", + "value": "232" } ] }, "tcpSocket": { - "port": 155090390, - "host": "298" + "port": -498930176, + "host": "233" } }, "preStop": { "exec": { "command": [ - "299" + "234" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "235", + "port": "236", + "host": "237", + "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "238", + "value": "239" } ] }, "tcpSocket": { - "port": -727263154, - "host": "305" + "port": "240", + "host": "241" } } }, - "terminationMessagePath": "306", - "terminationMessagePolicy": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", - "imagePullPolicy": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "terminationMessagePath": "242", + "terminationMessagePolicy": "?$矡ȶ网棊ʢ", + "imagePullPolicy": "ʎȺ眖R#", "securityContext": { "capabilities": { "add": [ - ")DŽ髐njʉBn(fǂ" + "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ" ], "drop": [ - "曣ŋayåe躒訙" + "" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "307", - "role": "308", - "type": "309", - "level": "310" + "user": "243", + "role": "244", + "type": "245", + "level": "246" }, "windowsOptions": { - "gmsaCredentialSpecName": "311", - "gmsaCredentialSpec": "312", - "runAsUserName": "313", - "hostProcess": true + "gmsaCredentialSpecName": "247", + "gmsaCredentialSpec": "248", + "runAsUserName": "249", + "hostProcess": false }, - "runAsUser": 1083662227773909466, - "runAsGroup": 6245571390016329382, + "runAsUser": -2529737859863639391, + "runAsGroup": 7694930383795602762, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ", + "allowPrivilegeEscalation": true, + "procMount": "\u003e郵[+扴ȨŮ", "seccompProfile": { - "type": "|蕎'佉賞ǧ", - "localhostProfile": "314" + "type": "朷Ǝ膯ljVX1虊谇", + "localhostProfile": "250" } }, - "stdin": true + "stdin": true, + "tty": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "315", - "image": "316", + "name": "251", + "image": "252", "command": [ - "317" + "253" ], "args": [ - "318" + "254" ], - "workingDir": "319", + "workingDir": "255", "ports": [ { - "name": "320", - "hostPort": -1920304485, - "containerPort": -1842062977, - "protocol": "輔3璾ėȜv1b繐汚磉反-n覦", - "hostIP": "321" + "name": "256", + "hostPort": 1381579966, + "containerPort": -1418092595, + "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x", + "hostIP": "257" } ], "envFrom": [ { - "prefix": "322", + "prefix": "258", "configMapRef": { - "name": "323", + "name": "259", "optional": true }, "secretRef": { - "name": "324", + "name": "260", "optional": true } } ], "env": [ { - "name": "325", - "value": "326", + "name": "261", + "value": "262", "valueFrom": { "fieldRef": { - "apiVersion": "327", - "fieldPath": "328" + "apiVersion": "263", + "fieldPath": "264" }, "resourceFieldRef": { - "containerName": "329", - "resource": "330", - "divisor": "992" + "containerName": "265", + "resource": "266", + "divisor": "894" }, "configMapKeyRef": { - "name": "331", - "key": "332", + "name": "267", + "key": "268", "optional": true }, "secretKeyRef": { - "name": "333", - "key": "334", - "optional": true + "name": "269", + "key": "270", + "optional": false } } } ], "resources": { "limits": { - "ʨIk(dŊiɢzĮ蛋I滞": "394" + "W\u003c敄lu|榝$î.Ȏ": "546" }, "requests": { - "ɞȥ}礤铟怖ý萜Ǖ": "305" + "剒蔞|表": "379" } }, "volumeMounts": [ { - "name": "335", + "name": "271", "readOnly": true, - "mountPath": "336", - "subPath": "337", - "mountPropagation": "Ƒĝ®EĨǔvÄÚ×p鬷m", - "subPathExpr": "338" + "mountPath": "272", + "subPath": "273", + "mountPropagation": "朦 wƯ貾坢'跩", + "subPathExpr": "274" } ], "volumeDevices": [ { - "name": "339", - "devicePath": "340" + "name": "275", + "devicePath": "276" } ], "livenessProbe": { "exec": { "command": [ - "341" + "277" ] }, "httpGet": { - "path": "342", - "port": 1529027685, - "host": "343", - "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀", + "path": "278", + "port": -1471289102, + "host": "279", + "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "280", + "value": "281" } ] }, "tcpSocket": { - "port": -1912967242, - "host": "346" + "port": 113873869, + "host": "282" }, - "initialDelaySeconds": -2106399359, - "timeoutSeconds": 1443270783, - "periodSeconds": -1038975198, - "successThreshold": 1821835340, - "failureThreshold": 2046765799, - "terminationGracePeriodSeconds": -6946775447206795219 + "initialDelaySeconds": -1421951296, + "timeoutSeconds": 878005329, + "periodSeconds": -1244119841, + "successThreshold": 1235694147, + "failureThreshold": 348370746, + "terminationGracePeriodSeconds": 2011630253582325853 }, "readinessProbe": { "exec": { "command": [ - "347" + "283" ] }, "httpGet": { - "path": "348", - "port": "349", - "host": "350", - "scheme": "Ƒ[澔", + "path": "284", + "port": 1907998540, + "host": "285", + "scheme": ",ŕ", "httpHeaders": [ { - "name": "351", - "value": "352" + "name": "286", + "value": "287" } ] }, "tcpSocket": { - "port": 1288391156, - "host": "353" + "port": "288", + "host": "289" }, - "initialDelaySeconds": -952255430, - "timeoutSeconds": 1568034275, - "periodSeconds": -824007302, - "successThreshold": -359713104, - "failureThreshold": 1671084780, - "terminationGracePeriodSeconds": 1571605531283019612 + "initialDelaySeconds": -253326525, + "timeoutSeconds": 567263590, + "periodSeconds": 887319241, + "successThreshold": 1559618829, + "failureThreshold": 1156888068, + "terminationGracePeriodSeconds": -5566612115749133989 }, "startupProbe": { "exec": { "command": [ - "354" + "290" ] }, "httpGet": { - "path": "355", - "port": -514169648, - "host": "356", - "scheme": "\u0026疀", + "path": "291", + "port": 1315054653, + "host": "292", + "scheme": "蚃ɣľ)酊龨δ摖ȱ", "httpHeaders": [ { - "name": "357", - "value": "358" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "359", - "host": "360" + "port": "295", + "host": "296" }, - "initialDelaySeconds": -39292476, - "timeoutSeconds": 801902541, - "periodSeconds": -1312249623, - "successThreshold": -1089435479, - "failureThreshold": -1031303729, - "terminationGracePeriodSeconds": -7317946572666008364 + "initialDelaySeconds": 1905181464, + "timeoutSeconds": -1730959016, + "periodSeconds": 1272940694, + "successThreshold": -385597677, + "failureThreshold": 422133388, + "terminationGracePeriodSeconds": 8385745044578923915 }, "lifecycle": { "postStart": { "exec": { "command": [ - "361" + "297" ] }, "httpGet": { - "path": "362", - "port": 1445923603, - "host": "363", - "scheme": "殆诵H玲鑠ĭ$#卛8ð仁Q", + "path": "298", + "port": "299", + "host": "300", + "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", "httpHeaders": [ { - "name": "364", - "value": "365" + "name": "301", + "value": "302" } ] }, "tcpSocket": { - "port": "366", - "host": "367" + "port": 802134138, + "host": "303" } }, "preStop": { "exec": { "command": [ - "368" + "304" ] }, "httpGet": { - "path": "369", - "port": "370", - "host": "371", - "scheme": "杧ż鯀1'", + "path": "305", + "port": -126958936, + "host": "306", + "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", "httpHeaders": [ { - "name": "372", - "value": "373" + "name": "307", + "value": "308" } ] }, "tcpSocket": { - "port": 1297979953, - "host": "374" + "port": "309", + "host": "310" } } }, - "terminationMessagePath": "375", - "terminationMessagePolicy": "ǘ炙", - "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", + "terminationMessagePath": "311", + "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS", + "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮", "securityContext": { "capabilities": { "add": [ - "鬬$矐_敕ű嵞嬯t{Eɾ" + "嘢4ʗN,丽饾| 鞤ɱďW賁" ], "drop": [ - "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" + "ɭɪǹ0衷," ] }, "privileged": true, "seLinuxOptions": { - "user": "376", - "role": "377", - "type": "378", - "level": "379" + "user": "312", + "role": "313", + "type": "314", + "level": "315" }, "windowsOptions": { - "gmsaCredentialSpecName": "380", - "gmsaCredentialSpec": "381", - "runAsUserName": "382", + "gmsaCredentialSpecName": "316", + "gmsaCredentialSpec": "317", + "runAsUserName": "318", "hostProcess": true }, - "runAsUser": 4224635496843945227, - "runAsGroup": 73764735411458498, + "runAsUser": -1119183212148951030, + "runAsGroup": -7146044409185304665, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "s44矕Ƈè", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "w妕眵笭/9崍h趭(娕", "seccompProfile": { - "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", - "localhostProfile": "383" + "type": "E增猍", + "localhostProfile": "319" + } + } + } + ], + "ephemeralContainers": [ + { + "name": "320", + "image": "321", + "command": [ + "322" + ], + "args": [ + "323" + ], + "workingDir": "324", + "ports": [ + { + "name": "325", + "hostPort": 601942575, + "containerPort": -1320027474, + "protocol": "Ƶf", + "hostIP": "326" + } + ], + "envFrom": [ + { + "prefix": "327", + "configMapRef": { + "name": "328", + "optional": true + }, + "secretRef": { + "name": "329", + "optional": true + } + } + ], + "env": [ + { + "name": "330", + "value": "331", + "valueFrom": { + "fieldRef": { + "apiVersion": "332", + "fieldPath": "333" + }, + "resourceFieldRef": { + "containerName": "334", + "resource": "335", + "divisor": "179" + }, + "configMapKeyRef": { + "name": "336", + "key": "337", + "optional": false + }, + "secretKeyRef": { + "name": "338", + "key": "339", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "阎l": "464" + }, + "requests": { + "'佉": "633" + } + }, + "volumeMounts": [ + { + "name": "340", + "mountPath": "341", + "subPath": "342", + "mountPropagation": "(ť1ùfŭƽ", + "subPathExpr": "343" + } + ], + "volumeDevices": [ + { + "name": "344", + "devicePath": "345" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "346" + ] + }, + "httpGet": { + "path": "347", + "port": -684167223, + "host": "348", + "scheme": "1b", + "httpHeaders": [ + { + "name": "349", + "value": "350" + } + ] + }, + "tcpSocket": { + "port": "351", + "host": "352" + }, + "initialDelaySeconds": -47594442, + "timeoutSeconds": -2064284357, + "periodSeconds": 725624946, + "successThreshold": -34803208, + "failureThreshold": -313085430, + "terminationGracePeriodSeconds": -7686796864837350582 + }, + "readinessProbe": { + "exec": { + "command": [ + "353" + ] + }, + "httpGet": { + "path": "354", + "port": 1611386356, + "host": "355", + "scheme": "ɼ搳ǭ濑箨ʨIk(", + "httpHeaders": [ + { + "name": "356", + "value": "357" + } + ] + }, + "tcpSocket": { + "port": 2115799218, + "host": "358" + }, + "initialDelaySeconds": 1984241264, + "timeoutSeconds": -758033170, + "periodSeconds": -487434422, + "successThreshold": -370404018, + "failureThreshold": -1844150067, + "terminationGracePeriodSeconds": 1778358283914418699 + }, + "startupProbe": { + "exec": { + "command": [ + "359" + ] + }, + "httpGet": { + "path": "360", + "port": "361", + "host": "362", + "scheme": "焬CQm坊柩", + "httpHeaders": [ + { + "name": "363", + "value": "364" + } + ] + }, + "tcpSocket": { + "port": "365", + "host": "366" + }, + "initialDelaySeconds": -135823101, + "timeoutSeconds": -1345219897, + "periodSeconds": 1141812777, + "successThreshold": -1830926023, + "failureThreshold": -320410537, + "terminationGracePeriodSeconds": 8766190045617353809 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "367" + ] + }, + "httpGet": { + "path": "368", + "port": "369", + "host": "370", + "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj", + "httpHeaders": [ + { + "name": "371", + "value": "372" + } + ] + }, + "tcpSocket": { + "port": 1333166203, + "host": "373" + } + }, + "preStop": { + "exec": { + "command": [ + "374" + ] + }, + "httpGet": { + "path": "375", + "port": 758604605, + "host": "376", + "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑", + "httpHeaders": [ + { + "name": "377", + "value": "378" + } + ] + }, + "tcpSocket": { + "port": "379", + "host": "380" + } + } + }, + "terminationMessagePath": "381", + "terminationMessagePolicy": "釼aTGÒ鵌", + "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ", + "securityContext": { + "capabilities": { + "add": [ + "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á" + ], + "drop": [ + "tl敷斢杧ż鯀" + ] + }, + "privileged": true, + "seLinuxOptions": { + "user": "382", + "role": "383", + "type": "384", + "level": "385" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "386", + "gmsaCredentialSpec": "387", + "runAsUserName": "388", + "hostProcess": true + }, + "runAsUser": -3379825899840103887, + "runAsGroup": -6950412587983829837, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "seccompProfile": { + "type": "咑耖p^鏋蛹Ƚȿ醏g", + "localhostProfile": "389" } }, "tty": true, - "targetContainerName": "384" + "targetContainerName": "390" } ], - "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn", - "terminationGracePeriodSeconds": -8335674866227004872, - "activeDeadlineSeconds": 3305070661619041050, - "dnsPolicy": "+Œ9两", + "restartPolicy": "飂廤Ƌʙcx", + "terminationGracePeriodSeconds": -4767735291842597991, + "activeDeadlineSeconds": -7888525810745339742, + "dnsPolicy": "h`職铳s44矕Ƈ", "nodeSelector": { - "385": "386" + "391": "392" }, - "serviceAccountName": "387", - "serviceAccount": "388", - "automountServiceAccountToken": false, - "nodeName": "389", - "hostPID": true, + "serviceAccountName": "393", + "serviceAccount": "394", + "automountServiceAccountToken": true, + "nodeName": "395", + "hostIPC": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "390", - "role": "391", - "type": "392", - "level": "393" + "user": "396", + "role": "397", + "type": "398", + "level": "399" }, "windowsOptions": { - "gmsaCredentialSpecName": "394", - "gmsaCredentialSpec": "395", - "runAsUserName": "396", + "gmsaCredentialSpecName": "400", + "gmsaCredentialSpec": "401", + "runAsUserName": "402", "hostProcess": false }, - "runAsUser": 3438266910774132295, - "runAsGroup": 3230705132538051674, - "runAsNonRoot": true, + "runAsUser": 5422399684456852309, + "runAsGroup": -4636770370363077377, + "runAsNonRoot": false, "supplementalGroups": [ - -1600417733583164525 + -5728960352366086876 ], - "fsGroup": -3964669311891901178, + "fsGroup": 1712752437570220896, "sysctls": [ { - "name": "397", - "value": "398" + "name": "403", + "value": "404" } ], - "fsGroupChangePolicy": "ƴ4虵p", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "沥7uPƒw©ɴĶ烷Ľthp", - "localhostProfile": "399" + "type": "#", + "localhostProfile": "405" } }, "imagePullSecrets": [ { - "name": "400" + "name": "406" } ], - "hostname": "401", - "subdomain": "402", + "hostname": "407", + "subdomain": "408", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1281,19 +1285,19 @@ { "matchExpressions": [ { - "key": "403", - "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫", + "key": "409", + "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3", "values": [ - "404" + "410" ] } ], "matchFields": [ { - "key": "405", - "operator": " ", + "key": "411", + "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", "values": [ - "406" + "412" ] } ] @@ -1302,23 +1306,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -5241849, + "weight": 687140791, "preference": { "matchExpressions": [ { - "key": "407", - "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "key": "413", + "operator": "ļǹʅŚO虀", "values": [ - "408" + "414" ] } ], "matchFields": [ { - "key": "409", - "operator": "[y#t(", + "key": "415", + "operator": "ɴĶ烷Ľthp像-觗裓6Ř", "values": [ - "410" + "416" ] } ] @@ -1331,30 +1335,30 @@ { "labelSelector": { "matchLabels": { - "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "417" + "423" ], - "topologyKey": "418", + "topologyKey": "424", "namespaceSelector": { "matchLabels": { - "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" + "4eq5": "" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", - "operator": "DoesNotExist" + "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", + "operator": "Exists" } ] } @@ -1362,31 +1366,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -234140, + "weight": 888976270, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" + "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" }, "matchExpressions": [ { - "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", - "operator": "Exists" + "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0", + "operator": "In", + "values": [ + "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ" + ] } ] }, "namespaces": [ - "431" + "437" ], - "topologyKey": "432", + "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" + "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R" }, "matchExpressions": [ { - "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", - "operator": "DoesNotExist" + "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V", + "operator": "In", + "values": [ + "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7" + ] } ] } @@ -1399,32 +1409,29 @@ { "labelSelector": { "matchLabels": { - "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" + "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr" }, "matchExpressions": [ { - "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", - "operator": "In", - "values": [ - "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" - ] + "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", + "operator": "Exists" } ] }, "namespaces": [ - "445" + "451" ], - "topologyKey": "446", + "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" + "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" }, "matchExpressions": [ { - "key": "N7.81_-._-_8_.._._a9", + "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", "operator": "In", "values": [ - "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" + "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" ] } ] @@ -1433,31 +1440,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1276377114, + "weight": -1668452490, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0" + "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t" }, "matchExpressions": [ { - "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", - "operator": "DoesNotExist" + "key": "6W74-R_Z_Tz.a3_Ho", + "operator": "Exists" } ] }, "namespaces": [ - "459" + "465" ], - "topologyKey": "460", + "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9" + "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" }, "matchExpressions": [ { - "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1", - "operator": "DoesNotExist" + "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", + "operator": "In", + "values": [ + "x3___-..f5-6x-_-o_6O_If-5_-_.F" + ] } ] } @@ -1466,89 +1476,89 @@ ] } }, - "schedulerName": "467", + "schedulerName": "473", "tolerations": [ { - "key": "468", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "469", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "474", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "475", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "470", + "ip": "476", "hostnames": [ - "471" + "477" ] } ], - "priorityClassName": "472", - "priority": 347613368, + "priorityClassName": "478", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "473" + "479" ], "searches": [ - "474" + "480" ], "options": [ { - "name": "475", - "value": "476" + "name": "481", + "value": "482" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "477", + "runtimeClassName": "483", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "478", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "484", + "whenUnsatisfiable": "", "labelSelector": { "matchLabels": { - "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" + "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a" }, "matchExpressions": [ { - "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52", - "operator": "NotIn", + "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", + "operator": "In", "values": [ - "h.v._5.vB-.-7-.6Jv-86___3" + "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } } }, "status": { - "replicas": 2106170541, - "fullyLabeledReplicas": 415168801, - "readyReplicas": 1448332644, - "availableReplicas": -2060941196, - "observedGeneration": 7426283174216567769, + "replicas": 1205668420, + "fullyLabeledReplicas": -1754098513, + "readyReplicas": -877836536, + "availableReplicas": 138992869, + "observedGeneration": -7169014491472696647, "conditions": [ { - "type": "犓`ɜɅco\\穜T睭憲Ħ焵i,ŋŨN", - "status": "\u003c暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ\u003e尪璎", - "lastTransitionTime": "2597-11-21T15:14:16Z", - "reason": "485", - "message": "486" + "type": "零șPî壣V礆á¤拈tY圻醆锛[", + "status": "嬜Š\u0026?鳢.ǀŭ瘢颦z疵", + "lastTransitionTime": "2455-07-16T22:37:15Z", + "reason": "491", + "message": "492" } ] } 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 6920c24a825..2a1628605f3 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb differ 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 abfcd2d1f1a..bfc22f6521b 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 @@ -73,731 +73,733 @@ spec: selfLink: "29" uid: ʬ spec: - activeDeadlineSeconds: 3305070661619041050 + activeDeadlineSeconds: -7888525810745339742 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "407" - operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' + - key: "413" + operator: ļǹʅŚO虀 values: - - "408" + - "414" matchFields: - - key: "409" - operator: '[y#t(' + - key: "415" + operator: ɴĶ烷Ľthp像-觗裓6Ř values: - - "410" - weight: -5241849 + - "416" + weight: 687140791 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "403" - operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫 + - key: "409" + operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3 values: - - "404" + - "410" matchFields: - - key: "405" - operator: ' ' + - key: "411" + operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿' values: - - "406" + - "412" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s - operator: Exists + - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0 + operator: In + values: + - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ matchLabels: - 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2 + z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n namespaceSelector: matchExpressions: - - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np - operator: DoesNotExist + - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V + operator: In + values: + - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7 matchLabels: - Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E + vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R namespaces: - - "431" - topologyKey: "432" - weight: -234140 + - "437" + topologyKey: "438" + weight: 888976270 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7 namespaceSelector: matchExpressions: - - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr - operator: DoesNotExist + - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z + operator: Exists matchLabels: - 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g + 4eq5: "" namespaces: - - "417" - topologyKey: "418" + - "423" + topologyKey: "424" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h - operator: DoesNotExist + - key: 6W74-R_Z_Tz.a3_Ho + operator: Exists matchLabels: - 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0 + n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t namespaceSelector: matchExpressions: - - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1 - operator: DoesNotExist + - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV + operator: In + values: + - x3___-..f5-6x-_-o_6O_If-5_-_.F matchLabels: - ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6 - : I-._g_.._-hKc.OB_F_--.._m_-9 + h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i namespaces: - - "459" - topologyKey: "460" - weight: 1276377114 + - "465" + topologyKey: "466" + weight: -1668452490 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2 - operator: In - values: - - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0 + - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8 + operator: Exists matchLabels: - n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8" + 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr namespaceSelector: matchExpressions: - - key: N7.81_-._-_8_.._._a9 + - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s operator: In values: - - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh + - V._qN__A_f_-B3_U__L.KH6K.RwsfI2 matchLabels: - m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT + u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E namespaces: - - "445" - topologyKey: "446" - automountServiceAccountToken: false + - "451" + topologyKey: "452" + automountServiceAccountToken: true containers: - args: - - "249" + - "254" command: - - "248" + - "253" env: - - name: "256" - value: "257" + - name: "261" + value: "262" valueFrom: configMapKeyRef: - key: "263" - name: "262" + key: "268" + name: "267" optional: true fieldRef: - apiVersion: "258" - fieldPath: "259" + apiVersion: "263" + fieldPath: "264" resourceFieldRef: - containerName: "260" - divisor: "861" - resource: "261" + containerName: "265" + divisor: "894" + resource: "266" secretKeyRef: - key: "265" - name: "264" + key: "270" + name: "269" optional: false envFrom: - configMapRef: - name: "254" - optional: false - prefix: "253" + name: "259" + optional: true + prefix: "258" secretRef: - name: "255" - optional: false - image: "247" - imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ + name: "260" + optional: true + image: "252" + imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮 lifecycle: postStart: exec: command: - - "293" + - "297" httpGet: - host: "295" + host: "300" httpHeaders: - - name: "296" - value: "297" - path: "294" - port: -1699531929 - scheme: Z涬P­蜷ɔ幩šeS + - name: "301" + value: "302" + path: "298" + port: "299" + scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ tcpSocket: - host: "298" - port: 155090390 + host: "303" + port: 802134138 preStop: exec: command: - - "299" + - "304" httpGet: - host: "302" + host: "306" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "307" + value: "308" + path: "305" + port: -126958936 + scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 tcpSocket: - host: "305" - port: -727263154 + host: "310" + port: "309" livenessProbe: exec: command: - - "272" - failureThreshold: 472742933 + - "277" + failureThreshold: 348370746 httpGet: - host: "275" - httpHeaders: - - name: "276" - value: "277" - path: "273" - port: "274" - scheme: 冓鍓贯 - initialDelaySeconds: 1290950685 - periodSeconds: 1058960779 - successThreshold: -2133441986 - tcpSocket: host: "279" - port: "278" - terminationGracePeriodSeconds: 217739466937954194 - timeoutSeconds: 12533543 - name: "246" - ports: - - containerPort: -614161319 - hostIP: "252" - hostPort: 59244165 - name: "251" - protocol: Ȩ<6鄰簳°Ļǟi& - readinessProbe: - exec: - command: - - "280" - failureThreshold: 1843491416 - httpGet: + httpHeaders: + - name: "280" + value: "281" + path: "278" + port: -1471289102 + scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳 + initialDelaySeconds: -1421951296 + periodSeconds: -1244119841 + successThreshold: 1235694147 + tcpSocket: host: "282" - httpHeaders: - - name: "283" - value: "284" - path: "281" - port: 1401790459 - scheme: ǵɐ鰥Z - initialDelaySeconds: -614098868 - periodSeconds: 846286700 - successThreshold: 1080545253 - tcpSocket: + port: 113873869 + terminationGracePeriodSeconds: 2011630253582325853 + timeoutSeconds: 878005329 + name: "251" + ports: + - containerPort: -1418092595 + hostIP: "257" + hostPort: 1381579966 + name: "256" + protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x + readinessProbe: + exec: + command: + - "283" + failureThreshold: 1156888068 + httpGet: host: "285" - port: -1103045151 - terminationGracePeriodSeconds: -5175286970144973961 - timeoutSeconds: 234253676 - resources: - limits: - ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178" - requests: - Ö闊 鰔澝qV: "752" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - )DŽ髐njʉBn(fǂ - drop: - - 曣ŋayåe躒訙 - privileged: false - procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ' - readOnlyRootFilesystem: false - runAsGroup: 6245571390016329382 - runAsNonRoot: true - runAsUser: 1083662227773909466 - seLinuxOptions: - level: "310" - role: "308" - type: "309" - user: "307" - seccompProfile: - localhostProfile: "314" - type: '|蕎''佉賞ǧ' - windowsOptions: - gmsaCredentialSpec: "312" - gmsaCredentialSpecName: "311" - hostProcess: true - runAsUserName: "313" - startupProbe: - exec: - command: - - "286" - failureThreshold: -793616601 - httpGet: + httpHeaders: + - name: "286" + value: "287" + path: "284" + port: 1907998540 + scheme: ',ŕ' + initialDelaySeconds: -253326525 + periodSeconds: 887319241 + successThreshold: 1559618829 + tcpSocket: host: "289" - httpHeaders: - - name: "290" - value: "291" - path: "287" port: "288" - scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj - initialDelaySeconds: 1658749995 - periodSeconds: 809683205 - successThreshold: -1615316902 - tcpSocket: - host: "292" - port: -560238386 - terminationGracePeriodSeconds: -2242897509815578930 - timeoutSeconds: -938421813 - stdin: true - terminationMessagePath: "306" - terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - volumeDevices: - - devicePath: "271" - name: "270" - volumeMounts: - - mountPath: "267" - mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î - name: "266" - readOnly: true - subPath: "268" - subPathExpr: "269" - workingDir: "250" - dnsConfig: - nameservers: - - "473" - options: - - name: "475" - value: "476" - searches: - - "474" - dnsPolicy: +Œ9两 - enableServiceLinks: false - ephemeralContainers: - - args: - - "318" - command: - - "317" - env: - - name: "325" - value: "326" - valueFrom: - configMapKeyRef: - key: "332" - name: "331" - optional: true - fieldRef: - apiVersion: "327" - fieldPath: "328" - resourceFieldRef: - containerName: "329" - divisor: "992" - resource: "330" - secretKeyRef: - key: "334" - name: "333" - optional: true - envFrom: - - configMapRef: - name: "323" - optional: true - prefix: "322" - secretRef: - name: "324" - optional: true - image: "316" - imagePullPolicy: ǰ詀ǿ忀oɎƺL - lifecycle: - postStart: - exec: - command: - - "361" - httpGet: - host: "363" - httpHeaders: - - name: "364" - value: "365" - path: "362" - port: 1445923603 - scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q - tcpSocket: - host: "367" - port: "366" - preStop: - exec: - command: - - "368" - httpGet: - host: "371" - httpHeaders: - - name: "372" - value: "373" - path: "369" - port: "370" - scheme: 杧ż鯀1' - tcpSocket: - host: "374" - port: 1297979953 - livenessProbe: - exec: - command: - - "341" - failureThreshold: 2046765799 - httpGet: - host: "343" - httpHeaders: - - name: "344" - value: "345" - path: "342" - port: 1529027685 - scheme: żLj捲攻xƂ9阠$嬏wy¶熀 - initialDelaySeconds: -2106399359 - periodSeconds: -1038975198 - successThreshold: 1821835340 - tcpSocket: - host: "346" - port: -1912967242 - terminationGracePeriodSeconds: -6946775447206795219 - timeoutSeconds: 1443270783 - name: "315" - ports: - - containerPort: -1842062977 - hostIP: "321" - hostPort: -1920304485 - name: "320" - protocol: 輔3璾ėȜv1b繐汚磉反-n覦 - readinessProbe: - exec: - command: - - "347" - failureThreshold: 1671084780 - httpGet: - host: "350" - httpHeaders: - - name: "351" - value: "352" - path: "348" - port: "349" - scheme: Ƒ[澔 - initialDelaySeconds: -952255430 - periodSeconds: -824007302 - successThreshold: -359713104 - tcpSocket: - host: "353" - port: 1288391156 - terminationGracePeriodSeconds: 1571605531283019612 - timeoutSeconds: 1568034275 + terminationGracePeriodSeconds: -5566612115749133989 + timeoutSeconds: 567263590 resources: limits: - ʨIk(dŊiɢzĮ蛋I滞: "394" + W<敄lu|榝$î.Ȏ: "546" requests: - ɞȥ}礤铟怖ý萜Ǖ: "305" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 鬬$矐_敕ű嵞嬯t{Eɾ - drop: - - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - privileged: true - procMount: s44矕Ƈè - readOnlyRootFilesystem: false - runAsGroup: 73764735411458498 - runAsNonRoot: false - runAsUser: 4224635496843945227 - seLinuxOptions: - level: "379" - role: "377" - type: "378" - user: "376" - seccompProfile: - localhostProfile: "383" - type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 - windowsOptions: - gmsaCredentialSpec: "381" - gmsaCredentialSpecName: "380" - hostProcess: true - runAsUserName: "382" - startupProbe: - exec: - command: - - "354" - failureThreshold: -1031303729 - httpGet: - host: "356" - httpHeaders: - - name: "357" - value: "358" - path: "355" - port: -514169648 - scheme: '&疀' - initialDelaySeconds: -39292476 - periodSeconds: -1312249623 - successThreshold: -1089435479 - tcpSocket: - host: "360" - port: "359" - terminationGracePeriodSeconds: -7317946572666008364 - timeoutSeconds: 801902541 - targetContainerName: "384" - terminationMessagePath: "375" - terminationMessagePolicy: ǘ炙 - tty: true - volumeDevices: - - devicePath: "340" - name: "339" - volumeMounts: - - mountPath: "336" - mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m - name: "335" - readOnly: true - subPath: "337" - subPathExpr: "338" - workingDir: "319" - hostAliases: - - hostnames: - - "471" - ip: "470" - hostPID: true - hostname: "401" - imagePullSecrets: - - name: "400" - initContainers: - - args: - - "181" - command: - - "180" - env: - - name: "188" - value: "189" - valueFrom: - configMapKeyRef: - key: "195" - name: "194" - optional: true - fieldRef: - apiVersion: "190" - fieldPath: "191" - resourceFieldRef: - containerName: "192" - divisor: "486" - resource: "193" - secretKeyRef: - key: "197" - name: "196" - optional: true - envFrom: - - configMapRef: - name: "186" - optional: true - prefix: "185" - secretRef: - name: "187" - optional: true - image: "179" - imagePullPolicy: 1ØœȠƬQg鄠 - lifecycle: - postStart: - exec: - command: - - "224" - httpGet: - host: "226" - httpHeaders: - - name: "227" - value: "228" - path: "225" - port: 896430536 - scheme: 罴ņ螡źȰ - tcpSocket: - host: "229" - port: 513341278 - preStop: - exec: - command: - - "230" - httpGet: - host: "232" - httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 1451056156 - scheme: uʎȺ眖R# - tcpSocket: - host: "236" - port: "235" - livenessProbe: - exec: - command: - - "204" - failureThreshold: 1016277253 - httpGet: - host: "206" - httpHeaders: - - name: "207" - value: "208" - path: "205" - port: 2035347577 - scheme: 姣>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾 - initialDelaySeconds: -1155992025 - periodSeconds: -850069363 - successThreshold: 918929368 - tcpSocket: - host: "209" - port: -1498229293 - terminationGracePeriodSeconds: -8520337362162976488 - timeoutSeconds: -194343002 - name: "178" - ports: - - containerPort: -2031266553 - hostIP: "184" - hostPort: 424236719 - name: "183" - protocol: 呝TG;邪 - readinessProbe: - exec: - command: - - "210" - failureThreshold: 163512962 - httpGet: - host: "213" - httpHeaders: - - name: "214" - value: "215" - path: "211" - port: "212" - scheme: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p - initialDelaySeconds: -407545915 - periodSeconds: 716842280 - successThreshold: 1479266199 - tcpSocket: - host: "216" - port: 538852927 - terminationGracePeriodSeconds: -8521017368802772029 - timeoutSeconds: 902535764 - resources: - limits: - 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩: "47" - requests: - 榜VƋZ1: "932" + 剒蔞|表: "379" securityContext: allowPrivilegeEscalation: true capabilities: add: - - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ + - 嘢4ʗN,丽饾| 鞤ɱďW賁 drop: - - W:ĸ輦唊#v - privileged: false - procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ + - ɭɪǹ0衷, + privileged: true + procMount: w妕眵笭/9崍h趭(娕 readOnlyRootFilesystem: true - runAsGroup: -1629447906545846003 - runAsNonRoot: true - runAsUser: 7510677649797968740 + runAsGroup: -7146044409185304665 + runAsNonRoot: false + runAsUser: -1119183212148951030 seLinuxOptions: - level: "241" - role: "239" - type: "240" - user: "238" + level: "315" + role: "313" + type: "314" + user: "312" seccompProfile: - localhostProfile: "245" - type: 腩墺Ò媁荭gw忊|E剒蔞|表徶 + localhostProfile: "319" + type: E增猍 windowsOptions: - gmsaCredentialSpec: "243" - gmsaCredentialSpecName: "242" + gmsaCredentialSpec: "317" + gmsaCredentialSpecName: "316" hostProcess: true - runAsUserName: "244" + runAsUserName: "318" startupProbe: exec: command: - - "217" - failureThreshold: -2107743490 + - "290" + failureThreshold: 422133388 httpGet: - host: "219" + host: "292" httpHeaders: - - name: "220" - value: "221" - path: "218" - port: 1623772781 - scheme: UÐ_ƮA攤/ɸɎ - initialDelaySeconds: 1054858106 - periodSeconds: -1150474479 - successThreshold: 744319626 + - name: "293" + value: "294" + path: "291" + port: 1315054653 + scheme: 蚃ɣľ)酊龨δ摖ȱ + initialDelaySeconds: 1905181464 + periodSeconds: 1272940694 + successThreshold: -385597677 tcpSocket: - host: "223" - port: "222" - terminationGracePeriodSeconds: 8569885835306406695 - timeoutSeconds: 232569106 - stdin: true - terminationMessagePath: "237" - terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + host: "296" + port: "295" + terminationGracePeriodSeconds: 8385745044578923915 + timeoutSeconds: -1730959016 + terminationMessagePath: "311" + terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS volumeDevices: - - devicePath: "203" - name: "202" + - devicePath: "276" + name: "275" volumeMounts: - - mountPath: "199" - mountPropagation: 瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę - name: "198" + - mountPath: "272" + mountPropagation: 朦 wƯ貾坢'跩 + name: "271" readOnly: true - subPath: "200" - subPathExpr: "201" - workingDir: "182" - nodeName: "389" + subPath: "273" + subPathExpr: "274" + workingDir: "255" + dnsConfig: + nameservers: + - "479" + options: + - name: "481" + value: "482" + searches: + - "480" + dnsPolicy: h`職铳s44矕Ƈ + enableServiceLinks: false + ephemeralContainers: + - args: + - "323" + command: + - "322" + env: + - name: "330" + value: "331" + valueFrom: + configMapKeyRef: + key: "337" + name: "336" + optional: false + fieldRef: + apiVersion: "332" + fieldPath: "333" + resourceFieldRef: + containerName: "334" + divisor: "179" + resource: "335" + secretKeyRef: + key: "339" + name: "338" + optional: false + envFrom: + - configMapRef: + name: "328" + optional: true + prefix: "327" + secretRef: + name: "329" + optional: true + image: "321" + imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ + lifecycle: + postStart: + exec: + command: + - "367" + httpGet: + host: "370" + httpHeaders: + - name: "371" + value: "372" + path: "368" + port: "369" + scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj' + tcpSocket: + host: "373" + port: 1333166203 + preStop: + exec: + command: + - "374" + httpGet: + host: "376" + httpHeaders: + - name: "377" + value: "378" + path: "375" + port: 758604605 + scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑 + tcpSocket: + host: "380" + port: "379" + livenessProbe: + exec: + command: + - "346" + failureThreshold: -313085430 + httpGet: + host: "348" + httpHeaders: + - name: "349" + value: "350" + path: "347" + port: -684167223 + scheme: 1b + initialDelaySeconds: -47594442 + periodSeconds: 725624946 + successThreshold: -34803208 + tcpSocket: + host: "352" + port: "351" + terminationGracePeriodSeconds: -7686796864837350582 + timeoutSeconds: -2064284357 + name: "320" + ports: + - containerPort: -1320027474 + hostIP: "326" + hostPort: 601942575 + name: "325" + protocol: Ƶf + readinessProbe: + exec: + command: + - "353" + failureThreshold: -1844150067 + httpGet: + host: "355" + httpHeaders: + - name: "356" + value: "357" + path: "354" + port: 1611386356 + scheme: ɼ搳ǭ濑箨ʨIk( + initialDelaySeconds: 1984241264 + periodSeconds: -487434422 + successThreshold: -370404018 + tcpSocket: + host: "358" + port: 2115799218 + terminationGracePeriodSeconds: 1778358283914418699 + timeoutSeconds: -758033170 + resources: + limits: + 阎l: "464" + requests: + '''佉': "633" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á + drop: + - tl敷斢杧ż鯀 + privileged: true + procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰 + readOnlyRootFilesystem: false + runAsGroup: -6950412587983829837 + runAsNonRoot: true + runAsUser: -3379825899840103887 + seLinuxOptions: + level: "385" + role: "383" + type: "384" + user: "382" + seccompProfile: + localhostProfile: "389" + type: 咑耖p^鏋蛹Ƚȿ醏g + windowsOptions: + gmsaCredentialSpec: "387" + gmsaCredentialSpecName: "386" + hostProcess: true + runAsUserName: "388" + startupProbe: + exec: + command: + - "359" + failureThreshold: -320410537 + httpGet: + host: "362" + httpHeaders: + - name: "363" + value: "364" + path: "360" + port: "361" + scheme: 焬CQm坊柩 + initialDelaySeconds: -135823101 + periodSeconds: 1141812777 + successThreshold: -1830926023 + tcpSocket: + host: "366" + port: "365" + terminationGracePeriodSeconds: 8766190045617353809 + timeoutSeconds: -1345219897 + targetContainerName: "390" + terminationMessagePath: "381" + terminationMessagePolicy: 釼aTGÒ鵌 + tty: true + volumeDevices: + - devicePath: "345" + name: "344" + volumeMounts: + - mountPath: "341" + mountPropagation: (ť1ùfŭƽ + name: "340" + subPath: "342" + subPathExpr: "343" + workingDir: "324" + hostAliases: + - hostnames: + - "477" + ip: "476" + hostIPC: true + hostname: "407" + imagePullSecrets: + - name: "406" + initContainers: + - args: + - "184" + command: + - "183" + env: + - name: "191" + value: "192" + valueFrom: + configMapKeyRef: + key: "198" + name: "197" + optional: true + fieldRef: + apiVersion: "193" + fieldPath: "194" + resourceFieldRef: + containerName: "195" + divisor: "663" + resource: "196" + secretKeyRef: + key: "200" + name: "199" + optional: false + envFrom: + - configMapRef: + name: "189" + optional: true + prefix: "188" + secretRef: + name: "190" + optional: true + image: "182" + imagePullPolicy: ʎȺ眖R# + lifecycle: + postStart: + exec: + command: + - "228" + httpGet: + host: "230" + httpHeaders: + - name: "231" + value: "232" + path: "229" + port: -1196874390 + scheme: S晒嶗UÐ_ƮA攤 + tcpSocket: + host: "233" + port: -498930176 + preStop: + exec: + command: + - "234" + httpGet: + host: "237" + httpHeaders: + - name: "238" + value: "239" + path: "235" + port: "236" + scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡 + tcpSocket: + host: "241" + port: "240" + livenessProbe: + exec: + command: + - "207" + failureThreshold: 1684643131 + httpGet: + host: "209" + httpHeaders: + - name: "210" + value: "211" + path: "208" + port: 1214895765 + scheme: 悖ȩ0Ƹ[Ęİ榌U + initialDelaySeconds: -442393168 + periodSeconds: 1109079597 + successThreshold: -646728130 + tcpSocket: + host: "212" + port: -187060941 + terminationGracePeriodSeconds: 5055443896475056676 + timeoutSeconds: -307373517 + name: "181" + ports: + - containerPort: 859639931 + hostIP: "187" + hostPort: 747521320 + name: "186" + protocol: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + readinessProbe: + exec: + command: + - "213" + failureThreshold: -503805926 + httpGet: + host: "216" + httpHeaders: + - name: "217" + value: "218" + path: "214" + port: "215" + scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨 + initialDelaySeconds: 1885896895 + periodSeconds: -1682044542 + successThreshold: 1182477686 + tcpSocket: + host: "220" + port: "219" + terminationGracePeriodSeconds: 332054723335023688 + timeoutSeconds: -1232888129 + resources: + limits: + ſ盷: "532" + requests: + '[Řż丩': "47" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' + drop: + - "" + privileged: true + procMount: '>郵[+扴ȨŮ' + readOnlyRootFilesystem: false + runAsGroup: 7694930383795602762 + runAsNonRoot: true + runAsUser: -2529737859863639391 + seLinuxOptions: + level: "246" + role: "244" + type: "245" + user: "243" + seccompProfile: + localhostProfile: "250" + type: 朷Ǝ膯ljVX1虊谇 + windowsOptions: + gmsaCredentialSpec: "248" + gmsaCredentialSpecName: "247" + hostProcess: false + runAsUserName: "249" + startupProbe: + exec: + command: + - "221" + failureThreshold: 59664438 + httpGet: + host: "224" + httpHeaders: + - name: "225" + value: "226" + path: "222" + port: "223" + scheme: «丯Ƙ枛牐ɺ皚 + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 + tcpSocket: + host: "227" + port: -1934111455 + terminationGracePeriodSeconds: 4116652091516790056 + timeoutSeconds: 1146016612 + stdin: true + terminationMessagePath: "242" + terminationMessagePolicy: ?$矡ȶ网棊ʢ + tty: true + volumeDevices: + - devicePath: "206" + name: "205" + volumeMounts: + - mountPath: "202" + mountPropagation: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + name: "201" + subPath: "203" + subPathExpr: "204" + workingDir: "185" + nodeName: "395" nodeSelector: - "385": "386" + "391": "392" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "472" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "478" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn - runtimeClassName: "477" - schedulerName: "467" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: 飂廤Ƌʙcx + runtimeClassName: "483" + schedulerName: "473" securityContext: - fsGroup: -3964669311891901178 - fsGroupChangePolicy: ƴ4虵p - runAsGroup: 3230705132538051674 - runAsNonRoot: true - runAsUser: 3438266910774132295 + fsGroup: 1712752437570220896 + fsGroupChangePolicy: "" + runAsGroup: -4636770370363077377 + runAsNonRoot: false + runAsUser: 5422399684456852309 seLinuxOptions: - level: "393" - role: "391" - type: "392" - user: "390" + level: "399" + role: "397" + type: "398" + user: "396" seccompProfile: - localhostProfile: "399" - type: 沥7uPƒw©ɴĶ烷Ľthp + localhostProfile: "405" + type: '#' supplementalGroups: - - -1600417733583164525 + - -5728960352366086876 sysctls: - - name: "397" - value: "398" + - name: "403" + value: "404" windowsOptions: - gmsaCredentialSpec: "395" - gmsaCredentialSpecName: "394" + gmsaCredentialSpec: "401" + gmsaCredentialSpecName: "400" hostProcess: false - runAsUserName: "396" - serviceAccount: "388" - serviceAccountName: "387" - setHostnameAsFQDN: false + runAsUserName: "402" + serviceAccount: "394" + serviceAccountName: "393" + setHostnameAsFQDN: true shareProcessNamespace: true - subdomain: "402" - terminationGracePeriodSeconds: -8335674866227004872 + subdomain: "408" + terminationGracePeriodSeconds: -4767735291842597991 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "468" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "469" + - effect: '慰x:' + key: "474" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "475" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52 - operator: NotIn + - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x + operator: In values: - - h.v._5.vB-.-7-.6Jv-86___3 + - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe matchLabels: - n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb - maxSkew: -484382570 - topologyKey: "478" - whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` + 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a + maxSkew: -174245111 + topologyKey: "484" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "49" @@ -896,6 +898,10 @@ spec: apiGroup: "175" kind: "176" name: "177" + dataSourceRef: + apiGroup: "178" + kind: "179" + name: "180" resources: limits: ŴĿ: "377" @@ -1049,14 +1055,14 @@ spec: storagePolicyName: "105" volumePath: "103" status: - availableReplicas: -2060941196 + availableReplicas: 138992869 conditions: - - lastTransitionTime: "2597-11-21T15:14:16Z" - message: "486" - reason: "485" - status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎 - type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN - fullyLabeledReplicas: 415168801 - observedGeneration: 7426283174216567769 - readyReplicas: 1448332644 - replicas: 2106170541 + - lastTransitionTime: "2455-07-16T22:37:15Z" + message: "492" + reason: "491" + status: 嬜Š&?鳢.ǀŭ瘢颦z疵 + type: 零șPî壣V礆á¤拈tY圻醆锛[ + fullyLabeledReplicas: -1754098513 + observedGeneration: -7169014491472696647 + readyReplicas: -877836536 + replicas: 1205668420 diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go index ac4d64c7114..e22d04b0d59 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go @@ -33,6 +33,7 @@ type PersistentVolumeClaimSpecApplyConfiguration struct { StorageClassName *string `json:"storageClassName,omitempty"` VolumeMode *v1.PersistentVolumeMode `json:"volumeMode,omitempty"` DataSource *TypedLocalObjectReferenceApplyConfiguration `json:"dataSource,omitempty"` + DataSourceRef *TypedLocalObjectReferenceApplyConfiguration `json:"dataSourceRef,omitempty"` } // PersistentVolumeClaimSpecApplyConfiguration constructs an declarative configuration of the PersistentVolumeClaimSpec type for use with @@ -98,3 +99,11 @@ func (b *PersistentVolumeClaimSpecApplyConfiguration) WithDataSource(value *Type b.DataSource = value return b } + +// WithDataSourceRef sets the DataSourceRef field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the DataSourceRef field is set to the value of the last call. +func (b *PersistentVolumeClaimSpecApplyConfiguration) WithDataSourceRef(value *TypedLocalObjectReferenceApplyConfiguration) *PersistentVolumeClaimSpecApplyConfiguration { + b.DataSourceRef = value + return b +} diff --git a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go index acd9061e04e..2be2e003967 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go @@ -4910,6 +4910,9 @@ var schemaYAML = typed.YAMLObject(`types: - name: dataSource type: namedType: io.k8s.api.core.v1.TypedLocalObjectReference + - name: dataSourceRef + type: + namedType: io.k8s.api.core.v1.TypedLocalObjectReference - name: resources type: namedType: io.k8s.api.core.v1.ResourceRequirements